diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d710004c477e52b5edcb402f01f30759726ba293..6b0b495e9fdd0cc4499c1c929ee72e5c58219591 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,18 +1,16 @@
 image: beagle/sphinx-build-env:latest
 
+variables:
+  GIT_SUBMODULE_STRATEGY: recursive
+
 cache:
+  key: bbdocs
   paths:
-    - public
-    - public/0.0.7
+  - public
 
 pages:
   script:
-  - sphinx-build -b html . public
-  - sphinx-build -M latexpdf . public
-  - mv public/latex/beagleboard-docs.pdf public/
+  - "./gitlab-build.sh"
   artifacts:
     paths:
     - public
-  only:
-    - main
-    - 0.0.7
diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 0000000000000000000000000000000000000000..0c170ef15f085e53d111e2b9b65bd7a763ec4456
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,3 @@
+[submodule "books/beaglebone-cookbook/code"]
+	path = books/beaglebone-cookbook/code
+	url = https://git.beagleboard.org/beagleboard/beaglebone-cookbook-code.git
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 7946a6f52673e80c237eaea13a06755b525a9e30..5ca379058e90dab0a0e23d07f423cfe0266cc8e5 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -2,30 +2,20 @@
 
 **First off, thanks for taking the time to think about contributing!**
 
-The following is a set of guidelines for contributing to docs.beagleboard.io, which is hosted by the BeagleBoard.org Foundation at https://git.beagleboard.org/docs/docs.beagleboard.io. These are mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request.
+The following is a set of guidelines for contributing to docs.beagleboard.io, which is hosted by
+the BeagleBoard.org Foundation at https://git.beagleboard.org/docs/docs.beagleboard.io. These are
+mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this
+document in a pull request.
 
 ## Code of Conduct
 
-This project and everyone participating in it is governed by the [BeagleBoard.org Code of Conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code. Please report unacceptable behavior to [coc@bbb.io](mailto:coc@bbb.io) or contact one of the administrators on https://forum.beagleboard.org.
+This project and everyone participating in it is governed by
+the [BeagleBoard.org Code of Conduct](CODE_OF_CONDUCT.md). By participating, you are expected to
+uphold this code. Please report unacceptable behavior to [coc@bbb.io](mailto:coc@bbb.io) or
+contact one of the administrators on https://forum.beagleboard.org.
 
 ## FAQ
 
 * [Frequently Asked Questions category on the BeagleBoard.org Forum](https://forum.beagleboard.org/c/faq/19)
 
-## What should I know before I get started?
-
-## How can I contribute?
-
-### Reporting bugs
-
-### Suggesting enhancements
-
-### Submitting pull requests
-
-## Style guides
-
-### Git commit messages
-
-### RST style guide
-
-## Additional notes
+See more at https://docs.beagleboard.org/en/latest/intro/contribution/.
diff --git a/Dockerfile b/Dockerfile
index 6131d5228d5f8da9f499fa3731b38575cc3c7a92..dafaf82a1eea503068a31141e8a55fb2de434152 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -8,3 +8,5 @@ RUN apk add librsvg
 RUN pip install sphinx_rtd_theme
 RUN apk add texlive-full
 RUN apk add make
+RUN apk add rsync
+RUN apk add git
diff --git a/PAGES b/PAGES
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/VERSION b/VERSION
index 52daafdf597eab5aac8580ab3cc5fb35f28ca3e9..53b8586e270675d1739b0fef2b7330aa78de0417 100644
--- a/VERSION
+++ b/VERSION
@@ -1,5 +1,5 @@
-VERSION_MAJOR = 0
+VERSION_MAJOR = 1
 VERSION_MINOR = 0
-PATCHLEVEL = 7
-VERSION_TWEAK = 2
-EXTRAVERSION = beta
+PATCHLEVEL = 
+VERSION_TWEAK = 
+EXTRAVERSION = wip
diff --git a/_ext/callouts.py b/_ext/callouts.py
new file mode 100644
index 0000000000000000000000000000000000000000..97bb23e4ee77d126cdac16d2e228987c6e31aa8a
--- /dev/null
+++ b/_ext/callouts.py
@@ -0,0 +1,199 @@
+from docutils import nodes
+
+from sphinx.util.docutils import SphinxDirective
+from sphinx.transforms import SphinxTransform
+from docutils.nodes import Node
+
+# BASE_NUM = 2775  # black circles, white numbers
+BASE_NUM = 2459  # white circle, black numbers
+
+
+class CalloutIncludePostTransform(SphinxTransform):
+    """Code block post-processor for `literalinclude` blocks used in callouts."""
+
+    default_priority = 400
+
+    def apply(self, **kwargs) -> None:
+        visitor = LiteralIncludeVisitor(self.document)
+        self.document.walkabout(visitor)
+
+
+class LiteralIncludeVisitor(nodes.NodeVisitor):
+    """Change a literal block upon visiting it."""
+
+    def __init__(self, document: nodes.document) -> None:
+        super().__init__(document)
+
+    def unknown_visit(self, node: Node) -> None:
+        pass
+
+    def unknown_departure(self, node: Node) -> None:
+        pass
+
+    def visit_document(self, node: Node) -> None:
+        pass
+
+    def depart_document(self, node: Node) -> None:
+        pass
+
+    def visit_start_of_file(self, node: Node) -> None:
+        pass
+
+    def depart_start_of_file(self, node: Node) -> None:
+        pass
+
+    def visit_literal_block(self, node: nodes.literal_block) -> None:
+        if "<1>" in node.rawsource:
+            source = str(node.rawsource)
+            for i in range(1, 20):
+                source = source.replace(
+                    f"<{i}>", chr(int(f"0x{BASE_NUM + i}", base=16))
+                )
+            node.rawsource = source
+            node[:] = [nodes.Text(source)]
+
+
+class callout(nodes.General, nodes.Element):
+    """Sphinx callout node."""
+
+    pass
+
+
+def visit_callout_node(self, node):
+    """We pass on node visit to prevent the
+    callout being treated as admonition."""
+    pass
+
+
+def depart_callout_node(self, node):
+    """Departing a callout node is a no-op, too."""
+    pass
+
+
+class annotations(nodes.Element):
+    """Sphinx annotations node."""
+
+    pass
+
+
+def _replace_numbers(content: str):
+    """
+    Replaces strings of the form <x> with circled unicode numbers (e.g. â‘ ) as text.
+
+    Args:
+        content: Python str from a callout or annotations directive.
+
+    Returns: The formatted content string.
+    """
+    for i in range(1, 20):
+        content.replace(f"<{i}>", chr(int(f"0x{BASE_NUM + i}", base=16)))
+    return content
+
+
+def _parse_recursively(self, node):
+    """Utility to recursively parse a node from the Sphinx AST."""
+    self.state.nested_parse(self.content, self.content_offset, node)
+
+
+class CalloutDirective(SphinxDirective):
+    """Code callout directive with annotations for Sphinx.
+
+    Use this `callout` directive by wrapping either `code-block` or `literalinclude`
+    directives. Each line that's supposed to be equipped with an annotation should
+    have an inline comment of the form "# <x>" where x is an integer.
+
+    Afterwards use the `annotations` directive to add annotations to the previously
+    defined code labels ("<x>") by using the syntax "<x> my annotation" to produce an
+    annotation "my annotation" for x.
+    Note that annotation lines have to be separated by a new line, i.e.
+
+    .. annotations::
+
+        <1> First comment followed by a newline,
+
+        <2> second comment after the newline.
+
+
+    Usage example:
+    -------------
+
+    .. callout::
+
+        .. code-block:: python
+
+            from ray import tune
+            from ray.tune.search.hyperopt import HyperOptSearch
+            import keras
+
+            def objective(config):  # <1>
+                ...
+
+            search_space = {"activation": tune.choice(["relu", "tanh"])}  # <2>
+            algo = HyperOptSearch()
+
+            tuner = tune.Tuner(  # <3>
+                ...
+            )
+            results = tuner.fit()
+
+        .. annotations::
+
+            <1> Wrap a Keras model in an objective function.
+
+            <2> Define a search space and initialize the search algorithm.
+
+            <3> Start a Tune run that maximizes accuracy.
+    """
+
+    has_content = True
+
+    def run(self):
+        self.assert_has_content()
+
+        content = self.content
+        content = _replace_numbers(content)
+
+        callout_node = callout("\n".join(content))
+        _parse_recursively(self, callout_node)
+
+        return [callout_node]
+
+
+class AnnotationsDirective(SphinxDirective):
+    """Annotations directive, which is only used nested within a Callout directive."""
+
+    has_content = True
+
+    def run(self):
+        content = self.content
+        content = _replace_numbers(content)
+
+        joined_content = "\n".join(content)
+        annotations_node = callout(joined_content)
+        _parse_recursively(self, annotations_node)
+
+        return [annotations_node]
+
+
+def setup(app):
+    # Add new node types
+    app.add_node(
+        callout,
+        html=(visit_callout_node, depart_callout_node),
+        latex=(visit_callout_node, depart_callout_node),
+        text=(visit_callout_node, depart_callout_node),
+    )
+    app.add_node(annotations)
+
+    # Add new directives
+    app.add_directive("callout", CalloutDirective)
+    app.add_directive("annotations", AnnotationsDirective)
+
+    # Add post-processor
+    app.add_post_transform(CalloutIncludePostTransform)
+
+    return {
+        "version": "0.1",
+        "parallel_read_safe": True,
+        "parallel_write_safe": True,
+    }
diff --git a/_static/css/custom.css b/_static/css/custom.css
index 19fa99fff967f7b6138d947a8ac93f03f335eed2..0a0f69e9c8948bdd8b3647b3fe30ebf32a4282ca 100644
--- a/_static/css/custom.css
+++ b/_static/css/custom.css
@@ -18,9 +18,18 @@
 }
 
 .wy-nav-content {
-        max-width: 100%;
+    max-width: 100%;
 }
 
+.wy-side-scroll {
+    overflow-y: hidden;
+}
+
+.wy-menu.wy-menu-vertical {
+    overflow-y: auto;
+    overflow-x: hidden;
+    max-height: calc(100% - 247px);
+}
 
 .wy-side-nav-search {
     background-color: #25282b;
@@ -33,6 +42,7 @@
 }
 
 .wy-nav-side {
+    padding-bottom: 0px;
     background-color: #25282b;
     background-color: #25282b;
 }
@@ -54,4 +64,8 @@
  * fixing larger font size for paragraphs in the kconfig tables */
  .wy-table-responsive td p {
     font-size: 100%;
-}
\ No newline at end of file
+}
+
+span.strike {
+    text-decoration: line-through;
+}
diff --git a/_templates/layout.html b/_templates/layout.html
new file mode 100644
index 0000000000000000000000000000000000000000..c6be8a80aa01d3e3f9e8dc92bbf8196334d69bf8
--- /dev/null
+++ b/_templates/layout.html
@@ -0,0 +1,32 @@
+{% extends "!layout.html" %}
+{% block document %}
+  {% if pages_slug != "latest" %}
+    <div class="wy-alert wy-alert-danger">
+      The <a href="{{pages_url}}/latest">latest development version</a>
+      of this page may be more current than this released {{ version }} version.
+    </div>
+  {% else %}
+    <div class="wy-alert wy-alert-danger">
+     This is the latest (main) BeagleBoard documentation.
+     If you are looking for stable releases, use the
+     drop-down menu on the bottom-left and select the desired version.
+    </div>
+  {% endif %}
+  {{ super() }}
+{% endblock %}
+{% block menu %}
+  {% include "versions.html" %}
+  {{ super() }}
+  {% if reference_links %}
+  <div class="toctree-wrapper compound">
+    <p class="caption"><span class="caption-text">Reference</span></p>
+    <ul>
+      {% for title, url in reference_links.items() %}
+      <li class="toctree-l1">
+        <a class="reference internal" href="{{ url }}">{{ title }}</a>
+      </li>
+      {% endfor %}
+    </ul>
+  </div>
+  {% endif %}
+{% endblock %}
diff --git a/_templates/versions.html b/_templates/versions.html
index 2f2184b3749d15eb0719d3e7abd33ad65d9b1619..34ae54c4fdb787a56df9b9e8b98d7002e313337e 100644
--- a/_templates/versions.html
+++ b/_templates/versions.html
@@ -3,19 +3,19 @@
   <div class="rst-versions" data-toggle="rst-versions" role="note" aria-label="versions">
     <span class="rst-current-version" data-toggle="rst-current-version">
       <span class="fa fa-book"> BeagleBoard Project</span>
-      v: latest
+      v: {{ pages_slug }}
       <span class="fa fa-caret-down"></span>
     </span>
     <div class="rst-other-versions">
       <dl>
         <dt>{{ _('Document Release Versions') }}</dt>
-          <dd><a href="">latest</a></dd>
-          <dd><a href="0.0.7">0.0.7</a></dd>
-          <dd><a href="0.1.0">0.1.0</a></dd>
+        {% for version_slug in versions %}
+          <dd><a href="{{pages_url}}/{{version_slug}}">{{ version_slug }}</a></dd>
+        {% endfor %}
       </dl>
       <dl>
         <dt>{{ _('Downloads') }}</dt>
-        <dd><a href="beagleboard-docs.pdf">PDF</a></dd>
+        <dd><a href="{{docs_url}}/beagleboard-docs.pdf">PDF</a></dd>
       </dl>
       <dl>
         <dt>{{ _('BeagleBoard.org Links') }}</dt>
diff --git a/boards/beagleboard/index.rst b/boards/beagleboard/index.rst
index beb56cd177881343655724e91d1d6a12736c7867..bcd643cdd5ff07b70062b767a6079b57ce7ee37a 100644
--- a/boards/beagleboard/index.rst
+++ b/boards/beagleboard/index.rst
@@ -1,3 +1,5 @@
+.. _beagleboard-boards-home:
+
 BeagleBoard (all)
 ###################
 
diff --git a/boards/beaglebone/ai-64/ch06.rst b/boards/beaglebone/ai-64/ch06.rst
deleted file mode 100644
index 22a616fbe05d6040db5842de940c2a8896faab7a..0000000000000000000000000000000000000000
--- a/boards/beaglebone/ai-64/ch06.rst
+++ /dev/null
@@ -1,1758 +0,0 @@
-:orphan:
-
-.. _detailed-hardware-design:
-
-Detailed Hardware Design
-#########################
-
-This section provides a detailed description of the Hardware design.
-This can be useful for interfacing, writing drivers, or using it to help
-modify specifics of your own design.
-
-:ref:`bbai-64-block-diagram-ch06` below is the high level block diagram of the board. For those who may be concerned, It is the same figure as shown in :ref:`beaglebone-ai-64-high-level-specification`. It is placed here again for convenience so it is closer to the topics to follow.
-
-.. _bbai-64-block-diagram-ch06:
-
-.. figure:: images/ch05/board-block-diagram.svg
-   :width: 400px
-   :align: center 
-   :alt: Fig: BeagleBone AI-64 Key Components
-
-   Fig: BeagleBone AI-64 Key Components
-
-.. _power-section:
-
-Power Section
------------------------------------
-
-:ref:`power-flow-diagram` shows the high level block diagram of the power section of the board.
-
-.. _power-flow-diagram,High level power block diagram:
-
-.. figure:: images/ch06/power.svg
-   :width: 400px
-   :align: center 
-   :alt: Fig: High level power block diagram
-
-   Fig: High level power block diagram
-
-This section describes the power section of the design and all the
-functions performed by the *TPS65941213 and TPS65941111*.
-
-.. _TPS65941213-and-TPS65941111-pmic:
-
-TPS65941213 and TPS65941111 PMIC
-*********************************************
-
-The main Power Management IC (PMIC) in the system is the *TPS65941213 and TPS65941111*
-which is a single chip power management IC consisting of a linear
-dual-input power path, three step-down converters, and four LDOs. LDO
-stands for Low Drop Out. If you want to know more about an LDO, you can
-go to `http://en.wikipedia.org/wiki/Low-dropout_regulator <http://en.wikipedia.org/wiki/Low-dropout_regulator>`_ .
-
-If you want to learn more about step-down converters, you can go to `_http://en.wikipedia.org/wiki/DC-to-DC_converter <http://en.wikipedia.org/wiki/DC-to-DC_converter>`_ .
-
-The system is supplied by a USB port or DC adapter. Three
-high-efficiency 2.25MHz step-down converters are targeted at providing
-the core voltage, MPU, and memory voltage for the board.
-
-The step-down converters enter a low power mode at light load for
-maximum efficiency across the widest possible range of load currents.
-For low-noise applications the devices can be forced into fixed
-frequency PWM using the I2C interface. The step-down converters allow
-the use of small inductors and capacitors to achieve a small footprint
-solution size.
-
-LDO1 and LDO2 are intended to support system standby mode. In normal
-operation, they can support up to 100mA each. LDO3 and LDO4 can support
-up to 285mA each.
-
-By default only LDO1 is always ON but any rail can be configured to
-remain up in SLEEP state. In particular the DCDC converters can remain
-up in a low-power PFM mode to support processor suspend mode. The
-*TPS65941213 and TPS65941111* offers flexible power-up and power-down sequencing and
-several house-keeping functions such as power-good output, pushbutton
-monitor, hardware reset function and temperature sensor to protect the
-battery.
-
-See the :ref:`TPS6594-Q1-block-diagram` shown below for high level details
-for *TPS65941213 and TPS65941111*, for more information on the, refer to https://www.ti.com/product/TPS6594-Q1 Texas instruments product page.
-
-.. _TPS6594-Q1-block-diagram:
-
-.. figure:: images/ch06/TPS6594-Q1.svg
-   :width: 400px
-   :align: center 
-   :alt: Fig: TPS6594-Q1 block diagram
-
-   Fig: TPS6594-Q1 block diagram
-
-.. _pmic-a-diagram,PMIC-A TPS65941213 circuit:
-
-.. figure:: images/ch06/pmic-a.svg
-   :width: 400px
-   :align: center 
-   :alt: Fig: PMIC-B TPS65941213 circuit
-
-   Fig: PMIC-B TPS65941213 circuit
-
-.. _pmic-b-diagram,PMIC-B TPS65941111 circuit:
-
-.. figure:: images/ch06/pmic-b.svg
-   :width: 400px
-   :align: center 
-   :alt: Fig: PMIC-B TPS65941111 circuit
-
-   Fig: PMIC-B TPS65941111 circuit
-
-.. _dc-input:
-
-DC Input
-***********
-
-:ref:`figure-23` below shows how the DC input is connected to the **TPS65941213 and TPS65941111**.
-
-.. _figure-23,Figure 23:
-
-.. figure:: media/image38.png
-   :width: 400px
-   :align: center 
-   :alt: Fig: TPS65217 DC Connection
-
-   Fig: TPS65217 DC Connection
-
-A 5VDC supply can be used to provide power to the board. The power
-supply current depends on how many and what type of add-on boards are
-connected to the board. For typical use, a 5VDC supply rated at 1A
-should be sufficient. If heavier use of the expansion headers or USB
-host port is expected, then a higher current supply will be required.
-
-The connector used is a 2.1MM center positive x 5.5mm outer barrel. The
-5VDC rail is connected to the expansion header. It is possible to power
-the board via the expansion headers from an add-on card. The 5VDC is
-also available for use by the add-on cards when the power is supplied by
-the 5VDC jack on the board.
-
-.. _usb-power:
-
-USB Power
-*************
-
-The board can also be powered from the USB port. A typical USB port is
-limited to 500mA max. When powering from the USB port, the VDD_5V rail
-is not provided to the expansion headers, so capes that require the 5V
-rail to supply the cape direct, bypassing the *TPS65941213 and TPS65941111*, will not have
-that rail available for use. The 5VDC supply from the USB port is
-provided on the SYS_5V, the one that comes from the**TPS65941213 and TPS65941111**, rail
-of the expansion header for use by a cape. *Figure 24* is the connection
-of the USB power input on the PMIC.
-
-.. _figure-24.-usb-power-connections:
-
-.. figure:: media/image96.png
-   :width: 400px
-   :align: center 
-   :alt: Fig: USB Power Connections
-
-   Fig: USB Power Connections
-
-
-
-.. _power-selection:
-
-Power Selection
-*********************************************
-
-The selection of either the 5VDC or the USB as the power source is
-handled internally to the *TPS65941213 and TPS65941111* and automatically switches to 5VDC
-power if both are connected. SW can change the power configuration via
-the I2C interface from the processor. In addition, the SW can read
-the**TPS65941213 and TPS65941111** and determine if the board is running on the 5VDC input
-or the USB input. This can be beneficial to know the capability of the
-board to supply current for things like operating frequency and
-expansion cards.
-
-It is possible to power the board from the USB input and then connect
-the DC power supply. The board will switch over automatically to the DC
-input.
-
-.. _power-button-1:
-
-Power Button
-*********************************************
-
-A power button is connected to the input of the *TPS65941213 and TPS65941111*. This is a
-momentary switch, the same type of switch used for reset and boot
-selection on the board.
-
-If you push the button the *TPS65941213 and TPS65941111* will send an interrupt to the
-processor. It is up to the processor to then pull the**PMIC_POWER_EN**
-pin low at the correct time to power down the board. At this point, the
-PMIC is still active, assuming that the power input was not removed.
-Pressing the power button will cause the board to power up again if the
-processor puts the board in the power off mode.
-
-In power off mode, the RTC rail is still active, keeping the RTC powered
-and running off the main power input. If you remove that power, then the
-RTC will not be powered. You also have the option of using the battery
-holes on the board to connect a battery if desired as discussed in the
-next section.
-
-If you push and hold the button for greater than 8 seconds, the PMIC
-will power down. But you must release the button when the power LED
-turns off. Holding the button past that point will cause the board to
-power cycle.
-
-.. _section-6-1-7,Section 6.1.7 Power Consumption:
-
-Power Consumption
-*********************************************
-
-The power consumption of the board varies based on power scenarios and
-the board boot processes. Measurements were taken with the board in the
-following configuration:
-
-* DC powered and USB powered
-* monitor connected
-* USB HUB
-* 4GB USB flash drive
-* Ethernet connected @ 100M
-* Serial debug cable connected
-
-:ref:`table-4` is an analysis of the power consumption of the board in these various scenarios.
-
-.. _table-4,Table 4:
-
-.. list-table:: Table 2: BeagleBone AI-64 Features and Specification
-   :header-rows: 1
-
-   * - MODE 
-     - USB 
-     - DC 
-     - C+USB
-   * - Reset 
-     - TBD 
-     - TBD 
-     - TBD
-   * - Idling @ UBoot 
-     - 210 
-     - 210 
-     - 210
-   * - Kernel Booting (Peak) 
-     - 460 
-     - 460 
-     - 460
-   * - Kernel Idling 
-     - 350 
-     - 350 
-     - 350
-   * - Kernel Idling Display Blank 
-     - 280 
-     - 280 
-     - 280
-   * - Loading a Webpage 
-     - 430 
-     - 430 
-     - 430
-
-The current will fluctuate as various activates occur, such as the LEDs
-on and microSD/eMMC accesses.
-
-.. _processor-interfaces:
-
-Processor Interfaces
-*********************************************
-
-The processor interacts with the *TPS65941213 and TPS65941111* via several different
-signals. Each of these signals is described below.
-
-.. _i2c0:
-
-I2C0
-************
-
-I2C0 is the control interface between the processor and the *TPS65941213 and TPS65941111*.
-It allows the processor to control the registers inside the**TPS65941213 and TPS65941111**
-for such things as voltage scaling and switching of the input rails.
-
-.. _pmc_powr_en:
-
-PMIC_POWR_EN
-******************
-
-On power up the *VDD_RTC* rail activates first. After the RTC circuitry
-in the processor has activated it instructs the**TPS65941213 and TPS65941111** to initiate
-a full power up cycle by activating the *PMIC_POWR_EN* signal by taking
-it HI. When powering down, the processor can take this pin low to start
-the power down process.
-
-.. _ldo_good:
-
-LDO_GOOD
-*********************
-
-This signal connects to the *RTC_PORZn* signal, RTC power on reset. The
-small “*n*” indicates that the signal is an active low signal. Word
-processors seem to be unable to put a bar over a word so the**n** is
-commonly used in electronics. As the RTC circuitry comes up first, this
-signal indicates that the LDOs, the 1.8V VRTC rail, is up and stable.
-This starts the power up process.
-
-.. _pmic_pgood:
-
-PMIC_PGOOD
-******************
-
-Once all the rails are up, the *PMIC_PGOOD* signal goes high. This
-releases the**PORZn** signal on the processor which was holding the
-processor reset.
-
-.. _wakeup:
-
-WAKEUP
-**************
-
-The WAKEUP signal from the *TPS65941213 and TPS65941111* is connected to the**EXT_WAKEUP**
-signal on the processor. This is used to wake up the processor when it
-is in a sleep mode. When an event is detected by the *TPS65941213 and TPS65941111*, such
-as the power button being pressed, it generates this signal.
-
-.. _pmic_int:
-
-PMIC_INT
-************
-
-The *PMIC_INT* signal is an interrupt signal to the processor. Pressing
-the power button will send an interrupt to the processor allowing it to
-implement a power down mode in an orderly fashion, go into sleep mode,
-or cause it to wake up from a sleep mode. All of these require SW
-support.
-
-.. _power-rails:
-
-6.1.9 Power Rails
-***********************
-
-:ref:`figure-25` shows the connections of each of the rails from the **TPS65941213 and TPS65941111**.
-
-.. _figure-25,Figure 25:
-
-.. figure:: media/image39.jpg
-   :width: 400px
-   :align: center 
-   :alt: fig-25: Power Rails
-
-   Fig-25: Power Rails
-
-VRTC Rail
-************
-
-The *VRTC* rail is a 1.8V rail that is the first rail to come up in the
-power sequencing. It provides power to the RTC domain on the processor
-and the I/O rail of the **TPS65941213 and TPS65941111**. It can deliver up to 250mA
-maximum.
-
-VDD_3V3A Rail
-*************************
-
-The *VDD_3V3A* rail is supplied by the **TPS65941213 and TPS65941111** and provides the
-3.3V for the processor rails and can provide up to 400mA.
-
-VDD_3V3B Rail
-**********************
-
-The current supplied by the *VDD_3V3A* rail is not sufficient to power
-all of the 3.3V rails on the board. So a second LDO is supplied, U4,
-a **TL5209A**, which sources the *VDD_3V3B* rail. It is powered up just
-after the *VDD_3V3A* rail.
-
-VDD_1V8 Rail
-*********************************************
-
-The *VDD_1V8* rail can deliver up to 400mA and provides the power
-required for the 1.8V rails on the processor and the display framer. This
-rail is not accessible for use anywhere else on the board.
-
-VDD_CORE Rail
-*********************************************
-
-The *VDD_CORE* rail can deliver up to 1.2A at 1.1V. This rail is not
-accessible for use anywhere else on the board and connects only to the
-processor. This rail is fixed at 1.1V and should not be adjusted by SW
-using the PMIC. If you do, then the processor will no longer work.
-
-VDD_MPU Rail
-*********************************************
-
-The *VDD_MPU* rail can deliver up to 1.2A. This rail is not accessible
-for use anywhere else on the board and connects only to the processor.
-This rail defaults to 1.1V and can be scaled up to allow for higher
-frequency operation. Changing of the voltage is set via the I2C
-interface from the processor.
-
-VDDS_DDR Rail
-*********************************************
-
-The *VDDS_DDR* rail defaults to**1.5V** to support the LPDDR4 rails and
-can deliver up to 1.2A. It is possible to adjust this voltage rail down
-to *1.35V* for lower power operation of the LPDDR4 device. Only LPDDR4
-devices can support this voltage setting of 1.35V.
-
-Power Sequencing
-*********************************************
-
-The power up process is consists of several stages and events. :ref:`figure-26`
-describes the events that make up the power up process for the
-processer from the PMIC. This diagram is used elsewhere to convey
-additional information. I saw no need to bust it up into smaller
-diagrams. It is from the processor datasheet supplied by Texas
-Instruments.
-
-.. _figure-26,Figure 26:
-
-.. figure:: media/image40.png
-   :width: 400px
-   :align: center 
-   :alt:  Fig-26: Power Rail Power Up Sequencing
-
-   Fig-26: Power Rail Power Up Sequencing
-
-:ref:`figure-27` the voltage rail sequencing for the**TPS65941213 and TPS65941111** as it
-powers up and the voltages on each rail. The power sequencing starts at
-15 and then goes to one. That is the way the *TPS65941213 and TPS65941111* is configured.
-You can refer to the TPS65941213 and TPS65941111 datasheet for more information.
-
-.. _figure-27,Figure 27:
-
-.. figure:: media/image41.png
-   :width: 400px
-   :align: center 
-   :alt: Fig-27: TPS65941213 and TPS65941111 Power Sequencing Timing
-
-   Fig-27: TPS65941213 and TPS65941111 Power Sequencing Timing
-
-.. _power-led:
-
-Power LED
-*********************************************
-
-The power LED is a blue LED that will turn on once the *TPS65941213 and TPS65941111* has
-finished the power up procedure. If you ever see the LED flash once,
-that means that the**TPS65941213 and TPS65941111** started the process and encountered an
-issue that caused it to shut down. The connection of the LED is shown in
-:ref:`figure-25`.
-
-.. _TPS65941213-and-TPS65941111-power-up-process:
-
-TPS65941213 and TPS65941111 Power Up Process
-*********************************************
-
-:ref:`figure-28` shows the interface between the **TPS65941213 and TPS65941111** and the
-processor. It is a cut from the PDF form of the schematic and reflects
-what is on the schematic.
-
-.. _figure-28,Figure 28:
-
-.. figure:: media/image42.jpg
-   :width: 400px
-   :align: center 
-   :alt: Fig-28: Power Processor Interfaces
-
-When voltage is applied, DC or USB, the *TPS65941213 and TPS65941111* connects the power
-to the SYS output pin which drives the switchers and LDOs in
-the **TPS65941213 and TPS65941111**.
-
-At power up all switchers and LDOs are off except for the *VRTC LDO*
-(1.8V), which provides power to the VRTC rail and controls
-the **RTC_PORZn** input pin to the processor, which starts the power up
-process of the processor. Once the RTC rail powers up, the *RTC_PORZn*
-pin, driven by the *LDO_PGOOD* signal from the *TPS65941213 and TPS65941111*, of the
-processor is released.
-
-Once the *RTC_PORZn* reset is released, the processor starts the
-initialization process. After the RTC stabilizes, the processor launches
-the rest of the power up process by activating the**PMIC_POWER_EN**
-signal that is connected to the *TPS65941213 and TPS65941111* which starts the *TPS65941213 and TPS65941111*
-power up process.
-
-The *LDO_PGOOD* signal is provided by the**TPS65941213 and TPS65941111** to the processor.
-As this signal is 1.8V from the *TPS65941213 and TPS65941111* by virtue of the *TPS65941213 and TPS65941111*
-VIO rail being set to 1.8V, and the *RTC_PORZ* signal on the processor
-is 3.3V, a voltage level shifter, *U4*, is used. Once the LDOs and
-switchers are up on the *TPS65941213 and TPS65941111*, this signal goes active releasing
-the processor. The LDOs on the *TPS65941213 and TPS65941111* are used to power the VRTC
-rail on the processor.
-
-.. _processor-control-interface:
-
-Processor Control Interface
-*********************************************
-
-:ref:`figure-28` above shows two interfaces between the processor and
-the**TPS65941213 and TPS65941111** used for control after the power up sequence has
-completed.
-
-The first is the *I2C0* bus. This allows the processor to turn on and
-off rails and to set the voltage levels of each regulator to supports
-such things as voltage scaling.
-
-The second is the interrupt signal. This allows the *TPS65941213 and TPS65941111* to alert
-the processor when there is an event, such as when the power button is
-pressed. The interrupt is an open drain output which makes it easy to
-interface to 3.3V of the processor.
-
-.. _low-power-mode-support:
-
-Low Power Mode Support
-*********************************************
-
-This section covers three general power down modes that are available.
-These modes are only described from a Hardware perspective as it relates
-to the HW design.
-
-RTC Only
-*********************************************
-
-In this mode all rails are turned off except the *VDD_RTC*. The
-processor will need to turn off all the rails to enter this mode.
-The **VDD_RTC** staying on will keep the RTC active and provide for the
-wakeup interfaces to be active to respond to a wake up event.
-
-RTC Plus DDR
-*********************************************
-
-In this mode all rails are turned off except the *VDD_RTC* and
-the **VDDS_DDR**, which powers the LPDDR4 memory. The processor will need
-to turn off all the rails to enter this mode. The *VDD_RTC* staying on
-will keep the RTC active and provide for the wakeup interfaces to be
-active to respond to a wake up event.
-
-The *VDDS_DDR* rail to the LPDDR4 is provided by the 1.5V rail of
-the **TPS65941213 and TPS65941111** and with *VDDS_DDR* active, the LPDDR4 can be placed in
-a self refresh mode by the processor prior to power down which allows
-the memory data to be saved.
-
-Currently, this feature is not included in the standard software
-release. The plan is to include it in future releases.
-
-Voltage Scaling
-*********************************************
-
-For a mode where the lowest power is possible without going to sleep,
-this mode allows the voltage on the ARM processor to be lowered along
-with slowing the processor frequency down. The I2C0 bus is used to
-control the voltage scaling function in the *TPS65941213 and TPS65941111*.
-
-.. _sitara-am3358bzcz100-processor:
-
-TI J721E DRA829/TDA4VM/AM752x Processor
------------------------------------------
-
-The board is designed to use the TI J721E DRA829/TDA4VM/AM752x processor in the
-15 x 15 package. 
-
-.. _description:
-
-Description
-*********************************************
-
-:ref:`figure-29` is a high level block diagram of the processor. For more information on the processor, go to `https://www.ti.com/product/TDA4VM <https://www.ti.com/product/TDA4VM>`_
-
-.. _figure-29,Figure 29:
-
-.. figure:: media/image43.png
-   :width: 400px
-   :align: center 
-   :alt: Fig-29: Jacinto TDA4VMBZCZ Block Diagram
-
-   Fig-29: Jacinto TDA4VMBZCZ Block Diagram
-
-
-.. _high-level-features:
-
-High Level Features
-*********************************************
-
-:ref:`table-5` below shows a few of the high level features of the Jacinto
-processor.
-
-.. _table-5,Table 5:
-
-
-.. list-table:: Table 5: Processor Features
-   :header-rows: 1
-
-   * - Operating Systems 
-     - Linux, Android, Windows Embedded CE,QNX,ThreadX 
-     - MMC/SD 
-     - 3
-   * - Standby Power 
-     - 7 mW 
-     - CAN 
-     - 2
-   * - ARM CPU 
-     - 1 ARM Cortex-A8 
-     - UART (SCI) 
-     - 6
-   * - ARM MHz (Max.) 
-     - 275,500,600,800,1000 
-     - ADC 
-     - 8-ch 12-bit
-   * - ARM MIPS (Max.) 
-     - 1000,1200,2000 
-     - PWM (Ch) 
-     - 3
-   * - Graphics Acceleration 
-     - 1 3D 
-     - eCAP 
-     - 3
-   * - Other Hardware Acceleration 
-     - 2 PRU-ICSS,Crypto Accelerator 
-     - eQEP 
-     - 3
-   * - On-Chip L1 Cache 
-     - 64 KB (ARM Cortex-A8) 
-     - RTC 
-     - 1
-   * - On-Chip L2 Cache 
-     - 256 KB (ARM Cortex-A8) 
-     - I2C 
-     - 3
-   * - Other On-Chip Memory 
-     - 128 KB 
-     - McASP 
-     - 2
-   * - Display Options 
-     - LCD 
-     - SPI 
-     - 2
-   * - General Purpose Memory 
-     - 1 16-bit (GPMC, NAND flash, NOR Flash, SRAM)
-     - DMA (Ch) 
-     - 64-Ch EDMA
-   * - DRAM 
-     - 1 16-bit (LPDDR-400,DDR2-532, DDR3-400) 
-     - IO Supply (V) 
-     - 1.8V(ADC),3.3V
-   * - USB Ports 
-     - 2 
-     - Operating Temperature Range (C) 
-     - -40 to 90
-
-.. _documentation:
-
-Documentation
-**********************
-
-Full documentation for the processor can be found on the TI website at `https://www.ti.com/product/TDA4VM <https://www.ti.com/product/TDA4VM>`_ for the current processor used on the board. Make sure that you always use the latest datasheets and Technical Reference Manuals (TRM).
-
-.. _crystal-circuitry:
-
-Crystal Circuitry
-***********************
-
-:ref:`figure-30` is the crystal circuitry for the TDA4VM processor.
-
-.. _figure-30,Figure 30:
-
-.. figure:: media/image44.png
-   :width: 400px
-   :align: center 
-   :alt: Fig-30: Processor Crystals
-
-   Fig-30: Processor Crystals
-
-.. _reset-circuitry:
-
-Reset Circuitry
-*********************************************
-
-:ref:`figure-31` is the board reset circuitry. The initial power on reset is
-generated by the **TPS65941213 and TPS65941111** power management IC. It also handles the
-reset for the Real Time Clock.
-
-The board reset is the SYS_RESETn signal. This is connected to the
-NRESET_INOUT pin of the processor. This pin can act as an input or an
-output. When the reset button is pressed, it sends a warm reset to the
-processor and to the system.
-
-On the revision A5D board, a change was made. On power up, the
-NRESET_INOUT signal can act as an output. In this instance it can cause
-the SYS_RESETn line to go high prematurely. In order to prevent this,
-the PORZn signal from the TPS65941213 and TPS65941111 is connected to the SYS_RESETn line
-using an open drain buffer. These ensure that the line does not
-momentarily go high on power up.
-
-.. _figure-31,Figure 31:
-
-.. figure:: media/image45.png
-   :width: 400px
-   :align: center 
-   :alt: Fig-31: Board Reset Circuitry
-
-   Fig-31: Board Reset Circuitry
-
-This change is also in all revisions after A5D.
-
-LPDDR4 Memory
-
-BeagleBone AI-64 uses a single MT41K256M16HA-125 512MB LPDDR4 device
-from Micron that interfaces to the processor over 16 data lines, 16
-address lines, and 14 control lines. On rev C we added the Kingston
-*KE4CN2H5A-A58* device as a source for the LPDDR4 device.
-
-The following sections provide more details on the design.
-
-.. _memory-device:
-
-Memory Device
-*********************************************
-
-The design supports the standard DDR3 and LPDDR4 x16 devices and is built
-using the LPDDR4. A single x16 device is used on the board and there is
-no support for two x8 devices. The DDR3 devices work at 1.5V and the
-LPDDR4 devices can work down to 1.35V to achieve lower power. The LPDDR4 comes in a 96-BALL FBGA package
-with 0.8 mil pitch. Other standard DDR3 devices can also be supported,
-but the LPDDR4 is the lower power device and was chosen for its ability
-to work at 1.5V or 1.35V. The standard frequency that the LPDDR4 is run
-at on the board is 400MHZ.
-
-.. _ddr3l-memory-design:
-
-LPDDR4 Memory Design
-*********************************************
-
-:ref:`figure-32` is the schematic for the LPDDR4 memory device. Each of the
-groups of signals is described in the following lines.
-
-*Address Lines:*  Provide the row address for ACTIVATE commands, and the
-column address and auto pre-charge bit (A10) for READ/WRITE commands, to
-select one location out of the memory array in the respective bank. A10
-sampled during a PRECHARGE command determines whether the PRECHARGE applies to one bank (A10 LOW, bank selected by BA[2:0]) or all banks (A10 HIGH). The address
-inputs also provide the op-code during a LOAD MODE command. Address
-inputs are referenced to VREFCA. A12/BC#: When enabled in the mode
-register (MR), A12 is sampled during READ and WRITE commands to
-determine whether burst chop (on-the-fly) will be performed (HIGH  BL8
-or no burst chop, LOW  BC4 burst chop).
-
-*Bank Address Lines:*  BA[2:0] define the bank to which an ACTIVATE, READ, WRITE, or PRECHARGE command is being applied. BA[2:0] define which mode register (MR0, MR1, MR2, or MR3) is loaded during the LOAD MODE command. BA[2:0] are referenced to VREFCA.
-
-*CK and CK# Lines:* are differential clock inputs. All address and
-control input signals are sampled on the crossing of the positive edge
-of CK and the negative edge of CK#. Output data strobe (DQS, DQS#) is
-referenced to the crossings of CK and CK#.
-
-*Clock Enable Line:* CKE enables (registered HIGH) and disables
-(registered LOW) internal circuitry and clocks on the DRAM. The specific
-circuitry that is enabled/disabled is dependent upon the DDR3 SDRAM
-configuration and operating mode. Taking CKE LOW provides PRECHARGE
-power-down and SELF REFRESH operations (all banks idle) or active
-power-down (row active in any bank). CKE is synchronous for powerdown
-entry and exit and for self refresh entry. CKE is asynchronous for self
-refresh exit. Input buffers (excluding CK, CK#, CKE, RESET#, and ODT)
-are disabled during powerdown. Input buffers (excluding CKE and RESET#)
-are disabled during SELF REFRESH. CKE is referenced to VREFCA.
-
-.. _figure-32,Figure 32:
-
-.. figure:: media/image46.png
-   :width: 400px
-   :align: center 
-   :alt: Fig-32: LPDDR4 Memory Design
-
-   Fig-32: LPDDR4 Memory Design
-
-*Chip Select Line:* CS# enables (registered LOW) and disables
-(registered HIGH) the command decoder. All commands are masked when CS#
-is registered HIGH. CS# provides for external rank selection on systems
-with multiple ranks. CS# is considered part of the command code. CS# is
-referenced to VREFCA.
-
-*Input Data Mask Line:* DM is an input mask signal for write data. Input
-data is masked when DM is sampled HIGH along with the input data during
-a write access. Although the DM ball is input-only, the DM loading is
-designed to match that of the DQ and DQS balls. DM is referenced to
-VREFDQ.
-
-*On-die Termination Line:* ODT enables (registered HIGH) and disables
-(registered LOW) termination resistance internal to the LPDDR4 SDRAM.
-When enabled in normal operation, ODT is only applied to each of the
-following balls: DQ[7:0], DQS, DQS#, and DM for the x8; DQ[3:0], DQS,
-DQS#, and DM for the x4. The ODT input is ignored if disabled via the
-LOAD MODE command. ODT is referenced to VREFCA.
-
-.. _power-rails-1:
-
-Power Rails
-******************
-
-The *LPDDR4* memory device and the DDR3 rails on the processor are
-supplied by the**TPS65941213 and TPS65941111**. Default voltage is 1.5V but can be scaled
-down to 1.35V if desired.
-
-.. _vref:
-
-VREF
-***************
-
-The *VREF* signal is generated from a voltage divider on the **VDDS_DDR**
-rail that powers the processor DDR rail and the LPDDR4 device itself.
-*Figure 33* below shows the configuration of this signal and the
-connection to the LPDDR4 memory device and the processor.
-
-.. _figure-33,Figure 33:
-
-.. figure:: media/image47.jpg
-   :width: 400px
-   :align: center 
-   :alt: Fig-33: LPDDR4 VREF Design
-
-   Fig-33: LPDDR4 VREF Design
-
-
-
-.. _gb-emmc-memory:
-
-4GB eMMC Memory
------------------------------------
-
-The eMMC is a communication and mass data storage device that includes a
-Multi-MediaCard (MMC) interface, a NAND Flash component, and a
-controller on an advanced 11-signal bus, which is compliant with the MMC
-system specification. The nonvolatile eMMC draws no power to maintain
-stored data, delivers high performance across a wide range of operating
-temperatures, and resists shock and vibration disruption.
-
-One of the issues faced with SD cards is that across the different
-brands and even within the same brand, performance can vary. Cards use
-different controllers and different memories, all of which can have bad
-locations that the controller handles. But the controllers may be
-optimized for reads or writes. You never know what you will be getting.
-This can lead to varying rates of performance. The eMMC card is a known
-controller and when coupled with the 8bit mode, 8 bits of data instead
-of 4, you get double the performance which should result in quicker boot
-times.
-
-The following sections describe the design and device that is used on
-the board to implement this interface.
-
-.. _emmc-device:
-
-eMMC Device
-*********************************************
-
-The device used is one of two different devices:
-
-* Micron *MTFC4GLDEA 0M WT*
-* Kingston *KE4CN2H5A-A58*
-
-The package is a 153 ball WFBGA device on both devices.
-
-.. _emmc-circuit-design:
-
-eMMC Circuit Design
-*********************************************
-
-:ref:`figure-34` is the design of the eMMC circuitry. The eMMC device is
-connected to the MMC1 port on the processor. MMC0 is still used for the
-microSD card as is currently done on the BeagleBone Black. The size
-of the eMMC supplied is now 4GB.
-
-The device runs at 3.3V both internally and the external I/O rails. The
-VCCI is an internal voltage rail to the device. The manufacturer
-recommends that a 1uF capacitor be attached to this rail, but a 2.2uF
-was chosen to provide a little margin.
-
-Pullup resistors are used to increase the rise time on the signals to
-compensate for any capacitance on the board.
-
-.. _figure-34,Figure 34:
-
-.. figure:: media/image48.png
-   :width: 400px
-   :align: center 
-   :alt: Fig-34: eMMC Memory Design
-
-   Fig-34: eMMC Memory Design
-
-
-
-The pins used by the eMMC1 in the boot mode are listed below in *Table 6*.
-
-.. _table-6,Table 6:
-
-.. figure:: media/image49.png
-   :width: 400px
-   :align: center 
-   :alt: Table 6: eMMC Boot Pins
-
-   Table 6: eMMC Boot Pins
-
-
-For eMMC devices the ROM will only support raw mode. The ROM Code reads
-out raw sectors from image or the booting file within the file system
-and boots from it. In raw mode the booting image can be located at one
-of the four consecutive locations in the main area: offset 0x0 / 0x20000
-(128 KB) / 0x40000 (256 KB) / 0x60000 (384 KB). For this reason, a
-booting image shall not exceed 128KB in size. However it is possible to
-flash a device with an image greater than 128KB starting at one of the
-aforementioned locations. Therefore the ROM Code does not check the
-image size. The only drawback is that the image will cross the
-subsequent image boundary. The raw mode is detected by reading sectors
-#0, #256, #512, #768. The content of these sectors is then verified for
-presence of a TOC structure. In the case of a *GP Device*, a
-Configuration Header (CH)*must* be located in the first sector followed
-by a *GP header*. The CH might be void (only containing a CHSETTINGS
-item for which the Valid field is zero).
-
-The ROM only supports the 4-bit mode. After the initial boot, the switch
-can be made to 8-bit mode for increasing the overall performance of the
-eMMC interface.
-
-.. _board-id-eeprom:
-
-Board ID EEPROM
------------------------------------
-
-BeagleBone is equipped with a single 32Kbit(4KB) 24LC32AT-I/OT
-EEPROM to allow the SW to identify the board. *Table 7* below defined
-the contents of the EEPROM.
-
-.. _table-7,Table 7:
-
-.. list-table:: Table 7: EEPROM Contents
-   :header-rows: 1
-
-   * - Name    
-     - Size (bytes)    
-     - Contents   
-   * - Header    
-     - 4    
-     - 0xAA, 0x55, 0x33, EE   
-   * - Board Name    
-     - 8    
-     - Name for board in ASCII: A335BNLT   
-   * - Version    
-     - 4    
-     - Hardware version code for board in ASCII: 00A3 for Rev A3, 00A4 for Rev A4, 00A5 for Rev A5,00A6 for Rev A6,00B0 for Rev B, and 00C0 for Rev C.   
-   * - Serial Number    
-     - 12    
-     - Serial number of the board. This is a 12 character string which is: WWYY4P16nnnn where: WW  2 digit week of the year of production YY  2 digit year of production BBBK  BeagleBone AI-64 nnnn  incrementing board number   
-   * - Configuration Option    
-     - 32    
-     - Codes to show the configuration setup on this board.All FF   
-   * - RSVD    
-     - 6    
-     - FF FF FF FF FF FF   
-   * - RSVD    
-     - 6    
-     - FF FF FF FF FF FF   
-   * - RSVD    
-     - 6    
-     - FF FF FF FF FF FF   
-   * - Available    
-     - 4018    
-     - Available space for other non-volatile codes/data   
-
-:ref:`figure-35` shows the new design on the EEPROM interface.
-
-.. _figure-35,Figure 35:
-
-.. figure:: media/image50.png
-   :width: 400px
-   :align: center 
-   :alt: Figure 35. EEPROM Design Rev A5
-
-   Fig-35: EEPROM Design Rev A5
-
-
-
-The EEPROM is accessed by the processor using the I2C 0 bus. The *WP*
-pin is enabled by default. By grounding the test point, the write
-protection is removed.
-
-The first 48 locations should not be written to if you choose to use the
-extras storage space in the EEPROM for other purposes. If you do, it
-could prevent the board from booting properly as the SW uses this
-information to determine how to set up the board.
-
-.. _micro-secure-digital:
-
-Micro Secure Digital
------------------------------------
-
-The microSD connector on the board will support a microSD card that can
-be used for booting or file storage on BeagleBone AI-64.
-
-.. _microsd-design:
-
-microSD Design
-*********************************************
-
-:ref:`figure-36` below is the design of the microSD interface on the board.
-
-.. _figure-36,Figure 36:
-
-.. figure:: media/image51.png
-   :width: 400px
-   :align: center 
-   :alt: Figure 36. microSD Design
-
-   Fig-36: microSD Design
-
-
-
-The signals *MMC0-3* are the data lines for the transfer of data between
-the processor and the microSD connector.
-
-The *MMC0_CLK* signal clocks the data in and out of the microSD card.
-
-The *MMCO_CMD* signal indicates that a command versus data is being sent.
-
-There is no separate card detect pin in the microSD specification. It
-uses *MMCO_DAT3* for that function. However, most microSD connectors
-still supply a CD function on the connectors. In BeagleBone AI-64
-design, this pin is connected to the**MMC0_SDCD** pin for use by the
-processor. You can also change the pin to *GPIO0_6*, which is able to
-wake up the processor from a sleep mode when an microSD card is inserted
-into the connector.
-
-Pullup resistors are provided on the signals to increase the rise times
-of the signals to overcome PCB capacitance.
-
-Power is provided from the *VDD_3V3B* rail and a 10uF capacitor is
-provided for filtering.
-
-.. _user-leds:
-
-User LEDs
------------------------------------
-
-There are four user LEDs on BeagleBone AI-64. These are connected to
-GPIO pins on the processor. *Figure 37* shows the interfaces for the
-user LEDs.
-
-.. _figure-37,Figure 37:
-
-.. figure:: media/image52.png
-   :width: 400px
-   :align: center 
-   :alt: Figure 37. User LEDs
-
-   Fig-37: User LEDs
-
-Resistors R71-R74 were changed to 4.75K on the revision A5B and later
-boards.
-
-:ref:`table-8` shows the signals used to control the four LEDs from the
-processor.
-
-.. _table-8,Table 8:
-
-.. list-table:: Table 8: User LED Control Signals/Pins
-   :header-rows: 1
-
-   * - LED 
-     - GPIO SIGNAL 
-     - PROC PIN
-   * - USR0 
-     - GPIO1_21 
-     - V15
-   * - USR1 
-     - GPIO1_22 
-     - U15
-   * - USR2 
-     - GPIO1_23 
-     - T15
-   * - USR3 
-     - GPIO1_24 
-     - V16
-
-   
-
-A logic level of “1” will cause the LEDs to turn on.
-
-.. _boot-configuration:
-
-Boot Configuration
------------------------------------
-
-The design supports two groups of boot options on the board. The user
-can switch between these modes via the Boot button. The primary boot
-source is the onboard eMMC device. By holding the Boot button, the user
-can force the board to boot from the microSD slot. This enables the eMMC
-to be overwritten when needed or to just boot an alternate image. The
-following sections describe how the boot configuration works.
-
-In most applications, including those that use the provided demo
-distributions available from `beagleboard.org <http://beagleboard.org/>`_ the processor-external boot code is composed of two stages. After the
-primary boot code in the processor ROM passes control, a secondary stage
-(secondary program loader -- "SPL" or "MLO") takes over. The SPL stage
-initializes only the required devices to continue the boot process, and
-then control is transferred to the third stage "U-boot". Based on the
-settings of the boot pins, the ROM knows where to go and get the SPL and
-UBoot code. In the case of BeagleBone AI-64, that is either eMMC or
-microSD based on the position of the boot switch.
-
-.. _boot-configuration-design:
-
-Boot Configuration Design
-*********************************************
-
-:ref:`figure-38` shows the circuitry that is involved in the boot
-configuration process. On power up, these pins are read by the processor
-to determine the boot order. S2 is used to change the level of one bit
-from HI to LO which changes the boot order.
-
-.. _figure-38,Figure 38:
-
-.. figure:: media/image53.png
-   :width: 400px
-   :align: center 
-   :alt: Figure 38. Processor Boot Configuration Design
-
-   Fig-38: Processor Boot Configuration Design
-
-It is possible to override these setting via the expansion headers. But
-be careful not to add too much load such that it could interfere with
-the operation of the display interface or LCD panels. If you choose to
-override these settings, it is strongly recommended that you gate these
-signals with the *SYS_RESETn* signal. This ensures that after coming out
-of reset these signals are removed from the expansion pins.
-
-.. _default-boot-options:
-
-Default Boot Options
------------------------------------
-
-Based on the selected option found in :ref:`figure-39` below, each of the
-boot sequences for each of the two settings is shown.
-
-.. _figure-39,Figure 39:
-
-.. figure:: media/image54.jpg
-   :width: 400px
-   :align: center 
-   :alt: Figure 39. Processor Boot Configuration
-
-   Fig-39: Processor Boot Configuration
-
-The first row in :ref:`figure-39` is the default setting. On boot, the
-processor will look for the eMMC on the MMC1 port first, followed by the
-microSD slot on MMC0, USB0 and UART0. In the event there is no microSD
-card and the eMMC is empty, UART0 or USB0 could be used as the board
-source.
-
-If you have a microSD card from which you need to boot from, hold the
-boot button down. On boot, the processor will look for the SPIO0 port
-first, then microSD on the MMC0 port, followed by USB0 and UART0. In the
-event there is no microSD card and the eMMC is empty, USB0 or UART0
-could be used as the board source.
-
-.. _ethernet:
-
-10/100 Ethernet
------------------------------------
-
-BeagleBone AI-64 is equipped with a 10/100 Ethernet interface. It
-uses the same PHY as is used on the BeagleBone Black. The design is
-described in the following sections.
-
-.. _ethernet-processor-interface:
-
-Ethernet Processor Interface
-*********************************************
-
-:ref:`figure-40` shows the connections between the processor and the PHY. The
-interface is in the MII mode of operation.
-
-.. _figure-40,Figure 40:
-
-.. figure:: media/image55.png
-   :width: 400px
-   :align: center 
-   :alt: Figure 40. Ethernet Processor Interface
-
-   Fig-40: Ethernet Processor Interface
-
-
-
-This is the same interface as is used on BeagleBone. No changes were
-made in this design for the board.
-
-.. _ethernet-connector-interface:
-
-Ethernet Connector Interface
-*********************************************
-
-The off board side of the PHY connections are shown in *Figure 41*
-below.
-
-.. _figure-41,Figure 41:
-
-.. figure:: media/image56.png
-   :width: 400px
-   :align: center 
-   :alt: Figure 41. Ethernet Connector Interface
-
-   Fig-41: Ethernet Connector Interface
-
-This is the same interface as is used on BeagleBone. No changes were
-made in this design for the board.
-
-.. _ethernet-phy-power-reset-and-clocks:
-
-Ethernet PHY Power, Reset, and Clocks
-*********************************************
-
-:ref:`figure-42` shows the power, reset, and lock connections to
-the **LAN8710A** PHY. Each of these areas is discussed in more detail in
-the following sections.
-
-.. _figure-42,Figure 42:
-
-.. figure:: media/image57.png
-   :width: 400px
-   :align: center 
-   :alt: .Figure 42. Ethernet PHY, Power, Reset, and Clocks
-
-   Fig-42: Ethernet PHY, Power, Reset, and Clocks
-
-
-
-VDD_3V3B Rail
-*****************
-
-The VDD_3V3B rail is the main power rail for the *LAN8710A*. It
-originates at the VD_3V3B regulator and is the primary rail that
-supports all of the peripherals on the board. This rail also supplies
-the VDDIO rails which set the voltage levels for all of the I/O signals
-between the processor and the **LAN8710A**.
-
-VDD_PHYA Rail
-*******************
-
-A filtered version of VDD_3V3B rail is connected to the VDD rails of the
-LAN8710 and the termination resistors on the Ethernet signals. It is
-labeled as *VDD_PHYA*. The filtering inductor helps block transients
-that may be seen on the VDD_3V3B rail.
-
-PHY_VDDCR Rail
-*********************
-
-The *PHY_VDDCR* rail originates inside the LAN8710A. Filter and bypass
-capacitors are used to filter the rail. Only circuitry inside the
-LAN8710A uses this rail.
-
-SYS_RESET
-******************
-
-The reset of the LAN8710A is controlled via the *SYS_RESETn* signal, the
-main board reset line.
-
-Clock Signals
-*********************
-
-A crystal is used to create the clock for the LAN8710A. The processor
-uses the *RMII_RXCLK* signal to provide the clocking for the data
-between the processor and the LAN8710A.
-
-.. _lan8710a-mode-pins:
-
-LAN8710A Mode Pins
-*********************
-
-There are mode pins on the LAN8710A that sets the operational mode for
-the PHY when coming out of reset. These signals are also used to
-communicate between the processor and the LAN8710A. As a result, these
-signals can be driven by the processor which can cause the PHY not to be
-initialized correctly. To ensure that this does not happen, three low
-value pull up resistors are used. *Figure 43* below shows the three mode
-pin resistors.
-
-.. _figure-43,Figure 43:
-
-.. figure:: media/image97.png
-   :width: 400px
-   :align: center 
-   :alt: Figure 43. Ethernet PHY Mode Pins
-
-   Fig-43: Ethernet PHY Mode Pins
-
-This will set the mode to be 111, which enables all modes and enables
-auto-negotiation.
-
-.. _hdmi-interface-1:
-
-Display Port Interface
------------------------------------
-
-BeagleBone AI-64 has an onboard Display Port framer that converts the LCD
-signals and audio signals to drive a Display Port monitor. The design uses the on chip
-internal Display Port Framer.
-
-The following sections provide more detail into the design of this
-interface.
-
-.. _supported-resolutions:
-
-Supported Resolutions
-****************************
-
-The maximum resolution supported by BeagleBone AI-64 is 1280x1024 @
-60Hz. *Table 9* below shows the supported resolutions. Not all
-resolutions may work on all monitors, but these have been tested and
-shown to work on at least one monitor. EDID is supported on the
-BeagleBone AI-64. Based on the EDID reading from the connected monitor,
-the highest compatible resolution is selected.
-
-.Table 9. HDMI Supported Monitor Adapter  Resolutions
-[cols"4,1",options"header",]
-
-.. list-table:: Table 9. HDMI Supported Monitor Adapter  Resolutions
-   :header-rows: 1
-
-   * - RESOLUTION    
-     - AUDIO
-   * - 800 x 600 @60Hz    
-     - 
-   * - 800 x 600 @56Hz    
-     - 
-   * - 640 x 480 @75Hz    
-     - 
-   * - 640 x 480 @60Hz    
-     - YES 
-   * - 720 x 400 @70Hz    
-     - 
-   * - 1280 x 1024 @75Hz    
-     - 
-   * - 1024 x 768 @75Hz    
-     - 
-   * - 1024 x 768 @70Hz    
-     - 
-   * - 1024 x 768 @60Hz    
-     - 
-   * - 800 x 600 @75Hz    
-     - 
-   * - 800 x 600 @72Hz    
-     - 
-   * - 720 x 480 @60Hz    
-     - YES 
-   * - 1280 x 720 @60Hz    
-     - YES 
-   * - 1920x1080 @24Hz    
-     - YES 
-
-
-.. note ::
-    
-   The updated software image used on the Rev A5B and later boards added support for 1920x1080@24HZ.
-
-
-Audio is limited to CEA supported resolutions. LCD panels only activate
-the audio in CEA modes. This is a function of the specification and is
-not something that can be fixed on the board via a hardware change or a
-software change.
-
-.. _hdmi-framer:
-
-Display Port Framer
-*********************************************
-
-insert processor  Display Port framer doc here
-
-.. _hdmi-video-processor-interface:
-
-Display Port Video Processor Interface
-*********************************************
-
-insert processor  Display Port V-interface doc here
-
-.. _hdmi-control-processor-interface:
-
-Display Port Control Processor Interface
-*********************************************
-
-insert processor  Display Port C-interface doc here
-
-.. _interrupt-signal:
-
-Interrupt Signal
-*********************************************
-
-insert processor  Display Port interrupt doc here
-
-.. _audio-interface:
-
-Audio Interface
-*********************************************
-
-insert processor  Display Port audio doc here
-
-.. _power-connections:
-
-Power Connections
-*********************************************
-
-guesing this doesn’t exist on this device
-
-.. _hdmi-connector-interface:
-
-miniDP Connector Interface
-*********************************************
-
-insert processor  Mini Display Port connector  doc here
-
-.. _usb-host:
-
-USB Host
------------------------------------
-
-The board is equipped with a single USB host interface accessible from a
-single USB Type A female connector. :ref:`figure-48` is the design of the USB
-Host circuitry.
-
-.. _figure-48,Figure 48:
-
-.. figure:: media/image66.png
-   :width: 400px
-   :align: center 
-   :alt: Figure 48. USB Host circuit
-
-   Fig-48: USB Host circuit
-
-.. _power-switch:
-
-Power Switch
-*********************************************
-
-*U8* is a switch that allows the power to the connector to be turned on
-or off by the processor. It also has an over current detection that can
-alert the processor if the current gets too high via the**USB1_OC**
-signal. The power is controlled by the *USB1_DRVBUS* signal from the
-processor.
-
-.. _esd-protection:
-
-ESD Protection
-*********************************************
-
-*U9* is the ESD protection for the signals that go to the connector.
-
-.. _filter-options:
-
-Filter Options
-*********************************************
-
-*FB7* and **FB8** were added to assist in passing the FCC emissions test.
-The *USB1_VBUS* signal is used by the processor to detect that the 5V is
-present on the connector. *FB7* is populated and *FB8* is replaced with
-a .1 ohm resistor.
-
-.. _pru-icss:
-
-PRU-ICSS
------------------------------------
-
-The PRU-ICSS module is located inside the TDA4VM processor. Access to
-these pins is provided by the expansion headers and is multiplexed with
-other functions on the board. Access is not provided to all of the
-available pins.
-
-All documentation is located at http://git.beagleboard.org/beagleboard/am335x_pru_package
-
-This feature is not supported by Texas Instruments.
-
-.. _pru-icss-features:
-
-PRU-ICSS Features
-*********************************************
-
-The features of the PRU-ICSS include:
-
-Two independent programmable real-time (PRU) cores:
-
-* 32-Bit Load/Store RISC architecture
-* 8K Byte instruction RAM (2K instructions) per core
-* 8K Bytes data RAM per core
-* 12K Bytes shared RAM
-* Operating frequency of 200 MHz
-* PRU operation is little endian similar to ARM processor
-* All memories within PRU-ICSS support parity
-* Includes Interrupt Controller for system event handling
-* Fast I/O interface
-
-*16 input pins and 16 output pins per PRU core. (Not all of these are
-accessible on BeagleBone AI-64).*
-
-.. _pru-icss-block-diagram:
-
-PRU-ICSS Block Diagram
-*****************************
-
-:ref:`figure-49` is a high level block diagram of the PRU-ICSS.
-
-.. _figure-49,Figure 49:
-
-.. figure:: media/image67.png
-   :width: 400px
-   :align: center 
-   :alt: PRU-ICSS Block Diagram
-
-   PRU-ICSS Block Diagram
-
-.. _pru-icss-pin-access:
-
-PRU-ICSS Pin Access
-*********************************************
-
-Both PRU 0 and PRU1 are accessible from the expansion headers. Some may
-not be useable without first disabling functions on the board like LCD
-for example. Listed below is what ports can be accessed on each PRU.
-
-* 8 outputs or 9 inputs PRU1
-* 13 outputs or 14 inputs
-* UART0_TXD, UART0_RXD, UART0_CTS, UART0_RTS
-
-:ref:`table-11` below shows which PRU-ICSS signals can be accessed on the
-BeagleBone AI-64 and on which connector and pins they are accessible
-from. Some signals are accessible on the same pins.
-
-.. _table-11,Table 11:
-
-.. list-table:: Table 11: PRU0 and PRU1 Access
-   :header-rows: 1
-
-   * - 
-     - PIN 
-     - PROC 
-     - NAME 
-     - 
-     -
-     -
-   * - P8 
-     - 11 
-     - R12 
-     - GPIO1_13 
-     - 
-     - pr1_pru0_pru_r30_15 (Output)  
-     - 
-   * - 
-     - 12 
-     - T12 
-     - GPIO1_12 
-     - 
-     - pr1_pru0_pru_r30_14 (Output) 
-     - 
-   * - 
-     - 15 
-     - U13 
-     - GPIO1_15 
-     - 
-     - pr1_pru0_pru_r31_15 (Input) 
-     - 
-   * - 
-     - 16 
-     - V13 
-     - GPIO1_14 
-     - 
-     - pr1_pru0_pru_r31_14 (Input) 
-     - 
-   * - 
-     - 20 
-     - V9 
-     - GPIO1_31 
-     - pr1_pru1_pru_r30_13 (Output) 
-     - pr1_pru1_pru_r31_13 (INPUT) 
-     - 
-   * -
-     - 21 
-     - U9 
-     - GPIO1_30 
-     - pr1_pru1_pru_r30_12 (Output) 
-     - pr1_pru1_pru_r31_12 (INPUT) 
-     - 
-   * - 
-     - 27 
-     - U5 
-     - GPIO2_22 
-     - pr1_pru1_pru_r30_8 (Output) 
-     - pr1_pru1_pru_r31_8 (INPUT) 
-     - 
-   * - 
-     - 28 
-     - V5 
-     - GPIO2_24 
-     - pr1_pru1_pru_r30_10 (Output) 
-     - pr1_pru1_pru_r31_10 (INPUT) 
-     - 
-   * -
-     - 29 
-     - R5 
-     - GPIO2_23 
-     - pr1_pru1_pru_r30_9 (Output) 
-     - pr1_pru1_pru_r31_9 (INPUT) 
-     - 
-   * - 
-     - 39 
-     - T3 
-     - GPIO2_12 
-     - pr1_pru1_pru_r30_6 (Output) 
-     - pr1_pru1_pru_r31_6 (INPUT) 
-     - 
-   * -
-     - 40 
-     - T4 
-     - GPIO2_13 
-     - pr1_pru1_pru_r30_7 (Output) 
-     - pr1_pru1_pru_r31_7 (INPUT) 
-     -
-   * - 
-     - 41 
-     - T1 
-     - GPIO2_10 
-     - pr1_pru1_pru_r30_4 (Output) 
-     - pr1_pru1_pru_r31_4 (INPUT) 
-     - 
-   * -
-     - 42 
-     - T2 
-     - GPIO2_11 
-     - pr1_pru1_pru_r30_5 (Output) 
-     - pr1_pru1_pru_r31_5 (INPUT) 
-     - 
-   * - 
-     - 43 
-     - R3 
-     - GPIO2_8 
-     - pr1_pru1_pru_r30_2 (Output) 
-     - pr1_pru1_pru_r31_2 (INPUT) 
-     - 
-   * -
-     - 44 
-     - R4 
-     - GPIO2_9 
-     - pr1_pru1_pru_r30_3 (Output) 
-     - pr1_pru1_pru_r31_3 (INPUT) 
-     - 
-   * -
-     - 45 
-     - R1 
-     - GPIO2_6 
-     - pr1_pru1_pru_r30_0 (Output) 
-     - pr1_pru1_pru_r31_0 (INPUT) 
-     - 
-   * -
-     - 46 
-     - R2 
-     - GPIO2_7 
-     - pr1_pru1_pru_r30_1 (Output) 
-     - pr1_pru1_pru_r31_1 (INPUT) 
-     - 
-   * -
-     -
-     -
-     -
-     -
-     -
-     -
-   * - P9 
-     - 17 
-     - A16 
-     - I2C1_SCL 
-     - pr1_uart0_txd 
-     - 
-     -
-   * -
-     - 18 
-     - B16 
-     - I2C1_SDA 
-     - pr1_uart0_rxd 
-     - 
-     -
-   * -
-     - 19 
-     - D17 
-     - I2C2_SCL 
-     - pr1_uart0_rts_n 
-     - 
-     -
-   * -
-     - 20 
-     - D18 
-     - I2C2_SDA 
-     - pr1_uart0_cts_n 
-     - 
-     - 
-   * -
-     - 21 
-     - B17 
-     - UART2_TXD 
-     - pr1_uart0_rts_n 
-     - 
-     -
-   * -
-     - 22 
-     - A17 
-     - UART2_RXD 
-     - pr1_uart0_cts_n 
-     - 
-     -
-   * -
-     - 24 
-     - D15 
-     - UART1_TXD 
-     - pr1_uart0_txd 
-     - pr1_pru0_pru_r31_16 (Input) 
-     - 
-   * -
-     - 25 
-     - A14 
-     - GPIO3_21footnote:[GPIO3_21 is also the 24.576MHZ clock input to the processor to enable HDMI audio. To use this pin the oscillator must be disabled.] 
-     - pr1_pru0_pru_r30_5 (Output) 
-     - pr1_pru0_pru_r31_5 (Input) 
-     - 
-   * -
-     - 26 
-     - D16 
-     - UART1_RXD 
-     - pr1_uart0_rxd 
-     - pr1_pru1_pru_r31_16 
-     -
-   * -
-     - 27 
-     - C13 
-     - GPIO3_19 
-     - pr1_pru0_pru_r30_7 (Output) 
-     - pr1_pru0_pru_r31_7 (Input) 
-     - 
-   * - 
-     - 28 
-     - C12 
-     - SPI1_CS0 
-     - eCAP2_in_PWM2_out 
-     - pr1_pru0_pru_r30_3 (Output) 
-     - pr1_pru0_pru_r31_3 (Input)
-   * -
-     - 29 
-     - B13 
-     - SPI1_D0 
-     - pr1_pru0_pru_r30_1 (Output) 
-     - pr1_pru0_pru_r31_1 (Input) 
-     - 
-   * -
-     - 30 
-     - D12 
-     - SPI1_D1 
-     - pr1_pru0_pru_r30_2 (Output) 
-     - pr1_pru0_pru_r31_2 (Input) 
-     -
-   * -
-     - 31 
-     - A13 
-     - SPI1_SCLK 
-     - pr1_pru0_pru_r30_0 (Output) 
-     - pr1_pru0_pru_r31_0 (Input) 
-     - 
-
-
diff --git a/boards/beaglebone/ai-64/ch07.rst b/boards/beaglebone/ai-64/ch07.rst
deleted file mode 100644
index 699101b182ef40081e0b50924ddac34b4a858e59..0000000000000000000000000000000000000000
--- a/boards/beaglebone/ai-64/ch07.rst
+++ /dev/null
@@ -1,394 +0,0 @@
-:orphan:
-
-.. _connectors:
-
-Connectors
-#############
-
-This section describes each of the connectors on the board.
-
-.. _section-7-1,Section 7.1 Expansion Connectors:
-
-Expansion Connectors
------------------------------
-
-The expansion interface on the board is comprised of two 46 pin
-connectors. All signals on the expansion headers are 3.3V unless
-otherwise indicated.
-
-.. note :: 
-   
-   Do not connect 5V logic level signals to these pins or the board will be damaged.
-
-.. note ::
-    
-   DO NOT APPLY VOLTAGE TO ANY I/O PIN WHEN POWER IS NOT SUPPLIED TO THE BOARD. IT WILL DAMAGE THE PROCESSOR AND VOID THE WARRANTY.
-   NO PINS ARE TO BE DRIVEN UNTIL AFTER THE SYS RESET LINE GOES HIGH.
-
-:ref:`figure-50` shows the location of the expansion connectors.
-
-.. _figure-50,Figure 50:
-
-.. figure:: media/image68.jpg
-   :width: 400px
-   :align: center 
-   :alt: Figure 50. Expansion Connector Location
-
-   Fig-50: Expansion Connector Location
-
-The location and spacing of the expansion headers are the same as on the BeagleBone Black.
-
-.. _connector-p8-and-p9:
-
-Connector P8 and P9
-**************************
-
-:ref:`table-12` shows the pin bindings for **P8** and **P9** expansion headers. Signals
-can be connected to theese connectors based on setting the pin mux on the
-processor, but this is the default settings on power up. The SW is
-responsible for setting the default function of each pin. There are some
-signals that have not been listed here. Refer to the processor
-documentation for more information on these pins and detailed
-descriptions of all of the pins listed. In some cases there may not be
-enough signals to complete a group of signals that may be required to
-implement a total interface.
-
-The *BALL NUMBER* Identifier is the pin number in the processor documentation.
-
-The *PIN No.* column is the pin number on the expansion header.
-
-The *ADDRESS* column is the pin CONFIGURATION address??? for each pin.
-
-The *MUXMODE[14:0] SETTINGS* are the possible pin configurations.
-
-
-*NOTE: DO NOT APPLY VOLTAGE TO ANY I/O PIN WHEN POWER IS NOT SUPPLIED TO
-THE BOARD. IT WILL DAMAGE THE PROCESSOR AND VOID THE WARRANTY.*
-
-*NO PINS ARE TO BE DRIVEN UNTIL AFTER THE SYS_RESET LINE GOES HIGH.*
-
-
-..
-  #TODO# this is a total mess!
-  | *PIN No.* | *ADDRESS* | *REGISTER NAME* | *BALL NUMBER* | *MUXMODE[14:0] SETTINGS* |||||||||||||||
-  | *PIN No.* | *ADDRESS* | *REGISTER NAME* | *BALL NUMBER* | *0* | *1* | *2* | *3* | *4* | *5* | *6* | *7* | *8* | *9* | *10* | *11* | *12* | *13* | *14* | *Bootstrap*  |
-  | P8_03 | 0x00011C054 | PADCONFIG21 | AH21 | PRG1_PRU0_GPO19 | PRG1_PRU0_GPI19 | PRG1_IEP0_EDC_SYNC_OUT0 | PRG1_PWM0_TZ_OUT |  | RMII5_TXD0 | MCAN6_TX | GPIO0_20 |  |  | VOUT0_EXTPCLKIN | VPFE0_PCLK | MCASP4_AFSX |  |  | 
-   |P8_04 |0x00011C0C4 | PADCONFIG49 | AC29 | PRG0_PRU0_GPO5 | PRG0_PRU0_GPI5 |  | PRG0_PWM3_B2 |  | RMII3_TXD0 |  | GPIO0_48 | GPMC0_AD0 |  |  |  | MCASP0_AXR3 |  |  | BOOTMODE2
-   |P8_05 |0x00011C088 | PADCONFIG34 | AH25 | PRG1_PRU1_GPO12 | PRG1_PRU1_GPI12 | PRG1_RGMII2_TD1 | PRG1_PWM1_A0 | RGMII2_TD1 |  | MCAN7_TX | GPIO0_33 | RGMII8_TD1 |  | VOUT0_DATA12 |  | MCASP9_AFSX |  |  | 
-   |P8_06 |0x00011C08C | PADCONFIG35 | AG25 | PRG1_PRU1_GPO13 | PRG1_PRU1_GPI13 | PRG1_RGMII2_TD2 | PRG1_PWM1_B0 | RGMII2_TD2 |  | MCAN7_RX | GPIO0_34 | RGMII8_TD2 |  | VOUT0_DATA13 | VPFE0_DATA8 | MCASP9_AXR0 | MCASP4_ACLKR |  | 
-   |P8_07 |0x00011C03C | PADCONFIG15 | AD24 | PRG1_PRU0_GPO14 | PRG1_PRU0_GPI14 | PRG1_RGMII1_TD3 | PRG1_PWM0_A1 | RGMII1_TD3 |  | MCAN5_RX | GPIO0_15 |  | RGMII7_TD3 | VOUT0_DATA19 | VPFE0_DATA3 | MCASP7_AXR1 |  |  | 
-   |P8_08 |0x00011C038 | PADCONFIG14 | AG24 | PRG1_PRU0_GPO13 | PRG1_PRU0_GPI13 | PRG1_RGMII1_TD2 | PRG1_PWM0_B0 | RGMII1_TD2 |  | MCAN5_TX | GPIO0_14 |  | RGMII7_TD2 | VOUT0_DATA18 | VPFE0_DATA2 | MCASP7_AXR0 |  |  | 
-   |P8_09 |0x00011C044 | PADCONFIG17 | AE24 | PRG1_PRU0_GPO16 | PRG1_PRU0_GPI16 | PRG1_RGMII1_TXC | PRG1_PWM0_A2 | RGMII1_TXC |  | MCAN6_RX | GPIO0_17 |  | RGMII7_TXC | VOUT0_DATA21 | VPFE0_DATA5 | MCASP7_AXR3 | MCASP7_AFSR |  | 
-   |P8_10 |0x00011C040 | PADCONFIG16 | AC24 | PRG1_PRU0_GPO15 | PRG1_PRU0_GPI15 | PRG1_RGMII1_TX_CTL | PRG1_PWM0_B1 | RGMII1_TX_CTL |  | MCAN6_TX | GPIO0_16 |  | RGMII7_TX_CTL | VOUT0_DATA20 | VPFE0_DATA4 | MCASP7_AXR2 | MCASP7_ACLKR |  | 
-   |P8_11 |0x00011C0F4 | PADCONFIG61 | AB24 | PRG0_PRU0_GPO17 | PRG0_PRU0_GPI17 | PRG0_IEP0_EDC_SYNC_OUT1 | PRG0_PWM0_B2 | PRG0_ECAP0_SYNC_OUT |  |  | GPIO0_60 | GPMC0_AD5 | OBSCLK1 |  |  | MCASP0_AXR13 |  |  | BOOTMODE7
-   |P8_12 |0x00011C0F0 | PADCONFIG60 | AH28 | PRG0_PRU0_GPO16 | PRG0_PRU0_GPI16 | PRG0_RGMII1_TXC | PRG0_PWM0_A2 | RGMII3_TXC |  |  | GPIO0_59 |  |  | DSS_FSYNC1 |  | MCASP0_AXR12 |  |  | 
-   |P8_13 |0x00011C168 | PADCONFIG90 | V27 | RGMII5_TD1 | RMII7_TXD1 | I2C3_SCL |  | VOUT1_DATA4 | TRC_DATA2 | EHRPWM0_B | GPIO0_89 | GPMC0_A5 |  |  |  | MCASP11_ACLKX |  |  | 
-   |P8_14 |0x00011C130 | PADCONFIG76 | AF27 | PRG0_PRU1_GPO12 | PRG0_PRU1_GPI12 | PRG0_RGMII2_TD1 | PRG0_PWM1_A0 | RGMII4_TD1 |  |  | GPIO0_75 |  |  |  |  | MCASP1_AXR8 |  | UART8_CTSn | 
-   |P8_15 |0x00011C0F8 | PADCONFIG62 | AB29 | PRG0_PRU0_GPO18 | PRG0_PRU0_GPI18 | PRG0_IEP0_EDC_LATCH_IN0 | PRG0_PWM0_TZ_IN | PRG0_ECAP0_IN_APWM_OUT |  |  | GPIO0_61 | GPMC0_AD6 |  |  |  | MCASP0_AXR14 |  |  | 
-   |P8_16 |0x00011C0FC | PADCONFIG63 | AB28 | PRG0_PRU0_GPO19 | PRG0_PRU0_GPI19 | PRG0_IEP0_EDC_SYNC_OUT0 | PRG0_PWM0_TZ_OUT |  |  |  | GPIO0_62 | GPMC0_AD7 |  |  |  | MCASP0_AXR15 |  |  | 
-   |P8_17 |0x00011C00C | PADCONFIG3 | AF22 | PRG1_PRU0_GPO2 | PRG1_PRU0_GPI2 | PRG1_RGMII1_RD2 | PRG1_PWM2_A0 | RGMII1_RD2 | RMII1_CRS_DV |  | GPIO0_3 | GPMC0_WAIT1 | RGMII7_RD2 |  |  | MCASP6_AXR0 |  | UART1_RXD | 
-   |P8_18 |0x00011C010 | PADCONFIG4 | AJ23 | PRG1_PRU0_GPO3 | PRG1_PRU0_GPI3 | PRG1_RGMII1_RD3 | PRG1_PWM3_A2 | RGMII1_RD3 | RMII1_RX_ER |  | GPIO0_4 | GPMC0_DIR | RGMII7_RD3 |  |  | MCASP6_AXR1 |  | UART1_TXD | 
-   |P8_19 |0x00011C164 | PADCONFIG89 | V29 | RGMII5_TD2 | UART3_TXD |  | SYNC3_OUT | VOUT1_DATA3 | TRC_DATA1 | EHRPWM0_A | GPIO0_88 | GPMC0_A4 |  |  |  | MCASP10_AXR1 |  |  | 
-   |P8_20 |0x00011C134 | PADCONFIG77 | AF26 | PRG0_PRU1_GPO13 | PRG0_PRU1_GPI13 | PRG0_RGMII2_TD2 | PRG0_PWM1_B0 | RGMII4_TD2 |  |  | GPIO0_76 |  |  |  |  | MCASP1_AXR9 |  | UART8_RTSn | 
-   |P8_21 |0x00011C07C | PADCONFIG31 | AF21 | PRG1_PRU1_GPO9 | PRG1_PRU1_GPI9 | PRG1_UART0_RXD |  | SPI6_CS3 | RMII6_RXD1 | MCAN8_TX | GPIO0_30 | GPMC0_CSn0 | PRG1_IEP0_EDIO_DATA_IN_OUT30 | VOUT0_DATA9 |  | MCASP4_AXR3 |  |  | 
-   |P8_22 |0x00011C014 | PADCONFIG5 | AH23 | PRG1_PRU0_GPO4 | PRG1_PRU0_GPI4 | PRG1_RGMII1_RX_CTL | PRG1_PWM2_B0 | RGMII1_RX_CTL | RMII1_TXD0 |  | GPIO0_5 | GPMC0_CSn2 | RGMII7_RX_CTL |  |  | MCASP6_AXR2 | MCASP6_ACLKR | UART2_RXD | 
-   |P8_23 |0x00011C080 | PADCONFIG32 | AB23 | PRG1_PRU1_GPO10 | PRG1_PRU1_GPI10 | PRG1_UART0_TXD | PRG1_PWM2_TZ_IN |  | RMII6_CRS_DV | MCAN8_RX | GPIO0_31 | GPMC0_CLKOUT | PRG1_IEP0_EDIO_DATA_IN_OUT31 | VOUT0_DATA10 | GPMC0_FCLK_MUX | MCASP5_ACLKX |  |  | 
-   |P8_24 |0x00011C018 | PADCONFIG6 | AD20 | PRG1_PRU0_GPO5 | PRG1_PRU0_GPI5 |  | PRG1_PWM3_B2 |  | RMII1_TX_EN |  | GPIO0_6 | GPMC0_WEn |  |  |  | MCASP3_AXR0 |  |  | BOOTMODE0
-   |P8_25 |0x00011C090 | PADCONFIG36 | AH26 | PRG1_PRU1_GPO14 | PRG1_PRU1_GPI14 | PRG1_RGMII2_TD3 | PRG1_PWM1_A1 | RGMII2_TD3 |  | MCAN8_TX | GPIO0_35 | RGMII8_TD3 |  | VOUT0_DATA14 |  | MCASP9_AXR1 | MCASP4_AFSR |  | 
-   |P8_26 |0x00011C0D0 | PADCONFIG52 | AC27 | PRG0_PRU0_GPO8 | PRG0_PRU0_GPI8 |  | PRG0_PWM2_A1 |  |  | MCAN9_RX | GPIO0_51 | GPMC0_AD2 |  |  |  | MCASP0_AXR6 |  | UART6_RXD | 
-   |P8_27 |0x00011C120 | PADCONFIG72 | AA28 | PRG0_PRU1_GPO8 | PRG0_PRU1_GPI8 |  | PRG0_PWM2_TZ_OUT |  |  | MCAN11_RX | GPIO0_71 | GPMC0_AD10 |  |  |  | MCASP1_AFSX |  |  | 
-   |P8_28 |0x00011C124 | PADCONFIG73 | Y24 | PRG0_PRU1_GPO9 | PRG0_PRU1_GPI9 | PRG0_UART0_RXD |  | SPI3_CS3 |  | PRG0_IEP0_EDIO_DATA_IN_OUT30 | GPIO0_72 | GPMC0_AD11 |  | DSS_FSYNC3 |  | MCASP1_AXR5 |  | UART8_RXD | 
-   |P8_29 |0x00011C128 | PADCONFIG74 | AA25 | PRG0_PRU1_GPO10 | PRG0_PRU1_GPI10 | PRG0_UART0_TXD | PRG0_PWM2_TZ_IN |  |  | PRG0_IEP0_EDIO_DATA_IN_OUT31 | GPIO0_73 | GPMC0_AD12 | CLKOUT |  |  | MCASP1_AXR6 |  | UART8_TXD | 
-   |P8_30 |0x00011C12C | PADCONFIG75 | AG26 | PRG0_PRU1_GPO11 | PRG0_PRU1_GPI11 | PRG0_RGMII2_TD0 |  | RGMII4_TD0 | RMII4_TX_EN |  | GPIO0_74 | GPMC0_A26 |  |  |  | MCASP1_AXR7 |  |  | 
-   |P8_31A |0x00011C084 | PADCONFIG33 | AJ25 | PRG1_PRU1_GPO11 | PRG1_PRU1_GPI11 | PRG1_RGMII2_TD0 |  | RGMII2_TD0 | RMII2_TX_EN |  | GPIO0_32 | RGMII8_TD0 | EQEP1_I | VOUT0_DATA11 |  | MCASP9_ACLKX |  |  | 
-   |P8_31B |0x00011C100 | PADCONFIG64 | AE29 | PRG0_PRU1_GPO0 | PRG0_PRU1_GPI0 | PRG0_RGMII2_RD0 |  | RGMII4_RD0 | RMII4_RXD0 |  | GPIO0_63 | UART4_CTSn |  |  |  | MCASP1_AXR0 |  | UART5_RXD | 
-   |P8_32A |0x00011C06C | PADCONFIG27 | AG21 | PRG1_PRU1_GPO5 | PRG1_PRU1_GPI5 |  |  |  | RMII5_TX_EN | MCAN6_RX | GPIO0_26 | GPMC0_WPn | EQEP1_S | VOUT0_DATA5 |  | MCASP4_AXR0 |  | TIMER_IO4 | 
-   |P8_32B |0x00011C104 | PADCONFIG65 | AD28 | PRG0_PRU1_GPO1 | PRG0_PRU1_GPI1 | PRG0_RGMII2_RD1 |  | RGMII4_RD1 | RMII4_RXD1 |  | GPIO0_64 | UART4_RTSn |  |  |  | MCASP1_AXR1 |  | UART5_TXD | 
-   |P8_33A |0x00011C068 | PADCONFIG26 | AH24 | PRG1_PRU1_GPO4 | PRG1_PRU1_GPI4 | PRG1_RGMII2_RX_CTL | PRG1_PWM2_B2 | RGMII2_RX_CTL | RMII2_TXD0 |  | GPIO0_25 | RGMII8_RX_CTL | EQEP1_B | VOUT0_DATA4 | VPFE0_DATA13 | MCASP8_AXR2 | MCASP8_ACLKR | TIMER_IO3 | 
-   |P8_33B |0x00011C1C0 | PADCONFIG112 | AA2 | SPI0_CS0 | UART0_RTSn |  |  |  |  |  | GPIO0_111 |  |  |  |  |  |  |  | 
-   |P8_34 |0x00011C01C | PADCONFIG7 | AD22 | PRG1_PRU0_GPO6 | PRG1_PRU0_GPI6 | PRG1_RGMII1_RXC | PRG1_PWM3_A1 | RGMII1_RXC | RMII1_TXD1 | AUDIO_EXT_REFCLK0 | GPIO0_7 | GPMC0_CSn3 | RGMII7_RXC |  |  | MCASP6_AXR3 | MCASP6_AFSR | UART2_TXD | 
-   |P8_35A |0x00011C064 | PADCONFIG25 | AD23 | PRG1_PRU1_GPO3 | PRG1_PRU1_GPI3 | PRG1_RGMII2_RD3 |  | RGMII2_RD3 | RMII2_RX_ER |  | GPIO0_24 | RGMII8_RD3 | EQEP1_A | VOUT0_DATA3 | VPFE0_WEN | MCASP8_AXR1 | MCASP3_AFSR | TIMER_IO2 | 
-   |P8_35B |0x00011C1D4 | PADCONFIG117 | Y3 | SPI1_CS0 | UART0_CTSn |  | UART5_RXD |  |  | PRG0_IEP0_EDIO_OUTVALID | GPIO0_116 | PRG0_IEP0_EDC_LATCH_IN0 |  |  |  |  |  |  | 
-   |P8_36 |0x00011C020 | PADCONFIG8 | AE20 | PRG1_PRU0_GPO7 | PRG1_PRU0_GPI7 | PRG1_IEP0_EDC_LATCH_IN1 | PRG1_PWM3_B1 |  | AUDIO_EXT_REFCLK1 | MCAN4_TX | GPIO0_8 |  |  |  |  | MCASP3_AXR1 |  |  | 
-   |P8_37A |0x00011C1AC | PADCONFIG107 | Y27 | RGMII6_RD2 | UART4_RTSn |  | UART5_TXD |  | TRC_DATA19 | EHRPWM5_A | GPIO0_106 | GPMC0_A22 |  |  |  | MCASP11_AXR5 |  |  | 
-   |P8_37B |0x00011C02C | PADCONFIG11 | AD21 | PRG1_PRU0_GPO10 | PRG1_PRU0_GPI10 | PRG1_UART0_RTSn | PRG1_PWM2_B1 | SPI6_CS2 | RMII5_CRS_DV |  | GPIO0_11 | GPMC0_BE0n_CLE | PRG1_IEP0_EDIO_DATA_IN_OUT29 | OBSCLK2 |  | MCASP3_AFSX |  |  | 
-   |P8_38A |0x00011C1A8 | PADCONFIG106 | Y29 | RGMII6_RD3 | UART4_CTSn |  | UART5_RXD | CLKOUT | TRC_DATA18 | EHRPWM_TZn_IN4 | GPIO0_105 | GPMC0_A21 |  |  |  | MCASP11_AXR4 |  |  | 
-   |P8_38B |0x00011C024 | PADCONFIG9 | AJ20 | PRG1_PRU0_GPO8 | PRG1_PRU0_GPI8 |  | PRG1_PWM2_A1 |  | RMII5_RXD0 | MCAN4_RX | GPIO0_9 | GPMC0_OEn_REn |  | VOUT0_DATA22 |  | MCASP3_AXR2 |  |  | 
-   |P8_39 |0x00011C118 | PADCONFIG70 | AC26 | PRG0_PRU1_GPO6 | PRG0_PRU1_GPI6 | PRG0_RGMII2_RXC |  | RGMII4_RXC | RMII4_TXD0 |  | GPIO0_69 | GPMC0_A25 |  |  |  | MCASP1_AXR3 |  |  | 
-   |P8_40 |0x00011C11C | PADCONFIG71 | AA24 | PRG0_PRU1_GPO7 | PRG0_PRU1_GPI7 | PRG0_IEP1_EDC_LATCH_IN1 |  | SPI3_CS0 |  | MCAN11_TX | GPIO0_70 | GPMC0_AD9 |  |  |  | MCASP1_AXR4 |  | UART2_TXD | 
-   |P8_41 |0x00011C110 | PADCONFIG68 | AD29 | PRG0_PRU1_GPO4 | PRG0_PRU1_GPI4 | PRG0_RGMII2_RX_CTL | PRG0_PWM2_B2 | RGMII4_RX_CTL | RMII4_TXD1 |  | GPIO0_67 | GPMC0_A24 |  |  |  | MCASP1_AXR2 |  |  | 
-   |P8_42 |0x00011C114 | PADCONFIG69 | AB27 | PRG0_PRU1_GPO5 | PRG0_PRU1_GPI5 |  |  |  |  |  | GPIO0_68 | GPMC0_AD8 |  |  |  | MCASP1_ACLKX |  |  | BOOTMODE6
-   |P8_43 |0x00011C108 | PADCONFIG66 | AD27 | PRG0_PRU1_GPO2 | PRG0_PRU1_GPI2 | PRG0_RGMII2_RD2 | PRG0_PWM2_A2 | RGMII4_RD2 | RMII4_CRS_DV |  | GPIO0_65 | GPMC0_A23 |  |  |  | MCASP1_ACLKR | MCASP1_AXR10 |  | 
-   |P8_44 |0x00011C10C | PADCONFIG67 | AC25 | PRG0_PRU1_GPO3 | PRG0_PRU1_GPI3 | PRG0_RGMII2_RD3 |  | RGMII4_RD3 | RMII4_RX_ER |  | GPIO0_66 |  |  |  |  | MCASP1_AFSR | MCASP1_AXR11 |  | 
-   |P8_45 |0x00011C140 | PADCONFIG80 | AG29 | PRG0_PRU1_GPO16 | PRG0_PRU1_GPI16 | PRG0_RGMII2_TXC | PRG0_PWM1_A2 | RGMII4_TXC |  |  | GPIO0_79 |  |  |  |  | MCASP2_AXR2 |  |  | 
-   |P8_46 |0x00011C144 | PADCONFIG81 | Y25 | PRG0_PRU1_GPO17 | PRG0_PRU1_GPI17 | PRG0_IEP1_EDC_SYNC_OUT1 | PRG0_PWM1_B2 | SPI3_CLK |  |  | GPIO0_80 | GPMC0_AD13 |  |  |  | MCASP2_AXR3 |  |  | BOOTMODE3
-   |P9_11 |0x00011C004 | PADCONFIG1 | AC23 | PRG1_PRU0_GPO0 | PRG1_PRU0_GPI0 | PRG1_RGMII1_RD0 | PRG1_PWM3_A0 | RGMII1_RD0 | RMII1_RXD0 |  | GPIO0_1 | GPMC0_BE1n | RGMII7_RD0 |  |  | MCASP6_ACLKX |  | UART0_RXD | 
-   |P9_12 |0x00011C0B8 | PADCONFIG46 | AE27 | PRG0_PRU0_GPO2 | PRG0_PRU0_GPI2 | PRG0_RGMII1_RD2 | PRG0_PWM2_A0 | RGMII3_RD2 | RMII3_CRS_DV |  | GPIO0_45 | UART3_RXD |  |  |  | MCASP0_ACLKR |  |  | 
-   |P9_13 |0x00011C008 | PADCONFIG2 | AG22 | PRG1_PRU0_GPO1 | PRG1_PRU0_GPI1 | PRG1_RGMII1_RD1 | PRG1_PWM3_B0 | RGMII1_RD1 | RMII1_RXD1 |  | GPIO0_2 | GPMC0_WAIT0 | RGMII7_RD1 |  |  | MCASP6_AFSX |  | UART0_TXD | 
-   |P9_14 |0x00011C178 | PADCONFIG94 | U27 | RGMII5_RD3 | UART3_CTSn |  | UART6_RXD | VOUT1_DATA8 | TRC_DATA6 | EHRPWM2_A | GPIO0_93 | GPMC0_A9 |  |  |  | MCASP11_AXR0 |  |  | 
-   |P9_15 |0x00011C0C0 | PADCONFIG48 | AD25 | PRG0_PRU0_GPO4 | PRG0_PRU0_GPI4 | PRG0_RGMII1_RX_CTL | PRG0_PWM2_B0 | RGMII3_RX_CTL | RMII3_TXD1 |  | GPIO0_47 |  |  |  |  | MCASP0_AXR2 |  |  | 
-   |P9_16A |0x00011C17C | PADCONFIG95 | U24 | RGMII5_RD2 | UART3_RTSn |  | UART6_TXD | VOUT1_DATA9 | TRC_DATA7 | EHRPWM2_B | GPIO0_94 | GPMC0_A10 |  |  |  | MCASP11_AXR1 |  |  | 
-   |P9_16B |0x00011C1DC | PADCONFIG119 | Y1 | SPI1_CLK | UART5_CTSn | I2C4_SDA | UART2_RXD |  |  |  | GPIO0_118 | PRG0_IEP0_EDC_SYNC_OUT0 |  |  |  |  |  |  | 
-   |P9_17A |0x00011C074 | PADCONFIG29 | AC21 | PRG1_PRU1_GPO7 | PRG1_PRU1_GPI7 | PRG1_IEP1_EDC_LATCH_IN1 |  | SPI6_CS0 | RMII6_RX_ER | MCAN7_TX | GPIO0_28 |  |  | VOUT0_DATA7 | VPFE0_DATA15 | MCASP4_AXR1 |  | UART3_TXD | 
-   |P9_17B |0x00011C1D0 | PADCONFIG116 | AA3 | SPI0_D1 |  | I2C6_SCL |  |  |  |  | GPIO0_115 |  |  |  |  |  |  |  | 
-   |P9_18A |0x00011C0A4 | PADCONFIG41 | AH22 | PRG1_PRU1_GPO19 | PRG1_PRU1_GPI19 | PRG1_IEP1_EDC_SYNC_OUT0 | PRG1_PWM1_TZ_OUT | SPI6_D1 | RMII6_TXD1 | PRG1_ECAP0_IN_APWM_OUT | GPIO0_40 |  |  | VOUT0_PCLK |  | MCASP5_AXR1 |  |  | 
-   |P9_18B |0x00011C1E4 | PADCONFIG121 | Y2 | SPI1_D1 |  | I2C6_SDA |  |  |  |  | GPIO0_120 | PRG0_IEP1_EDC_SYNC_OUT0 |  |  |  |  |  |  | 
-   |P9_19A |0x00011C208 | PADCONFIG130 | W5 | MCAN0_RX |  |  |  | I2C2_SCL |  |  | GPIO1_1 |  |  |  |  |  |  |  | 
-   |P9_19B |0x00011C13C | PADCONFIG79 | AF29 | PRG0_PRU1_GPO15 | PRG0_PRU1_GPI15 | PRG0_RGMII2_TX_CTL | PRG0_PWM1_B1 | RGMII4_TX_CTL |  |  | GPIO0_78 |  |  |  |  | MCASP2_AXR1 |  | UART2_RTSn | 
-   |P9_20A |0x00011C20C | PADCONFIG131 | W6 | MCAN0_TX |  |  |  | I2C2_SDA |  |  | GPIO1_2 |  |  |  |  |  |  |  | 
-   |P9_21A |0x00011C0A0 | PADCONFIG40 | AJ22 | PRG1_PRU1_GPO18 | PRG1_PRU1_GPI18 | PRG1_IEP1_EDC_LATCH_IN0 | PRG1_PWM1_TZ_IN | SPI6_D0 | RMII6_TXD0 | PRG1_ECAP0_SYNC_IN | GPIO0_39 |  | VOUT0_VP2_VSYNC | VOUT0_VSYNC |  | MCASP5_AXR0 |  | VOUT0_VP0_VSYNC | 
-   |P9_22A |0x00011C09C | PADCONFIG39 | AC22 | PRG1_PRU1_GPO17 | PRG1_PRU1_GPI17 | PRG1_IEP1_EDC_SYNC_OUT1 | PRG1_PWM1_B2 | SPI6_CLK | RMII6_TX_EN | PRG1_ECAP0_SYNC_OUT | GPIO0_38 |  | VOUT0_VP2_DE | VOUT0_DE | VPFE0_DATA10 | MCASP5_AFSX |  | VOUT0_VP0_DE | BOOTMODE1
-   |P9_22B |0x00011C170 | PADCONFIG92 | U29 | RGMII5_TXC | RMII7_TX_EN | I2C6_SCL |  | VOUT1_DATA6 | TRC_DATA4 | EHRPWM1_B | GPIO0_91 | GPMC0_A7 |  |  |  | MCASP10_AXR2 |  |  | 
-   |P9_23 |0x00011C028 | PADCONFIG10 | AG20 | PRG1_PRU0_GPO9 | PRG1_PRU0_GPI9 | PRG1_UART0_CTSn | PRG1_PWM3_TZ_IN | SPI6_CS1 | RMII5_RXD1 |  | GPIO0_10 | GPMC0_ADVn_ALE | PRG1_IEP0_EDIO_DATA_IN_OUT28 | VOUT0_DATA23 |  | MCASP3_ACLKX |  |  | 
-   |P9_24A |0x00011C034 | PADCONFIG13 | AJ24 | PRG1_PRU0_GPO12 | PRG1_PRU0_GPI12 | PRG1_RGMII1_TD1 | PRG1_PWM0_A0 | RGMII1_TD1 |  | MCAN4_RX | GPIO0_13 |  | RGMII7_TD1 | VOUT0_DATA17 | VPFE0_DATA1 | MCASP7_AFSX |  |  | 
-   |P9_24B |0x00011C1E0 | PADCONFIG120 | Y5 | SPI1_D0 | UART5_RTSn | I2C4_SCL | UART2_TXD |  |  |  | GPIO0_119 | PRG0_IEP1_EDC_LATCH_IN0 |  |  |  |  |  |  | 
-   |P9_25A |0x00011C200 | PADCONFIG128 | AC4 | UART1_CTSn | MCAN3_RX |  |  | SPI2_D0 | EQEP0_S |  | GPIO0_127 |  |  |  |  |  |  |  | 
-   |P9_25B |0x00011C1A4 | PADCONFIG105 | W26 | RGMII6_RXC |  |  | AUDIO_EXT_REFCLK2 | VOUT1_DE | TRC_DATA17 | EHRPWM4_B | GPIO0_104 | GPMC0_A20 | VOUT1_VP0_DE |  |  | MCASP10_AXR7 |  |  | 
-   |P9_26A |0x00011C030 | PADCONFIG12 | AF24 | PRG1_PRU0_GPO11 | PRG1_PRU0_GPI11 | PRG1_RGMII1_TD0 | PRG1_PWM3_TZ_OUT | RGMII1_TD0 |  | MCAN4_TX | GPIO0_12 |  | RGMII7_TD0 | VOUT0_DATA16 | VPFE0_DATA0 | MCASP7_ACLKX |  |  | 
-   |P9_27A |0x00011C0BC | PADCONFIG47 | AD26 | PRG0_PRU0_GPO3 | PRG0_PRU0_GPI3 | PRG0_RGMII1_RD3 | PRG0_PWM3_A2 | RGMII3_RD3 | RMII3_RX_ER |  | GPIO0_46 | UART3_TXD |  |  |  | MCASP0_AFSR |  |  | 
-   |P9_27B |0x00011C1F4 | PADCONFIG125 | AB1 | UART0_RTSn | TIMER_IO7 | SPI0_CS3 | MCAN2_TX | SPI2_CLK | EQEP0_B |  | GPIO0_124 |  |  |  |  |  |  |  | 
-   |P9_28A |0x00011C230 | PADCONFIG140 | U2 | ECAP0_IN_APWM_OUT | SYNC0_OUT | CPTS0_RFT_CLK |  | SPI2_CS3 | I3C0_SDAPULLEN | SPI7_CS0 | GPIO1_11 |  |  |  |  |  |  |  | 
-   |P9_28B |0x00011C0B0 | PADCONFIG44 | AF28 | PRG0_PRU0_GPO0 | PRG0_PRU0_GPI0 | PRG0_RGMII1_RD0 | PRG0_PWM3_A0 | RGMII3_RD0 | RMII3_RXD1 |  | GPIO0_43 |  |  |  |  | MCASP0_AXR0 |  |  | 
-   |P9_29A |0x00011C0D8 | PADCONFIG54 | AB25 | PRG0_PRU0_GPO10 | PRG0_PRU0_GPI10 | PRG0_UART0_RTSn | PRG0_PWM2_B1 | SPI3_CS2 | PRG0_IEP0_EDIO_DATA_IN_OUT29 | MCAN10_RX | GPIO0_53 | GPMC0_AD4 |  |  |  | MCASP0_AFSX |  |  | 
-   |P9_29B |0x00011C23C | PADCONFIG143 | V5 | TIMER_IO1 | ECAP2_IN_APWM_OUT | OBSCLK0 |  |  |  | SPI7_D1 | GPIO1_14 |  |  |  |  |  |  |  | BOOTMODE5
-   |P9_30A |0x00011C0B4 | PADCONFIG45 | AE28 | PRG0_PRU0_GPO1 | PRG0_PRU0_GPI1 | PRG0_RGMII1_RD1 | PRG0_PWM3_B0 | RGMII3_RD1 | RMII3_RXD0 |  | GPIO0_44 |  |  |  |  | MCASP0_AXR1 |  |  | 
-   |P9_30B |0x00011C238 | PADCONFIG142 | V6 | TIMER_IO0 | ECAP1_IN_APWM_OUT | SYSCLKOUT0 |  |  |  | SPI7_D0 | GPIO1_13 |  |  |  |  |  |  |  | BOOTMODE4
-   |P9_31A |0x00011C0D4 | PADCONFIG53 | AB26 | PRG0_PRU0_GPO9 | PRG0_PRU0_GPI9 | PRG0_UART0_CTSn | PRG0_PWM3_TZ_IN | SPI3_CS1 | PRG0_IEP0_EDIO_DATA_IN_OUT28 | MCAN10_TX | GPIO0_52 | GPMC0_AD3 |  |  |  | MCASP0_ACLKX |  | UART6_TXD | 
-   |P9_31B |0x00011C234 | PADCONFIG141 | U3 | EXT_REFCLK1 | SYNC1_OUT |  |  |  |  | SPI7_CLK | GPIO1_12 |  |  |  |  |  |  |  | 
-   |P9_33A |0x00011C0CC | PADCONFIG51 | AC28 | PRG0_PRU0_GPO7 | PRG0_PRU0_GPI7 | PRG0_IEP0_EDC_LATCH_IN1 | PRG0_PWM3_B1 | PRG0_ECAP0_SYNC_IN |  | MCAN9_TX | GPIO0_50 | GPMC0_AD1 |  |  |  | MCASP0_AXR5 |  |  | 
-   |P9_33B |0x04301C140 | WKUP_PADCONFIG80 | K24 | MCU_ADC0_AIN4 |  |  |  |  |  |  |  |  |  |  |  |  |  |  | 
-   |P9_35A |0x00011C0E0 | PADCONFIG56 | AH27 | PRG0_PRU0_GPO12 | PRG0_PRU0_GPI12 | PRG0_RGMII1_TD1 | PRG0_PWM0_A0 | RGMII3_TD1 |  |  | GPIO0_55 |  |  | DSS_FSYNC0 |  | MCASP0_AXR8 |  |  | 
-   |P9_35B |0x04301C148 | WKUP_PADCONFIG82 | K29 | MCU_ADC0_AIN6 |  |  |  |  |  |  |  |  |  |  |  |  |  |  | 
-   |P9_36A |0x00011C0E4 | PADCONFIG57 | AH29 | PRG0_PRU0_GPO13 | PRG0_PRU0_GPI13 | PRG0_RGMII1_TD2 | PRG0_PWM0_B0 | RGMII3_TD2 |  |  | GPIO0_56 |  |  | DSS_FSYNC2 |  | MCASP0_AXR9 |  |  | 
-   |P9_36B |0x04301C144 | WKUP_PADCONFIG81 | K27 | MCU_ADC0_AIN5 |  |  |  |  |  |  |  |  |  |  |  |  |  |  | 
-   |P9_37A |0x00011C0E8 | PADCONFIG58 | AG28 | PRG0_PRU0_GPO14 | PRG0_PRU0_GPI14 | PRG0_RGMII1_TD3 | PRG0_PWM0_A1 | RGMII3_TD3 |  |  | GPIO0_57 | UART4_RXD |  |  |  | MCASP0_AXR10 |  |  | 
-   |P9_37B |0x04301C138 | WKUP_PADCONFIG78 | K28 | MCU_ADC0_AIN2 |  |  |  |  |  |  |  |  |  |  |  |  |  |  | 
-   |P9_38A |0x00011C0EC | PADCONFIG59 | AG27 | PRG0_PRU0_GPO15 | PRG0_PRU0_GPI15 | PRG0_RGMII1_TX_CTL | PRG0_PWM0_B1 | RGMII3_TX_CTL |  |  | GPIO0_58 | UART4_TXD |  | DSS_FSYNC3 |  | MCASP0_AXR11 |  |  | 
-   |P9_38B |0x04301C13C | WKUP_PADCONFIG79 | L28 | MCU_ADC0_AIN3 |  |  |  |  |  |  |  |  |  |  |  |  |  |  | 
-   |P9_39A |0x04301C130 | WKUP_PADCONFIG76 | K25 | MCU_ADC0_AIN0 |  |  |  |  |  |  |  |  |  |  |  |  |  |  | 
-   |P9_39B |0x00011C0DC | PADCONFIG55 | AJ28 | PRG0_PRU0_GPO11 | PRG0_PRU0_GPI11 | PRG0_RGMII1_TD0 | PRG0_PWM3_TZ_OUT | RGMII3_TD0 |  |  | GPIO0_54 |  | CLKOUT |  |  | MCASP0_AXR7 |  |  | 
-   |P9_40A |0x00011C148 | PADCONFIG82 | AA26 | PRG0_PRU1_GPO18 | PRG0_PRU1_GPI18 | PRG0_IEP1_EDC_LATCH_IN0 | PRG0_PWM1_TZ_IN | SPI3_D0 |  | MCAN12_TX | GPIO0_81 | GPMC0_AD14 |  |  |  | MCASP2_AFSX |  | UART2_RXD | 
-   |P9_40B |0x04301C134 | WKUP_PADCONFIG77 | K26 | MCU_ADC0_AIN1 |  |  |  |  |  |  |  |  |  |  |  |  |  |  | 
-   |P9_41 |0x00011C204 | PADCONFIG129 | AD5 | UART1_RTSn | MCAN3_TX |  |  | SPI2_D1 | EQEP0_I |  | GPIO1_0 |  |  |  |  |  |  |  | 
-   |P9_42A |0x00011C1F0 | PADCONFIG124 | AC2 | UART0_CTSn | TIMER_IO6 | SPI0_CS2 | MCAN2_RX | SPI2_CS0 | EQEP0_A |  | GPIO0_123 |  |  |  |  |  |  |  | 
-   |P9_42B |0x00011C04C | PADCONFIG19 | AJ21 | PRG1_PRU0_GPO17 | PRG1_PRU0_GPI17 | PRG1_IEP0_EDC_SYNC_OUT1 | PRG1_PWM0_B2 |  | RMII5_TXD1 | MCAN5_TX | GPIO0_18 |  |  |  | VPFE0_DATA6 | MCASP3_AXR3 |  |  | |
-
-
-.. _power-jack:
-
-Power Jack
-----------------------------
-
-The DC power jack is located next to the RJ45 Ethernet connector as
-shown in :ref:`figure-51`. This uses the same power connector as is used on
-the BeagleBone Black. The connector has a 2.1mm diameter center post
-(5VDC) and a 5.5mm diameter outer dimension on the barrel (GND).
-
-.. _figure-51,Figure 51:
-
-.. figure:: media/image69.jpg
-   :width: 400px
-   :align: center 
-   :alt: Figure 51. 5VDC Power Jack
-
-   Fig-51: 5VDC Power Jack
-
-The board requires a regulated 5VDC +/-.25V supply at 1A. A higher
-current rating may be needed if capes are plugged into the expansion
-headers. Using a higher current power supply will not damage the board.
-
-.. _usb-client:
-
-USB Client
-----------------------------
-
-The USB Client connector is accessible on the bottom side of the board
-under the row of four LEDs as shown in :ref:`figure-52`. It uses a 5 pin
-miniUSB cable, the same as is used on the BeagleBone Black. The cable
-is provided with the board. The cable can also be used to power the
-board.
-
-.. _figure-52,Figure 52:
-
-.. figure:: media/image71.jpg
-   :width: 400px
-   :align: center 
-   :alt: Figure 52. USB Client
-
-   Fig-52: USB Client
-
-This port is a USB Client only interface and is intended for connection
-to a PC.
-
-.. _usb-host-1:
-
-USB Host
-----------------------------
-
-There is a single USB Host connector on the board and is shown in
-*Figure 53* below.
-
-.. figure:: media/image71.jpg
-   :width: 400px
-   :align: center 
-   :alt: Figure 53. USB Host Connector
-
-   Fig-53: USB Host Connector
-
-.. _figure-53.-usb-host-connector:
-
-
-
-The port is USB 2.0 HS compatible and can supply up to 500mA of current.
-If more current or ports is needed, then a HUB can be used.
-
-.. _serial-header:
-
-Serial Header
-----------------------------
-
-Each board has a debug serial interface that can be accessed by using a
-special serial cable that is plugged into the serial header as shown in
-*Figure 54* below.
-
-.. figure:: media/image71.jpg
-   :width: 400px
-   :align: center 
-   :alt: Figure 54. Serial Debug Header
-
-   Figure 54. Serial Debug Header
-
-.. _figure-54.-serial-debug-header:
-
-Two signals are provided, TX and RX on this connector. The levels on
-these signals are 3.3V. In order to access these signals, a FTDI USB to
-Serial cable is recommended as shown in *Figure 55* below.
-
-.. figure:: media/image73.jpg
-   :width: 400px
-   :align: center 
-   :alt: Figure-55
-
-The cable can be purchased from several different places and must be the
-3.3V version TTL-232R-3V3. Information on the cable itself can be found
-direct from FTDI at: `http://www.ftdichip.com/Support/Documents/DataSheets/Cables/DS_TTL232R_CABLES.pdf <http://www.ftdichip.com/Support/Documents/DataSheets/Cables/DS_TTL-232R_CABLES.pdf>`_
-
-Pin 1 of the cable is the ai-64 wire. That must align with the pin 1 on
-the board which is designated by the white dot next to the connector on
-the board.
-
-Refer to the support WIKI `http://elinux.org/BeagleBoneBlack <http://elinux.org/BeagleBoneBlack>`_ for more sources of this cable and other options that will work.
-
-Table is the pinout of the connector as reflected in the schematic. It
-is the same as the FTDI cable which can be found at `http://www.ftdichip.com/Support/Documents/DataSheets/Cables/DS_TTL-232R_CABLES.pdf <http://www.ftdichip.com/Support/Documents/DataSheets/Cables/DS_TTL-232R_CABLES.pdf>`_ with the exception that only three pins are used on the board. The pin numbers are defined in *Table 14*. The signals are from the perspective of the board.
-
-.. _table-14.-j1-serial-header-pins:
-
-.. list-table:: Table 14: J1 Serial Header Pins
-   :header-rows: 1
-
-   * - PIN NUMBER 
-     - SIGNAL
-   * - *1* 
-     - Ground
-   * - *4* 
-     - Receive
-   * - *5* 
-     - Transmit
-
-*Figure 56* shows the pin location on the board.
-
-.. figure:: media/image75.jpg
-   :width: 400px
-   :align: center 
-   :alt: Fig-56 Serial Header
-
-   Fig-56: Serial Header
-
-.. _hdmi:
-
-HDMI
-----------------------------
-
-Access to the HDMI interface is through the HDMI connector that is
-located on the bottom side of the board as shown in *Figure 57* below.
-
-.. figure:: media/image71.jpg
-   :width: 400px
-   :align: center 
-   :alt: Figure 57. HDMI Connector
-
-   Fig-5: HDMI Connector
-
-.. _figure-57.-hdmi-connector:
-
-The connector is microHDMI connector. This was done due to the space
-limitations we had in finding a place to fit the connector. It requires
-a microHDMI to HDMI cable as shown in *Figure 58* below. The cable can
-be purchased from several different sources.
-
-.. figure:: media/image77.jpg
-   :width: 400px
-   :align: center 
-   :alt: Figure 58. HDMI Cable
-
-   Figure 58. HDMI Cable
-
-.. _microsd:
-
-microSD
-----------------------------
-
-A microSD connector is located on the back or bottom side of the board
-as shown in *Figure 59* below. The microSD card is not supplied with the
-board.
-
-.. figure:: media/image71.jpg
-   :width: 400px
-   :align: center 
-   :alt: Figure 59. microSD Connector
-
-   Figure 59. microSD Connector
-
-.. _figure-59.-microsd-connector:
-
-When plugging in the SD card, the writing on the card should be up.
-Align the card with the connector and push to insert. Then release.
-There should be a click and the card will start to eject slightly, but
-it then should latch into the connector. To eject the card, push the SD
-card in and then remove your finger. The SD card will be ejected from
-the connector.
-
-Do not pull the SD card out or you could damage the connector.
-
-.. _ethernet-1:
-
-Ethernet
-----------------------------
-
-The board comes with a single 10/100 Ethernet interface located next to
-the power jack as shown in *Figure 60*.
-
-.. figure:: media/image71.jpg
-   :width: 400px
-   :align: center 
-   :alt: Figure 60. Ethernet Connector
-
-   Figure 60. Ethernet Connector
-
-The PHY supports AutoMDX which means either a straight or a swap cable
-can be used
-
-.. _jtag-connector:
-
-JTAG Connector
-----------------------------
-
-A place for an optional 20 pin CTI JTAG header is provided on the board
-to facilitate the SW development and debugging of the board by using
-various JTAG emulators. This header is not supplied standard on the
-board. To use this, a connector will need to be soldered onto the board.
-
-If you need the JTAG connector you can solder it on yourself. No other
-components are needed. The connector is made by Samtec and the part
-number is FTR-110-03-G-D-06. You can purchase it from `www.digikey.com <http://www.digikey.com/>`_
diff --git a/boards/beaglebone/ai-64/ch08.rst b/boards/beaglebone/ai-64/ch08.rst
index be8128ab04036007006d10e58b835d8ddec6e45b..446ebd2a138ba0b363461a67b4f6395f1c19902c 100644
--- a/boards/beaglebone/ai-64/ch08.rst
+++ b/boards/beaglebone/ai-64/ch08.rst
@@ -14,7 +14,7 @@ key to ensure proper orientation of the cape. On AI-64 you can see a clear
 silkscreen marking for the cape orientation. Most of BeagleBone capes
 can be used with your BeagleBone AI-64 also like shown in :ref:`bbai-cape-placement-figure` below.
 
-.. _bbai-cape-placement-figure, BeagleBone Ai Cape Placement figure:
+.. _bbai-cape-placement-figure:
 
 .. figure:: images/ch08/cape-placement.jpg
    :width: 400px
@@ -65,7 +65,7 @@ will also be compatible with BeeagleBone AI-64.
    This section is still being worked on, please make sure you have the latest system reference manual (SRM).
 
 
-.. todo:: 
+.. todo
 
    Add BeagleBone AI-64 LCD pins information.
    Add BeagleBone AI-64 eMMC pins information.
@@ -87,7 +87,7 @@ The address of the EEPROM will be set via either jumpers or a dipswitch
 on each expansion board. :ref:`expansion-board-eeprom-without-write-protect-figure` 
 below is the design of the EEPROM circuit.
 
-.. _expansion-board-eeprom-without-write-protect-figure, Expansion board EEPROM without write protect figure:
+.. _expansion-board-eeprom-without-write-protect-figure:
 
 .. figure:: images/ch08/eeprom.png
    :width: 400px
@@ -174,7 +174,7 @@ discretion of the cape designer.
 
 VSYS_IO_3V3
 
-.. _expansion-board-eeprom-with-write-protect-figure, Expansion board EEPROM with write protect figure:
+.. _expansion-board-eeprom-with-write-protect-figure:
 
 .. figure:: images/ch08/eeprom-write-protect.png
    :width: 400px
@@ -187,7 +187,7 @@ VSYS_IO_3V3
 .. _eeprom-data-format:
 
 EEPROM Data Format
-***************************
+===================
 
 :ref:`expansion-board-eeprom-table`
 shows the format of the contents of the expansion board
@@ -198,7 +198,7 @@ by the user when the EEPROM contents are dumped.
 
 *Clean/Update table*
 
-.. _expansion-board-eeprom-table, Expansion Board EEPROM table:
+.. _expansion-board-eeprom-table:
 
 .. list-table:: Expansion Board EEPROM
    :header-rows: 1
@@ -267,9 +267,9 @@ by the user when the EEPROM contents are dumped.
 .. _pin-usage:
 
 Pin Usage
-***************************
+==========
 
-:ref:`eeprom-pin-usage-table`` shows the locations in the EEPROM to set the I/O pin usage for
+:ref:`eeprom-pin-usage-table` shows the locations in the EEPROM to set the I/O pin usage for
 the cape. It contains the value to be written to the Pad Control
 Registers. Details on this can be found in section *9.2.2* of the
 *TDA4VM Technical Reference Manual*, The table is left blank as a
@@ -300,7 +300,7 @@ for the AIN signals.
 
 
 
-.. _eeprom-pin-usage-table, EEPROM Pin Usage table:
+.. _eeprom-pin-usage-table:
 
 .. list-table:: EEPROM Pin Usage
    :header-rows: 1
@@ -1450,7 +1450,7 @@ for the AIN signals.
 .. _pin-usage-consideration:
 
 Pin Usage Consideration
--------------------------------------------
+========================
 
 This section covers things to watch for when hooking up to certain pins
 on the expansion headers.
@@ -1458,7 +1458,7 @@ on the expansion headers.
 .. _expansion-connectors-1:
 
 Expansion Connectors
--------------------------------------------
+====================
 
 A combination of male and female headers is used for access to the
 expansion headers on the main board. There are three possible mounting
@@ -1474,14 +1474,14 @@ and used for each of the different configurations.
 .. _non-stacking-headers-single-cape:
 
 Non-Stacking Headers-Single Cape
-*********************************
+=================================
 
 For non-stacking capes single configurations or where the cape can be
 the last board on the stack, the two 46 pin expansion headers use the
 same connectors. :ref:`single-expansion-connector-figure` is a picture of 
 the connector. These are dual row 23 position 2.54mm x 2.54mm connectors.
 
-.. _single-expansion-connector-figure,Single expansion connector figure:
+.. _single-expansion-connector-figure:
 
 .. figure:: images/ch08/single-expansion-connector.jpg
    :width: 400px
@@ -1491,7 +1491,7 @@ the connector. These are dual row 23 position 2.54mm x 2.54mm connectors.
    Fig-Single expansion connector
 
 The connector is typically mounted on the bottom side of the board as
-shown in :ref:`single-cape-expansion-connector-figure` . These are very common connectors and should be
+shown in :ref:`single-cape-expansion-connector-figure`. These are very common connectors and should be
 easily located. You can also use two single row 23 pin headers for each
 of the dual row headers.
 
@@ -1502,8 +1502,7 @@ of the dual row headers.
 
    Fig-Single cape expansion connector on BeagleBone Proto Cape with EEPROM from onlogic
 
-.. _single-cape-expansion-connector-figure, Single cape expansion connector figure:
-
+.. _single-cape-expansion-connector-figure:
 
 It is allowed to only populate the pins you need. As this is a
 non-stacking configuration, there is no need for all headers to be
@@ -1522,7 +1521,7 @@ amount of the pin that goes past the contact point of the connector on
 BeagleBone AI-64
 
 
-.. _single-cape-connectors-figure, Single Cape Connectors:
+.. _single-cape-connectors-figure:
 
 .. list-table:: Single Cape Connectors
    :header-rows: 1
@@ -1554,13 +1553,13 @@ depth into the connector is sufficient
 .. _main-expansion-headers-stacking:
 
 Main Expansion Headers-Stacking
-*********************************
+================================
 
 For stacking configuration, the two 46 pin expansion headers use the
 same connectors. :ref:`expansion-connector-figure` is a picture of the 
 connector. These are dual row 23 position 2.54mm x 2.54mm connectors.
 
-.. _expansion-connector-figure, Expansion connector figure:
+.. _expansion-connector-figure:
 
 .. figure:: images/ch08/expansion-connector.jpg
    :width: 400px
@@ -1571,10 +1570,10 @@ connector. These are dual row 23 position 2.54mm x 2.54mm connectors.
 
 The connector is mounted on the top side of the board with longer tails
 to allow insertion into BeagleBone AI-64. 
-:ref:`stacked-cape-expansion-connector-figure`` is the
+:ref:`stacked-cape-expansion-connector-figure` is the
 connector configuration for the connector.
 
-.. _stacked-cape-expansion-connector-figure, Stacked cape expansion connector figure:
+.. _stacked-cape-expansion-connector-figure:
 
 .. figure:: images/ch08/can-cape.jpg
    :width: 250px
@@ -1598,10 +1597,10 @@ know and they will be added to this document. The first item in **Table
 amount of the pin that goes past the contact point of the connector on
 BeagleBone AI-64.
 
-The third part listed in :ref:`stacked-cape-connectors-figure`` will have 
+The third part listed in :ref:`stacked-cape-connectors-figure` will have 
 insertion force issues.
 
-.. _stacked-cape-connectors-figure, Stacked cape connectors figure:
+.. _stacked-cape-connectors-figure:
 
 .. list-table:: Stacked Cape Connectors
    :header-rows: 1
@@ -1634,28 +1633,28 @@ one that has the correct mating depth.
 .. _stacked-capes-wsignal-stealing:
 
 Stacked Capes w/Signal Stealing
-*********************************
+================================
 
-:ref:`stacked-with-signal-stealing-expansion-connector-figure`` is the connector configuration for stackable capes that does
+:ref:`stacked-with-signal-stealing-expansion-connector-figure` is the connector configuration for stackable capes that does
 not provide all of the signals upwards for use by other boards. This is
 useful if there is an expectation that other boards could interfere with
 the operation of your board by exposing those signals for expansion.
 This configuration consists of a combination of the stacking and
 nonstacking style connectors.
 
-.. _stacked-with-signal-stealing-expansion-connector-figure, Stacked with signal stealing expansion connector figure:
+.. _stacked-with-signal-stealing-expansion-connector-figure:
 
 .. figure:: images/ch08/stealing-expansion-connector.jpg
    :width: 400px
    :align: center 
    :alt: Fig-Stacked with signal stealing expansion connector figure
 
-   Fig: Stacked with signal stealing expansion connector figure
+   Stacked with signal stealing expansion connector figure
 
 .. _retention-force:
 
 Retention Force
-***************************
+================
 
 The length of the pins on the expansion header has a direct relationship
 to the amount of force that is used to remove a cape from BeagleBone
@@ -1673,20 +1672,20 @@ consider when selecting a connector and its pin length.
 .. _beaglebone-ai-64-female-connectors:
 
 BeagleBone AI-64 Female Connectors
-************************************
+===================================
 
 :ref:`connector-pin-insertion-depth` shows the key measurements used in calculating how much the
 pin extends past the contact point on the connector, what we call
 overhang.
 
-.. _connector-pin-insertion-depth, Connector pin insertion depth figure:
+.. _connector-pin-insertion-depth:
 
 .. figure:: images/ch08/berg-stip-insertion.jpg
    :width: 400px
    :align: center 
    :alt: Fig:Connector Pin Insertion Depth
 
-   Fig:Connector Pin Insertion Depth
+   Connector Pin Insertion Depth
 
 To calculate the amount of the pin that extends past the Point of
 Contact, use the following formula:
@@ -1700,7 +1699,7 @@ than the insertion.
 .. _signal-usage:
 
 Signal Usage
------------------------
+=============
 
 Based on the pin muxing capabilities of the processor, each expansion
 pin can be configured for different functions. When in the stacking
@@ -1710,7 +1709,7 @@ detected will be used to set the pin muxing of each pin. This will
 prevent other modes from being supported on stacked cards and may result
 in them being inoperative.
 
-In :ref:`section-7-1`` of this document, the functions of the pins are defined
+In :ref:`section-7-1` of this document, the functions of the pins are defined
 as well as the pin muxing options. Refer to this section for more
 information on what each pin is. To simplify things, if you use the
 default name as the function for each pin and use those functions, it
@@ -1729,20 +1728,20 @@ BOARD. IT WILL DAMAGE THE PROCESSOR AND VOID THE WARRANTY.*
 .. _cape-power:
 
 Cape Power
--------------------------------------------
+===========
 
 This section describes the power rails for the capes and their usage.
 
 .. _main-board-power:
 
 Main Board Power
-***************************
+=================
 
 The :ref:`expansion-header-voltages-table` describes the voltages from the 
 main board that are available on the expansion connectors and their ratings. 
 All voltages are supplied by connector**P9**. The current ratings listed are per pin.
 
-.. _expansion-header-voltages-table, Expansion header voltages figure:
+.. _expansion-header-voltages-table:
 
 
 .. list-table:: Expansion Voltages
@@ -1794,7 +1793,7 @@ the USB and DC external supplies.
 .. _expansion-board-external-power:
 
 Expansion Board External Power
-*******************************
+===============================
 
 A cape can have a jack or terminals to bring in whatever voltages may be
 needed by that board. Care should be taken not to let this voltage be
@@ -1823,11 +1822,11 @@ the expansion headers to prevent damage to the board.*
 .. _standard-cape-size:
 
 Standard Cape Size
-***************************
+===================
 
 :ref:`cape-board-dimensions-figure` shows the outline of the standard cape. The dimensions are in inches.
 
-.. _cape-board-dimensions-figure, Cape board dimensions figure:
+.. _cape-board-dimensions-figure:
 
 .. figure:: images/ch08/cape-dimension.jpg
    :width: 400px
@@ -1845,7 +1844,7 @@ align it with the notch on the board silkscreen.
 .. _extended-cape-size:
 
 Extended Cape Size
-***************************
+===================
 
 Capes larger than the standard board size are also allowed. A good
 example would be the new BeagleBone AI-64 robotics cape. 
diff --git a/boards/beaglebone/ai-64/edge_ai_apps/getting_started.rst b/boards/beaglebone/ai-64/edge_ai_apps/getting_started.rst
index 93d960a4b6b78b7b147da493e5a5671c7c4b48f7..9da457399b15bf33d06d9c31b13ceac5d2f441cc 100644
--- a/boards/beaglebone/ai-64/edge_ai_apps/getting_started.rst
+++ b/boards/beaglebone/ai-64/edge_ai_apps/getting_started.rst
@@ -133,7 +133,7 @@ Preparing SD card image
 Download the ``bullseye-xfce-edgeai-arm64`` image from the links below and
 flash it to SD card using `Balena etcher <https://www.balena.io/etcher/>`_ tool.
 
-- To use via SD card: `bbai64-debian-11.4-xfce-edgeai-arm64-2022-08-02-10gb.img.xz <bbai64-debian-11.4-xfce-edgeai-arm64-2022-08-02-10gb.img.xz>`_
+- To use via SD card: `bbai64-debian-11.4-xfce-edgeai-arm64-2022-08-02-10gb.img.xz <https://rcn-ee.net/rootfs/bb.org/testing/2022-08-02/bullseye-xfce-edgeai-arm64/bbai64-debian-11.4-xfce-edgeai-arm64-2022-08-02-10gb.img.xz>`_
 - To flash on eMMC: `bbai64-emmc-flasher-debian-11.4-xfce-edgeai-arm64-2022-08-02-10gb.img.xz <https://rcn-ee.net/rootfs/bb.org/testing/2022-08-02/bullseye-xfce-edgeai-arm64/bbai64-emmc-flasher-debian-11.4-xfce-edgeai-arm64-2022-08-02-10gb.img.xz>`_
 
 
diff --git a/boards/beaglebone/ai-64/edge_ai_apps/static/theme_overrides.css b/boards/beaglebone/ai-64/edge_ai_apps/static/theme_overrides.css
deleted file mode 100644
index 27fb69dd258d4bb229f4985c96340e6a63a253f7..0000000000000000000000000000000000000000
--- a/boards/beaglebone/ai-64/edge_ai_apps/static/theme_overrides.css
+++ /dev/null
@@ -1,233 +0,0 @@
-
-/* Open Sans Latin
-   base64 encode done on opensans_latin_v13.woff2 */
-@font-face {
-  font-family: 'Open Sans';
-  font-style: normal;
-  font-weight: 400;
-  src: url('data:font/woff2;base64,d09GMgABAAAAADzUABIAAAAAhjgAADxwAAEZmgAAAAAAAAAAAAAAAAAAAAAAAAAAGhYbDBx0BmAAgUwIgSIJjzQREAqBpESBjUIBNgIkA4ZsE70QC4M8AAQgBYIyB4QoDIIJG8J3CQg7WxX5j0PthLRbJVvedpUoKlTzFUWwcUCG52fZ/////3lJxxAlWAMiaNd12/9PqJmJKW5iyEExieloQ9KxVuZAQ07T1g7vfgVloomBA/UEiuEMCGVsPBsLc9rD3dPKhTisOejgNULCLyjxoeYlBGuZsjRKads6GS6b8QRDIttvKSa68bAbLrwP31TZsuGVyrv7lPcTS4bG9tKpUh76wlIon84X/sDUs5lHxlTP/if+Ns2eosU/nf/Bfw/riGqqb+ffLOvzVA9JiiYPkV3xr7qrZ/bum4pAxULkIPkZgBBQJu/2AG2zs1GxcgYq2FMQpj1RETESsbAKmzJyopiJzNnDKkTX5pwurDm2/l+kLvK/+x/AP6A2ZgrZRvjS1KSQBer9XuGyk3Iw3zfX+1eWZFmG4CQDj7CYnr8CXBV4ueyfuup7tsiSJbYtuxH/jmfaSz7qPupZoCCZ+kF0QXRpQIvhcQTov6omea3KKY0pFP4oK73IomFDl+ISgLSDg2T3m9LqWHnZhsdUX6Zbs2x9S8bARE7Ay+y7Qf/nllVniRftubDauc4suapKNQPzE8citiadRhUeQAB2Or6gcE01zLrqvv3azJyYfdvFLJRBRNN+rORtiKb4r90jEQolkS9CXdeapUUtovJYdjvKac7KcpzMaA1l/uGrT4aVVrGvMVAuLrBgPpJTtAv0AsQv4mpVYhTdrISsR3HVOUDRuJh4nIdPy752XK3pgwsJHaOiCfRBCMYnBZa2NQIs0MJBCLKQcLAUFiLHsSb1NBwDuVM++S0pbMpCb4wnNT80UzMTE9QxNEqUXUj+XtWyBRikfCGFLhWNnelMh67A+x+BHyAogRS0C1I6L0lJt9RGUJGUzgZAjQekU04ENxHSBYHaRMdLMVd257vKTeW69pbnoi9NTzZ4puUyQp2QCOOWBcHlBVHZINQPsqpeQjArJqPxaQKweFrTR1P/k+Xq+/E66DKZ2KGI2ZjJZNOIfxEploB4nMfYbCEuPnLbpwkSihwCCsbniQTAguiPVErkU4mUNL+UgcJFiymBc06kZQAgwjK+x5hwzplJMQDIJhWEDSTOGJKlWpoIMEUadBm6RwiOj8PFkZ74BMmB3NPHvuQZdmtwhPKxaCIC1O5pSECsQvXqWxLjy0SwLDAMtWW45JcEf9qVQU4AAOvKcpvthncBrrn3f6P2TFH5pL6ErAoIPAgbyH0bD2BVQtHJQvXeU9iytiHI6oIFw3FX7KYd/ws48OV6eVger6oIUYdoQXQh+hBbCAZCg0ws5P//30+hOw99btm1DAYcrQBRhWi8jM0FaH419ud9hVS/0ut62vSv6Q/T11+iySYajVNbtUV/b5/exPSeyXTDklT41IpZiv4R2m3Dfcp9KWoG9CMAOmZLgoOTwv9t/XjG7O9no/SNV51dlkUn2AXcpNQTLI0adKlSGjJgNWg3YlhoCCEQH+Dv5+vj7eXp4Y5zw7piXJyd0I6nHeztbG2srSxPIeDmZidNDQ30YVA9XR1tprpw1uhWsieLKhwIhGlDCFAphITMFTNSlJXCvFS7BnGYV1RMYWUSk86rwpJKpWQBZbBSCbm2Z1laCiZ6RfcBbuU87snz7Dx7R5L4WZIjvKrod+rtYCMx9O8mwhLRGcX3ibFESNJCqbD2cGBXU/ncuJtPLlOhOxfmmcPUG5mPZuIouu1w9CKPimlUnXUEk4VEgpJLUlkHBxWtYuH7JsyXkXXj7AS4sDsaU8uIxeWw2Z6h9iA3uWnrBnnWSoOFDnWyWxohn666Da3a54egEGCM4tGe/q6VLupikmKFCY7LkmodtkTc48IxKTyS9g+Eon9/U0Gfmor/91YEWgYeaf9eEUU9e7fPaySLVll/ZPSApEe2n04/31YHDfx09bMcma9lC2vvLpFPB/ysabdbsZqgVGlqkCjKQZaCw9RL5J8Wfq78fbpRRBgkAAxoN+77EOTWB8wGH4agD/WBsmqI94A+FBiQym357qjcbDkjVNVS8mFxqGkbhEW5Q0rbxes+9DWsbK1TFiIP2X/hky3m5JlDhoxIiRi5oUREAgQUJuwkwnKXsPYD82bP2nAFm5nLbZFniAVCw4pU+qg9HOyqPE6GeWwEVpAL1OD4ReXMWGnlZg8RK1l6TAzjjnw3zNBtlCkyLGpSVg1rGp+rMhHlAiC6HaUwo4ZUViqrXkR1biihit4A5P8VJcWHBXYcMDHm+VEtaISkshedHnqp6MBKe1ILH2yAviHdNTbXS94mvwv/XjJusom6TmqUVBr6dCPYTMTqM4WFYrEPaeGMiEBczEg9JsYNFvESiiy+aBSdP6UREzNPxAMb5yCrnRydl5oLRghNYHpYqm5Mgj6bGcLtSEgUSpzEqZvZQFUoCd/491qYH9vIUigQkxnUr0rZ1DjE2gzGWOAk0qO4y+JrS01dMjSQ4BtaLQQN1jAHBNY3Z6by+icjUAwNoFPEHxGQX4a1QACbwPpnIaq0UdSymS9t3E1qlrFMKJ/BEWWA/Wb4dE4kRd6bmY5kiLfD64zt8+WeHB+cZTDDLXesW9PnCSGUaC/E0/g8RZElPKlHYd4R7O5c/qbimL+pNfRGnjFI1Yl+T0jLaWSclz9Gb1iMoXN8hCL0wWchLqS69sXHGrHBDM6USOEEjrLDEcJdS7xNCJA/n3BSiMbMyQ2EY0xIu4G4X+P7uAO45rs8N8kzl2cvL4xlqOUwSd5HLl85EA942MMMthyFVM0aP+LaJViU0jrK0n3ILadidX5Df0hDFXwCIWJ0r4T58QM6uleTuOxYSd5zM7DK9LQcKM+QeJzGwd2LDM6BRtSKpoM5txsh5UZ5vkuBS74pKpYGVnlVvQ5o+QbwNE+9qX3yYO35Jmz+n5HIpUfJ2vyfcGnkNDFvIWM3+l0SAJ48tws8taOvAL+PojsDoRsZILghY5rGbIwyhURLrWp55YC9KERyteUrrJvBxgK83RyXPcVHMCoV1zkeyAymKLA4qBuCE17rUFLPeFWiZKX9NFIPkWfjuZHm4voKGHuz5gt7xXpTvCZPhpARHTMjea8/wnPKhOSEpZhhrY3kuKgm88Euz4ZRsxiLqrUUXDCM2Sh/KjJmOI83BylGUktaOGk4F61UfJ35fCC5yHDGsBjkhYxBFaw8KhGxVNLhVakk7yq4dSzlWFZijCc1zkeTkYwYnyJoLlobOWOUa2uxks1KRCtDLiVjk7zikMsiyxS/O+RxwCZCqTBKXOZTycx5EuMsI/y25wHe4lzgXyOx2rgm/VNMKc6TRgCgiHfgRiM/FYcSvBA7nUJ2UqhAvL6znIECFAsKRIF0WBJkLQgKX9nAKe6KytVSyscM/YoBzpAcZ0LQDwAHwYTaxCTnK7Eg7dJpjEys+mX+ymSpJybTABwIUK3FISB+vfEPpaYfX6dhYCS/ArvbXpMxAOujddHcKCy9oAuosBwO/d66aodBZ6D7bZbgOVjxhKzQcG9DNEl3hATNHPFDklxcc4NylfRkG88t2VfSoUwj1nL97IcKprRrU0xLaftUQLvKqBE0YCLFJ3XjQTVlx5kKoTYQIvTnMDpYqQumFfIquUaT3+TlFnBAUcDaS6Ykgm4D6mHZ3T5LS7ASqCHVNII69RkiqGYX8m+KFuRyLBfKpASn+ovFuh8NjOEFNgt3km/K1AYKDnTQbKHVKfxpUg74CJVZ/QzVmPSrAGHPRrKIU8EQJywFPBHiZyoRp9ZiqatfCUYZAy10RUjDNhY0ApFk/RCyRru7v1GbH2EdpTUYrJNxdP9Ib3+Ky+LdDlcvu7brITIlW20bGBWyvH0bbUTBXw42+LKEajBc93Xyvzg460i8KDqQpbI8P3hvRfdjuH3yYpVuP7ea3AJpxwwZtyHxnXa/nKVrKjEQL0ouoeIxVpsuMrmtKoWLpgAemjUmg13xepWbjuhaStVsQCvFIriQZRKfAWu5xpjxjqLR+92hNWoQUpec70wOSdjJSPAalndek2pgvd9VjXFyCq44wwNIpqzRTtwaEINuYuVywyQb9DmkDnaB+Qq/KBrBntgVwLySNWNI3LTiTgU3U4wpJTHRMn+LtfsYleDP1XfFrU2cbdHOGW1GMxq7WE17UZzrbpJsXeX1zvkSyQmmvmRPyMTrQqFtbSYuvTlGSycJKvDElm2kcqatiRtM+XAOliz6XR6Ql9bpw5unABUyOZmgUjozRPHLFnqBm/wT1OcWK8qbpMEwmn6fkxQEFdGYoZxDwFdZbaHVC/ztMekCVCMn9lawhkKL7TRk45pkUC+5tZSrFzs5CgqwTej3T7yWhaE5gLHwn+0h+1rVeqVTATVL7Tx7iWvUzv/Jv4Af1N+6fX3rQ6vzx0zd7AM9pZGZ08pB7ixFyHMPMxRekmvk8+3fknvFVjbKAAscRdHPQn3bUdqk4DItx4uAP4uJoEdaEbR9+hVL1jrs8QEmOsah78uflhUlTGTIDO74+gLrewWOW3kkDAFWPFFoTSDBczNkV+TIpFW0FdcpU7qk8OkJ36V4143X8/RiB6b0k02n+PhuQfsjDBbaNp6O24mTETI5ypKMLGM+Slrrls1SDdfGMEMfrBVHTthLvtRiagZGJqAA2xWj/LQSS0wDnrjYqKDWY/RsARcIH4dVTFwMoU+ztku1jDMPKPHUi0CfPBUERXHmkBwha9YGGWoT4OvQAnlRhh0FcT9RN9eB9p2k9lUBEL4Kdj9SqUBb3XloMCJaYYQk4unEKTGtoGNjJ0UjPt+F0WKcKYdukt4QMO73z5xqVuff5E9rtA/fYyz/MnjX2wNnKQ6l27H9CWD+RO1+1pn9i7z/JfyrHBDGtR4e3FSyagyypIf+rO7UH43VZHiezC5WmiLqWU+xfgZqHdvoYE0uUczILmJXnvYQMuvrM9eFXgB8GyglGRDci42j/97nBN/c2w9KTWDMBTid2ylcc0NoRoKMCdY+9XNfyvR1x19xfBrMibf6RUaTKowUrS5N7Dy3sl8q6yweBdOJHvfOYiQnu8iCUlX75Ez+yPPLUvSO5cXrlTFVGP2yqazi+DhaRUHVMTJzYyZcq0nRnU9ws8xROWtlaAxirS8Tbqt4mbE2nUu2ExdSdJ1Dt2/jOykL4PKLdSEIpa8QNypx84hVFSRca1604waGkUD0TyhAH/RT2vxpWMp0yEZk9toonGknwSgn97RBT1ampeL6tJ/CfGT4kdwVLcjyqvbqO67OKxmgbJzJWVBM5mqTNsYBERk3uj8adjIxDI+ZHZM8eh835zUILIO2+SXKwJp9UIGbuKzbWJZ2NadauiyPJhjjgDOiMrQMWYVi8Vc2bUH2U+rnIASPySLy+6FkoLOAyxMMvE85z04IXu4pv+jPSofeKtXzYo3loMlVucEoR1aBZtgFt7Uk1A8CTZfhJlFQSN9GQQcIfRJ/0WFcWY1XK0BA4YkZuXRbkev7njNeq0XSet7ub29Cdc6t6TT5P6n/DEquLSQhlN6OtJJXVa7taVdntCPWBuVy2kThB89AhmQoY9JUclVtB3yZE/5EKRI/WR31zf0nq3wnRUu1XfBKJSb+87VxAAI/X7ErAZUgZgPNnfDmXeiVlaqbMzzlt6XPsvZ0nbW6A6D3zUKXbqGHxqvKtoc5crxS7qLwGAbJaLPtkpjrRpyNdM8fjceFhJSYMO9r6iLFvEKJGYZlsTIJ4YkyUMEx91H8UGDAEN59eGv0JettWx37+NmLtlctzWeP1eNg4+4jgYG+nMlx36HAQPeh7bEXxQc1sI6fag097394Tlss8Fq3N2tXtZetrm6FQcFnPOKL8d6J0UGhGVHi3LgvPV3c4QwXYohJghOdXYX9k1GzOZ8QGGkfo0ey6Vgbnh64wGlPreR2h3dUFDlzlGNHXDSrWo11Xy3N0knfiB38owN/fZ1biv5wcfbt5smBxuWm298/t27VXO5rGe3a0JCEi7E3mof7ai61bn/+/vdtpXF5oGWq646GkbKicU19htpCodYv1/GIaVIvaTrii2uulsZCRYZxDdzwQKW7pnusdoxdw56oNYw4fq0WFwNCkYvUk9AIMFEOf5/1gSXXSXKxx9jYojEuTk6uNkjn06onF3i6SjzO5v9mKzjvPyn4SP959KOYUnxM/v7xZyniS4Zju+4Qp03fzq4NyhlqhxjeHJBniFExDgfjwWSGcR0UttJ4hjE9m9lp1Yin11cVEwfs4nyCs7aGP955tz9Xe1bmcMfRGvTZ5PTLyLru2UZN0LTS6HzLns5vkrRl3TCTnkize/DoAiOJgabGlvHNjorUlrzi6FFkmis+MxT73o9x+GHVBdvv98Cv12+z2STuyQz/Qe7rRvF5kHlUz41qe92Dojegl5svIAL//Sr16XM13bFImFk9f84iJ6pHg2BpOc7vcofyKMq2tKxpnzEcGS3f6KUa9+EXVNIGnD7+ceP58a2XfwjffSEe+H6zoXtutLn5fHNYu3tIKTbJd7YlCaMJe6Wp2XWbCUtAaEOZN2+8uzCUxpxtwc0Gtl8s4P17/8n7v29d/htRW+2dw83qfX9ZjBaWy2F2tp+vzY8527GCbXNkshUGk4rqc+LD6WU9Tg122dXhCU3Z3s54bBiL5qLQ6KuW+Pm7oYQF2DJgIYiy+uLN7sv/xHbbn7JyoB/MG88uDjU1DrUSWe7BJViS/2xLgpP51lyqzC6ofLfu9CHFj5U5JdVs7V11nZu+2stxYmfls3b479R2wimJUcOqB6ptdbpO6xknVcG/YCn09kLAeMFzlCAtlnS3jhh8JQVLDUhkZBT4tkOj4bYVl2PvXDu4NO6un+EZW5QeT0CTo3RmDX3DSy6bVMaDhuAPvaXJQfQkCT+QQVBbTGLHyK2ZWx/+W8aMq2KUVA+V55hE8r2JhVYZ2ZbZZ+5Lk0G/I5zczPd/JzCv4b+nNjUkCh+21z4F+D5cnhe6P/y/tR05aylhNwUCo2XeNXph12N+dwIKu9yo9+MymzS6DiHoFipFGVLG123A7bxzekKTlxlNIzWqEl7WsHXQo4//SQxiVLnnsioKptOW/8rUQ8zOVbVU8UouuSMXkF+U0SraYOs/u9Ys2zutn7lEVpKej+BPL95/PY53az7vrU9gvEupKia3AyK8ZUJe3nyIlpbOiV9NO3CEseEf5jkbNe9k8iM7ItWZttSxj5eTSmRnpAVq9b8vm1ToJ1iPF7km/iUvKJj75v0Wwal9A78oaeKgbghBqLKadFfdbP0/A2MzgjMVGxjLEMwYQ0qeiQxrxip4xyXmkDOY2eDI1Wu7mu9uKK6zKh1IZh123N3yzDfeKnLRYLK1/bRFZEFSXXcHzqFTAhrfeSBNFO+/xqYGpK6AtF2lLfCfgVXE95sgGT7XkeBcXkbcvQ5Sl4JqufWaEZ8/iYpttneJrElOiKrC2MU04vaijf6x+PLtF8LY4Cf867dvDUNsOfip2Uf1Ccf63Qqg3192Pd9q7m++Ur91FVX5wa72O/W2E5H0S8M9hkcGRYmKvrquNksBt3d0YQl1TVsxUfDmd9zhhsbmsZIrT3BoHeaKCv+zcK3zUCjswCR5bPwM1cs+usG/GXkTN7XZP/rv5t5Dni+qles5XtlJTfKyii73q4K/8p+4hKplu0vT3unEde5A/dt5c3+d1ASBINr/TI1dXNxcW72wub60BENv8BYhP3gjkA0eV0lozmZAp0uv36ZPPdwPGJGnHiiikRtCSmXm3XIvbo+oEnhcaWql+RWlLnUeako2Lo8rhyw1Z0NW5etRN6XjmFxox0oVo5HBffX3+oXLKc7pzgvr83r2D5kPl7TKSqwmzLWolRchjsdMeDnrc9e1s8dOLZMMly1A9K+teh1A5JkORPI8T/dUKKZEEhYLSam+6KUEBK5/Qo8dp3nAZlHfer9Vtem36ynrkUNAH2SgkbPXipVuamPIXK5CAOQsyD9xAJc/uDR81kte5oIIpjQjP796Am9R7GeyjIhZvzy5fPSFdnZmtCvuvOiG6FQaNSwtws34Zdj9j/rS0p+N76XO+Nj5g3XrcgBRRU5+iVg8iDp4s2asffXNm67rY13tT/fute9hEhQ+CkPBCiCTH77ndK5b1CWUalj4jG0P8PuqG21b0631bfpaxSmcV/yPMBmZTyb3nmX3S4n6CHld5bD8H6EyJnuMtXRH7x37+lgL+/nOftehc7HCN1UDMXFhq8d3Pkk/JX0TXl7aHJmdcG8LhnVDxNdelXePS3U6nKvl2Bm92FTZ5Gyue67ZObTFBNN0jcujtDCRoYU1bio2Loo40rbKnEmWW/+ja8uIYZIV4aS7cdjq3NX2Rp7eVVX+296W+JJmqlqLte8pe8dQjFGgbspwGpe/ej0Io6D1AwhtJ9bt3ShMDU3HsDbJRakig/bUUjrt29Gvn/SiooyejYq8MsZkz6V7Dkr8e3L4hBwJuA83jLZ14+ruTWQQB8eZN7ShGRu2W1t3GBpn6xl/iBqpxCi4+OACg//hfMZIukVsPJni4RPBsTHZG5f2H9K2GCKFqeyhzdghGysximUQ9/mUY/2ArbJMRvbZ1tkL8Zy3vzinu+nioSMHV6neDjLzHQtNEfC5AIITLsTlXFy6un8T28Dhid4L9zD0Fn6LIeTrm/kXIgKrCwNLmX5sfVFdIDAJljT++FoagUKI7A8/GhwceXiwN3L//OD5Q8NJBRdIS0YFrTXBBVWp3A5yDB31zXh4ZCRlI8XSL16MtF8Q2IZZREMNfa+2b/c9dPTO5nTOCu/DXp/dGjWppx3W/cKau8dGklKfTt77PXdUXKW9jM8dnnMYL+EqReFgjDHh7meVu1ykUczL/H4vDq5afhtknzJONbZCmHS9OH/nYR6G7WPAPRnIqA0goDPC+hxY1mcCT6d6VjxgX50dcbOtGHKpyM5xdzK9HWdVj1rFVjVaytFM/cHZJRPJssanfevO+XVjXN9F/3e69DQzLoKEUlzHbQJzQM+lQ/QB1Sot4s1wCbQb16/s3Ub1qQvj5j5U+76QcgEN0bxums8lLlVV8xsMY+QuyGBKM/LOmWV5Lm6K1J0xLeYBGoFzFW/QuGs0q3EFGgip23710YT8d5zpIrxQ+QpkUHvwEsfr1tAEv2xx6dSly7oAFDf3KcvnUD4StBrw81XBnCbtN9eli+wqL3dZZipmHHfN/iw0/QQZFheEKH1TCn2BjTB5KJlII2YJ1F0R2BllmycXheTWlwpQidEWZ/njvNpXIisG/Kf64Hbmm2q9VqwHQML1yuKn15syWHkuUru0P9llEUMPKxWozy8KSTbvujV2RaAuw/U8TzSipOdkKZj63zhV7EzojEtrwmSdCIE5nYhRN7cscQzpSEhvwBVB3LQ9tENVoA/HB/8+nVxlnr0d9r011xk3G6Sro4n9zOfkUy0iN5h3trWXZf/6p9ZhonLIQ7AeIgqvLbdIn+jff3C3Z3u4vt72tPH5raujePvyLq/GgsKCOgNOCedJPLryZeJrO1uk/pbZ92fXS67bzz27hVvcz3dPqaiNIFaUJ+EYJQm4qvJIIrPaPSu7zD2RUUEkVpUnYEsq4nAV5URieaV7ypmCrO5eGu1cD5nS20+hdQ9C3J7m35tSFxIULXEYc5gTgofA9iX2Y3mA2rzgXBBHt2lQ/bd68XooaN4oiFDlDXU3wGcQ8u7UbET2aETroxgx+hXqXjSqLdo+H99lecGlvSM1zL/O3ZDl11L3jnX3YQm6zRu6YhpQUefpZvZnqg3FuB7JDHUiN8d4lyVz7AWrfDPxLZlL1i7ygXEuCgQyyhumn46yiNaHoQsRaz4YBbvhaVnd1SuqmGSPFPeXBRWaFn6LP4Fd3fl8f+/xj2tn6HY29FQLy2bcjc2IiK3tGxGbWxHbGyuhETu7OxF3VkOTNyYnTU0nJqaMJqcMZ6YmjQynZvb+kxWr46KjgidG10VlxCYmdiUPidCEDJht8UkWxlFkKyajKjlvffpSfNYWFxEjlCmUaG3lr0/oyMZAIiCR2VhCR416cAcNoxWhFUnDBncYObeqyFQzrWtO7P+Z5hcdgPYkoCNSZiv9AvO9NI9rRu7EVMa2FYhw2KXOcnabee5EoBMVwSVgObHvrQzuAoOxwC0L9G9oxgcyuPMURgCN7O9HyXrelrOyAvAUsk6de3jyh1chBP9oiKclxhfjiIqBYRBOwYwMVnlLaZZfSEdL9eTQkp4B6o2ff6KL8rTZwJnFhhEW1aqgxaXgYKD5DT01JynWB+Pg6+LinGlMwYQe1Z6KrOrOtlFt+/pvxrQ2elvJBD155VumAqFQ9L/xnst3e4f5qtRaJDI4rzqCiRLi+D50P+jAOYUVEKYAojOHuScqci/w/vaffws/+PftSYPOfWcHjHViHnS+tqnMQ2JYpA7kjZRNO18/A0sTH1SabPBshiVlXh+qBOM1pjFdiCKhhPCKSOcoiMnLzKExXkfLyIX+wWFuJ2toQaA/PywvmUTMyy8g0klJ0jBbBrhxZmG1IrUiaJjgphJKl7WeuJi49zgy36M1Gp9LsvdQ9bKOL8vK92uHxZjbVqxHXb/KvzCG1U12DAnxj4wPRlMjtOeNK/PsHDDOaCes1WNacQJlf5pEsizwcU/w+e6MyXneVieGr9mhqY7xWNm/upDtY4oGDoQbZlazO9idc/4F2Vwi2uaNcEFHwc+rscEgqiJhu86Kio2KiYhaXUwkMTI+djUhKi4+OlYtvez90PqrqC7HJ7VrdiM9PfS41x0RXZHjS2q9tjWfIpveZSzEpfjPpIqODs3GovFdRgfTJNzIkBEHnwlya5V9YXasvZR+3qjHAL6a0h14rPLI862GofYr1du3LJ3avlY2UIJdrZx1IKNYa2+L2siE7oS+lbH5yykY9uuzZjg+zzMgJd212D8qP9ARQ8KiPKwdQ0/5VQaWKD7jcubmHl18eue3bjYKJSLM+n/N/Su2mEzdIKn5OU0DeGSxu+F1VCxjKMgwEhU8FpWx/EbiaeoVsRpbYrcuXr+NAGuDJOgUvvUrXidVDC6NTnZEpYSENA+PsOPOiV4QG0yz27fIqzkvcU6su2Q4pj6QX/lYXaSa8MlfT5XBz1+Lijx+HpdLtT68dVWajUt9W050iIBjaGdxCR7H1Z4pd7I7G4bqh1Va50e7/ZOHp3gD0303PO75ZzOprmalxl/FfsIS1WNrM41E3fleyMgEoCY7E4Onkb0jGGc6gTTAI5vqic+meUaXF3ei4H+OoxJ2mR4oSirg0HEwZBG3y8BakAcIkmec56NSGdcpZNQnhf/JRBL82fTe07w+MELMy/EmBwABnH2USKib+kjnosANo7N88xl+6+5pidTov65yRhYAdBXC3aKrUpKJTHRiqLJ0pzffoMNA3dtu/dyfANzACLD4lRUEoQdp4kOjFWGF7x2ou9nVzyThIHERkw9lt7IdyDaZ13KLt45Bz0kPxKo8Ivt0g/TbgvU7tb2/2hx0PhweZN3de8K+e57Txsdk3S9pGpQ8B+kpGyTIrn8urkwoSeaEppUXlqrkBFuWMyqZAUiqqsXhXGx+dmJCDi02NpcSn1CQnRph7WSPRM5lYW192QaFttdCYB6Z+EN9THFQXQuTx7HgXEoV0YwA9TZ1g0IQfx3HgXOzqqD+91nhLDm59fRlgCUniF9ZUAqNkbTKLXD6F/pTXoHAezU5Xy/fVUObL/99DCuvrO7liRVoUmwh4GijW74i9RcDg0OVsChxq7witTgnJDhcHTL4IS+rKI1ELSjIoZxJSSUzFPrxT1PXkNwyFKgb/uBZ03mN+RWmgFg45ejT8l8pWBWtsVN6DTq/vT7WzXLqaEaPH0PAJwFOKUvNVMCXVTqkL6ynd7w1FI2tOU8gP6T+KiUTF8Wi7ebtloRO51pkkfRahYiHZ/bjx33DP+xHofEc2GOLtY8LsAxkAWVt0gCjPcD0EgZ2ShnA2vI7sNHdqjld1AQcfV/vSa0+q/TR/gH0fc/YUenZog9aOt65r0ZAOB0zfJle+Crh/UisKEeusFHKQEjlFcFoZUPv/sWgod2Rwpf733uTyMvwUP5WP+JTneUhnB4S4cu44avYe5McylYe7FiE0+0w7EXYm4Ql21n5EbTLuoHzrTgLoW8QsvxhyOqzIaSvO1b+irpy1BnYqJtH26MUQj84ZPmvDtJ89Eo9PmXm7zyc3iHhy7PhvUmzxahfVL6F/f4f4vyuCKEfbV82h6z+0kFawR/8Ic6vIIR+Ycjy4h2k1aJE2BYHIdUzNZCJ7ARbgP+2NVMOYB1yRZ6XlFzCWrGEK4V7Fp7fh1rnw8qM+aO1dE2rD7IXBwyXtd1nTypsUPk+7MYlhv0SGJFdZbJpZdWx+L9vP/w058WPYbhNLhAYD4pjIUsmkOvlGk9Ae6vxmAHaJ6pAHTCs1rbQ19IWHakImgdhbqKKZoq5027aAtS/beYAH8yh7TKaK+pH7SrmAN60J8xFWm0OwKGVvJqoyK+h3h50qLs9kQ8wnYk6U6y1GY6hpLxNaSpoB/0hIE6mI0YBZXOlz4M+ij6KrEJnBpB7+ka2cqyLteJNIMgQaJvSAkAEOSSiwALKzo6zPyLdR2qzPwsXC7H6izblK01ArjhoLwILdg/vBF5ub68UiQDi1pEq5siO2vsmdSbSLab049/vbP01kQZhA9pT2yXN1Pl4d3txEfcg0g9JUkONP5BVivDf+eg89HXrfNK7rnO3c9aATViSx2BsTnb/OP0N9jEuj/dsOipxwZ2UPhldJM+hqMYThuMeJzjimpC4o+IGDSKqRT2bZ+/tq/KdUaKuwDr7qdaU7r2W/LASNVbDJAYkFFt37nzft+3Dn+u6o4NIOIUDkwi8ASkf+xyv+k4nAVs26jy/b916HDF+WShyA9AQx8nbdq1o+wai9/qg3zA+HEfF6C3xUNCHMaQisLUik74/xR/qulPCJyJId6+6TjNeW7BErLvRYnGzE7eWnjqkro7qweX2jt7WzbphgcF/3Uo6M0WVBS6c/i6jU6hgTJeH483x0VJvmnHFnz7r5Eu6YLaP9C1pUbNBh8Os9TP+ihmG/45Q81rRxt43MpiZWf5XlUWDoaL/6EbY11IZskC6vjxFZedYU3Eu+cnQ9ZnlKc5LEBGyf1x30PsBC2qh1pZNYuqA819OQlH9QLq9DmBx1drYkv0ETKKE7QE+3qVmfm7gWYFWOtInTlBABRTsFrgoFJDN+Qe8ghZKvWLvUkCUOUyNhGN914OMiMeal6/hjPvtQ42Gyo4tacDkQIlKFTcjj3SALhlsfY+BogaDOmEzBJ3IaWjFayxLDm/A41m1xPrtEAJj4HWh6PMexarqvCZGsV5PXrNmYlybaAIaVPhsqv535p7wEIoxWHkuEjKRN3Bjk0cssmwm54t1LuNcGHQssiIifD6EenIAdCnl/MlLSusXaK2GGhfTDFw+nwPQEW3WMu8u3nKcuh0q4muKBmX9o5xRlvfOz+pxvoQoAlvi8BVEseIFQLzIKZpN8R0ac85xLAzdbqnbz2raa/Z7CfVkhWxguR8FGDgV+8FRWA/dQggAy6pt9STWF1qHXVGjPVhqFdKWfgbfH6/PybWUVqCKOrxHW4virYMPdNXNRDV134XcvmewdVqU6iQMJVF4BGhbi6/rsVQQ4En0JzjB6TVJgs33LaD1lj4nEQqoGhpZyead99yzOcBI46cdwMquJu9ZVVa8xGKlLPZN1Mubp/qHrBgC7At9Qy4v9fPn+MeZyx9+xHF6QpujH/0y35+6wMOjCyFPdUmkYBiLyWB0+EROuk6UIROcO/czqMD518X0AY+FOTZaiHVys8jMoeq8wpgO3fEV2kPcjxWQ9fOGcUV6xzXvaw8v8TiPdVcIQw0R1NXYIZgCUZ8hSLpFkln38GYKKjIJEklt0T9BKYWgn0gR6fJjTHyfuL9iCkg4EedSyTaNjGbinSqKrEnT7izD52MYvgSA1Dq+RGLd78dIQj1Lj3hCSCIKbTXxJ7JMc2RSsEmHjDGLX6jlKXW9M+TpgwVbIbSLHp+MhpJ5RYKXc7O/OZmOAByNgMfLeBY1HGZEY+m6FtuuTMSIaDHuELcIfcTYy6R5nN48lr6HYfQ5sj4xmVgzoTFMUy8pTH16ZUGJhQxQ5/MIcyHwZ4SIZtMrGIodYeuHQmFiRQWAOd84IWXt+BKFbTYCYajnb8i0b+tUE6H6yPKczYOskSs0fEapwCxfFqESFJmb/eKdezIJElAHgh82coKqyha+vMLI21YBusHRhkSJObmx7GLYyoQwC+Uulk2Ekc3eZUga4jiVdUDVUhKpJTGEmVruJjPYn6nZiOGg1Fr94AQiNwlGwiRbZGOqJSNajU9egUDxozGwBjX2DCVjFcBJWCfIEjaYkOSiEl9OEKWeZnS9BSgJCMk1cKSnWoxqfOavNZnaD9QR6DdMDntCmPEfxUUCtqQBErC1Ldd91kgonepcgrXZL7Lk+AthG/xjs5hukeWXk6bxGXrYJGm5vOfMX7CU5kppyeAKqaDskrmPhZ5rEaMx9QJJvp4rqIt3wlGItBT99uIKWAf40K5eYvH9wsEgXjg6RKoo9rTgK1ch0Gs1phF0N1I3m/vSABKq7C7kAG5ReCNRxUZLLGoRc8SjQOfDmF+JEWjciXt5bQpYLHLJCinnNDVWXioBT00BpKbvCczwAS9SDP0Y1vHOQ7wzj2PzfC2nPyZ3IQkkfbkYTdeN+NnbyDypqleyH94jFtnBZLHeejik9/z07s57wM5WN2o1bI7Qpt9J3bbO9/2xJ9aPtEzJsfIq1ppPHtuStwLAFzh3Zw/Aax5FxCqqjYkGp9hHVNqTIuX/nPY9+CHPW0rHQWVfUF0kg1bLIFeFAdlflFgtcikpiiYZvQRYm2VsZUGm55B2HT03O9Y3YIYERKIBgoWw7rkpnfMZxx33S7Raj6qy9A1WRwcpmjY2GI5JJbnT/E/sfF+33VeMZAgFIAU7XpWSDzam7KtkIHJyAyiDnRpRmfjTLbJuZRh4/5iyybFZuvKZXyxxjr5frhjLTTqDkSvZzt5P0Dk7aE5qxxUaDBrbVB0MoxlPJpUKgcUBwSp4n5U1c+sFFPecw+hz05AXkwTsh/v+u0w09dG7k0BdT7cUecveW3vjNbFFwXOfED5EEWy4R19MwxoWZB8++Ec4gHgJURKYrHkWZSVVG7LC6Lu/yj1Jf+fDrwD3TDnJtalTH2x6ugD+3Lh8OJ7ESiuWJunkuUFagviyrgvk+RYjEaRfm35SSmXBSX9EVQt4jVihTdBqwwyK7adx0dqbUx8owyxySevNjnjNYJBHAGM7hKzwxSR8hzTOM/HuPkgpsyifAVj3c+SVREw+bWA81vpI0OW03FJEbZir1rOQOTRefgB5QyOuLVHYjmDrv7R/OUK1wRQLu/cDAKq/bbwDFi285lWmmLNgsDjj83FD0lmo8DBFiskRvrN/ls51y+YXxb4OXLVT5dJ8DWQylXVTv4M3TYBg3xBqIF++3pi/x3HRc6mNYKGhe95Py3LNYOu6dnQ7t3avWSmDJB6c606XLNZCd9bHySOYSxOmITVzjZPJQuXBu6CfTvos/4NI6UV/zkxp5EG73IUraubALTXq5tzoTxDoYfK8aSaS4o7+5FyiHz4dPaJzPt/eMy+53Q/hoFzlOLcHmvutTuDrxqCFw/br0c4N24jMNp0W3OzJs+dUYjLySqaYrE8xNXl4XIZuiC2Y/T2okht7i9JIhyKhtR//M6/nIyGmpgI0oJTbNIVz9/+H9fi+VR9izUG0o5/PUtylRen6qomwdW0nf9WUhKKp/ISkIcw64Za66sA5j3kLdlbxOkX67Lm0FkDP2mfB+KlPYbYh9aHm1hIkV+VuFLNevIxedIV57pw3sOIPK2Ly4YO/69LBYiEmSTcD9tpr7TQms7lSS7w4akMUPE0EvV/7B+dXTvrGSfJ5GNIQssF8qrKbLyCRhzQsQ3/Nlzmci/xKzJ0ai4nIaYAQiqyoIy1NMVRpuI5xH2c77/n1dtiYEEAKDy7LlHuln/vKWhnPQaaAquw/QLAdA0W+6XQO6N9K7oN2LkMDtH8/mRX2J9ZTMOc6ytcULn0b5sv/wqO3JZ2Awh1ZB+lY+Ef4ywOMD2TOJYAtZI9uwTiVmh9rOtVwfvLk98UqKPtfvSAvdVZMlsnIjJYF3h9gnEi+GLvNZvaejXX5S9yyR/j07/8fWvOmPhZLNnB88rHUonwssp9qer+vPbmsvcCixgRSpYGQhRQ80PASi0YRSkVE/agksk6JHoyzW7TIMRMOWlWPT+4GPoYKoUap/IPhTyW5CeXl4soyww0ImMqhKSiLd8XBsP/Yb2L/smfWpPfZTNyHV3Akyxidu5tWs6nsPw0M1NKo4Lx8U4Y7HXxz3yTmTE61JRzb/5puraZxgud11xMFgDdQK/dQTeaNmr/E+IwIDwrz2LCfolHhV/ybj/3ME57jGPwYgQV5qGIzNgJPqY/hr9wuqeKqcQSKNSp81+GgV/GS44SVY9wq6fzz6v2BjJcQpcSFO5C7k/eHm5vNlRs4lGkUnzyVeAaIfZh0bZx8o8q7MlDnnw5WgWf95XqAlbvdpl+s+Lav6+ltDvr3j4ePto+uNHf47p7nq63DuLvdVk8ynd5TaAuJPU5cuRlJy0aM+m3i0McychfySsX2GxJ4N/AxiFYNRap3nMrHDfyXWeZUno8A6qbSLljKn3Z8eiVHq2u00R3nvC8SdD8oRVF9Rh/7Z/8GP8YkAnmggovybRkiC7ytcQkrIQacCg0I8kNIWGs0qwdH+B74lLZz/YDczXf+RNNRUYhRe9u9uR5o0fz6Kq/+vqtyXMyDsXTofuk6p66pYkaHhbWOutXSgxvKiiO/vMIrFDkxTzitx4HgK/AKjztUlSmPAPe9pmYOY1DjmJLrufFdJ21QSj+i5mj2hj77FA/hmSTzOM0054UPvW3TTIe1WrdlOVpn+LfuuMt3D3QYYTyXKenK2xviclsvyOIKkLW9Eb9ffrzgjnQXiWEwuyWS3Ve7QXIB50Oqp7KP1/iCbrbYTcIN+rpxQCqW0vKkZv/7KzTs/MGnFdHXJKyvTf4SJDnklRZ02taSdrWev8WwJUzNZXCQcX0FTYraWryRyugVGdii5W9n9jXA/tfUR+Gb2XxVqjbny2E85uCTJ19eG+FeP2F3lvcZB44hJlPCtj38aWQECQjatV+1IHMt3ABj55/GcVpVgzw1O60cFqdIt7s81vEdWU3Gk/FVPZ2YyXTSThDnw6QKw2IBb1iw8JLaZwgNTNLRbq30q2jGMcE7odKxOL70RUFyY9aLYabhrBOi3u+mRVoUSNsVmo2h7Q9pLd+mJ8fYeSDcopo/Qo+mLpHGP7Wp8g2dy7WtAAQAYrl7ur8Qd39v7P8AiX9fXfbNrRC16qx+XFn5mz09nBuYxALMfZNNtQBMbpmOAOYe+qdtVmD9zXxHfZS3rYzmkoCSN7sGVj2F2Uwgs1XZ0CG58ZFjA7NECljkHDJFkN49OX5yLK0Ciw5W+UyxShKJvkzH05G0Cc2U6WU6WUqxHdThCDFHLbJmOjEi5DVZQNvEVgMraoehJDUnOkQfUG9OUPR6dL7rTQNto037AFpjpyj3BPW1IOOlZDp5ey8Xcw0wnuFE9gDl1YC8I35tACdWoiK8IzMIonb0f6QnqpMqMt+YqTuoiz2oWVRQeDQzlkG4Dc0UUQNFtDcnshidGclmdIk8tBVn7JWKcSV79dMOaFNzQykIGLajkggGCSJYnxNQQRwyOT4qEVdvnnMoyNUccUIXiNpmJXXEQj1xahgRXw5h618C7IFzVD1VAv//xelKtE2IXNKpR/53M80Bmed07IHpcl4VAHZ37fUbEM+cNiPqnEtIvktRZvi/vwkw/0YaaZvMObcEamqkEO8mgTH2G1v5lxmOS1Hb8ARThSIcUET7Q8UoyDzWHeUGMueWQO0JKcS7SQBw84DCzeYUq2isRs7LAeaKZJIOlIDDJ/nBEU4Nte3kbWporw5OgoYGLFbJFLCY6BcSsytzqQ0nL9PEKcomxZFOs62lOxQ7W0TM9015QkAAVr7ZpS21LADMD9cRAe3kxUtcS0as2Vw7incZj6nrw+QXuCFrEpKldNJlCtlypBAJEwWBiIH2QlaiyoGrCFU1dY2aVAvaOrp6+gaGRo46jqsTOHX25wYA3AAAAAAAAAAAAAAAAH/rgH3t1NJ7bPjslz+XQ742/GfH4OBq0ZwEMoVKs9mWc9uwY7c9H+f6v2ucKYgCAIAFAAAAAAAAAPDZeoZMxu57fJ/v1+lX0R/Ema/dVA5sLGdbGouxcizGgjYW7dm6Tvf0TPq3axrD7HuLcTlr1+6II6cuV5EbkUoUCYKIgfasMrw+S7bXzz788sciiUyh0mxu7DFeRERERERERET829HX5puaxiSz73U+NuRAUAIRAxkOz0KqPRERERERfc6eCYex3lf6DL/8wT2bGNkFx3VZs0hKBoVKs9mWc9uwY7c9Hz9ioR+zc8MwMzMzMzMzM/Pn1vT/hdn7Fnu9jvU3xlaiRCBiIMPtWShRi4iIiIiIDGwhIl2t6ffVTGF229ThHhn3PX6fpV/+xJmvxxYPz2eVnwSEbgJbshSVLmRkywWrgJDXMCnim4srQmgCEgUGWkSSJFOoNJuVbCvHXoVU1dQ1alrVgraOrp6+gaGRo45r1gmcOuscXaMb9FDLHimDlWfh62ka3+x96whBCUQMZNj+38Ju09gwu0177G8K4x1hLMZiLPI45AO/QCFDCUiWQulCRrYcKiASJioJRAy0aJUEMoVKs1kpQGWoqKqpa2hqaevo6ukbGBo56jhYJ3DqzHU36NKbjL5timPYAAAAAAAAABQJ9UmSqvNLklRdLj1f+jyOa4sF8JEHG/kkv0Ahw6bOHIvFscXieFNY/NacQyRYVBKIGGjRKglkCpVms1KYylBRVVPX0NTS1tHV0zcwNHK0STbwC6/diAw8SzYdwBgzLJLIFCrN5rnupe+f3zNHMEY/Zquz4772CMOK+OYMztOLdfvy/OOTMEY/ZgF/AAAAAHDeNw9j9DEKwzfoaxt7AsTY7WOHjx0ydjZERERExNidOuEdx+nqXNclShwQERFRdmNmZmbmL79vBz+zvsvrwXz8AoWsShVlSElZRVVNXUNTS1tHV0/fwNDIkZv06J6J8u1IXl4+VA8olORBob4n5BxKzkI+Qila2AGGYRiGYbgiQyKFG5FSbxERERER6R8dHo/H4/F4fP+78SGXjKy877HPO/lEVBEEQVRVVRVRJBoeRc1QMxRFUTMzM0MNZUeSJEmSJEmSJNu2bdu2bdu2AQAAAACACgAAAAAAAAAAAACghQl/i4GZIZm+SZJMr52nlqUVq611VGvjvsW/nLVrd8SRU5eryI1IJYoEQcRAe1YZXp8lk8KQSCIiIiIiAwMLIZHJZFVVVVXVgYGFkikUipmZmZnZwMDCKHhUKhUAAAAYGFiASqPRSJIkyYGBBWnOWlVVVVVVVVVV9XwfHzDeEdw9PL28ffrZ/vlj42yMMcYYY4wfkyRJkmTbtm37uCztTrrJDwAAAAAAAAAAAEDAnyMU8SLee++9VFBKaV3rtDHGWGutc8557z0QyT0AAEg3kiRJkgcAAAAAQEREREQkIiIiImJmZmZmFhERERFRVVVVVT3vsTRGP2bzZ2ZmZmZ9EwYz58595ty6COacc8455/zuLl363aV3nSTxM1MHBAA+U0N5YrdpQbLMhQNiYX/8umRyFLY6Q84RIA841ARJH7I4Vog9iF3YfKwIVeHHipJFuyClBSrnK0uCDBB4MTJQBUiQhC5NDAonVHEHJF7mKCBO5iUcNAjnA0KCPh4EAnwpBVmvoiLJtEshmGl5R/5AS0ZbHpnFlrk/J2cmRlZO4gwkoZTLRJGEwTSkWGiqG5U5L+5cuPKBl5NPsmAG/gtSy3uiKpkNfQaIX2VaSJgIUWJAxEmQ/Nb+O540GbLkyFOgSIkyFarUqDtBgyYt2iB06NIDBaPPgCEjxkycZMYcHIIFJJRTLFmxZsOWHXsOTnOE5sSZCwxXWG6/Fnqd8+DJizcfvvz4C4AXiCBIsBChwhCFixApSrQYEwaVY7qiw1sVGtQ6Z9RQCKkJYROyO4yvvqnXqcqap77oMeaH734aMGnLpimx4jSJd1OCG7a9k+jArj3TknzW7J67DiX74Fi1FCSp0qXJ0CcTWVYTX3/paLLleC9XvjwFihRa0q9EsTNKHfnoIr4Zs+574oE583gWreNasKHSuKuuuRwiPoVojDGJuV9fOJ+Y2nHLbXcy49K0NDH6eSQ43AkjnnlZAoUal0lJEHa9lJJ50zDWGY5QZ2EBTjyfTqHSsxIopEzKmYzEIlCCiaehu1xnXwgBIqB1lDZOaM4NLQGZlXfRmp4IeR+gr+3lidT2xMK09VGyBBgSSlBT+F/bhKMtCuU+uyO13fUOCkh5gohAPSqRjpTQTtRd6nQV2mdvNe0Pfq63hS5BA3mCoIxUIshZftSiyPu0RWQOWURwlUV2zh6LLNLXH0ogBNL5dz5QYtonwhO1KOM37OCTOOCf7qQWBMkoZo4SJA6awEeImlzJlQaij6aA0Ghqh/huXr69gfO+BPM1DWufSXB7NW9+n6uyyNy7FwSr9+4/CLLe+8GnLABej+9aBQA=') format('woff2');
-  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
-}
-
-/* Open Sans Semibold Latin
-   base64 encode done on opensans_semibold_latin_v13.woff2 */
-@font-face {
-  font-family: 'Open Sans';
-  font-style: normal;
-  font-weight: 600;
-  src: url('data:font/woff2;base64,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') format('woff2');
-  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
-}
-
-/* Font Awesome
-   base64 encode done on opensans_semibold_latin_v13.woff2 */
-@font-face {
-  font-family: 'FontAwesome';
-  font-style: normal;
-  src: url('data:font/woff2;base64,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') format('woff2');
-}
-
-
-/* Override table width restrictions */
-@media screen and (min-width: 767px) {
-
-  .wy-table-responsive table td {
-    /* !important prevents the common CSS stylesheets from
-       overriding this as on RTD they are loaded after this stylesheet */
-    white-space: normal !important;
-  }
-
-  .wy-table-responsive {
-    overflow: auto !important;
-  }
-
-  .wy-nav-content {
-    max-width: none;
-  }
-}
-
-/* Hide the TI header on small screens */
-@media screen and (max-width: 768px) {
-  #tiHeader {
-    display: none !important;
-  }
-}
-
-/* Override colors */
-
-.wy-nav-top {
-    background-color: #CC0000; /* TI red */
-}
-
-.wy-nav-side {
-    background-color: #f9f9f9 !important; /* TI website Nav background*/
-    position: absolute;
-}
-
-.wy-side-nav-search {
-    background-color: #555; /* TI dark gray */
-}
-
-.wy-side-nav-search input[type=text] {
-    border-color : rgba(255,255,255,0.8); /* Lighter gray outline */
-}
-
-
-/* Links in general. */
-a {
-    color: #189; /* TI website inline link color */
-}
-
-/* Inline code */
-a .rst-content code {
-    color: #189;
-}
-
-/* SIDEBAR
-=============================================================================*/
-
-.wy-menu-vertical a {
-  color: #555;
-  background-color: #f9f9f9 !important; /* TI website Nav background*/
-  border-top: none !important;
-  border-right: none !important;
-  border-bottom: solid 1px #c9c9c9 !important;
-}
-
-.wy-menu-vertical li.on a, .wy-menu-vertical li.current > a {
-  color: #555; /* TI website current nav link */
-}
-
-.wy-nav-side li.current {
-  background-color: #f9f9f9 !important; /* TI website Nav background*/
-}
-
-.wy-side-nav-search>div.version {
-  color: rgba(255,255,255,0.8);
-  font-weight: 600;
-}
-
-/* FONTS AND SIZES
-=============================================================================*/
-
-body {
-  font-family: 'Open Sans', sans-serif;
-  font-size: 16px;
-  color: #555;
-  background-color: #fff;
-}
-
-h1, h2, h3, h4, h5, h6 {
-  font-family: "Open Sans", sans-serif;
-  font-weight: 600;
-  color: #333;
-  -webkit-font-smoothing: antialiased;
-}
-
-h1 {
-  font-size: 2em;
-}
-
-h2 {
-  font-size: 1.6em;
-  border-bottom: 1px solid #ccc;
-}
-
-h3 {
-  font-size: 1.4em;
-}
-
-h4 {
-  font-size: 1.2em;
-}
-
-h5 {
-  font-size: 1em;
-}
-
-h6 {
-  font-size: 1em;
-}
-
-body>h2:first-child, body>h1:first-child, body>h1:first-child+h2, body>h3:first-child, body>h4:first-child, body>h5:first-child, body>h6:first-child {
-  margin-top: 0;
-  padding-top: 0;
-}
-
-a:first-child h1, a:first-child h2, a:first-child h3, a:first-child h4, a:first-child h5, a:first-child h6 {
-  margin-top: 0;
-  padding-top: 0;
-}
-
-h1+p, h2+p, h3+p, h4+p, h5+p, h6+p {
-  margin-top: 10px;
-}
-
-/* HEADER AND FOOTER
-=============================================================================*/
-
-#tiHeader {
-  background-color: white;
-}
-
-div.top {
-  padding-top: 15px;
-  padding-bottom: 15px;
-}
-
-#tiHeader ul {
-  list-style-type: none;
-  padding-left: 30px;
-  background-color: white;
-}
-
-#tiHeader .nav {
-  background: #c00;
-  height: 41.375px;
-}
-
-#tiHeader #top_logo {
-  height: 36px;
-}
-
-#content {
-  padding: 1em;
-  max-width: 1200px;
-  overflow: auto;
-  margin: 0 auto;
-}
-
-#tiFooter {
-  clear: both;
-  color: #b0b0b0;
-  font-size: .9em;
-  padding: 1em 2em;
-  padding: 1em 2rem;
-  border-top: 1px solid #e0e0e0;
-  background: #fff;
-}
-
-#tiFooter p {
-  max-width: 60em;
-}
-
-#tiFooter a {
-  color: #b0b0b0;
-}
-
-#tiFooter a:hover {
-  color: #c00;
-}
-
-.codeblock, pre.literal-block, .rst-content .literal-block, .rst-content pre.literal-block, div[class^='highlight'] {
-font-size: 12px;
-line-height: 1.5;
-display: block;
-overflow: auto;
-color: #404040;
-padding: 12px 12px;
-}
-
-.codeblock,div[class^='highlight'] {
-padding: 0;
-}
diff --git a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/__init__.py b/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/__init__.py
deleted file mode 100644
index 88ddcce25cef361552426e7288e24197b29a89ea..0000000000000000000000000000000000000000
--- a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/__init__.py
+++ /dev/null
@@ -1,17 +0,0 @@
-"""Sphinx ReadTheDocs theme.
-
-From https://github.com/ryan-roemer/sphinx-bootstrap-theme.
-
-"""
-import os
-
-VERSION = (0, 1, 9)
-
-__version__ = ".".join(str(v) for v in VERSION)
-__version_full__ = __version__
-
-
-def get_html_theme_path():
-    """Return list of HTML theme paths."""
-    cur_dir = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
-    return cur_dir
diff --git a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/breadcrumbs.html b/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/breadcrumbs.html
deleted file mode 100644
index 131d497c75408d3d5e8f4b3a2dd4af2f406a414b..0000000000000000000000000000000000000000
--- a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/breadcrumbs.html
+++ /dev/null
@@ -1,31 +0,0 @@
-{# Support for Sphinx 1.3+ page_source_suffix, but don't break old builds. #}
-
-{% if page_source_suffix %} 
-{% set suffix = page_source_suffix %}
-{% else %}
-{% set suffix = source_suffix %}
-{% endif %}
-
-<div role="navigation" aria-label="breadcrumbs navigation">
-  <ul class="wy-breadcrumbs">
-    <li><a href="{{ pathto(master_doc) }}">Docs</a> &raquo;</li>
-      {% for doc in parents %}
-          <li><a href="{{ doc.link|e }}">{{ doc.title }}</a> &raquo;</li>
-      {% endfor %}
-    <li>{{ title }}</li>
-      <li class="wy-breadcrumbs-aside">
-        {% if pagename != "search" %}
-          {% if display_github %}
-            <a href="https://{{ github_host|default("github.com") }}/{{ github_user }}/{{ github_repo }}/blob/{{ github_version }}{{ conf_py_path }}{{ pagename }}{{ suffix }}" class="fa fa-github"> Edit on GitHub</a>
-          {% elif display_bitbucket %}
-            <a href="https://bitbucket.org/{{ bitbucket_user }}/{{ bitbucket_repo }}/src/{{ bitbucket_version}}{{ conf_py_path }}{{ pagename }}{{ suffix }}" class="fa fa-bitbucket"> Edit on Bitbucket</a>
-          {% elif show_source and source_url_prefix %}
-            <a href="{{ source_url_prefix }}{{ pagename }}{{ suffix }}">View page source</a>
-          {% elif show_source and has_source and sourcename %}
-            <a href="{{ pathto('_sources/' + sourcename, true)|e }}" rel="nofollow"> View page source</a>
-          {% endif %}
-        {% endif %}
-      </li>
-  </ul>
-  <hr/>
-</div>
diff --git a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/footer.html b/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/footer.html
deleted file mode 100644
index 1c9eb567ac4c8ff7ce31f1f96b63bb3134fb80a9..0000000000000000000000000000000000000000
--- a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/footer.html
+++ /dev/null
@@ -1,47 +0,0 @@
-<footer>
-  {% if next or prev %}
-    <div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
-      {% if next %}
-        <a href="{{ next.link|e }}" class="btn btn-neutral float-right" title="{{ next.title|striptags|e }}" accesskey="n">Next <span class="fa fa-arrow-circle-right"></span></a>
-      {% endif %}
-      {% if prev %}
-        <a href="{{ prev.link|e }}" class="btn btn-neutral" title="{{ prev.title|striptags|e }}" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous</a>
-      {% endif %}
-    </div>
-  {% endif %}
-
-  <hr/>
-
-  <div role="contentinfo">
-    <p>
-      <a href="http://www.ti.com/corp/docs/legal/copyright.shtml">{{ copyright }}</a>, Texas Instruments Incorporated. All rights reserved. <br>
-      <a href="http://www.ti.com/corp/docs/legal/trademark/trademrk.htm">Trademarks</a> | <a href="http://www.ti.com/corp/docs/legal/privacy.shtml">Privacy policy</a> | <a href="http://www.ti.com/corp/docs/legal/termsofuse.shtml">Terms of use</a> | <a href="http://www.ti.com/lsds/ti/legal/termsofsale.page">Terms of sale</a>
-
-    {%- if build_id and build_url %}
-      {% trans build_url=build_url, build_id=build_id %}
-        <span class="build">
-          Build
-          <a href="{{ build_url }}">{{ build_id }}</a>.
-        </span>
-      {% endtrans %}
-    {%- elif commit %}
-      {% trans commit=commit %}
-        <span class="commit">
-          Revision <code>{{ commit }}</code>.
-        </span>
-      {% endtrans %}
-    {%- elif last_updated %}
-      {% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
-    {%- endif %}
-
-    </p>
-  </div>
-
-  {%- if show_sphinx %}
-  {% trans %}Built with <a href="http://sphinx-doc.org/">Sphinx</a> using a <a href="https://github.com/snide/sphinx_rtd_theme">theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>{% endtrans %}.
-  {%- endif %}
-
-  {%- block extrafooter %} {% endblock %}
-
-</footer>
-
diff --git a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/layout.html b/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/layout.html
deleted file mode 100644
index b39100465e132e5c3ee8df3334b93eece1aebe99..0000000000000000000000000000000000000000
--- a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/layout.html
+++ /dev/null
@@ -1,230 +0,0 @@
-{# TEMPLATE VAR SETTINGS #}
-{%- set url_root = pathto('', 1) %}
-{%- if url_root == '#' %}{% set url_root = '' %}{% endif %}
-{%- if not embedded and docstitle %}
-  {%- set titlesuffix = " &mdash; "|safe + docstitle|e %}
-{%- else %}
-  {%- set titlesuffix = "" %}
-{%- endif %}
-
-<!DOCTYPE html>
-<!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
-<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
-<head>
-  <meta charset="utf-8">
-  {{ metatags }}
-  <meta name="viewport" content="width=device-width, initial-scale=1.0">
-  {% block htmltitle %}
-  <title>{{ title|striptags|e }}{{ titlesuffix }}</title>
-  {% endblock %}
-
-  {# FAVICON #}
-  {% if favicon %}
-    <link rel="shortcut icon" href="{{ pathto('_static/' + favicon, 1) }}"/>
-  {% endif %}
-
-  {# CSS #}
-
-  {# OPENSEARCH #}
-  {% if not embedded %}
-    {% if use_opensearch %}
-      <link rel="search" type="application/opensearchdescription+xml" title="{% trans docstitle=docstitle|e %}Search within {{ docstitle }}{% endtrans %}" href="{{ pathto('_static/opensearch.xml', 1) }}"/>
-    {% endif %}
-
-  {% endif %}
-
-  {# RTD hosts this file, so just load on non RTD builds #}
-  {% if not READTHEDOCS %}
-    <link rel="stylesheet" href="{{ pathto('_static/' + style, 1) }}" type="text/css" />
-  {% endif %}
-
-  {% for cssfile in css_files %}
-    <link rel="stylesheet" href="{{ pathto(cssfile, 1) }}" type="text/css" />
-  {% endfor %}
-
-  {% for cssfile in extra_css_files %}
-    <link rel="stylesheet" href="{{ pathto(cssfile, 1) }}" type="text/css" />
-  {% endfor %}
-
-  {%- block linktags %}
-    {%- if hasdoc('about') %}
-        <link rel="author" title="{{ _('About these documents') }}"
-              href="{{ pathto('about') }}"/>
-    {%- endif %}
-    {%- if hasdoc('genindex') %}
-        <link rel="index" title="{{ _('Index') }}"
-              href="{{ pathto('genindex') }}"/>
-    {%- endif %}
-    {%- if hasdoc('search') %}
-        <link rel="search" title="{{ _('Search') }}" href="{{ pathto('search') }}"/>
-    {%- endif %}
-    {%- if hasdoc('copyright') %}
-        <link rel="copyright" title="{{ _('Copyright') }}" href="{{ pathto('copyright') }}"/>
-    {%- endif %}
-    <link rel="top" title="{{ docstitle|e }}" href="{{ pathto('index') }}"/>
-    {%- if parents %}
-        <link rel="up" title="{{ parents[-1].title|striptags|e }}" href="{{ parents[-1].link|e }}"/>
-    {%- endif %}
-    {%- if next %}
-        <link rel="next" title="{{ next.title|striptags|e }}" href="{{ next.link|e }}"/>
-    {%- endif %}
-    {%- if prev %}
-        <link rel="prev" title="{{ prev.title|striptags|e }}" href="{{ prev.link|e }}"/>
-    {%- endif %}
-  {%- endblock %}
-  {%- block extrahead %} {% endblock %}
-
-  {# Keep modernizr in head - http://modernizr.com/docs/#installing #}
-  <script src="{{ pathto('_static/js/modernizr.min.js', 1) }}"></script>
-
-</head>
-
-<body class="wy-body-for-nav" role="document">
-  <header id="tiHeader">
-    <div class="top">
-      <ul>
-        <li id="top_logo">
-          <a href="http://www.ti.com">
-            <img src="{{ pathto('_static/img/ti_logo.png', 1) }}"/>
-          </a>
-        </li>
-      </ul>
-    </div>
-    <div class="nav"></div>
-  </header>
-  <div class="wy-grid-for-nav">
-
-    {# SIDE NAV, TOGGLES ON MOBILE #}
-    <nav data-toggle="wy-nav-shift" class="wy-nav-side">
-      <div class="wy-side-scroll">
-        <div class="wy-side-nav-search">
-          {% block sidebartitle %}
-
-          {% if logo and theme_logo_only %}
-            <a href="{{ pathto(master_doc) }}">
-          {% else %}
-            <a href="{{ pathto(master_doc) }}" class="icon icon-home"> {{ project }}
-          {% endif %}
-
-          {% if logo %}
-            {# Not strictly valid HTML, but it's the only way to display/scale it properly, without weird scripting or heaps of work #}
-            <img src="{{ pathto('_static/' + logo, 1) }}" class="logo" />
-          {% endif %}
-          </a>
-
-          {% if theme_display_version %}
-            {%- set nav_version = version %}
-            {% if READTHEDOCS and current_version %}
-              {%- set nav_version = current_version %}
-            {% endif %}
-            {% if nav_version %}
-              <div class="version">
-                {{ nav_version }}
-              </div>
-            {% endif %}
-          {% endif %}
-
-          {% include "searchbox.html" %}
-
-          {% endblock %}
-        </div>
-
-        <div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation">
-          {% block menu %}
-            {% set toctree = toctree(maxdepth=4, collapse=theme_collapse_navigation, includehidden=True) %}
-            {% if toctree %}
-                {{ toctree }}
-            {% else %}
-                <!-- Local TOC -->
-                <div class="local-toc">{{ toc }}</div>
-            {% endif %}
-          {% endblock %}
-        </div>
-      </div>
-    </nav>
-
-    <section data-toggle="wy-nav-shift" class="wy-nav-content-wrap">
-
-      {# MOBILE NAV, TRIGGLES SIDE NAV ON TOGGLE #}
-      <nav class="wy-nav-top" role="navigation" aria-label="top navigation">
-        <i data-toggle="wy-nav-top" class="fa fa-bars"></i>
-        <a href="{{ pathto(master_doc) }}">{{ project }}</a>
-      </nav>
-
-
-      {# PAGE CONTENT #}
-      <div class="wy-nav-content">
-        <div class="rst-content">
-          {% include "breadcrumbs.html" %}
-          <div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
-           <div itemprop="articleBody">
-            {% block body %}{% endblock %}
-           </div>
-          </div>
-          {% include "footer.html" %}
-        </div>
-      </div>
-
-    </section>
-
-  </div>
-  {% include "versions.html" %}
-
-  {% if not embedded %}
-
-    <script id="documentation_options" data-url_root="{{ url_root }}" src="{{ pathto('_static/documentation_options.js', 1) }}"></script>
-    {%- for scriptfile in script_files %}
-      <script type="text/javascript" src="{{ pathto(scriptfile, 1) }}"></script>
-    {%- endfor %}
-
-    <script src="http://www.ti.com/assets/js/headerfooter/analytics.js" type="text/javascript" charset="utf-8"></script>
-
-  {% endif %}
-
-  {# RTD hosts this file, so just load on non RTD builds #}
-  {% if not READTHEDOCS %}
-    <script type="text/javascript" src="{{ pathto('_static/js/theme.js', 1) }}"></script>
-  {% endif %}
-
-  {# STICKY NAVIGATION #}
-  {% if theme_sticky_navigation %}
-  <script type="text/javascript">
-      jQuery(function () {
-          SphinxRtdTheme.StickyNav.enable();
-        });
-
-      var menuHeight = window.innerHeight;
-
-      var contentOffset = $(".wy-nav-content-wrap").offset();
-      var contentHeight = $(".wy-nav-content-wrap").height();
-      var contentBottom = contentOffset.top + contentHeight;
-
-      function setNavbarTop() {
-          var scrollTop = $(window).scrollTop();
-          var maxTop = scrollTop + menuHeight;
-
-          // If past the header
-          if (scrollTop > contentOffset.top && maxTop < contentBottom) {
-            stickyTop = scrollTop - contentOffset.top;
-          } else if (maxTop > contentBottom) {
-            stickyTop = scrollTop - contentOffset.top - (maxTop - contentBottom);
-          } else {
-            stickyTop = 0;
-          }
-
-          $(".wy-nav-side").css("top", stickyTop);
-      }
-
-      $(document).ready(function() {
-        setNavbarTop();
-        $(window).scroll(function () {
-          setNavbarTop();
-        });
-      });
-  </script>
-  {% endif %}
-
-  {%- block footer %} {% endblock %}
-
-</body>
-</html>
diff --git a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/layout_old.html b/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/layout_old.html
deleted file mode 100644
index deb8df2a1a7489361e005f71114907dbead9a4b8..0000000000000000000000000000000000000000
--- a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/layout_old.html
+++ /dev/null
@@ -1,205 +0,0 @@
-{#
-    basic/layout.html
-    ~~~~~~~~~~~~~~~~~
-
-    Master layout template for Sphinx themes.
-
-    :copyright: Copyright 2007-2013 by the Sphinx team, see AUTHORS.
-    :license: BSD, see LICENSE for details.
-#}
-{%- block doctype -%}
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
-  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-{%- endblock %}
-{%- set reldelim1 = reldelim1 is not defined and ' &raquo;' or reldelim1 %}
-{%- set reldelim2 = reldelim2 is not defined and ' |' or reldelim2 %}
-{%- set render_sidebar = (not embedded) and (not theme_nosidebar|tobool) and
-                         (sidebars != []) %}
-{%- set url_root = pathto('', 1) %}
-{# XXX necessary? #}
-{%- if url_root == '#' %}{% set url_root = '' %}{% endif %}
-{%- if not embedded and docstitle %}
-  {%- set titlesuffix = " &mdash; "|safe + docstitle|e %}
-{%- else %}
-  {%- set titlesuffix = "" %}
-{%- endif %}
-
-{%- macro relbar() %}
-    <div class="related">
-      <h3>{{ _('Navigation') }}</h3>
-      <ul>
-        {%- for rellink in rellinks %}
-        <li class="right" {% if loop.first %}style="margin-right: 10px"{% endif %}>
-          <a href="{{ pathto(rellink[0]) }}" title="{{ rellink[1]|striptags|e }}"
-             {{ accesskey(rellink[2]) }}>{{ rellink[3] }}</a>
-          {%- if not loop.first %}{{ reldelim2 }}{% endif %}</li>
-        {%- endfor %}
-        {%- block rootrellink %}
-        <li><a href="{{ pathto(master_doc) }}">{{ shorttitle|e }}</a>{{ reldelim1 }}</li>
-        {%- endblock %}
-        {%- for parent in parents %}
-          <li><a href="{{ parent.link|e }}" {% if loop.last %}{{ accesskey("U") }}{% endif %}>{{ parent.title }}</a>{{ reldelim1 }}</li>
-        {%- endfor %}
-        {%- block relbaritems %} {% endblock %}
-      </ul>
-    </div>
-{%- endmacro %}
-
-{%- macro sidebar() %}
-      {%- if render_sidebar %}
-      <div class="sphinxsidebar">
-        <div class="sphinxsidebarwrapper">
-          {%- block sidebarlogo %}
-          {%- if logo %}
-            <p class="logo"><a href="{{ pathto(master_doc) }}">
-              <img class="logo" src="{{ pathto('_static/' + logo, 1) }}" alt="Logo"/>
-            </a></p>
-          {%- endif %}
-          {%- endblock %}
-          {%- if sidebars != None %}
-            {#- new style sidebar: explicitly include/exclude templates #}
-            {%- for sidebartemplate in sidebars %}
-            {%- include sidebartemplate %}
-            {%- endfor %}
-          {%- else %}
-            {#- old style sidebars: using blocks -- should be deprecated #}
-            {%- block sidebartoc %}
-            {%- include "localtoc.html" %}
-            {%- endblock %}
-            {%- block sidebarrel %}
-            {%- include "relations.html" %}
-            {%- endblock %}
-            {%- block sidebarsourcelink %}
-            {%- include "sourcelink.html" %}
-            {%- endblock %}
-            {%- if customsidebar %}
-            {%- include customsidebar %}
-            {%- endif %}
-            {%- block sidebarsearch %}
-            {%- include "searchbox.html" %}
-            {%- endblock %}
-          {%- endif %}
-        </div>
-      </div>
-      {%- endif %}
-{%- endmacro %}
-
-{%- macro script() %}
-    <script type="text/javascript">
-      var DOCUMENTATION_OPTIONS = {
-        URL_ROOT:    '{{ url_root }}',
-        VERSION:     '{{ release|e }}',
-        COLLAPSE_INDEX: false,
-        FILE_SUFFIX: '{{ '' if no_search_suffix else file_suffix }}',
-        HAS_SOURCE:  {{ has_source|lower }}
-      };
-    </script>
-    {%- for scriptfile in script_files %}
-    <script type="text/javascript" src="{{ pathto(scriptfile, 1) }}"></script>
-    {%- endfor %}
-{%- endmacro %}
-
-{%- macro css() %}
-    <link rel="stylesheet" href="{{ pathto('_static/' + style, 1) }}" type="text/css" />
-    <link rel="stylesheet" href="{{ pathto('_static/pygments.css', 1) }}" type="text/css" />
-    {%- for cssfile in css_files %}
-    <link rel="stylesheet" href="{{ pathto(cssfile, 1) }}" type="text/css" />
-    {%- endfor %}
-{%- endmacro %}
-
-<html xmlns="http://www.w3.org/1999/xhtml">
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset={{ encoding }}" />
-    {{ metatags }}
-    {%- block htmltitle %}
-    <title>{{ title|striptags|e }}{{ titlesuffix }}</title>
-    {%- endblock %}
-    {{ css() }}
-    {%- if not embedded %}
-    {{ script() }}
-    {%- if use_opensearch %}
-    <link rel="search" type="application/opensearchdescription+xml"
-          title="{% trans docstitle=docstitle|e %}Search within {{ docstitle }}{% endtrans %}"
-          href="{{ pathto('_static/opensearch.xml', 1) }}"/>
-    {%- endif %}
-    {%- if favicon %}
-    <link rel="shortcut icon" href="{{ pathto('_static/' + favicon, 1) }}"/>
-    {%- endif %}
-    {%- endif %}
-{%- block linktags %}
-    {%- if hasdoc('about') %}
-    <link rel="author" title="{{ _('About these documents') }}" href="{{ pathto('about') }}" />
-    {%- endif %}
-    {%- if hasdoc('genindex') %}
-    <link rel="index" title="{{ _('Index') }}" href="{{ pathto('genindex') }}" />
-    {%- endif %}
-    {%- if hasdoc('search') %}
-    <link rel="search" title="{{ _('Search') }}" href="{{ pathto('search') }}" />
-    {%- endif %}
-    {%- if hasdoc('copyright') %}
-    <link rel="copyright" title="{{ _('Copyright') }}" href="{{ pathto('copyright') }}" />
-    {%- endif %}
-    <link rel="top" title="{{ docstitle|e }}" href="{{ pathto('index') }}" />
-    {%- if parents %}
-    <link rel="up" title="{{ parents[-1].title|striptags|e }}" href="{{ parents[-1].link|e }}" />
-    {%- endif %}
-    {%- if next %}
-    <link rel="next" title="{{ next.title|striptags|e }}" href="{{ next.link|e }}" />
-    {%- endif %}
-    {%- if prev %}
-    <link rel="prev" title="{{ prev.title|striptags|e }}" href="{{ prev.link|e }}" />
-    {%- endif %}
-{%- endblock %}
-{%- block extrahead %} {% endblock %}
-  </head>
-  <body>
-{%- block header %}{% endblock %}
-
-{%- block relbar1 %}{{ relbar() }}{% endblock %}
-
-{%- block content %}
-  {%- block sidebar1 %} {# possible location for sidebar #} {% endblock %}
-
-    <div class="document">
-  {%- block document %}
-      <div class="documentwrapper">
-      {%- if render_sidebar %}
-        <div class="bodywrapper">
-      {%- endif %}
-          <div class="body">
-            {% block body %} {% endblock %}
-          </div>
-      {%- if render_sidebar %}
-        </div>
-      {%- endif %}
-      </div>
-  {%- endblock %}
-
-  {%- block sidebar2 %}{{ sidebar() }}{% endblock %}
-      <div class="clearer"></div>
-    </div>
-{%- endblock %}
-
-{%- block relbar2 %}{{ relbar() }}{% endblock %}
-
-{%- block footer %}
-    <div class="footer">
-    {%- if show_copyright %}
-      {%- if hasdoc('copyright') %}
-        {% trans path=pathto('copyright'), copyright=copyright|e %}&copy; <a href="{{ path }}">Copyright</a> {{ copyright }}.{% endtrans %}
-      {%- else %}
-        {% trans copyright=copyright|e %}&copy; Copyright {{ copyright }}.{% endtrans %}
-      {%- endif %}
-    {%- endif %}
-    {%- if last_updated %}
-      {% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
-    {%- endif %}
-    {%- if show_sphinx %}
-      {% trans sphinx_version=sphinx_version|e %}Created using <a href="http://sphinx-doc.org/">Sphinx</a> {{ sphinx_version }}.{% endtrans %}
-    {%- endif %}
-    </div>
-    <p>asdf asdf asdf asdf 22</p>
-{%- endblock %}
-  </body>
-</html>
-
diff --git a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/search.html b/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/search.html
deleted file mode 100644
index 331ce7a540d1093bc09b9bce54ab8f799409fdd3..0000000000000000000000000000000000000000
--- a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/search.html
+++ /dev/null
@@ -1,52 +0,0 @@
-{#
-    basic/search.html
-    ~~~~~~~~~~~~~~~~~
-
-    Template for the search page.
-
-    :copyright: Copyright 2007-2013 by the Sphinx team, see AUTHORS.
-    :license: BSD, see LICENSE for details.
-#}
-{%- extends "layout.html" %}
-{% set title = _('Search') %}
-{% set script_files = script_files + ['_static/searchtools.js'] %}
-{% set script_files = script_files + ['_static/language_data.js'] %}
-{% block footer %}
-  <script type="text/javascript">
-    jQuery(function() { Search.loadIndex("{{ pathto('searchindex.js', 1) }}"); });
-    jQuery(function() { Search.loadIndex("{{ pathto('language_data.js', 1) }}"); });
-  </script>
-  {# this is used when loading the search index using $.ajax fails,
-     such as on Chrome for documents on localhost #}
-  <script type="text/javascript" id="searchindexloader"></script>
-  {{ super() }}
-{% endblock %}
-{% block body %}
-  <noscript>
-  <div id="fallback" class="admonition warning">
-    <p class="last">
-      {% trans %}Please activate JavaScript to enable the search
-      functionality.{% endtrans %}
-    </p>
-  </div>
-  </noscript>
-
-  {% if search_performed %}
-    <h2>{{ _('Search Results') }}</h2>
-    {% if not search_results %}
-      <p>{{ _('Your search did not match any documents. Please make sure that all words are spelled correctly and that you\'ve selected enough categories.') }}</p>
-    {% endif %}
-  {% endif %}
-  <div id="search-results">
-  {% if search_results %}
-    <ul>
-    {% for href, caption, context in search_results %}
-      <li>
-        <a href="{{ pathto(item.href) }}">{{ caption }}</a>
-        <p class="context">{{ context|e }}</p>
-      </li>
-    {% endfor %}
-    </ul>
-  {% endif %}
-  </div>
-{% endblock %}
diff --git a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/searchbox.html b/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/searchbox.html
deleted file mode 100644
index 35ad52c5f63c7c8446778ee360ee5854dbd75156..0000000000000000000000000000000000000000
--- a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/searchbox.html
+++ /dev/null
@@ -1,9 +0,0 @@
-{%- if builder != 'singlehtml' %}
-<div role="search">
-  <form id="rtd-search-form" class="wy-form" action="{{ pathto('search') }}" method="get">
-    <input type="text" name="q" placeholder="Search docs" />
-    <input type="hidden" name="check_keywords" value="yes" />
-    <input type="hidden" name="area" value="default" />
-  </form>
-</div>
-{%- endif %}
diff --git a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/css/badge_only.css b/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/css/badge_only.css
deleted file mode 100644
index 7e17fb148c63fa9780c3dd65cef5b7593927ef62..0000000000000000000000000000000000000000
--- a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/css/badge_only.css
+++ /dev/null
@@ -1,2 +0,0 @@
-.fa:before{-webkit-font-smoothing:antialiased}.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:""}.clearfix:after{clear:both}@font-face{font-family:FontAwesome;font-weight:normal;font-style:normal;src:url("../font/fontawesome_webfont.eot");src:url("../font/fontawesome_webfont.eot?#iefix") format("embedded-opentype"),url("../font/fontawesome_webfont.woff") format("woff"),url("../font/fontawesome_webfont.ttf") format("truetype"),url("../font/fontawesome_webfont.svg#FontAwesome") format("svg")}.fa:before{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;text-decoration:inherit}a .fa{display:inline-block;text-decoration:inherit}li .fa{display:inline-block}li .fa-large:before,li .fa-large:before{width:1.875em}ul.fas{list-style-type:none;margin-left:2em;text-indent:-0.8em}ul.fas li .fa{width:0.8em}ul.fas li .fa-large:before,ul.fas li .fa-large:before{vertical-align:baseline}.fa-book:before{content:""}.icon-book:before{content:""}.fa-caret-down:before{content:""}.icon-caret-down:before{content:""}.fa-caret-up:before{content:""}.icon-caret-up:before{content:""}.fa-caret-left:before{content:""}.icon-caret-left:before{content:""}.fa-caret-right:before{content:""}.icon-caret-right:before{content:""}.rst-versions{position:fixed;bottom:0;left:0;width:300px;color:#fcfcfc;background:#1f1d1d;border-top:solid 10px #343131;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;z-index:400}.rst-versions a{color:#2980B9;text-decoration:none}.rst-versions .rst-badge-small{display:none}.rst-versions .rst-current-version{padding:12px;background-color:#272525;display:block;text-align:right;font-size:90%;cursor:pointer;color:#27AE60;*zoom:1}.rst-versions .rst-current-version:before,.rst-versions .rst-current-version:after{display:table;content:""}.rst-versions .rst-current-version:after{clear:both}.rst-versions .rst-current-version .fa{color:#fcfcfc}.rst-versions .rst-current-version .fa-book{float:left}.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version.rst-out-of-date{background-color:#E74C3C;color:#fff}.rst-versions .rst-current-version.rst-active-old-version{background-color:#F1C40F;color:#000}.rst-versions.shift-up .rst-other-versions{display:block}.rst-versions .rst-other-versions{font-size:90%;padding:12px;color:gray;display:none}.rst-versions .rst-other-versions hr{display:block;height:1px;border:0;margin:20px 0;padding:0;border-top:solid 1px #413d3d}.rst-versions .rst-other-versions dd{display:inline-block;margin:0}.rst-versions .rst-other-versions dd a{display:inline-block;padding:6px;color:#fcfcfc}.rst-versions.rst-badge{width:auto;bottom:20px;right:20px;left:auto;border:none;max-width:300px}.rst-versions.rst-badge .icon-book{float:none}.rst-versions.rst-badge .fa-book{float:none}.rst-versions.rst-badge.shift-up .rst-current-version{text-align:right}.rst-versions.rst-badge.shift-up .rst-current-version .fa-book{float:left}.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge .rst-current-version{width:auto;height:30px;line-height:30px;padding:0 6px;display:block;text-align:center}@media screen and (max-width: 768px){.rst-versions{width:85%;display:none}.rst-versions.shift{display:block}img{width:100%;height:auto}}
-/*# sourceMappingURL=badge_only.css.map */
diff --git a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/css/theme.css b/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/css/theme.css
deleted file mode 100644
index 7be93399a4f530da7eb43e2c214ec42cea89a6c3..0000000000000000000000000000000000000000
--- a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/css/theme.css
+++ /dev/null
@@ -1,5 +0,0 @@
-*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none}[hidden]{display:none}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}a:hover,a:active{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}blockquote{margin:0}dfn{font-style:italic}ins{background:#ff9;color:#000;text-decoration:none}mark{background:#ff0;color:#000;font-style:italic;font-weight:bold}pre,code,.rst-content tt,.rst-content code,kbd,samp{font-family:monospace,serif;_font-family:"courier new",monospace;font-size:1em}pre{white-space:pre}q{quotes:none}q:before,q:after{content:"";content:none}small{font-size:85%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}ul,ol,dl{margin:0;padding:0;list-style:none;list-style-image:none}li{list-style:none}dd{margin:0}img{border:0;-ms-interpolation-mode:bicubic;vertical-align:middle;max-width:100%}svg:not(:root){overflow:hidden}figure{margin:0}form{margin:0}fieldset{border:0;margin:0;padding:0}label{cursor:pointer}legend{border:0;*margin-left:-7px;padding:0;white-space:normal}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button;*overflow:visible}button[disabled],input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;*width:13px;*height:13px}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top;resize:vertical}table{border-collapse:collapse;border-spacing:0}td{vertical-align:top}.chromeframe{margin:0.2em 0;background:#ccc;color:#000;padding:0.2em 0}.ir{display:block;border:0;text-indent:-999em;overflow:hidden;background-color:transparent;background-repeat:no-repeat;text-align:left;direction:ltr;*line-height:0}.ir br{display:none}.hidden{display:none !important;visibility:hidden}.visuallyhidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.visuallyhidden.focusable:active,.visuallyhidden.focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.invisible{visibility:hidden}.relative{position:relative}big,small{font-size:100%}@media print{html,body,section{background:none !important}*{box-shadow:none !important;text-shadow:none !important;filter:none !important;-ms-filter:none !important}a,a:visited{text-decoration:underline}.ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}@page{margin:0.5cm}p,h2,.rst-content .toctree-wrapper p.caption,h3{orphans:3;widows:3}h2,.rst-content .toctree-wrapper p.caption,h3{page-break-after:avoid}}.fa:before,.wy-menu-vertical li span.toctree-expand:before,.wy-menu-vertical li.on a span.toctree-expand:before,.wy-menu-vertical li.current>a span.toctree-expand:before,.rst-content .admonition-title:before,.rst-content h1 .headerlink:before,.rst-content h2 .headerlink:before,.rst-content h3 .headerlink:before,.rst-content h4 .headerlink:before,.rst-content h5 .headerlink:before,.rst-content h6 .headerlink:before,.rst-content dl dt .headerlink:before,.rst-content p.caption .headerlink:before,.rst-content tt.download span:first-child:before,.rst-content code.download span:first-child:before,.icon:before,.wy-dropdown .caret:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.wy-alert,.rst-content .note,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .warning,.rst-content .seealso,.rst-content .admonition-todo,.btn,input[type="text"],input[type="password"],input[type="email"],input[type="url"],input[type="date"],input[type="month"],input[type="time"],input[type="datetime"],input[type="datetime-local"],input[type="week"],input[type="number"],input[type="search"],input[type="tel"],input[type="color"],select,textarea,.wy-menu-vertical li.on a,.wy-menu-vertical li.current>a,.wy-side-nav-search>a,.wy-side-nav-search .wy-dropdown>a,.wy-nav-top a{-webkit-font-smoothing:antialiased}.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:""}.clearfix:after{clear:both}/*!
- *  Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
- *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
- */@font-face{font-family:'FontAwesome';src:url("../fonts/fontawesome-webfont.eot?v=4.2.0");src:url("../fonts/fontawesome-webfont.eot?#iefix&v=4.2.0") format("embedded-opentype"),url("../fonts/fontawesome-webfont.woff?v=4.2.0") format("woff"),url("../fonts/fontawesome-webfont.ttf?v=4.2.0") format("truetype"),url("../fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular") format("svg");font-weight:normal;font-style:normal}.fa,.wy-menu-vertical li span.toctree-expand,.wy-menu-vertical li.on a span.toctree-expand,.wy-menu-vertical li.current>a span.toctree-expand,.rst-content .admonition-title,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content dl dt .headerlink,.rst-content p.caption .headerlink,.rst-content tt.download span:first-child,.rst-content code.download span:first-child,.icon{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333em;line-height:0.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14286em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14286em;width:2.14286em;top:0.14286em;text-align:center}.fa-li.fa-lg{left:-1.85714em}.fa-border{padding:.2em .25em .15em;border:solid 0.08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left,.wy-menu-vertical li span.pull-left.toctree-expand,.wy-menu-vertical li.on a span.pull-left.toctree-expand,.wy-menu-vertical li.current>a span.pull-left.toctree-expand,.rst-content .pull-left.admonition-title,.rst-content h1 .pull-left.headerlink,.rst-content h2 .pull-left.headerlink,.rst-content h3 .pull-left.headerlink,.rst-content h4 .pull-left.headerlink,.rst-content h5 .pull-left.headerlink,.rst-content h6 .pull-left.headerlink,.rst-content dl dt .pull-left.headerlink,.rst-content p.caption .pull-left.headerlink,.rst-content tt.download span.pull-left:first-child,.rst-content code.download span.pull-left:first-child,.pull-left.icon{margin-right:.3em}.fa.pull-right,.wy-menu-vertical li span.pull-right.toctree-expand,.wy-menu-vertical li.on a span.pull-right.toctree-expand,.wy-menu-vertical li.current>a span.pull-right.toctree-expand,.rst-content .pull-right.admonition-title,.rst-content h1 .pull-right.headerlink,.rst-content h2 .pull-right.headerlink,.rst-content h3 .pull-right.headerlink,.rst-content h4 .pull-right.headerlink,.rst-content h5 .pull-right.headerlink,.rst-content h6 .pull-right.headerlink,.rst-content dl dt .pull-right.headerlink,.rst-content p.caption .pull-right.headerlink,.rst-content tt.download span.pull-right:first-child,.rst-content code.download span.pull-right:first-child,.pull-right.icon{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before,.icon-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-remove:before,.fa-close:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-gear:before,.fa-cog:before{content:""}.fa-trash-o:before{content:""}.fa-home:before,.icon-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before,.rst-content tt.download span:first-child:before,.rst-content code.download span:first-child:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-rotate-right:before,.fa-repeat:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before,.icon-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before{content:""}.fa-check-circle:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.rst-content .admonition-title:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before,.icon-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-warning:before,.fa-exclamation-triangle:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-gears:before,.fa-cogs:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook:before{content:""}.fa-github:before,.icon-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before,.icon-circle-arrow-left:before{content:""}.fa-arrow-circle-right:before,.icon-circle-arrow-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before,.icon-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-save:before,.fa-floppy-o:before{content:""}.fa-square:before{content:""}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before,.wy-dropdown .caret:before,.icon-caret-down:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-unsorted:before,.fa-sort:before{content:""}.fa-sort-down:before,.fa-sort-desc:before{content:""}.fa-sort-up:before,.fa-sort-asc:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-legal:before,.fa-gavel:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-flash:before,.fa-bolt:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-paste:before,.fa-clipboard:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-unlink:before,.fa-chain-broken:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before,.wy-menu-vertical li.on a span.toctree-expand:before,.wy-menu-vertical li.current>a span.toctree-expand:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:""}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:""}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:""}.fa-euro:before,.fa-eur:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-rupee:before,.fa-inr:before{content:""}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:""}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:""}.fa-won:before,.fa-krw:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before,.icon-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-turkish-lira:before,.fa-try:before{content:""}.fa-plus-square-o:before,.wy-menu-vertical li span.toctree-expand:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-institution:before,.fa-bank:before,.fa-university:before{content:""}.fa-mortar-board:before,.fa-graduation-cap:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:""}.fa-file-zip-o:before,.fa-file-archive-o:before{content:""}.fa-file-sound-o:before,.fa-file-audio-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-rebel:before{content:""}.fa-ge:before,.fa-empire:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-hacker-news:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-send:before,.fa-paper-plane:before{content:""}.fa-send-o:before,.fa-paper-plane-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:""}.fa-meanpath:before{content:""}.fa,.wy-menu-vertical li span.toctree-expand,.wy-menu-vertical li.on a span.toctree-expand,.wy-menu-vertical li.current>a span.toctree-expand,.rst-content .admonition-title,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content dl dt .headerlink,.rst-content p.caption .headerlink,.rst-content tt.download span:first-child,.rst-content code.download span:first-child,.icon,.wy-dropdown .caret,.wy-inline-validate.wy-inline-validate-success .wy-input-context,.wy-inline-validate.wy-inline-validate-danger .wy-input-context,.wy-inline-validate.wy-inline-validate-warning .wy-input-context,.wy-inline-validate.wy-inline-validate-info .wy-input-context{font-family:inherit}.fa:before,.wy-menu-vertical li span.toctree-expand:before,.wy-menu-vertical li.on a span.toctree-expand:before,.wy-menu-vertical li.current>a span.toctree-expand:before,.rst-content .admonition-title:before,.rst-content h1 .headerlink:before,.rst-content h2 .headerlink:before,.rst-content h3 .headerlink:before,.rst-content h4 .headerlink:before,.rst-content h5 .headerlink:before,.rst-content h6 .headerlink:before,.rst-content dl dt .headerlink:before,.rst-content p.caption .headerlink:before,.rst-content tt.download span:first-child:before,.rst-content code.download span:first-child:before,.icon:before,.wy-dropdown .caret:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before{font-family:"FontAwesome";display:inline-block;font-style:normal;font-weight:normal;line-height:1;text-decoration:inherit}a .fa,a .wy-menu-vertical li span.toctree-expand,.wy-menu-vertical li a span.toctree-expand,.wy-menu-vertical li.on a span.toctree-expand,.wy-menu-vertical li.current>a span.toctree-expand,a .rst-content .admonition-title,.rst-content a .admonition-title,a .rst-content h1 .headerlink,.rst-content h1 a .headerlink,a .rst-content h2 .headerlink,.rst-content h2 a .headerlink,a .rst-content h3 .headerlink,.rst-content h3 a .headerlink,a .rst-content h4 .headerlink,.rst-content h4 a .headerlink,a .rst-content h5 .headerlink,.rst-content h5 a .headerlink,a .rst-content h6 .headerlink,.rst-content h6 a .headerlink,a .rst-content dl dt .headerlink,.rst-content dl dt a .headerlink,a .rst-content p.caption .headerlink,.rst-content p.caption a .headerlink,a .rst-content tt.download span:first-child,.rst-content tt.download a span:first-child,a .rst-content code.download span:first-child,.rst-content code.download a span:first-child,a .icon{display:inline-block;text-decoration:inherit}.btn .fa,.btn .wy-menu-vertical li span.toctree-expand,.wy-menu-vertical li .btn span.toctree-expand,.btn .wy-menu-vertical li.on a span.toctree-expand,.wy-menu-vertical li.on a .btn span.toctree-expand,.btn .wy-menu-vertical li.current>a span.toctree-expand,.wy-menu-vertical li.current>a .btn span.toctree-expand,.btn .rst-content .admonition-title,.rst-content .btn .admonition-title,.btn .rst-content h1 .headerlink,.rst-content h1 .btn .headerlink,.btn .rst-content h2 .headerlink,.rst-content h2 .btn .headerlink,.btn .rst-content h3 .headerlink,.rst-content h3 .btn .headerlink,.btn .rst-content h4 .headerlink,.rst-content h4 .btn .headerlink,.btn .rst-content h5 .headerlink,.rst-content h5 .btn .headerlink,.btn .rst-content h6 .headerlink,.rst-content h6 .btn .headerlink,.btn .rst-content dl dt .headerlink,.rst-content dl dt .btn .headerlink,.btn .rst-content p.caption .headerlink,.rst-content p.caption .btn .headerlink,.btn .rst-content tt.download span:first-child,.rst-content tt.download .btn span:first-child,.btn .rst-content code.download span:first-child,.rst-content code.download .btn span:first-child,.btn .icon,.nav .fa,.nav .wy-menu-vertical li span.toctree-expand,.wy-menu-vertical li .nav span.toctree-expand,.nav .wy-menu-vertical li.on a span.toctree-expand,.wy-menu-vertical li.on a .nav span.toctree-expand,.nav .wy-menu-vertical li.current>a span.toctree-expand,.wy-menu-vertical li.current>a .nav span.toctree-expand,.nav .rst-content .admonition-title,.rst-content .nav .admonition-title,.nav .rst-content h1 .headerlink,.rst-content h1 .nav .headerlink,.nav .rst-content h2 .headerlink,.rst-content h2 .nav .headerlink,.nav .rst-content h3 .headerlink,.rst-content h3 .nav .headerlink,.nav .rst-content h4 .headerlink,.rst-content h4 .nav .headerlink,.nav .rst-content h5 .headerlink,.rst-content h5 .nav .headerlink,.nav .rst-content h6 .headerlink,.rst-content h6 .nav .headerlink,.nav .rst-content dl dt .headerlink,.rst-content dl dt .nav .headerlink,.nav .rst-content p.caption .headerlink,.rst-content p.caption .nav .headerlink,.nav .rst-content tt.download span:first-child,.rst-content tt.download .nav span:first-child,.nav .rst-content code.download span:first-child,.rst-content code.download .nav span:first-child,.nav .icon{display:inline}.btn .fa.fa-large,.btn .wy-menu-vertical li span.fa-large.toctree-expand,.wy-menu-vertical li .btn span.fa-large.toctree-expand,.btn .rst-content .fa-large.admonition-title,.rst-content .btn .fa-large.admonition-title,.btn .rst-content h1 .fa-large.headerlink,.rst-content h1 .btn .fa-large.headerlink,.btn .rst-content h2 .fa-large.headerlink,.rst-content h2 .btn .fa-large.headerlink,.btn .rst-content h3 .fa-large.headerlink,.rst-content h3 .btn .fa-large.headerlink,.btn .rst-content h4 .fa-large.headerlink,.rst-content h4 .btn .fa-large.headerlink,.btn .rst-content h5 .fa-large.headerlink,.rst-content h5 .btn .fa-large.headerlink,.btn .rst-content h6 .fa-large.headerlink,.rst-content h6 .btn .fa-large.headerlink,.btn .rst-content dl dt .fa-large.headerlink,.rst-content dl dt .btn .fa-large.headerlink,.btn .rst-content p.caption .fa-large.headerlink,.rst-content p.caption .btn .fa-large.headerlink,.btn .rst-content tt.download span.fa-large:first-child,.rst-content tt.download .btn span.fa-large:first-child,.btn .rst-content code.download span.fa-large:first-child,.rst-content code.download .btn span.fa-large:first-child,.btn .fa-large.icon,.nav .fa.fa-large,.nav .wy-menu-vertical li span.fa-large.toctree-expand,.wy-menu-vertical li .nav span.fa-large.toctree-expand,.nav .rst-content .fa-large.admonition-title,.rst-content .nav .fa-large.admonition-title,.nav .rst-content h1 .fa-large.headerlink,.rst-content h1 .nav .fa-large.headerlink,.nav .rst-content h2 .fa-large.headerlink,.rst-content h2 .nav .fa-large.headerlink,.nav .rst-content h3 .fa-large.headerlink,.rst-content h3 .nav .fa-large.headerlink,.nav .rst-content h4 .fa-large.headerlink,.rst-content h4 .nav .fa-large.headerlink,.nav .rst-content h5 .fa-large.headerlink,.rst-content h5 .nav .fa-large.headerlink,.nav .rst-content h6 .fa-large.headerlink,.rst-content h6 .nav .fa-large.headerlink,.nav .rst-content dl dt .fa-large.headerlink,.rst-content dl dt .nav .fa-large.headerlink,.nav .rst-content p.caption .fa-large.headerlink,.rst-content p.caption .nav .fa-large.headerlink,.nav .rst-content tt.download span.fa-large:first-child,.rst-content tt.download .nav span.fa-large:first-child,.nav .rst-content code.download span.fa-large:first-child,.rst-content code.download .nav span.fa-large:first-child,.nav .fa-large.icon{line-height:0.9em}.btn .fa.fa-spin,.btn .wy-menu-vertical li span.fa-spin.toctree-expand,.wy-menu-vertical li .btn span.fa-spin.toctree-expand,.btn .rst-content .fa-spin.admonition-title,.rst-content .btn .fa-spin.admonition-title,.btn .rst-content h1 .fa-spin.headerlink,.rst-content h1 .btn .fa-spin.headerlink,.btn .rst-content h2 .fa-spin.headerlink,.rst-content h2 .btn .fa-spin.headerlink,.btn .rst-content h3 .fa-spin.headerlink,.rst-content h3 .btn .fa-spin.headerlink,.btn .rst-content h4 .fa-spin.headerlink,.rst-content h4 .btn .fa-spin.headerlink,.btn .rst-content h5 .fa-spin.headerlink,.rst-content h5 .btn .fa-spin.headerlink,.btn .rst-content h6 .fa-spin.headerlink,.rst-content h6 .btn .fa-spin.headerlink,.btn .rst-content dl dt .fa-spin.headerlink,.rst-content dl dt .btn .fa-spin.headerlink,.btn .rst-content p.caption .fa-spin.headerlink,.rst-content p.caption .btn .fa-spin.headerlink,.btn .rst-content tt.download span.fa-spin:first-child,.rst-content tt.download .btn span.fa-spin:first-child,.btn .rst-content code.download span.fa-spin:first-child,.rst-content code.download .btn span.fa-spin:first-child,.btn .fa-spin.icon,.nav .fa.fa-spin,.nav .wy-menu-vertical li span.fa-spin.toctree-expand,.wy-menu-vertical li .nav span.fa-spin.toctree-expand,.nav .rst-content .fa-spin.admonition-title,.rst-content .nav .fa-spin.admonition-title,.nav .rst-content h1 .fa-spin.headerlink,.rst-content h1 .nav .fa-spin.headerlink,.nav .rst-content h2 .fa-spin.headerlink,.rst-content h2 .nav .fa-spin.headerlink,.nav .rst-content h3 .fa-spin.headerlink,.rst-content h3 .nav .fa-spin.headerlink,.nav .rst-content h4 .fa-spin.headerlink,.rst-content h4 .nav .fa-spin.headerlink,.nav .rst-content h5 .fa-spin.headerlink,.rst-content h5 .nav .fa-spin.headerlink,.nav .rst-content h6 .fa-spin.headerlink,.rst-content h6 .nav .fa-spin.headerlink,.nav .rst-content dl dt .fa-spin.headerlink,.rst-content dl dt .nav .fa-spin.headerlink,.nav .rst-content p.caption .fa-spin.headerlink,.rst-content p.caption .nav .fa-spin.headerlink,.nav .rst-content tt.download span.fa-spin:first-child,.rst-content tt.download .nav span.fa-spin:first-child,.nav .rst-content code.download span.fa-spin:first-child,.rst-content code.download .nav span.fa-spin:first-child,.nav .fa-spin.icon{display:inline-block}.btn.fa:before,.wy-menu-vertical li span.btn.toctree-expand:before,.rst-content .btn.admonition-title:before,.rst-content h1 .btn.headerlink:before,.rst-content h2 .btn.headerlink:before,.rst-content h3 .btn.headerlink:before,.rst-content h4 .btn.headerlink:before,.rst-content h5 .btn.headerlink:before,.rst-content h6 .btn.headerlink:before,.rst-content dl dt .btn.headerlink:before,.rst-content p.caption .btn.headerlink:before,.rst-content tt.download span.btn:first-child:before,.rst-content code.download span.btn:first-child:before,.btn.icon:before{opacity:0.5;-webkit-transition:opacity 0.05s ease-in;-moz-transition:opacity 0.05s ease-in;transition:opacity 0.05s ease-in}.btn.fa:hover:before,.wy-menu-vertical li span.btn.toctree-expand:hover:before,.rst-content .btn.admonition-title:hover:before,.rst-content h1 .btn.headerlink:hover:before,.rst-content h2 .btn.headerlink:hover:before,.rst-content h3 .btn.headerlink:hover:before,.rst-content h4 .btn.headerlink:hover:before,.rst-content h5 .btn.headerlink:hover:before,.rst-content h6 .btn.headerlink:hover:before,.rst-content dl dt .btn.headerlink:hover:before,.rst-content p.caption .btn.headerlink:hover:before,.rst-content tt.download span.btn:first-child:hover:before,.rst-content code.download span.btn:first-child:hover:before,.btn.icon:hover:before{opacity:1}.btn-mini .fa:before,.btn-mini .wy-menu-vertical li span.toctree-expand:before,.wy-menu-vertical li .btn-mini span.toctree-expand:before,.btn-mini .rst-content .admonition-title:before,.rst-content .btn-mini .admonition-title:before,.btn-mini .rst-content h1 .headerlink:before,.rst-content h1 .btn-mini .headerlink:before,.btn-mini .rst-content h2 .headerlink:before,.rst-content h2 .btn-mini .headerlink:before,.btn-mini .rst-content h3 .headerlink:before,.rst-content h3 .btn-mini .headerlink:before,.btn-mini .rst-content h4 .headerlink:before,.rst-content h4 .btn-mini .headerlink:before,.btn-mini .rst-content h5 .headerlink:before,.rst-content h5 .btn-mini .headerlink:before,.btn-mini .rst-content h6 .headerlink:before,.rst-content h6 .btn-mini .headerlink:before,.btn-mini .rst-content dl dt .headerlink:before,.rst-content dl dt .btn-mini .headerlink:before,.btn-mini .rst-content p.caption .headerlink:before,.rst-content p.caption .btn-mini .headerlink:before,.btn-mini .rst-content tt.download span:first-child:before,.rst-content tt.download .btn-mini span:first-child:before,.btn-mini .rst-content code.download span:first-child:before,.rst-content code.download .btn-mini span:first-child:before,.btn-mini .icon:before{font-size:14px;vertical-align:-15%}.wy-alert,.rst-content .note,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .warning,.rst-content .seealso,.rst-content .admonition-todo{padding:12px;line-height:24px;margin-bottom:24px;background:#e7f2fa}.wy-alert-title,.rst-content .admonition-title{color:#fff;font-weight:bold;display:block;color:#fff;background:#6ab0de;margin:-12px;padding:6px 12px;margin-bottom:12px}.wy-alert.wy-alert-danger,.rst-content .wy-alert-danger.note,.rst-content .wy-alert-danger.attention,.rst-content .wy-alert-danger.caution,.rst-content .danger,.rst-content .error,.rst-content .wy-alert-danger.hint,.rst-content .wy-alert-danger.important,.rst-content .wy-alert-danger.tip,.rst-content .wy-alert-danger.warning,.rst-content .wy-alert-danger.seealso,.rst-content .wy-alert-danger.admonition-todo{background:#fdf3f2}.wy-alert.wy-alert-danger .wy-alert-title,.rst-content .wy-alert-danger.note .wy-alert-title,.rst-content .wy-alert-danger.attention .wy-alert-title,.rst-content .wy-alert-danger.caution .wy-alert-title,.rst-content .danger .wy-alert-title,.rst-content .error .wy-alert-title,.rst-content .wy-alert-danger.hint .wy-alert-title,.rst-content .wy-alert-danger.important .wy-alert-title,.rst-content .wy-alert-danger.tip .wy-alert-title,.rst-content .wy-alert-danger.warning .wy-alert-title,.rst-content .wy-alert-danger.seealso .wy-alert-title,.rst-content .wy-alert-danger.admonition-todo .wy-alert-title,.wy-alert.wy-alert-danger .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-danger .admonition-title,.rst-content .wy-alert-danger.note .admonition-title,.rst-content .wy-alert-danger.attention .admonition-title,.rst-content .wy-alert-danger.caution .admonition-title,.rst-content .danger .admonition-title,.rst-content .error .admonition-title,.rst-content .wy-alert-danger.hint .admonition-title,.rst-content .wy-alert-danger.important .admonition-title,.rst-content .wy-alert-danger.tip .admonition-title,.rst-content .wy-alert-danger.warning .admonition-title,.rst-content .wy-alert-danger.seealso .admonition-title,.rst-content .wy-alert-danger.admonition-todo .admonition-title{background:#f29f97}.wy-alert.wy-alert-warning,.rst-content .wy-alert-warning.note,.rst-content .attention,.rst-content .caution,.rst-content .wy-alert-warning.danger,.rst-content .wy-alert-warning.error,.rst-content .wy-alert-warning.hint,.rst-content .wy-alert-warning.important,.rst-content .wy-alert-warning.tip,.rst-content .warning,.rst-content .wy-alert-warning.seealso,.rst-content .admonition-todo{background:#ffedcc}.wy-alert.wy-alert-warning .wy-alert-title,.rst-content .wy-alert-warning.note .wy-alert-title,.rst-content .attention .wy-alert-title,.rst-content .caution .wy-alert-title,.rst-content .wy-alert-warning.danger .wy-alert-title,.rst-content .wy-alert-warning.error .wy-alert-title,.rst-content .wy-alert-warning.hint .wy-alert-title,.rst-content .wy-alert-warning.important .wy-alert-title,.rst-content .wy-alert-warning.tip .wy-alert-title,.rst-content .warning .wy-alert-title,.rst-content .wy-alert-warning.seealso .wy-alert-title,.rst-content .admonition-todo .wy-alert-title,.wy-alert.wy-alert-warning .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-warning .admonition-title,.rst-content .wy-alert-warning.note .admonition-title,.rst-content .attention .admonition-title,.rst-content .caution .admonition-title,.rst-content .wy-alert-warning.danger .admonition-title,.rst-content .wy-alert-warning.error .admonition-title,.rst-content .wy-alert-warning.hint .admonition-title,.rst-content .wy-alert-warning.important .admonition-title,.rst-content .wy-alert-warning.tip .admonition-title,.rst-content .warning .admonition-title,.rst-content .wy-alert-warning.seealso .admonition-title,.rst-content .admonition-todo .admonition-title{background:#f0b37e}.wy-alert.wy-alert-info,.rst-content .note,.rst-content .wy-alert-info.attention,.rst-content .wy-alert-info.caution,.rst-content .wy-alert-info.danger,.rst-content .wy-alert-info.error,.rst-content .wy-alert-info.hint,.rst-content .wy-alert-info.important,.rst-content .wy-alert-info.tip,.rst-content .wy-alert-info.warning,.rst-content .seealso,.rst-content .wy-alert-info.admonition-todo{background:#e7f2fa}.wy-alert.wy-alert-info .wy-alert-title,.rst-content .note .wy-alert-title,.rst-content .wy-alert-info.attention .wy-alert-title,.rst-content .wy-alert-info.caution .wy-alert-title,.rst-content .wy-alert-info.danger .wy-alert-title,.rst-content .wy-alert-info.error .wy-alert-title,.rst-content .wy-alert-info.hint .wy-alert-title,.rst-content .wy-alert-info.important .wy-alert-title,.rst-content .wy-alert-info.tip .wy-alert-title,.rst-content .wy-alert-info.warning .wy-alert-title,.rst-content .seealso .wy-alert-title,.rst-content .wy-alert-info.admonition-todo .wy-alert-title,.wy-alert.wy-alert-info .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-info .admonition-title,.rst-content .note .admonition-title,.rst-content .wy-alert-info.attention .admonition-title,.rst-content .wy-alert-info.caution .admonition-title,.rst-content .wy-alert-info.danger .admonition-title,.rst-content .wy-alert-info.error .admonition-title,.rst-content .wy-alert-info.hint .admonition-title,.rst-content .wy-alert-info.important .admonition-title,.rst-content .wy-alert-info.tip .admonition-title,.rst-content .wy-alert-info.warning .admonition-title,.rst-content .seealso .admonition-title,.rst-content .wy-alert-info.admonition-todo .admonition-title{background:#6ab0de}.wy-alert.wy-alert-success,.rst-content .wy-alert-success.note,.rst-content .wy-alert-success.attention,.rst-content .wy-alert-success.caution,.rst-content .wy-alert-success.danger,.rst-content .wy-alert-success.error,.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .wy-alert-success.warning,.rst-content .wy-alert-success.seealso,.rst-content .wy-alert-success.admonition-todo{background:#dbfaf4}.wy-alert.wy-alert-success .wy-alert-title,.rst-content .wy-alert-success.note .wy-alert-title,.rst-content .wy-alert-success.attention .wy-alert-title,.rst-content .wy-alert-success.caution .wy-alert-title,.rst-content .wy-alert-success.danger .wy-alert-title,.rst-content .wy-alert-success.error .wy-alert-title,.rst-content .hint .wy-alert-title,.rst-content .important .wy-alert-title,.rst-content .tip .wy-alert-title,.rst-content .wy-alert-success.warning .wy-alert-title,.rst-content .wy-alert-success.seealso .wy-alert-title,.rst-content .wy-alert-success.admonition-todo .wy-alert-title,.wy-alert.wy-alert-success .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-success .admonition-title,.rst-content .wy-alert-success.note .admonition-title,.rst-content .wy-alert-success.attention .admonition-title,.rst-content .wy-alert-success.caution .admonition-title,.rst-content .wy-alert-success.danger .admonition-title,.rst-content .wy-alert-success.error .admonition-title,.rst-content .hint .admonition-title,.rst-content .important .admonition-title,.rst-content .tip .admonition-title,.rst-content .wy-alert-success.warning .admonition-title,.rst-content .wy-alert-success.seealso .admonition-title,.rst-content .wy-alert-success.admonition-todo .admonition-title{background:#1abc9c}.wy-alert.wy-alert-neutral,.rst-content .wy-alert-neutral.note,.rst-content .wy-alert-neutral.attention,.rst-content .wy-alert-neutral.caution,.rst-content .wy-alert-neutral.danger,.rst-content .wy-alert-neutral.error,.rst-content .wy-alert-neutral.hint,.rst-content .wy-alert-neutral.important,.rst-content .wy-alert-neutral.tip,.rst-content .wy-alert-neutral.warning,.rst-content .wy-alert-neutral.seealso,.rst-content .wy-alert-neutral.admonition-todo{background:#f3f6f6}.wy-alert.wy-alert-neutral .wy-alert-title,.rst-content .wy-alert-neutral.note .wy-alert-title,.rst-content .wy-alert-neutral.attention .wy-alert-title,.rst-content .wy-alert-neutral.caution .wy-alert-title,.rst-content .wy-alert-neutral.danger .wy-alert-title,.rst-content .wy-alert-neutral.error .wy-alert-title,.rst-content .wy-alert-neutral.hint .wy-alert-title,.rst-content .wy-alert-neutral.important .wy-alert-title,.rst-content .wy-alert-neutral.tip .wy-alert-title,.rst-content .wy-alert-neutral.warning .wy-alert-title,.rst-content .wy-alert-neutral.seealso .wy-alert-title,.rst-content .wy-alert-neutral.admonition-todo .wy-alert-title,.wy-alert.wy-alert-neutral .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-neutral .admonition-title,.rst-content .wy-alert-neutral.note .admonition-title,.rst-content .wy-alert-neutral.attention .admonition-title,.rst-content .wy-alert-neutral.caution .admonition-title,.rst-content .wy-alert-neutral.danger .admonition-title,.rst-content .wy-alert-neutral.error .admonition-title,.rst-content .wy-alert-neutral.hint .admonition-title,.rst-content .wy-alert-neutral.important .admonition-title,.rst-content .wy-alert-neutral.tip .admonition-title,.rst-content .wy-alert-neutral.warning .admonition-title,.rst-content .wy-alert-neutral.seealso .admonition-title,.rst-content .wy-alert-neutral.admonition-todo .admonition-title{color:#404040;background:#e1e4e5}.wy-alert.wy-alert-neutral a,.rst-content .wy-alert-neutral.note a,.rst-content .wy-alert-neutral.attention a,.rst-content .wy-alert-neutral.caution a,.rst-content .wy-alert-neutral.danger a,.rst-content .wy-alert-neutral.error a,.rst-content .wy-alert-neutral.hint a,.rst-content .wy-alert-neutral.important a,.rst-content .wy-alert-neutral.tip a,.rst-content .wy-alert-neutral.warning a,.rst-content .wy-alert-neutral.seealso a,.rst-content .wy-alert-neutral.admonition-todo a{color:#2980B9}.wy-alert p:last-child,.rst-content .note p:last-child,.rst-content .attention p:last-child,.rst-content .caution p:last-child,.rst-content .danger p:last-child,.rst-content .error p:last-child,.rst-content .hint p:last-child,.rst-content .important p:last-child,.rst-content .tip p:last-child,.rst-content .warning p:last-child,.rst-content .seealso p:last-child,.rst-content .admonition-todo p:last-child{margin-bottom:0}.wy-tray-container{position:fixed;bottom:0px;left:0;z-index:600}.wy-tray-container li{display:block;width:300px;background:transparent;color:#fff;text-align:center;box-shadow:0 5px 5px 0 rgba(0,0,0,0.1);padding:0 24px;min-width:20%;opacity:0;height:0;line-height:56px;overflow:hidden;-webkit-transition:all 0.3s ease-in;-moz-transition:all 0.3s ease-in;transition:all 0.3s ease-in}.wy-tray-container li.wy-tray-item-success{background:#27AE60}.wy-tray-container li.wy-tray-item-info{background:#2980B9}.wy-tray-container li.wy-tray-item-warning{background:#E67E22}.wy-tray-container li.wy-tray-item-danger{background:#E74C3C}.wy-tray-container li.on{opacity:1;height:56px}@media screen and (max-width: 768px){.wy-tray-container{bottom:auto;top:0;width:100%}.wy-tray-container li{width:100%}}button{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle;cursor:pointer;line-height:normal;-webkit-appearance:button;*overflow:visible}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}button[disabled]{cursor:default}.btn{display:inline-block;border-radius:2px;line-height:normal;white-space:nowrap;text-align:center;cursor:pointer;font-size:100%;padding:6px 12px 8px 12px;color:#fff;border:1px solid rgba(0,0,0,0.1);background-color:#27AE60;text-decoration:none;font-weight:normal;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;box-shadow:0px 1px 2px -1px rgba(255,255,255,0.5) inset,0px -2px 0px 0px rgba(0,0,0,0.1) inset;outline-none:false;vertical-align:middle;*display:inline;zoom:1;-webkit-user-drag:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-transition:all 0.1s linear;-moz-transition:all 0.1s linear;transition:all 0.1s linear}.btn-hover{background:#2e8ece;color:#fff}.btn:hover{background:#2cc36b;color:#fff}.btn:focus{background:#2cc36b;outline:0}.btn:active{box-shadow:0px -1px 0px 0px rgba(0,0,0,0.05) inset,0px 2px 0px 0px rgba(0,0,0,0.1) inset;padding:8px 12px 6px 12px}.btn:visited{color:#fff}.btn:disabled{background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);filter:alpha(opacity=40);opacity:0.4;cursor:not-allowed;box-shadow:none}.btn-disabled{background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);filter:alpha(opacity=40);opacity:0.4;cursor:not-allowed;box-shadow:none}.btn-disabled:hover,.btn-disabled:focus,.btn-disabled:active{background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);filter:alpha(opacity=40);opacity:0.4;cursor:not-allowed;box-shadow:none}.btn::-moz-focus-inner{padding:0;border:0}.btn-small{font-size:80%}.btn-info{background-color:#2980B9 !important}.btn-info:hover{background-color:#2e8ece !important}.btn-neutral{background-color:#f3f6f6 !important;color:#404040 !important}.btn-neutral:hover{background-color:#e5ebeb !important;color:#404040}.btn-neutral:visited{color:#404040 !important}.btn-success{background-color:#27AE60 !important}.btn-success:hover{background-color:#295 !important}.btn-danger{background-color:#E74C3C !important}.btn-danger:hover{background-color:#ea6153 !important}.btn-warning{background-color:#E67E22 !important}.btn-warning:hover{background-color:#e98b39 !important}.btn-invert{background-color:#222}.btn-invert:hover{background-color:#2f2f2f !important}.btn-link{background-color:transparent !important;color:#2980B9;box-shadow:none;border-color:transparent !important}.btn-link:hover{background-color:transparent !important;color:#409ad5 !important;box-shadow:none}.btn-link:active{background-color:transparent !important;color:#409ad5 !important;box-shadow:none}.btn-link:visited{color:#9B59B6}.wy-btn-group .btn,.wy-control .btn{vertical-align:middle}.wy-btn-group{margin-bottom:24px;*zoom:1}.wy-btn-group:before,.wy-btn-group:after{display:table;content:""}.wy-btn-group:after{clear:both}.wy-dropdown{position:relative;display:inline-block}.wy-dropdown-active .wy-dropdown-menu{display:block}.wy-dropdown-menu{position:absolute;left:0;display:none;float:left;top:100%;min-width:100%;background:#fcfcfc;z-index:100;border:solid 1px #cfd7dd;box-shadow:0 2px 2px 0 rgba(0,0,0,0.1);padding:12px}.wy-dropdown-menu>dd>a{display:block;clear:both;color:#404040;white-space:nowrap;font-size:90%;padding:0 12px;cursor:pointer}.wy-dropdown-menu>dd>a:hover{background:#2980B9;color:#fff}.wy-dropdown-menu>dd.divider{border-top:solid 1px #cfd7dd;margin:6px 0}.wy-dropdown-menu>dd.search{padding-bottom:12px}.wy-dropdown-menu>dd.search input[type="search"]{width:100%}.wy-dropdown-menu>dd.call-to-action{background:#e3e3e3;text-transform:uppercase;font-weight:500;font-size:80%}.wy-dropdown-menu>dd.call-to-action:hover{background:#e3e3e3}.wy-dropdown-menu>dd.call-to-action .btn{color:#fff}.wy-dropdown.wy-dropdown-up .wy-dropdown-menu{bottom:100%;top:auto;left:auto;right:0}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu{background:#fcfcfc;margin-top:2px}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a{padding:6px 12px}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a:hover{background:#2980B9;color:#fff}.wy-dropdown.wy-dropdown-left .wy-dropdown-menu{right:0;left:auto;text-align:right}.wy-dropdown-arrow:before{content:" ";border-bottom:5px solid #f5f5f5;border-left:5px solid transparent;border-right:5px solid transparent;position:absolute;display:block;top:-4px;left:50%;margin-left:-3px}.wy-dropdown-arrow.wy-dropdown-arrow-left:before{left:11px}.wy-form-stacked select{display:block}.wy-form-aligned input,.wy-form-aligned textarea,.wy-form-aligned select,.wy-form-aligned .wy-help-inline,.wy-form-aligned label{display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.wy-form-aligned .wy-control-group>label{display:inline-block;vertical-align:middle;width:10em;margin:6px 12px 0 0;float:left}.wy-form-aligned .wy-control{float:left}.wy-form-aligned .wy-control label{display:block}.wy-form-aligned .wy-control select{margin-top:6px}fieldset{border:0;margin:0;padding:0}legend{display:block;width:100%;border:0;padding:0;white-space:normal;margin-bottom:24px;font-size:150%;*margin-left:-7px}label{display:block;margin:0 0 0.3125em 0;color:#333;font-size:90%}input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}.wy-control-group{margin-bottom:24px;*zoom:1;max-width:68em;margin-left:auto;margin-right:auto;*zoom:1}.wy-control-group:before,.wy-control-group:after{display:table;content:""}.wy-control-group:after{clear:both}.wy-control-group:before,.wy-control-group:after{display:table;content:""}.wy-control-group:after{clear:both}.wy-control-group.wy-control-group-required>label:after{content:" *";color:#E74C3C}.wy-control-group .wy-form-full,.wy-control-group .wy-form-halves,.wy-control-group .wy-form-thirds{padding-bottom:12px}.wy-control-group .wy-form-full select,.wy-control-group .wy-form-halves select,.wy-control-group .wy-form-thirds select{width:100%}.wy-control-group .wy-form-full input[type="text"],.wy-control-group .wy-form-full input[type="password"],.wy-control-group .wy-form-full input[type="email"],.wy-control-group .wy-form-full input[type="url"],.wy-control-group .wy-form-full input[type="date"],.wy-control-group .wy-form-full input[type="month"],.wy-control-group .wy-form-full input[type="time"],.wy-control-group .wy-form-full input[type="datetime"],.wy-control-group .wy-form-full input[type="datetime-local"],.wy-control-group .wy-form-full input[type="week"],.wy-control-group .wy-form-full input[type="number"],.wy-control-group .wy-form-full input[type="search"],.wy-control-group .wy-form-full input[type="tel"],.wy-control-group .wy-form-full input[type="color"],.wy-control-group .wy-form-halves input[type="text"],.wy-control-group .wy-form-halves input[type="password"],.wy-control-group .wy-form-halves input[type="email"],.wy-control-group .wy-form-halves input[type="url"],.wy-control-group .wy-form-halves input[type="date"],.wy-control-group .wy-form-halves input[type="month"],.wy-control-group .wy-form-halves input[type="time"],.wy-control-group .wy-form-halves input[type="datetime"],.wy-control-group .wy-form-halves input[type="datetime-local"],.wy-control-group .wy-form-halves input[type="week"],.wy-control-group .wy-form-halves input[type="number"],.wy-control-group .wy-form-halves input[type="search"],.wy-control-group .wy-form-halves input[type="tel"],.wy-control-group .wy-form-halves input[type="color"],.wy-control-group .wy-form-thirds input[type="text"],.wy-control-group .wy-form-thirds input[type="password"],.wy-control-group .wy-form-thirds input[type="email"],.wy-control-group .wy-form-thirds input[type="url"],.wy-control-group .wy-form-thirds input[type="date"],.wy-control-group .wy-form-thirds input[type="month"],.wy-control-group .wy-form-thirds input[type="time"],.wy-control-group .wy-form-thirds input[type="datetime"],.wy-control-group .wy-form-thirds input[type="datetime-local"],.wy-control-group .wy-form-thirds input[type="week"],.wy-control-group .wy-form-thirds input[type="number"],.wy-control-group .wy-form-thirds input[type="search"],.wy-control-group .wy-form-thirds input[type="tel"],.wy-control-group .wy-form-thirds input[type="color"]{width:100%}.wy-control-group .wy-form-full{float:left;display:block;margin-right:2.35765%;width:100%;margin-right:0}.wy-control-group .wy-form-full:last-child{margin-right:0}.wy-control-group .wy-form-halves{float:left;display:block;margin-right:2.35765%;width:48.82117%}.wy-control-group .wy-form-halves:last-child{margin-right:0}.wy-control-group .wy-form-halves:nth-of-type(2n){margin-right:0}.wy-control-group .wy-form-halves:nth-of-type(2n+1){clear:left}.wy-control-group .wy-form-thirds{float:left;display:block;margin-right:2.35765%;width:31.76157%}.wy-control-group .wy-form-thirds:last-child{margin-right:0}.wy-control-group .wy-form-thirds:nth-of-type(3n){margin-right:0}.wy-control-group .wy-form-thirds:nth-of-type(3n+1){clear:left}.wy-control-group.wy-control-group-no-input .wy-control{margin:6px 0 0 0;font-size:90%}.wy-control-no-input{display:inline-block;margin:6px 0 0 0;font-size:90%}.wy-control-group.fluid-input input[type="text"],.wy-control-group.fluid-input input[type="password"],.wy-control-group.fluid-input input[type="email"],.wy-control-group.fluid-input input[type="url"],.wy-control-group.fluid-input input[type="date"],.wy-control-group.fluid-input input[type="month"],.wy-control-group.fluid-input input[type="time"],.wy-control-group.fluid-input input[type="datetime"],.wy-control-group.fluid-input input[type="datetime-local"],.wy-control-group.fluid-input input[type="week"],.wy-control-group.fluid-input input[type="number"],.wy-control-group.fluid-input input[type="search"],.wy-control-group.fluid-input input[type="tel"],.wy-control-group.fluid-input input[type="color"]{width:100%}.wy-form-message-inline{display:inline-block;padding-left:0.3em;color:#666;vertical-align:middle;font-size:90%}.wy-form-message{display:block;color:#999;font-size:70%;margin-top:0.3125em;font-style:italic}.wy-form-message p{font-size:inherit;font-style:italic;margin-bottom:6px}.wy-form-message p:last-child{margin-bottom:0}input{line-height:normal}input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;*overflow:visible}input[type="text"],input[type="password"],input[type="email"],input[type="url"],input[type="date"],input[type="month"],input[type="time"],input[type="datetime"],input[type="datetime-local"],input[type="week"],input[type="number"],input[type="search"],input[type="tel"],input[type="color"]{-webkit-appearance:none;padding:6px;display:inline-block;border:1px solid #ccc;font-size:80%;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;box-shadow:inset 0 1px 3px #ddd;border-radius:0;-webkit-transition:border 0.3s linear;-moz-transition:border 0.3s linear;transition:border 0.3s linear}input[type="datetime-local"]{padding:0.34375em 0.625em}input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0;margin-right:0.3125em;*height:13px;*width:13px}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}input[type="text"]:focus,input[type="password"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus{outline:0;outline:thin dotted \9;border-color:#333}input.no-focus:focus{border-color:#ccc !important}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:1px auto #129FEA}input[type="text"][disabled],input[type="password"][disabled],input[type="email"][disabled],input[type="url"][disabled],input[type="date"][disabled],input[type="month"][disabled],input[type="time"][disabled],input[type="datetime"][disabled],input[type="datetime-local"][disabled],input[type="week"][disabled],input[type="number"][disabled],input[type="search"][disabled],input[type="tel"][disabled],input[type="color"][disabled]{cursor:not-allowed;background-color:#fafafa}input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#E74C3C;border:1px solid #E74C3C}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#E74C3C}input[type="file"]:focus:invalid:focus,input[type="radio"]:focus:invalid:focus,input[type="checkbox"]:focus:invalid:focus{outline-color:#E74C3C}input.wy-input-large{padding:12px;font-size:100%}textarea{overflow:auto;vertical-align:top;width:100%;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif}select,textarea{padding:0.5em 0.625em;display:inline-block;border:1px solid #ccc;font-size:80%;box-shadow:inset 0 1px 3px #ddd;-webkit-transition:border 0.3s linear;-moz-transition:border 0.3s linear;transition:border 0.3s linear}select{border:1px solid #ccc;background-color:#fff}select[multiple]{height:auto}select:focus,textarea:focus{outline:0}select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#fafafa}input[type="radio"][disabled],input[type="checkbox"][disabled]{cursor:not-allowed}.wy-checkbox,.wy-radio{margin:6px 0;color:#404040;display:block}.wy-checkbox input,.wy-radio input{vertical-align:baseline}.wy-form-message-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.wy-input-prefix,.wy-input-suffix{white-space:nowrap;padding:6px}.wy-input-prefix .wy-input-context,.wy-input-suffix .wy-input-context{line-height:27px;padding:0 8px;display:inline-block;font-size:80%;background-color:#f3f6f6;border:solid 1px #ccc;color:#999}.wy-input-suffix .wy-input-context{border-left:0}.wy-input-prefix .wy-input-context{border-right:0}.wy-switch{width:36px;height:12px;margin:12px 0;position:relative;border-radius:4px;background:#ccc;cursor:pointer;-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out}.wy-switch:before{position:absolute;content:"";display:block;width:18px;height:18px;border-radius:4px;background:#999;left:-3px;top:-3px;-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out}.wy-switch:after{content:"false";position:absolute;left:48px;display:block;font-size:12px;color:#ccc}.wy-switch.active{background:#1e8449}.wy-switch.active:before{left:24px;background:#27AE60}.wy-switch.active:after{content:"true"}.wy-switch.disabled,.wy-switch.active.disabled{cursor:not-allowed}.wy-control-group.wy-control-group-error .wy-form-message,.wy-control-group.wy-control-group-error>label{color:#E74C3C}.wy-control-group.wy-control-group-error input[type="text"],.wy-control-group.wy-control-group-error input[type="password"],.wy-control-group.wy-control-group-error input[type="email"],.wy-control-group.wy-control-group-error input[type="url"],.wy-control-group.wy-control-group-error input[type="date"],.wy-control-group.wy-control-group-error input[type="month"],.wy-control-group.wy-control-group-error input[type="time"],.wy-control-group.wy-control-group-error input[type="datetime"],.wy-control-group.wy-control-group-error input[type="datetime-local"],.wy-control-group.wy-control-group-error input[type="week"],.wy-control-group.wy-control-group-error input[type="number"],.wy-control-group.wy-control-group-error input[type="search"],.wy-control-group.wy-control-group-error input[type="tel"],.wy-control-group.wy-control-group-error input[type="color"]{border:solid 1px #E74C3C}.wy-control-group.wy-control-group-error textarea{border:solid 1px #E74C3C}.wy-inline-validate{white-space:nowrap}.wy-inline-validate .wy-input-context{padding:0.5em 0.625em;display:inline-block;font-size:80%}.wy-inline-validate.wy-inline-validate-success .wy-input-context{color:#27AE60}.wy-inline-validate.wy-inline-validate-danger .wy-input-context{color:#E74C3C}.wy-inline-validate.wy-inline-validate-warning .wy-input-context{color:#E67E22}.wy-inline-validate.wy-inline-validate-info .wy-input-context{color:#2980B9}.rotate-90{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.rotate-180{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.rotate-270{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.mirror{-webkit-transform:scaleX(-1);-moz-transform:scaleX(-1);-ms-transform:scaleX(-1);-o-transform:scaleX(-1);transform:scaleX(-1)}.mirror.rotate-90{-webkit-transform:scaleX(-1) rotate(90deg);-moz-transform:scaleX(-1) rotate(90deg);-ms-transform:scaleX(-1) rotate(90deg);-o-transform:scaleX(-1) rotate(90deg);transform:scaleX(-1) rotate(90deg)}.mirror.rotate-180{-webkit-transform:scaleX(-1) rotate(180deg);-moz-transform:scaleX(-1) rotate(180deg);-ms-transform:scaleX(-1) rotate(180deg);-o-transform:scaleX(-1) rotate(180deg);transform:scaleX(-1) rotate(180deg)}.mirror.rotate-270{-webkit-transform:scaleX(-1) rotate(270deg);-moz-transform:scaleX(-1) rotate(270deg);-ms-transform:scaleX(-1) rotate(270deg);-o-transform:scaleX(-1) rotate(270deg);transform:scaleX(-1) rotate(270deg)}@media only screen and (max-width: 480px){.wy-form button[type="submit"]{margin:0.7em 0 0}.wy-form input[type="text"],.wy-form input[type="password"],.wy-form input[type="email"],.wy-form input[type="url"],.wy-form input[type="date"],.wy-form input[type="month"],.wy-form input[type="time"],.wy-form input[type="datetime"],.wy-form input[type="datetime-local"],.wy-form input[type="week"],.wy-form input[type="number"],.wy-form input[type="search"],.wy-form input[type="tel"],.wy-form input[type="color"]{margin-bottom:0.3em;display:block}.wy-form label{margin-bottom:0.3em;display:block}.wy-form input[type="password"],.wy-form input[type="email"],.wy-form input[type="url"],.wy-form input[type="date"],.wy-form input[type="month"],.wy-form input[type="time"],.wy-form input[type="datetime"],.wy-form input[type="datetime-local"],.wy-form input[type="week"],.wy-form input[type="number"],.wy-form input[type="search"],.wy-form input[type="tel"],.wy-form input[type="color"]{margin-bottom:0}.wy-form-aligned .wy-control-group label{margin-bottom:0.3em;text-align:left;display:block;width:100%}.wy-form-aligned .wy-control{margin:1.5em 0 0 0}.wy-form .wy-help-inline,.wy-form-message-inline,.wy-form-message{display:block;font-size:80%;padding:6px 0}}@media screen and (max-width: 768px){.tablet-hide{display:none}}@media screen and (max-width: 480px){.mobile-hide{display:none}}.float-left{float:left}.float-right{float:right}.full-width{width:100%}.wy-table,.rst-content table.docutils,.rst-content table.field-list{border-collapse:collapse;border-spacing:0;empty-cells:show;margin-bottom:24px}.wy-table caption,.rst-content table.docutils caption,.rst-content table.field-list caption{color:#000;font:italic 85%/1 arial,sans-serif;padding:1em 0;text-align:center}.wy-table td,.rst-content table.docutils td,.rst-content table.field-list td,.wy-table th,.rst-content table.docutils th,.rst-content table.field-list th{font-size:90%;margin:0;overflow:visible;padding:8px 16px}.wy-table td:first-child,.rst-content table.docutils td:first-child,.rst-content table.field-list td:first-child,.wy-table th:first-child,.rst-content table.docutils th:first-child,.rst-content table.field-list th:first-child{border-left-width:0}.wy-table thead,.rst-content table.docutils thead,.rst-content table.field-list thead{color:#000;text-align:left;vertical-align:bottom;white-space:nowrap}.wy-table thead th,.rst-content table.docutils thead th,.rst-content table.field-list thead th{font-weight:bold;border-bottom:solid 2px #e1e4e5}.wy-table td,.rst-content table.docutils td,.rst-content table.field-list td{background-color:transparent;vertical-align:middle}.wy-table td p,.rst-content table.docutils td p,.rst-content table.field-list td p{line-height:18px}.wy-table td p:last-child,.rst-content table.docutils td p:last-child,.rst-content table.field-list td p:last-child{margin-bottom:0}.wy-table .wy-table-cell-min,.rst-content table.docutils .wy-table-cell-min,.rst-content table.field-list .wy-table-cell-min{width:1%;padding-right:0}.wy-table .wy-table-cell-min input[type=checkbox],.rst-content table.docutils .wy-table-cell-min input[type=checkbox],.rst-content table.field-list .wy-table-cell-min input[type=checkbox],.wy-table .wy-table-cell-min input[type=checkbox],.rst-content table.docutils .wy-table-cell-min input[type=checkbox],.rst-content table.field-list .wy-table-cell-min input[type=checkbox]{margin:0}.wy-table-secondary{color:gray;font-size:90%}.wy-table-tertiary{color:gray;font-size:80%}.wy-table-odd td,.wy-table-striped tr:nth-child(2n-1) td,.rst-content table.docutils:not(.field-list) tr:nth-child(2n-1) td{background-color:#f3f6f6}.wy-table-backed{background-color:#f3f6f6}.wy-table-bordered-all,.rst-content table.docutils{border:1px solid #e1e4e5}.wy-table-bordered-all td,.rst-content table.docutils td{border-bottom:1px solid #e1e4e5;border-left:1px solid #e1e4e5}.wy-table-bordered-all tbody>tr:last-child td,.rst-content table.docutils tbody>tr:last-child td{border-bottom-width:0}.wy-table-bordered{border:1px solid #e1e4e5}.wy-table-bordered-rows td{border-bottom:1px solid #e1e4e5}.wy-table-bordered-rows tbody>tr:last-child td{border-bottom-width:0}.wy-table-horizontal tbody>tr:last-child td{border-bottom-width:0}.wy-table-horizontal td,.wy-table-horizontal th{border-width:0 0 1px 0;border-bottom:1px solid #e1e4e5}.wy-table-horizontal tbody>tr:last-child td{border-bottom-width:0}.wy-table-responsive{margin-bottom:24px;max-width:100%;overflow:auto}.wy-table-responsive table{margin-bottom:0 !important}.wy-table-responsive table td,.wy-table-responsive table th{white-space:nowrap}a{color:#2980B9;text-decoration:none;cursor:pointer}a:hover{color:#3091d1}a:visited{color:#9B59B6}html{height:100%;overflow-x:hidden}body{font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;font-weight:normal;color:#404040;min-height:100%;overflow-x:hidden;background:#edf0f2}.wy-text-left{text-align:left}.wy-text-center{text-align:center}.wy-text-right{text-align:right}.wy-text-large{font-size:120%}.wy-text-normal{font-size:100%}.wy-text-small,small{font-size:80%}.wy-text-strike{text-decoration:line-through}.wy-text-warning{color:#E67E22 !important}a.wy-text-warning:hover{color:#eb9950 !important}.wy-text-info{color:#2980B9 !important}a.wy-text-info:hover{color:#409ad5 !important}.wy-text-success{color:#27AE60 !important}a.wy-text-success:hover{color:#36d278 !important}.wy-text-danger{color:#E74C3C !important}a.wy-text-danger:hover{color:#ed7669 !important}.wy-text-neutral{color:#404040 !important}a.wy-text-neutral:hover{color:#595959 !important}h1,h2,.rst-content .toctree-wrapper p.caption,h3,h4,h5,h6,legend{margin-top:0;font-weight:700;font-family:"Roboto Slab","ff-tisa-web-pro","Georgia",Arial,sans-serif}p{line-height:24px;margin:0;font-size:16px;margin-bottom:24px}h1{font-size:175%}h2,.rst-content .toctree-wrapper p.caption{font-size:150%}h3{font-size:125%}h4{font-size:115%}h5{font-size:110%}h6{font-size:100%}hr{display:block;height:1px;border:0;border-top:1px solid #e1e4e5;margin:24px 0;padding:0}code,.rst-content tt,.rst-content code{white-space:nowrap;max-width:100%;background:#fff;border:solid 1px #e1e4e5;font-size:75%;padding:0 5px;font-family:Consolas,"Andale Mono WT","Andale Mono","Lucida Console","Lucida Sans Typewriter","DejaVu Sans Mono","Bitstream Vera Sans Mono","Liberation Mono","Nimbus Mono L",Monaco,"Courier New",Courier,monospace;color:#E74C3C;overflow-x:auto}code.code-large,.rst-content tt.code-large{font-size:90%}.wy-plain-list-disc,.rst-content .section ul,.rst-content .toctree-wrapper ul,article ul{list-style:disc;line-height:24px;margin-bottom:24px}.wy-plain-list-disc li,.rst-content .section ul li,.rst-content .toctree-wrapper ul li,article ul li{list-style:disc;margin-left:24px}.wy-plain-list-disc li p:last-child,.rst-content .section ul li p:last-child,.rst-content .toctree-wrapper ul li p:last-child,article ul li p:last-child{margin-bottom:0}.wy-plain-list-disc li ul,.rst-content .section ul li ul,.rst-content .toctree-wrapper ul li ul,article ul li ul{margin-bottom:0}.wy-plain-list-disc li li,.rst-content .section ul li li,.rst-content .toctree-wrapper ul li li,article ul li li{list-style:circle}.wy-plain-list-disc li li li,.rst-content .section ul li li li,.rst-content .toctree-wrapper ul li li li,article ul li li li{list-style:square}.wy-plain-list-disc li ol li,.rst-content .section ul li ol li,.rst-content .toctree-wrapper ul li ol li,article ul li ol li{list-style:decimal}.wy-plain-list-decimal,.rst-content .section ol,.rst-content ol.arabic,article ol{list-style:decimal;line-height:24px;margin-bottom:24px}.wy-plain-list-decimal li,.rst-content .section ol li,.rst-content ol.arabic li,article ol li{list-style:decimal;margin-left:24px}.wy-plain-list-decimal li p:last-child,.rst-content .section ol li p:last-child,.rst-content ol.arabic li p:last-child,article ol li p:last-child{margin-bottom:0}.wy-plain-list-decimal li ul,.rst-content .section ol li ul,.rst-content ol.arabic li ul,article ol li ul{margin-bottom:0}.wy-plain-list-decimal li ul li,.rst-content .section ol li ul li,.rst-content ol.arabic li ul li,article ol li ul li{list-style:disc}.codeblock-example{border:1px solid #e1e4e5;border-bottom:none;padding:24px;padding-top:48px;font-weight:500;background:#fff;position:relative}.codeblock-example:after{content:"Example";position:absolute;top:0px;left:0px;background:#9B59B6;color:#fff;padding:6px 12px}.codeblock-example.prettyprint-example-only{border:1px solid #e1e4e5;margin-bottom:24px}.codeblock,pre.literal-block,.rst-content .literal-block,.rst-content pre.literal-block,div[class^='highlight']{border:1px solid #e1e4e5;padding:0px;overflow-x:auto;background:#fff;margin:1px 0 24px 0}.codeblock div[class^='highlight'],pre.literal-block div[class^='highlight'],.rst-content .literal-block div[class^='highlight'],div[class^='highlight'] div[class^='highlight']{border:none;background:none;margin:0}div[class^='highlight'] td.code{width:100%}.linenodiv pre{border-right:solid 1px #e6e9ea;margin:0;padding:12px 12px;font-family:Consolas,"Andale Mono WT","Andale Mono","Lucida Console","Lucida Sans Typewriter","DejaVu Sans Mono","Bitstream Vera Sans Mono","Liberation Mono","Nimbus Mono L",Monaco,"Courier New",Courier,monospace;font-size:12px;line-height:1.5;color:#d9d9d9}div[class^='highlight'] pre{white-space:pre;margin:0;padding:12px 12px;font-family:Consolas,"Andale Mono WT","Andale Mono","Lucida Console","Lucida Sans Typewriter","DejaVu Sans Mono","Bitstream Vera Sans Mono","Liberation Mono","Nimbus Mono L",Monaco,"Courier New",Courier,monospace;font-size:12px;line-height:1.5;display:block;overflow:auto;color:#404040}@media print{.codeblock,pre.literal-block,.rst-content .literal-block,.rst-content pre.literal-block,div[class^='highlight'],div[class^='highlight'] pre{white-space:pre-wrap}}.hll{background-color:#ffc;margin:0 -12px;padding:0 12px;display:block}.c{color:#998;font-style:italic}.err{color:#a61717;background-color:#e3d2d2}.k{font-weight:bold}.o{font-weight:bold}.cm{color:#998;font-style:italic}.cp{color:#999;font-weight:bold}.c1{color:#998;font-style:italic}.cs{color:#999;font-weight:bold;font-style:italic}.gd{color:#000;background-color:#fdd}.gd .x{color:#000;background-color:#faa}.ge{font-style:italic}.gr{color:#a00}.gh{color:#999}.gi{color:#000;background-color:#dfd}.gi .x{color:#000;background-color:#afa}.go{color:#888}.gp{color:#555}.gs{font-weight:bold}.gu{color:purple;font-weight:bold}.gt{color:#a00}.kc{font-weight:bold}.kd{font-weight:bold}.kn{font-weight:bold}.kp{font-weight:bold}.kr{font-weight:bold}.kt{color:#458;font-weight:bold}.m{color:#099}.s{color:#d14}.n{color:#333}.na{color:teal}.nb{color:#0086b3}.nc{color:#458;font-weight:bold}.no{color:teal}.ni{color:purple}.ne{color:#900;font-weight:bold}.nf{color:#900;font-weight:bold}.nn{color:#555}.nt{color:navy}.nv{color:teal}.ow{font-weight:bold}.w{color:#bbb}.mf{color:#099}.mh{color:#099}.mi{color:#099}.mo{color:#099}.sb{color:#d14}.sc{color:#d14}.sd{color:#d14}.s2{color:#d14}.se{color:#d14}.sh{color:#d14}.si{color:#d14}.sx{color:#d14}.sr{color:#009926}.s1{color:#d14}.ss{color:#990073}.bp{color:#999}.vc{color:teal}.vg{color:teal}.vi{color:teal}.il{color:#099}.gc{color:#999;background-color:#EAF2F5}.wy-breadcrumbs li{display:inline-block}.wy-breadcrumbs li.wy-breadcrumbs-aside{float:right}.wy-breadcrumbs li a{display:inline-block;padding:5px}.wy-breadcrumbs li a:first-child{padding-left:0}.wy-breadcrumbs li code,.wy-breadcrumbs li .rst-content tt,.rst-content .wy-breadcrumbs li tt{padding:5px;border:none;background:none}.wy-breadcrumbs li code.literal,.wy-breadcrumbs li .rst-content tt.literal,.rst-content .wy-breadcrumbs li tt.literal{color:#404040}.wy-breadcrumbs-extra{margin-bottom:0;color:#b3b3b3;font-size:80%;display:inline-block}@media screen and (max-width: 480px){.wy-breadcrumbs-extra{display:none}.wy-breadcrumbs li.wy-breadcrumbs-aside{display:none}}@media print{.wy-breadcrumbs li.wy-breadcrumbs-aside{display:none}}.wy-affix{position:fixed;top:1.618em}.wy-menu a:hover{text-decoration:none}.wy-menu-horiz{*zoom:1}.wy-menu-horiz:before,.wy-menu-horiz:after{display:table;content:""}.wy-menu-horiz:after{clear:both}.wy-menu-horiz ul,.wy-menu-horiz li{display:inline-block}.wy-menu-horiz li:hover{background:rgba(255,255,255,0.1)}.wy-menu-horiz li.divide-left{border-left:solid 1px #404040}.wy-menu-horiz li.divide-right{border-right:solid 1px #404040}.wy-menu-horiz a{height:32px;display:inline-block;line-height:32px;padding:0 16px}.wy-menu-vertical{width:300px}.wy-menu-vertical header,.wy-menu-vertical p.caption{height:32px;display:inline-block;line-height:32px;padding:0 1.618em;margin-bottom:0;display:block;font-weight:bold;text-transform:uppercase;font-size:80%;color:#555;white-space:nowrap}.wy-menu-vertical ul{margin-bottom:0}.wy-menu-vertical li.divide-top{border-top:solid 1px #404040}.wy-menu-vertical li.divide-bottom{border-bottom:solid 1px #404040}.wy-menu-vertical li.current{background:#e3e3e3}.wy-menu-vertical li.current a{color:gray;border-right:solid 1px #c9c9c9;padding:0.4045em 2.427em}.wy-menu-vertical li.current a:hover{background:#d6d6d6}.wy-menu-vertical li code,.wy-menu-vertical li .rst-content tt,.rst-content .wy-menu-vertical li tt{border:none;background:inherit;color:inherit;padding-left:0;padding-right:0}.wy-menu-vertical li span.toctree-expand{display:block;float:left;margin-left:-1.2em;font-size:0.8em;line-height:1.6em;color:#4d4d4d}.wy-menu-vertical li.on a,.wy-menu-vertical li.current>a{color:#404040;padding:0.4045em 1.618em;font-weight:bold;position:relative;background:#fcfcfc;border:none;border-bottom:solid 1px #c9c9c9;border-top:solid 1px #c9c9c9;padding-left:1.618em -4px}.wy-menu-vertical li.on a:hover,.wy-menu-vertical li.current>a:hover{background:#fcfcfc}.wy-menu-vertical li.on a:hover span.toctree-expand,.wy-menu-vertical li.current>a:hover span.toctree-expand{color:gray}.wy-menu-vertical li.on a span.toctree-expand,.wy-menu-vertical li.current>a span.toctree-expand{display:block;font-size:0.8em;line-height:1.6em;color:#333}.wy-menu-vertical li.toctree-l1.current li.toctree-l2>ul,.wy-menu-vertical li.toctree-l2.current li.toctree-l3>ul{display:none}.wy-menu-vertical li.toctree-l1.current li.toctree-l2.current>ul,.wy-menu-vertical li.toctree-l2.current li.toctree-l3.current>ul{display:block}.wy-menu-vertical li.toctree-l2.current>a{background:#c9c9c9;padding:0.4045em 2.427em}.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a{display:block;background:#c9c9c9;padding:0.4045em 4.045em}.wy-menu-vertical li.toctree-l2 a:hover span.toctree-expand{color:gray}.wy-menu-vertical li.toctree-l2 span.toctree-expand{color:#a3a3a3}.wy-menu-vertical li.toctree-l3{font-size:0.9em}.wy-menu-vertical li.toctree-l3.current>a{background:#bdbdbd;padding:0.4045em 4.045em}.wy-menu-vertical li.toctree-l3.current li.toctree-l4>a{display:block;background:#bdbdbd;padding:0.4045em 5.663em;border-top:none;border-bottom:none}.wy-menu-vertical li.toctree-l3 a:hover span.toctree-expand{color:gray}.wy-menu-vertical li.toctree-l3 span.toctree-expand{color:#969696}.wy-menu-vertical li.toctree-l4{font-size:0.9em}.wy-menu-vertical li.current ul{display:block}.wy-menu-vertical li ul{margin-bottom:0;display:none}.wy-menu-vertical .local-toc li ul{display:block}.wy-menu-vertical li ul li a{margin-bottom:0;color:#b3b3b3;font-weight:normal}.wy-menu-vertical a{display:inline-block;line-height:18px;padding:0.4045em 1.618em;display:block;position:relative;font-size:90%;color:#b3b3b3}.wy-menu-vertical a:hover{background-color:#4e4a4a;cursor:pointer}.wy-menu-vertical a:hover span.toctree-expand{color:#b3b3b3}.wy-menu-vertical a:active{background-color:#2980B9;cursor:pointer;color:#fff}.wy-menu-vertical a:active span.toctree-expand{color:#fff}.wy-side-nav-search{display:block;width:300px;padding:0.809em;margin-bottom:0.809em;z-index:200;background-color:#2980B9;text-align:center;padding:0.809em;display:block;color:#fcfcfc;margin-bottom:0.809em}.wy-side-nav-search input[type=text]{width:100%;border-radius:50px;padding:6px 12px;border-color:#2472a4}.wy-side-nav-search img{display:block;margin:auto auto 0.809em auto;height:45px;width:45px;background-color:#2980B9;padding:5px;border-radius:100%}.wy-side-nav-search>a,.wy-side-nav-search .wy-dropdown>a{color:#fcfcfc;font-size:100%;font-weight:bold;display:inline-block;padding:4px 6px;margin-bottom:0.809em}.wy-side-nav-search>a:hover,.wy-side-nav-search .wy-dropdown>a:hover{background:rgba(255,255,255,0.1)}.wy-side-nav-search>a img.logo,.wy-side-nav-search .wy-dropdown>a img.logo{display:block;margin:0 auto;height:auto;width:auto;border-radius:0;max-width:100%;background:transparent}.wy-side-nav-search>a.icon img.logo,.wy-side-nav-search .wy-dropdown>a.icon img.logo{margin-top:0.85em}.wy-side-nav-search>div.version{margin-top:-0.4045em;margin-bottom:0.809em;font-weight:normal;color:rgba(255,255,255,0.3)}.wy-nav .wy-menu-vertical header{color:#2980B9}.wy-nav .wy-menu-vertical a{color:#b3b3b3}.wy-nav .wy-menu-vertical a:hover{background-color:#2980B9;color:#fff}[data-menu-wrap]{-webkit-transition:all 0.2s ease-in;-moz-transition:all 0.2s ease-in;transition:all 0.2s ease-in;position:absolute;opacity:1;width:100%;opacity:0}[data-menu-wrap].move-center{left:0;right:auto;opacity:1}[data-menu-wrap].move-left{right:auto;left:-100%;opacity:0}[data-menu-wrap].move-right{right:-100%;left:auto;opacity:0}.wy-body-for-nav{background:left repeat-y #fcfcfc;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxOERBMTRGRDBFMUUxMUUzODUwMkJCOThDMEVFNURFMCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxOERBMTRGRTBFMUUxMUUzODUwMkJCOThDMEVFNURFMCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjE4REExNEZCMEUxRTExRTM4NTAyQkI5OEMwRUU1REUwIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjE4REExNEZDMEUxRTExRTM4NTAyQkI5OEMwRUU1REUwIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+EwrlwAAAAA5JREFUeNpiMDU0BAgwAAE2AJgB9BnaAAAAAElFTkSuQmCC);background-size:300px 1px}.wy-grid-for-nav{position:absolute;width:100%;height:100%}.wy-nav-side{position:fixed;top:0;bottom:0;left:0;padding-bottom:2em;width:300px;overflow-x:hidden;overflow-y:hidden;min-height:100%;background:#343131;z-index:200}.wy-side-scroll{width:320px;position:relative;overflow-x:hidden;overflow-y:scroll;height:100%}.wy-nav-top{display:none;background:#2980B9;color:#fff;padding:0.4045em 0.809em;position:relative;line-height:50px;text-align:center;font-size:100%;*zoom:1}.wy-nav-top:before,.wy-nav-top:after{display:table;content:""}.wy-nav-top:after{clear:both}.wy-nav-top a{color:#fff;font-weight:bold}.wy-nav-top img{margin-right:12px;height:45px;width:45px;background-color:#2980B9;padding:5px;border-radius:100%}.wy-nav-top i{font-size:30px;float:left;cursor:pointer}.wy-nav-content-wrap{margin-left:300px;background:#fcfcfc;min-height:100%}.wy-nav-content{padding:1.618em 3.236em;height:100%;max-width:800px;margin:auto}.wy-body-mask{position:fixed;width:100%;height:100%;background:rgba(0,0,0,0.2);display:none;z-index:499}.wy-body-mask.on{display:block}footer{color:#999}footer p{margin-bottom:12px}footer span.commit code,footer span.commit .rst-content tt,.rst-content footer span.commit tt{padding:0px;font-family:Consolas,"Andale Mono WT","Andale Mono","Lucida Console","Lucida Sans Typewriter","DejaVu Sans Mono","Bitstream Vera Sans Mono","Liberation Mono","Nimbus Mono L",Monaco,"Courier New",Courier,monospace;font-size:1em;background:none;border:none;color:#999}.rst-footer-buttons{*zoom:1}.rst-footer-buttons:before,.rst-footer-buttons:after{display:table;content:""}.rst-footer-buttons:after{clear:both}#search-results .search li{margin-bottom:24px;border-bottom:solid 1px #e1e4e5;padding-bottom:24px}#search-results .search li:first-child{border-top:solid 1px #e1e4e5;padding-top:24px}#search-results .search li a{font-size:120%;margin-bottom:12px;display:inline-block}#search-results .context{color:gray;font-size:90%}@media screen and (max-width: 768px){.wy-body-for-nav{background:#fcfcfc}.wy-nav-top{display:block}.wy-nav-side{left:-300px}.wy-nav-side.shift{width:85%;left:0}.wy-side-scroll{width:auto}.wy-side-nav-search{width:auto}.wy-menu.wy-menu-vertical{width:auto}.wy-nav-content-wrap{margin-left:0}.wy-nav-content-wrap .wy-nav-content{padding:1.618em}.wy-nav-content-wrap.shift{position:fixed;min-width:100%;left:85%;top:0;height:100%;overflow:hidden}}@media screen and (min-width: 1400px){.wy-nav-content-wrap{background:rgba(0,0,0,0.05)}.wy-nav-content{margin:0;background:#fcfcfc}}@media print{.rst-versions,footer,.wy-nav-side{display:none}.wy-nav-content-wrap{margin-left:0}}.rst-versions{position:fixed;bottom:0;left:0;width:300px;color:#fcfcfc;background:#1f1d1d;border-top:solid 10px #343131;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;z-index:400}.rst-versions a{color:#2980B9;text-decoration:none}.rst-versions .rst-badge-small{display:none}.rst-versions .rst-current-version{padding:12px;background-color:#272525;display:block;text-align:right;font-size:90%;cursor:pointer;color:#27AE60;*zoom:1}.rst-versions .rst-current-version:before,.rst-versions .rst-current-version:after{display:table;content:""}.rst-versions .rst-current-version:after{clear:both}.rst-versions .rst-current-version .fa,.rst-versions .rst-current-version .wy-menu-vertical li span.toctree-expand,.wy-menu-vertical li .rst-versions .rst-current-version span.toctree-expand,.rst-versions .rst-current-version .rst-content .admonition-title,.rst-content .rst-versions .rst-current-version .admonition-title,.rst-versions .rst-current-version .rst-content h1 .headerlink,.rst-content h1 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h2 .headerlink,.rst-content h2 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h3 .headerlink,.rst-content h3 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h4 .headerlink,.rst-content h4 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h5 .headerlink,.rst-content h5 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h6 .headerlink,.rst-content h6 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content dl dt .headerlink,.rst-content dl dt .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content p.caption .headerlink,.rst-content p.caption .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content tt.download span:first-child,.rst-content tt.download .rst-versions .rst-current-version span:first-child,.rst-versions .rst-current-version .rst-content code.download span:first-child,.rst-content code.download .rst-versions .rst-current-version span:first-child,.rst-versions .rst-current-version .icon{color:#fcfcfc}.rst-versions .rst-current-version .fa-book,.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version.rst-out-of-date{background-color:#E74C3C;color:#fff}.rst-versions .rst-current-version.rst-active-old-version{background-color:#F1C40F;color:#000}.rst-versions.shift-up .rst-other-versions{display:block}.rst-versions .rst-other-versions{font-size:90%;padding:12px;color:gray;display:none}.rst-versions .rst-other-versions hr{display:block;height:1px;border:0;margin:20px 0;padding:0;border-top:solid 1px #413d3d}.rst-versions .rst-other-versions dd{display:inline-block;margin:0}.rst-versions .rst-other-versions dd a{display:inline-block;padding:6px;color:#fcfcfc}.rst-versions.rst-badge{width:auto;bottom:20px;right:20px;left:auto;border:none;max-width:300px}.rst-versions.rst-badge .icon-book{float:none}.rst-versions.rst-badge .fa-book,.rst-versions.rst-badge .icon-book{float:none}.rst-versions.rst-badge.shift-up .rst-current-version{text-align:right}.rst-versions.rst-badge.shift-up .rst-current-version .fa-book,.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge .rst-current-version{width:auto;height:30px;line-height:30px;padding:0 6px;display:block;text-align:center}@media screen and (max-width: 768px){.rst-versions{width:85%;display:none}.rst-versions.shift{display:block}img{width:100%;height:auto}}.rst-content img{max-width:100%;height:auto !important}.rst-content div.figure{margin-bottom:24px}.rst-content div.figure p.caption{font-style:italic}.rst-content div.figure.align-center{text-align:center}.rst-content .section>img,.rst-content .section>a>img{margin-bottom:24px}.rst-content blockquote{margin-left:24px;line-height:24px;margin-bottom:24px}.rst-content .note .last,.rst-content .attention .last,.rst-content .caution .last,.rst-content .danger .last,.rst-content .error .last,.rst-content .hint .last,.rst-content .important .last,.rst-content .tip .last,.rst-content .warning .last,.rst-content .seealso .last,.rst-content .admonition-todo .last{margin-bottom:0}.rst-content .admonition-title:before{margin-right:4px}.rst-content .admonition table{border-color:rgba(0,0,0,0.1)}.rst-content .admonition table td,.rst-content .admonition table th{background:transparent !important;border-color:rgba(0,0,0,0.1) !important}.rst-content .section ol.loweralpha,.rst-content .section ol.loweralpha li{list-style:lower-alpha}.rst-content .section ol.upperalpha,.rst-content .section ol.upperalpha li{list-style:upper-alpha}.rst-content .section ol p,.rst-content .section ul p{margin-bottom:12px}.rst-content .line-block{margin-left:24px}.rst-content .topic-title{font-weight:bold;margin-bottom:12px}.rst-content .toc-backref{color:#404040}.rst-content .align-right{float:right;margin:0px 0px 24px 24px}.rst-content .align-left{float:left;margin:0px 24px 24px 0px}.rst-content .align-center{margin:auto;display:block}.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content .toctree-wrapper p.caption .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content dl dt .headerlink,.rst-content p.caption .headerlink{display:none;visibility:hidden;font-size:14px}.rst-content h1 .headerlink:after,.rst-content h2 .headerlink:after,.rst-content .toctree-wrapper p.caption .headerlink:after,.rst-content h3 .headerlink:after,.rst-content h4 .headerlink:after,.rst-content h5 .headerlink:after,.rst-content h6 .headerlink:after,.rst-content dl dt .headerlink:after,.rst-content p.caption .headerlink:after{visibility:visible;content:"";font-family:FontAwesome;display:inline-block}.rst-content h1:hover .headerlink,.rst-content h2:hover .headerlink,.rst-content .toctree-wrapper p.caption:hover .headerlink,.rst-content h3:hover .headerlink,.rst-content h4:hover .headerlink,.rst-content h5:hover .headerlink,.rst-content h6:hover .headerlink,.rst-content dl dt:hover .headerlink,.rst-content p.caption:hover .headerlink{display:inline-block}.rst-content .sidebar{float:right;width:40%;display:block;margin:0 0 24px 24px;padding:24px;background:#f3f6f6;border:solid 1px #e1e4e5}.rst-content .sidebar p,.rst-content .sidebar ul,.rst-content .sidebar dl{font-size:90%}.rst-content .sidebar .last{margin-bottom:0}.rst-content .sidebar .sidebar-title{display:block;font-family:"Roboto Slab","ff-tisa-web-pro","Georgia",Arial,sans-serif;font-weight:bold;background:#e1e4e5;padding:6px 12px;margin:-24px;margin-bottom:24px;font-size:100%}.rst-content .highlighted{background:#F1C40F;display:inline-block;font-weight:bold;padding:0 6px}.rst-content .footnote-reference,.rst-content .citation-reference{vertical-align:super;font-size:90%}.rst-content table.docutils.citation,.rst-content table.docutils.footnote{background:none;border:none;color:#999}.rst-content table.docutils.citation td,.rst-content table.docutils.citation tr,.rst-content table.docutils.footnote td,.rst-content table.docutils.footnote tr{border:none;background-color:transparent !important;white-space:normal}.rst-content table.docutils.citation td.label,.rst-content table.docutils.footnote td.label{padding-left:0;padding-right:0;vertical-align:top}.rst-content table.docutils.citation tt,.rst-content table.docutils.citation code,.rst-content table.docutils.footnote tt,.rst-content table.docutils.footnote code{color:#555}.rst-content table.field-list{border:none}.rst-content table.field-list td{border:none;padding-top:5px}.rst-content table.field-list td>strong{display:inline-block;margin-top:3px}.rst-content table.field-list .field-name{padding-right:10px;text-align:left;white-space:nowrap}.rst-content table.field-list .field-body{text-align:left;padding-left:0}.rst-content tt,.rst-content tt,.rst-content code{color:#000;padding:2px 5px}.rst-content tt big,.rst-content tt em,.rst-content tt big,.rst-content code big,.rst-content tt em,.rst-content code em{font-size:100% !important;line-height:normal}.rst-content tt.literal,.rst-content tt.literal,.rst-content code.literal{color:#E74C3C}.rst-content tt.xref,a .rst-content tt,.rst-content tt.xref,.rst-content code.xref,a .rst-content tt,a .rst-content code{font-weight:bold;color:#404040}.rst-content a tt,.rst-content a tt,.rst-content a code{color:#2980B9}.rst-content dl{margin-bottom:24px}.rst-content dl dt{font-weight:bold}.rst-content dl p,.rst-content dl table,.rst-content dl ul,.rst-content dl ol{margin-bottom:12px !important}.rst-content dl dd{margin:0 0 12px 24px}.rst-content dl:not(.docutils){margin-bottom:24px}.rst-content dl:not(.docutils) dt{display:inline-block;margin:6px 0;font-size:90%;line-height:normal;background:#e7f2fa;color:#2980B9;border-top:solid 3px #6ab0de;padding:6px;position:relative}.rst-content dl:not(.docutils) dt:before{color:#6ab0de}.rst-content dl:not(.docutils) dt .headerlink{color:#404040;font-size:100% !important}.rst-content dl:not(.docutils) dl dt{margin-bottom:6px;border:none;border-left:solid 3px #ccc;background:#f0f0f0;color:#555}.rst-content dl:not(.docutils) dl dt .headerlink{color:#404040;font-size:100% !important}.rst-content dl:not(.docutils) dt:first-child{margin-top:0}.rst-content dl:not(.docutils) tt,.rst-content dl:not(.docutils) tt,.rst-content dl:not(.docutils) code{font-weight:bold}.rst-content dl:not(.docutils) tt.descname,.rst-content dl:not(.docutils) tt.descclassname,.rst-content dl:not(.docutils) tt.descname,.rst-content dl:not(.docutils) code.descname,.rst-content dl:not(.docutils) tt.descclassname,.rst-content dl:not(.docutils) code.descclassname{background-color:transparent;border:none;padding:0;font-size:100% !important}.rst-content dl:not(.docutils) tt.descname,.rst-content dl:not(.docutils) tt.descname,.rst-content dl:not(.docutils) code.descname{font-weight:bold}.rst-content dl:not(.docutils) .optional{display:inline-block;padding:0 4px;color:#000;font-weight:bold}.rst-content dl:not(.docutils) .property{display:inline-block;padding-right:8px}.rst-content .viewcode-link,.rst-content .viewcode-back{display:inline-block;color:#27AE60;font-size:80%;padding-left:24px}.rst-content .viewcode-back{display:block;float:right}.rst-content p.rubric{margin-bottom:12px;font-weight:bold}.rst-content tt.download,.rst-content code.download{background:inherit;padding:inherit;font-family:inherit;font-size:inherit;color:inherit;border:inherit;white-space:inherit}.rst-content tt.download span:first-child:before,.rst-content code.download span:first-child:before{margin-right:4px}@media screen and (max-width: 480px){.rst-content .sidebar{width:100%}}span[id*='MathJax-Span']{color:#404040}.math{text-align:center}@font-face{font-family:"Inconsolata";font-style:normal;font-weight:400;src:local("Inconsolata"),local("Inconsolata-Regular"),url(../fonts/Inconsolata-Regular.ttf) format("truetype")}@font-face{font-family:"Inconsolata";font-style:normal;font-weight:700;src:local("Inconsolata Bold"),local("Inconsolata-Bold"),url(../fonts/Inconsolata-Bold.ttf) format("truetype")}@font-face{font-family:"Lato";font-style:normal;font-weight:400;src:local("Lato Regular"),local("Lato-Regular"),url(../fonts/Lato-Regular.ttf) format("truetype")}@font-face{font-family:"Lato";font-style:normal;font-weight:700;src:local("Lato Bold"),local("Lato-Bold"),url(../fonts/Lato-Bold.ttf) format("truetype")}@font-face{font-family:"Roboto Slab";font-style:normal;font-weight:400;src:local("Roboto Slab Regular"),local("RobotoSlab-Regular"),url(../fonts/RobotoSlab-Regular.ttf) format("truetype")}@font-face{font-family:"Roboto Slab";font-style:normal;font-weight:700;src:local("Roboto Slab Bold"),local("RobotoSlab-Bold"),url(../fonts/RobotoSlab-Bold.ttf) format("truetype")}
-/*# sourceMappingURL=theme.css.map */
diff --git a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/FontAwesome.otf b/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/FontAwesome.otf
deleted file mode 100644
index 81c9ad949b47f64afeca5642ee2494b6e3147f44..0000000000000000000000000000000000000000
Binary files a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/FontAwesome.otf and /dev/null differ
diff --git a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/Inconsolata-Bold.ttf b/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/Inconsolata-Bold.ttf
deleted file mode 100644
index 58c9fef3a01c899867e280f49283fbb8e57d631d..0000000000000000000000000000000000000000
Binary files a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/Inconsolata-Bold.ttf and /dev/null differ
diff --git a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/Inconsolata-Regular.ttf b/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/Inconsolata-Regular.ttf
deleted file mode 100644
index a87ffba6bef48195c8cf4e3ccb42ea77034f7cbc..0000000000000000000000000000000000000000
Binary files a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/Inconsolata-Regular.ttf and /dev/null differ
diff --git a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/Lato-Bold.ttf b/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/Lato-Bold.ttf
deleted file mode 100644
index 74343694e2b2114272f38b1124813b972cb592e5..0000000000000000000000000000000000000000
Binary files a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/Lato-Bold.ttf and /dev/null differ
diff --git a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/Lato-Regular.ttf b/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/Lato-Regular.ttf
deleted file mode 100644
index 04ea8efb1367727b081dea87e63818be0a4d02f0..0000000000000000000000000000000000000000
Binary files a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/Lato-Regular.ttf and /dev/null differ
diff --git a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/RobotoSlab-Bold.ttf b/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/RobotoSlab-Bold.ttf
deleted file mode 100644
index df5d1df2730433013f41bf2698cbe249b075aa02..0000000000000000000000000000000000000000
Binary files a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/RobotoSlab-Bold.ttf and /dev/null differ
diff --git a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/RobotoSlab-Regular.ttf b/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/RobotoSlab-Regular.ttf
deleted file mode 100644
index eb52a7907362cc3392eb74892883f5d9e260b638..0000000000000000000000000000000000000000
Binary files a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/RobotoSlab-Regular.ttf and /dev/null differ
diff --git a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/fontawesome-webfont.eot b/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/fontawesome-webfont.eot
deleted file mode 100644
index 84677bc0c5f37f1fac9d87548c4554b5c91717cf..0000000000000000000000000000000000000000
Binary files a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/fontawesome-webfont.eot and /dev/null differ
diff --git a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/fontawesome-webfont.svg b/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/fontawesome-webfont.svg
deleted file mode 100644
index d907b25ae60ec7e3d32e4027aa6e6b7595de97af..0000000000000000000000000000000000000000
--- a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/fontawesome-webfont.svg
+++ /dev/null
@@ -1,520 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
-<svg xmlns="http://www.w3.org/2000/svg">
-<metadata></metadata>
-<defs>
-<font id="fontawesomeregular" horiz-adv-x="1536" >
-<font-face units-per-em="1792" ascent="1536" descent="-256" />
-<missing-glyph horiz-adv-x="448" />
-<glyph unicode=" "  horiz-adv-x="448" />
-<glyph unicode="&#x09;" horiz-adv-x="448" />
-<glyph unicode="&#xa0;" horiz-adv-x="448" />
-<glyph unicode="&#xa8;" horiz-adv-x="1792" />
-<glyph unicode="&#xa9;" horiz-adv-x="1792" />
-<glyph unicode="&#xae;" horiz-adv-x="1792" />
-<glyph unicode="&#xb4;" horiz-adv-x="1792" />
-<glyph unicode="&#xc6;" horiz-adv-x="1792" />
-<glyph unicode="&#xd8;" horiz-adv-x="1792" />
-<glyph unicode="&#x2000;" horiz-adv-x="768" />
-<glyph unicode="&#x2001;" horiz-adv-x="1537" />
-<glyph unicode="&#x2002;" horiz-adv-x="768" />
-<glyph unicode="&#x2003;" horiz-adv-x="1537" />
-<glyph unicode="&#x2004;" horiz-adv-x="512" />
-<glyph unicode="&#x2005;" horiz-adv-x="384" />
-<glyph unicode="&#x2006;" horiz-adv-x="256" />
-<glyph unicode="&#x2007;" horiz-adv-x="256" />
-<glyph unicode="&#x2008;" horiz-adv-x="192" />
-<glyph unicode="&#x2009;" horiz-adv-x="307" />
-<glyph unicode="&#x200a;" horiz-adv-x="85" />
-<glyph unicode="&#x202f;" horiz-adv-x="307" />
-<glyph unicode="&#x205f;" horiz-adv-x="384" />
-<glyph unicode="&#x2122;" horiz-adv-x="1792" />
-<glyph unicode="&#x221e;" horiz-adv-x="1792" />
-<glyph unicode="&#x2260;" horiz-adv-x="1792" />
-<glyph unicode="&#x25fc;" horiz-adv-x="500" d="M0 0z" />
-<glyph unicode="&#xf000;" horiz-adv-x="1792" d="M1699 1350q0 -35 -43 -78l-632 -632v-768h320q26 0 45 -19t19 -45t-19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45t45 19h320v768l-632 632q-43 43 -43 78q0 23 18 36.5t38 17.5t43 4h1408q23 0 43 -4t38 -17.5t18 -36.5z" />
-<glyph unicode="&#xf001;" d="M1536 1312v-1120q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v537l-768 -237v-709q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89 t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v967q0 31 19 56.5t49 35.5l832 256q12 4 28 4q40 0 68 -28t28 -68z" />
-<glyph unicode="&#xf002;" horiz-adv-x="1664" d="M1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -52 -38 -90t-90 -38q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5 t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
-<glyph unicode="&#xf003;" horiz-adv-x="1792" d="M1664 32v768q-32 -36 -69 -66q-268 -206 -426 -338q-51 -43 -83 -67t-86.5 -48.5t-102.5 -24.5h-1h-1q-48 0 -102.5 24.5t-86.5 48.5t-83 67q-158 132 -426 338q-37 30 -69 66v-768q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1664 1083v11v13.5t-0.5 13 t-3 12.5t-5.5 9t-9 7.5t-14 2.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5q0 -168 147 -284q193 -152 401 -317q6 -5 35 -29.5t46 -37.5t44.5 -31.5t50.5 -27.5t43 -9h1h1q20 0 43 9t50.5 27.5t44.5 31.5t46 37.5t35 29.5q208 165 401 317q54 43 100.5 115.5t46.5 131.5z M1792 1120v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
-<glyph unicode="&#xf004;" horiz-adv-x="1792" d="M896 -128q-26 0 -44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124t127 -344q0 -221 -229 -450l-623 -600 q-18 -18 -44 -18z" />
-<glyph unicode="&#xf005;" horiz-adv-x="1664" d="M1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -21 -10.5 -35.5t-30.5 -14.5q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455 l502 -73q56 -9 56 -46z" />
-<glyph unicode="&#xf006;" horiz-adv-x="1664" d="M1137 532l306 297l-422 62l-189 382l-189 -382l-422 -62l306 -297l-73 -421l378 199l377 -199zM1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -50 -41 -50q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500 l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455l502 -73q56 -9 56 -46z" />
-<glyph unicode="&#xf007;" horiz-adv-x="1408" d="M1408 131q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q9 0 42 -21.5t74.5 -48t108 -48t133.5 -21.5t133.5 21.5t108 48t74.5 48t42 21.5q61 0 111.5 -20t85.5 -53.5t62 -81 t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
-<glyph unicode="&#xf008;" horiz-adv-x="1920" d="M384 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 320v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 704v128q0 26 -19 45t-45 19h-128 q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 -64v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM384 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45 t45 -19h128q26 0 45 19t19 45zM1792 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 704v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1792 320v128 q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 704v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19 t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1920 1248v-1344q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1344q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
-<glyph unicode="&#xf009;" horiz-adv-x="1664" d="M768 512v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM768 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 512v-384q0 -52 -38 -90t-90 -38 h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
-<glyph unicode="&#xf00a;" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 288v-192q0 -40 -28 -68t-68 -28h-320 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68z" />
-<glyph unicode="&#xf00b;" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-960 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h960q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68z" />
-<glyph unicode="&#xf00c;" horiz-adv-x="1792" d="M1671 970q0 -40 -28 -68l-724 -724l-136 -136q-28 -28 -68 -28t-68 28l-136 136l-362 362q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -295l656 657q28 28 68 28t68 -28l136 -136q28 -28 28 -68z" />
-<glyph unicode="&#xf00d;" horiz-adv-x="1408" d="M1298 214q0 -40 -28 -68l-136 -136q-28 -28 -68 -28t-68 28l-294 294l-294 -294q-28 -28 -68 -28t-68 28l-136 136q-28 28 -28 68t28 68l294 294l-294 294q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -294l294 294q28 28 68 28t68 -28l136 -136q28 -28 28 -68 t-28 -68l-294 -294l294 -294q28 -28 28 -68z" />
-<glyph unicode="&#xf00e;" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-224q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v224h-224q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h224v224q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5v-224h224 q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5 t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
-<glyph unicode="&#xf010;" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-576q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h576q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5z M1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z " />
-<glyph unicode="&#xf011;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61t-298 61t-245 164t-164 245t-61 298q0 182 80.5 343t226.5 270q43 32 95.5 25t83.5 -50q32 -42 24.5 -94.5t-49.5 -84.5q-98 -74 -151.5 -181t-53.5 -228q0 -104 40.5 -198.5t109.5 -163.5t163.5 -109.5 t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5q0 121 -53.5 228t-151.5 181q-42 32 -49.5 84.5t24.5 94.5q31 43 84 50t95 -25q146 -109 226.5 -270t80.5 -343zM896 1408v-640q0 -52 -38 -90t-90 -38t-90 38t-38 90v640q0 52 38 90t90 38t90 -38t38 -90z" />
-<glyph unicode="&#xf012;" horiz-adv-x="1792" d="M256 96v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 224v-320q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 480v-576q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1408 864v-960q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1376v-1472q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1472q0 14 9 23t23 9h192q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf013;" d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1536 749v-222q0 -12 -8 -23t-20 -13l-185 -28q-19 -54 -39 -91q35 -50 107 -138q10 -12 10 -25t-9 -23q-27 -37 -99 -108t-94 -71q-12 0 -26 9l-138 108q-44 -23 -91 -38 q-16 -136 -29 -186q-7 -28 -36 -28h-222q-14 0 -24.5 8.5t-11.5 21.5l-28 184q-49 16 -90 37l-141 -107q-10 -9 -25 -9q-14 0 -25 11q-126 114 -165 168q-7 10 -7 23q0 12 8 23q15 21 51 66.5t54 70.5q-27 50 -41 99l-183 27q-13 2 -21 12.5t-8 23.5v222q0 12 8 23t19 13 l186 28q14 46 39 92q-40 57 -107 138q-10 12 -10 24q0 10 9 23q26 36 98.5 107.5t94.5 71.5q13 0 26 -10l138 -107q44 23 91 38q16 136 29 186q7 28 36 28h222q14 0 24.5 -8.5t11.5 -21.5l28 -184q49 -16 90 -37l142 107q9 9 24 9q13 0 25 -10q129 -119 165 -170q7 -8 7 -22 q0 -12 -8 -23q-15 -21 -51 -66.5t-54 -70.5q26 -50 41 -98l183 -28q13 -2 21 -12.5t8 -23.5z" />
-<glyph unicode="&#xf014;" horiz-adv-x="1408" d="M512 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM768 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1024 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1152 76v948h-896v-948q0 -22 7 -40.5t14.5 -27t10.5 -8.5h832q3 0 10.5 8.5t14.5 27t7 40.5zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832 q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf015;" horiz-adv-x="1664" d="M1408 544v-480q0 -26 -19 -45t-45 -19h-384v384h-256v-384h-384q-26 0 -45 19t-19 45v480q0 1 0.5 3t0.5 3l575 474l575 -474q1 -2 1 -6zM1631 613l-62 -74q-8 -9 -21 -11h-3q-13 0 -21 7l-692 577l-692 -577q-12 -8 -24 -7q-13 2 -21 11l-62 74q-8 10 -7 23.5t11 21.5 l719 599q32 26 76 26t76 -26l244 -204v195q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-408l219 -182q10 -8 11 -21.5t-7 -23.5z" />
-<glyph unicode="&#xf016;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z " />
-<glyph unicode="&#xf017;" d="M896 992v-448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf018;" horiz-adv-x="1920" d="M1111 540v4l-24 320q-1 13 -11 22.5t-23 9.5h-186q-13 0 -23 -9.5t-11 -22.5l-24 -320v-4q-1 -12 8 -20t21 -8h244q12 0 21 8t8 20zM1870 73q0 -73 -46 -73h-704q13 0 22 9.5t8 22.5l-20 256q-1 13 -11 22.5t-23 9.5h-272q-13 0 -23 -9.5t-11 -22.5l-20 -256 q-1 -13 8 -22.5t22 -9.5h-704q-46 0 -46 73q0 54 26 116l417 1044q8 19 26 33t38 14h339q-13 0 -23 -9.5t-11 -22.5l-15 -192q-1 -14 8 -23t22 -9h166q13 0 22 9t8 23l-15 192q-1 13 -11 22.5t-23 9.5h339q20 0 38 -14t26 -33l417 -1044q26 -62 26 -116z" />
-<glyph unicode="&#xf019;" horiz-adv-x="1664" d="M1280 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 416v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h465l135 -136 q58 -56 136 -56t136 56l136 136h464q40 0 68 -28t28 -68zM1339 985q17 -41 -14 -70l-448 -448q-18 -19 -45 -19t-45 19l-448 448q-31 29 -14 70q17 39 59 39h256v448q0 26 19 45t45 19h256q26 0 45 -19t19 -45v-448h256q42 0 59 -39z" />
-<glyph unicode="&#xf01a;" d="M1120 608q0 -12 -10 -24l-319 -319q-11 -9 -23 -9t-23 9l-320 320q-15 16 -7 35q8 20 30 20h192v352q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-352h192q14 0 23 -9t9 -23zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273 t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf01b;" d="M1118 660q-8 -20 -30 -20h-192v-352q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v352h-192q-14 0 -23 9t-9 23q0 12 10 24l319 319q11 9 23 9t23 -9l320 -320q15 -16 7 -35zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198 t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf01c;" d="M1023 576h316q-1 3 -2.5 8t-2.5 8l-212 496h-708l-212 -496q-1 -2 -2.5 -8t-2.5 -8h316l95 -192h320zM1536 546v-482q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v482q0 62 25 123l238 552q10 25 36.5 42t52.5 17h832q26 0 52.5 -17t36.5 -42l238 -552 q25 -61 25 -123z" />
-<glyph unicode="&#xf01d;" d="M1184 640q0 -37 -32 -55l-544 -320q-15 -9 -32 -9q-16 0 -32 8q-32 19 -32 56v640q0 37 32 56q33 18 64 -1l544 -320q32 -18 32 -55zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf01e;" d="M1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l138 138q-148 137 -349 137q-104 0 -198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5q119 0 225 52t179 147q7 10 23 12q14 0 25 -9 l137 -138q9 -8 9.5 -20.5t-7.5 -22.5q-109 -132 -264 -204.5t-327 -72.5q-156 0 -298 61t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q147 0 284.5 -55.5t244.5 -156.5l130 129q29 31 70 14q39 -17 39 -59z" />
-<glyph unicode="&#xf021;" d="M1511 480q0 -5 -1 -7q-64 -268 -268 -434.5t-478 -166.5q-146 0 -282.5 55t-243.5 157l-129 -129q-19 -19 -45 -19t-45 19t-19 45v448q0 26 19 45t45 19h448q26 0 45 -19t19 -45t-19 -45l-137 -137q71 -66 161 -102t187 -36q134 0 250 65t186 179q11 17 53 117 q8 23 30 23h192q13 0 22.5 -9.5t9.5 -22.5zM1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-26 0 -45 19t-19 45t19 45l138 138q-148 137 -349 137q-134 0 -250 -65t-186 -179q-11 -17 -53 -117q-8 -23 -30 -23h-199q-13 0 -22.5 9.5t-9.5 22.5v7q65 268 270 434.5t480 166.5 q146 0 284 -55.5t245 -156.5l130 129q19 19 45 19t45 -19t19 -45z" />
-<glyph unicode="&#xf022;" horiz-adv-x="1792" d="M384 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M384 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1536 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5z M1536 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5zM1536 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5 t9.5 -22.5zM1664 160v832q0 13 -9.5 22.5t-22.5 9.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 1248v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47 t47 -113z" />
-<glyph unicode="&#xf023;" horiz-adv-x="1152" d="M320 768h512v192q0 106 -75 181t-181 75t-181 -75t-75 -181v-192zM1152 672v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v192q0 184 132 316t316 132t316 -132t132 -316v-192h32q40 0 68 -28t28 -68z" />
-<glyph unicode="&#xf024;" horiz-adv-x="1792" d="M320 1280q0 -72 -64 -110v-1266q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v1266q-64 38 -64 110q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -25 -12.5 -38.5t-39.5 -27.5q-215 -116 -369 -116q-61 0 -123.5 22t-108.5 48 t-115.5 48t-142.5 22q-192 0 -464 -146q-17 -9 -33 -9q-26 0 -45 19t-19 45v742q0 32 31 55q21 14 79 43q236 120 421 120q107 0 200 -29t219 -88q38 -19 88 -19q54 0 117.5 21t110 47t88 47t54.5 21q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf025;" horiz-adv-x="1664" d="M1664 650q0 -166 -60 -314l-20 -49l-185 -33q-22 -83 -90.5 -136.5t-156.5 -53.5v-32q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-32q71 0 130 -35.5t93 -95.5l68 12q29 95 29 193q0 148 -88 279t-236.5 209t-315.5 78 t-315.5 -78t-236.5 -209t-88 -279q0 -98 29 -193l68 -12q34 60 93 95.5t130 35.5v32q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v32q-88 0 -156.5 53.5t-90.5 136.5l-185 33l-20 49q-60 148 -60 314q0 151 67 291t179 242.5 t266 163.5t320 61t320 -61t266 -163.5t179 -242.5t67 -291z" />
-<glyph unicode="&#xf026;" horiz-adv-x="768" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45z" />
-<glyph unicode="&#xf027;" horiz-adv-x="1152" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142z" />
-<glyph unicode="&#xf028;" horiz-adv-x="1664" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142zM1408 640q0 -153 -85 -282.5t-225 -188.5q-13 -5 -25 -5q-27 0 -46 19t-19 45q0 39 39 59q56 29 76 44q74 54 115.5 135.5t41.5 173.5t-41.5 173.5 t-115.5 135.5q-20 15 -76 44q-39 20 -39 59q0 26 19 45t45 19q13 0 26 -5q140 -59 225 -188.5t85 -282.5zM1664 640q0 -230 -127 -422.5t-338 -283.5q-13 -5 -26 -5q-26 0 -45 19t-19 45q0 36 39 59q7 4 22.5 10.5t22.5 10.5q46 25 82 51q123 91 192 227t69 289t-69 289 t-192 227q-36 26 -82 51q-7 4 -22.5 10.5t-22.5 10.5q-39 23 -39 59q0 26 19 45t45 19q13 0 26 -5q211 -91 338 -283.5t127 -422.5z" />
-<glyph unicode="&#xf029;" horiz-adv-x="1408" d="M384 384v-128h-128v128h128zM384 1152v-128h-128v128h128zM1152 1152v-128h-128v128h128zM128 129h384v383h-384v-383zM128 896h384v384h-384v-384zM896 896h384v384h-384v-384zM640 640v-640h-640v640h640zM1152 128v-128h-128v128h128zM1408 128v-128h-128v128h128z M1408 640v-384h-384v128h-128v-384h-128v640h384v-128h128v128h128zM640 1408v-640h-640v640h640zM1408 1408v-640h-640v640h640z" />
-<glyph unicode="&#xf02a;" horiz-adv-x="1792" d="M63 0h-63v1408h63v-1408zM126 1h-32v1407h32v-1407zM220 1h-31v1407h31v-1407zM377 1h-31v1407h31v-1407zM534 1h-62v1407h62v-1407zM660 1h-31v1407h31v-1407zM723 1h-31v1407h31v-1407zM786 1h-31v1407h31v-1407zM943 1h-63v1407h63v-1407zM1100 1h-63v1407h63v-1407z M1226 1h-63v1407h63v-1407zM1352 1h-63v1407h63v-1407zM1446 1h-63v1407h63v-1407zM1635 1h-94v1407h94v-1407zM1698 1h-32v1407h32v-1407zM1792 0h-63v1408h63v-1408z" />
-<glyph unicode="&#xf02b;" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91z" />
-<glyph unicode="&#xf02c;" horiz-adv-x="1920" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91zM1899 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-36 0 -59 14t-53 45l470 470q37 37 37 90q0 52 -37 91l-715 714q-38 38 -102 64.5t-117 26.5h224q53 0 117 -26.5t102 -64.5l715 -714q37 -39 37 -91z" />
-<glyph unicode="&#xf02d;" horiz-adv-x="1664" d="M1639 1058q40 -57 18 -129l-275 -906q-19 -64 -76.5 -107.5t-122.5 -43.5h-923q-77 0 -148.5 53.5t-99.5 131.5q-24 67 -2 127q0 4 3 27t4 37q1 8 -3 21.5t-3 19.5q2 11 8 21t16.5 23.5t16.5 23.5q23 38 45 91.5t30 91.5q3 10 0.5 30t-0.5 28q3 11 17 28t17 23 q21 36 42 92t25 90q1 9 -2.5 32t0.5 28q4 13 22 30.5t22 22.5q19 26 42.5 84.5t27.5 96.5q1 8 -3 25.5t-2 26.5q2 8 9 18t18 23t17 21q8 12 16.5 30.5t15 35t16 36t19.5 32t26.5 23.5t36 11.5t47.5 -5.5l-1 -3q38 9 51 9h761q74 0 114 -56t18 -130l-274 -906 q-36 -119 -71.5 -153.5t-128.5 -34.5h-869q-27 0 -38 -15q-11 -16 -1 -43q24 -70 144 -70h923q29 0 56 15.5t35 41.5l300 987q7 22 5 57q38 -15 59 -43zM575 1056q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5 t-16.5 -22.5zM492 800q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5t-16.5 -22.5z" />
-<glyph unicode="&#xf02e;" horiz-adv-x="1280" d="M1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
-<glyph unicode="&#xf02f;" horiz-adv-x="1664" d="M384 0h896v256h-896v-256zM384 640h896v384h-160q-40 0 -68 28t-28 68v160h-640v-640zM1536 576q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 576v-416q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-160q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68 v160h-224q-13 0 -22.5 9.5t-9.5 22.5v416q0 79 56.5 135.5t135.5 56.5h64v544q0 40 28 68t68 28h672q40 0 88 -20t76 -48l152 -152q28 -28 48 -76t20 -88v-256h64q79 0 135.5 -56.5t56.5 -135.5z" />
-<glyph unicode="&#xf030;" horiz-adv-x="1920" d="M960 864q119 0 203.5 -84.5t84.5 -203.5t-84.5 -203.5t-203.5 -84.5t-203.5 84.5t-84.5 203.5t84.5 203.5t203.5 84.5zM1664 1280q106 0 181 -75t75 -181v-896q0 -106 -75 -181t-181 -75h-1408q-106 0 -181 75t-75 181v896q0 106 75 181t181 75h224l51 136 q19 49 69.5 84.5t103.5 35.5h512q53 0 103.5 -35.5t69.5 -84.5l51 -136h224zM960 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
-<glyph unicode="&#xf031;" horiz-adv-x="1664" d="M725 977l-170 -450q33 0 136.5 -2t160.5 -2q19 0 57 2q-87 253 -184 452zM0 -128l2 79q23 7 56 12.5t57 10.5t49.5 14.5t44.5 29t31 50.5l237 616l280 724h75h53q8 -14 11 -21l205 -480q33 -78 106 -257.5t114 -274.5q15 -34 58 -144.5t72 -168.5q20 -45 35 -57 q19 -15 88 -29.5t84 -20.5q6 -38 6 -57q0 -4 -0.5 -13t-0.5 -13q-63 0 -190 8t-191 8q-76 0 -215 -7t-178 -8q0 43 4 78l131 28q1 0 12.5 2.5t15.5 3.5t14.5 4.5t15 6.5t11 8t9 11t2.5 14q0 16 -31 96.5t-72 177.5t-42 100l-450 2q-26 -58 -76.5 -195.5t-50.5 -162.5 q0 -22 14 -37.5t43.5 -24.5t48.5 -13.5t57 -8.5t41 -4q1 -19 1 -58q0 -9 -2 -27q-58 0 -174.5 10t-174.5 10q-8 0 -26.5 -4t-21.5 -4q-80 -14 -188 -14z" />
-<glyph unicode="&#xf032;" horiz-adv-x="1408" d="M555 15q74 -32 140 -32q376 0 376 335q0 114 -41 180q-27 44 -61.5 74t-67.5 46.5t-80.5 25t-84 10.5t-94.5 2q-73 0 -101 -10q0 -53 -0.5 -159t-0.5 -158q0 -8 -1 -67.5t-0.5 -96.5t4.5 -83.5t12 -66.5zM541 761q42 -7 109 -7q82 0 143 13t110 44.5t74.5 89.5t25.5 142 q0 70 -29 122.5t-79 82t-108 43.5t-124 14q-50 0 -130 -13q0 -50 4 -151t4 -152q0 -27 -0.5 -80t-0.5 -79q0 -46 1 -69zM0 -128l2 94q15 4 85 16t106 27q7 12 12.5 27t8.5 33.5t5.5 32.5t3 37.5t0.5 34v35.5v30q0 982 -22 1025q-4 8 -22 14.5t-44.5 11t-49.5 7t-48.5 4.5 t-30.5 3l-4 83q98 2 340 11.5t373 9.5q23 0 68.5 -0.5t67.5 -0.5q70 0 136.5 -13t128.5 -42t108 -71t74 -104.5t28 -137.5q0 -52 -16.5 -95.5t-39 -72t-64.5 -57.5t-73 -45t-84 -40q154 -35 256.5 -134t102.5 -248q0 -100 -35 -179.5t-93.5 -130.5t-138 -85.5t-163.5 -48.5 t-176 -14q-44 0 -132 3t-132 3q-106 0 -307 -11t-231 -12z" />
-<glyph unicode="&#xf033;" horiz-adv-x="1024" d="M0 -126l17 85q6 2 81.5 21.5t111.5 37.5q28 35 41 101q1 7 62 289t114 543.5t52 296.5v25q-24 13 -54.5 18.5t-69.5 8t-58 5.5l19 103q33 -2 120 -6.5t149.5 -7t120.5 -2.5q48 0 98.5 2.5t121 7t98.5 6.5q-5 -39 -19 -89q-30 -10 -101.5 -28.5t-108.5 -33.5 q-8 -19 -14 -42.5t-9 -40t-7.5 -45.5t-6.5 -42q-27 -148 -87.5 -419.5t-77.5 -355.5q-2 -9 -13 -58t-20 -90t-16 -83.5t-6 -57.5l1 -18q17 -4 185 -31q-3 -44 -16 -99q-11 0 -32.5 -1.5t-32.5 -1.5q-29 0 -87 10t-86 10q-138 2 -206 2q-51 0 -143 -9t-121 -11z" />
-<glyph unicode="&#xf034;" horiz-adv-x="1792" d="M1744 128q33 0 42 -18.5t-11 -44.5l-126 -162q-20 -26 -49 -26t-49 26l-126 162q-20 26 -11 44.5t42 18.5h80v1024h-80q-33 0 -42 18.5t11 44.5l126 162q20 26 49 26t49 -26l126 -162q20 -26 11 -44.5t-42 -18.5h-80v-1024h80zM81 1407l54 -27q12 -5 211 -5q44 0 132 2 t132 2q36 0 107.5 -0.5t107.5 -0.5h293q6 0 21 -0.5t20.5 0t16 3t17.5 9t15 17.5l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 48t-14.5 73.5t-7.5 35.5q-6 8 -12 12.5t-15.5 6t-13 2.5t-18 0.5t-16.5 -0.5 q-17 0 -66.5 0.5t-74.5 0.5t-64 -2t-71 -6q-9 -81 -8 -136q0 -94 2 -388t2 -455q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27 q19 42 19 383q0 101 -3 303t-3 303v117q0 2 0.5 15.5t0.5 25t-1 25.5t-3 24t-5 14q-11 12 -162 12q-33 0 -93 -12t-80 -26q-19 -13 -34 -72.5t-31.5 -111t-42.5 -53.5q-42 26 -56 44v383z" />
-<glyph unicode="&#xf035;" d="M81 1407l54 -27q12 -5 211 -5q44 0 132 2t132 2q70 0 246.5 1t304.5 0.5t247 -4.5q33 -1 56 31l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 47.5t-15 73.5t-7 36q-10 13 -27 19q-5 2 -66 2q-30 0 -93 1t-103 1 t-94 -2t-96 -7q-9 -81 -8 -136l1 -152v52q0 -55 1 -154t1.5 -180t0.5 -153q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27 q7 16 11.5 74t6 145.5t1.5 155t-0.5 153.5t-0.5 89q0 7 -2.5 21.5t-2.5 22.5q0 7 0.5 44t1 73t0 76.5t-3 67.5t-6.5 32q-11 12 -162 12q-41 0 -163 -13.5t-138 -24.5q-19 -12 -34 -71.5t-31.5 -111.5t-42.5 -54q-42 26 -56 44v383zM1310 125q12 0 42 -19.5t57.5 -41.5 t59.5 -49t36 -30q26 -21 26 -49t-26 -49q-4 -3 -36 -30t-59.5 -49t-57.5 -41.5t-42 -19.5q-13 0 -20.5 10.5t-10 28.5t-2.5 33.5t1.5 33t1.5 19.5h-1024q0 -2 1.5 -19.5t1.5 -33t-2.5 -33.5t-10 -28.5t-20.5 -10.5q-12 0 -42 19.5t-57.5 41.5t-59.5 49t-36 30q-26 21 -26 49 t26 49q4 3 36 30t59.5 49t57.5 41.5t42 19.5q13 0 20.5 -10.5t10 -28.5t2.5 -33.5t-1.5 -33t-1.5 -19.5h1024q0 2 -1.5 19.5t-1.5 33t2.5 33.5t10 28.5t20.5 10.5z" />
-<glyph unicode="&#xf036;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf037;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45t-45 -19 h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h640q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf038;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf039;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf03a;" horiz-adv-x="1792" d="M256 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM256 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5 t9.5 -22.5zM256 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344 q13 0 22.5 -9.5t9.5 -22.5zM256 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192 q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5z" />
-<glyph unicode="&#xf03b;" horiz-adv-x="1792" d="M384 992v-576q0 -13 -9.5 -22.5t-22.5 -9.5q-14 0 -23 9l-288 288q-9 9 -9 23t9 23l288 288q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
-<glyph unicode="&#xf03c;" horiz-adv-x="1792" d="M352 704q0 -14 -9 -23l-288 -288q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v576q0 13 9.5 22.5t22.5 9.5q14 0 23 -9l288 -288q9 -9 9 -23zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
-<glyph unicode="&#xf03d;" horiz-adv-x="1792" d="M1792 1184v-1088q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-403 403v-166q0 -119 -84.5 -203.5t-203.5 -84.5h-704q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h704q119 0 203.5 -84.5t84.5 -203.5v-165l403 402q18 19 45 19q12 0 25 -5 q39 -17 39 -59z" />
-<glyph unicode="&#xf03e;" horiz-adv-x="1920" d="M640 960q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 576v-448h-1408v192l320 320l160 -160l512 512zM1760 1280h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5v1216 q0 13 -9.5 22.5t-22.5 9.5zM1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
-<glyph unicode="&#xf040;" d="M363 0l91 91l-235 235l-91 -91v-107h128v-128h107zM886 928q0 22 -22 22q-10 0 -17 -7l-542 -542q-7 -7 -7 -17q0 -22 22 -22q10 0 17 7l542 542q7 7 7 17zM832 1120l416 -416l-832 -832h-416v416zM1515 1024q0 -53 -37 -90l-166 -166l-416 416l166 165q36 38 90 38 q53 0 91 -38l235 -234q37 -39 37 -91z" />
-<glyph unicode="&#xf041;" horiz-adv-x="1024" d="M768 896q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1024 896q0 -109 -33 -179l-364 -774q-16 -33 -47.5 -52t-67.5 -19t-67.5 19t-46.5 52l-365 774q-33 70 -33 179q0 212 150 362t362 150t362 -150t150 -362z" />
-<glyph unicode="&#xf042;" d="M768 96v1088q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf043;" horiz-adv-x="1024" d="M512 384q0 36 -20 69q-1 1 -15.5 22.5t-25.5 38t-25 44t-21 50.5q-4 16 -21 16t-21 -16q-7 -23 -21 -50.5t-25 -44t-25.5 -38t-15.5 -22.5q-20 -33 -20 -69q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 512q0 -212 -150 -362t-362 -150t-362 150t-150 362 q0 145 81 275q6 9 62.5 90.5t101 151t99.5 178t83 201.5q9 30 34 47t51 17t51.5 -17t33.5 -47q28 -93 83 -201.5t99.5 -178t101 -151t62.5 -90.5q81 -127 81 -275z" />
-<glyph unicode="&#xf044;" horiz-adv-x="1792" d="M888 352l116 116l-152 152l-116 -116v-56h96v-96h56zM1328 1072q-16 16 -33 -1l-350 -350q-17 -17 -1 -33t33 1l350 350q17 17 1 33zM1408 478v-190q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-14 -14 -32 -8q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v126q0 13 9 22l64 64q15 15 35 7t20 -29zM1312 1216l288 -288l-672 -672h-288v288zM1756 1084l-92 -92 l-288 288l92 92q28 28 68 28t68 -28l152 -152q28 -28 28 -68t-28 -68z" />
-<glyph unicode="&#xf045;" horiz-adv-x="1664" d="M1408 547v-259q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h255v0q13 0 22.5 -9.5t9.5 -22.5q0 -27 -26 -32q-77 -26 -133 -60q-10 -4 -16 -4h-112q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832 q66 0 113 47t47 113v214q0 19 18 29q28 13 54 37q16 16 35 8q21 -9 21 -29zM1645 1043l-384 -384q-18 -19 -45 -19q-12 0 -25 5q-39 17 -39 59v192h-160q-323 0 -438 -131q-119 -137 -74 -473q3 -23 -20 -34q-8 -2 -12 -2q-16 0 -26 13q-10 14 -21 31t-39.5 68.5t-49.5 99.5 t-38.5 114t-17.5 122q0 49 3.5 91t14 90t28 88t47 81.5t68.5 74t94.5 61.5t124.5 48.5t159.5 30.5t196.5 11h160v192q0 42 39 59q13 5 25 5q26 0 45 -19l384 -384q19 -19 19 -45t-19 -45z" />
-<glyph unicode="&#xf046;" horiz-adv-x="1664" d="M1408 606v-318q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-10 -10 -23 -10q-3 0 -9 2q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832 q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v254q0 13 9 22l64 64q10 10 23 10q6 0 12 -3q20 -8 20 -29zM1639 1095l-814 -814q-24 -24 -57 -24t-57 24l-430 430q-24 24 -24 57t24 57l110 110q24 24 57 24t57 -24l263 -263l647 647q24 24 57 24t57 -24l110 -110 q24 -24 24 -57t-24 -57z" />
-<glyph unicode="&#xf047;" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-384v-384h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v384h-384v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45 t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h384v384h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45t-19 -45t-45 -19h-128v-384h384v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
-<glyph unicode="&#xf048;" horiz-adv-x="1024" d="M979 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19z" />
-<glyph unicode="&#xf049;" horiz-adv-x="1792" d="M1747 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19l710 710 q19 19 32 13t13 -32v-710q4 11 13 19z" />
-<glyph unicode="&#xf04a;" horiz-adv-x="1664" d="M1619 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-8 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-19 19 -19 45t19 45l710 710q19 19 32 13t13 -32v-710q5 11 13 19z" />
-<glyph unicode="&#xf04b;" horiz-adv-x="1408" d="M1384 609l-1328 -738q-23 -13 -39.5 -3t-16.5 36v1472q0 26 16.5 36t39.5 -3l1328 -738q23 -13 23 -31t-23 -31z" />
-<glyph unicode="&#xf04c;" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45zM640 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf04d;" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf04e;" horiz-adv-x="1664" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q19 -19 19 -45t-19 -45l-710 -710q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" />
-<glyph unicode="&#xf050;" horiz-adv-x="1792" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19l-710 -710 q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" />
-<glyph unicode="&#xf051;" horiz-adv-x="1024" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19z" />
-<glyph unicode="&#xf052;" horiz-adv-x="1538" d="M14 557l710 710q19 19 45 19t45 -19l710 -710q19 -19 13 -32t-32 -13h-1472q-26 0 -32 13t13 32zM1473 0h-1408q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1408q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19z" />
-<glyph unicode="&#xf053;" horiz-adv-x="1280" d="M1171 1235l-531 -531l531 -531q19 -19 19 -45t-19 -45l-166 -166q-19 -19 -45 -19t-45 19l-742 742q-19 19 -19 45t19 45l742 742q19 19 45 19t45 -19l166 -166q19 -19 19 -45t-19 -45z" />
-<glyph unicode="&#xf054;" horiz-adv-x="1280" d="M1107 659l-742 -742q-19 -19 -45 -19t-45 19l-166 166q-19 19 -19 45t19 45l531 531l-531 531q-19 19 -19 45t19 45l166 166q19 19 45 19t45 -19l742 -742q19 -19 19 -45t-19 -45z" />
-<glyph unicode="&#xf055;" d="M1216 576v128q0 26 -19 45t-45 19h-256v256q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-256h-256q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h256v-256q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v256h256q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5 t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf056;" d="M1216 576v128q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5 t103 -385.5z" />
-<glyph unicode="&#xf057;" d="M1149 414q0 26 -19 45l-181 181l181 181q19 19 19 45q0 27 -19 46l-90 90q-19 19 -46 19q-26 0 -45 -19l-181 -181l-181 181q-19 19 -45 19q-27 0 -46 -19l-90 -90q-19 -19 -19 -46q0 -26 19 -45l181 -181l-181 -181q-19 -19 -19 -45q0 -27 19 -46l90 -90q19 -19 46 -19 q26 0 45 19l181 181l181 -181q19 -19 45 -19q27 0 46 19l90 90q19 19 19 46zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf058;" d="M1284 802q0 28 -18 46l-91 90q-19 19 -45 19t-45 -19l-408 -407l-226 226q-19 19 -45 19t-45 -19l-91 -90q-18 -18 -18 -46q0 -27 18 -45l362 -362q19 -19 45 -19q27 0 46 19l543 543q18 18 18 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf059;" d="M896 160v192q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1152 832q0 88 -55.5 163t-138.5 116t-170 41q-243 0 -371 -213q-15 -24 8 -42l132 -100q7 -6 19 -6q16 0 25 12q53 68 86 92q34 24 86 24q48 0 85.5 -26t37.5 -59 q0 -38 -20 -61t-68 -45q-63 -28 -115.5 -86.5t-52.5 -125.5v-36q0 -14 9 -23t23 -9h192q14 0 23 9t9 23q0 19 21.5 49.5t54.5 49.5q32 18 49 28.5t46 35t44.5 48t28 60.5t12.5 81zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf05a;" d="M1024 160v160q0 14 -9 23t-23 9h-96v512q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h96v-320h-96q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h448q14 0 23 9t9 23zM896 1056v160q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23 t23 -9h192q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf05b;" d="M1197 512h-109q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h109q-32 108 -112.5 188.5t-188.5 112.5v-109q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v109q-108 -32 -188.5 -112.5t-112.5 -188.5h109q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-109 q32 -108 112.5 -188.5t188.5 -112.5v109q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-109q108 32 188.5 112.5t112.5 188.5zM1536 704v-128q0 -26 -19 -45t-45 -19h-143q-37 -161 -154.5 -278.5t-278.5 -154.5v-143q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v143 q-161 37 -278.5 154.5t-154.5 278.5h-143q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h143q37 161 154.5 278.5t278.5 154.5v143q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-143q161 -37 278.5 -154.5t154.5 -278.5h143q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf05c;" d="M1097 457l-146 -146q-10 -10 -23 -10t-23 10l-137 137l-137 -137q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l137 137l-137 137q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l137 -137l137 137q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23 l-137 -137l137 -137q10 -10 10 -23t-10 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5 t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf05d;" d="M1171 723l-422 -422q-19 -19 -45 -19t-45 19l-294 294q-19 19 -19 45t19 45l102 102q19 19 45 19t45 -19l147 -147l275 275q19 19 45 19t45 -19l102 -102q19 -19 19 -45t-19 -45zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198 t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf05e;" d="M1312 643q0 161 -87 295l-754 -753q137 -89 297 -89q111 0 211.5 43.5t173.5 116.5t116 174.5t43 212.5zM313 344l755 754q-135 91 -300 91q-148 0 -273 -73t-198 -199t-73 -274q0 -162 89 -299zM1536 643q0 -157 -61 -300t-163.5 -246t-245 -164t-298.5 -61t-298.5 61 t-245 164t-163.5 246t-61 300t61 299.5t163.5 245.5t245 164t298.5 61t298.5 -61t245 -164t163.5 -245.5t61 -299.5z" />
-<glyph unicode="&#xf060;" d="M1536 640v-128q0 -53 -32.5 -90.5t-84.5 -37.5h-704l293 -294q38 -36 38 -90t-38 -90l-75 -76q-37 -37 -90 -37q-52 0 -91 37l-651 652q-37 37 -37 90q0 52 37 91l651 650q38 38 91 38q52 0 90 -38l75 -74q38 -38 38 -91t-38 -91l-293 -293h704q52 0 84.5 -37.5 t32.5 -90.5z" />
-<glyph unicode="&#xf061;" d="M1472 576q0 -54 -37 -91l-651 -651q-39 -37 -91 -37q-51 0 -90 37l-75 75q-38 38 -38 91t38 91l293 293h-704q-52 0 -84.5 37.5t-32.5 90.5v128q0 53 32.5 90.5t84.5 37.5h704l-293 294q-38 36 -38 90t38 90l75 75q38 38 90 38q53 0 91 -38l651 -651q37 -35 37 -90z" />
-<glyph unicode="&#xf062;" horiz-adv-x="1664" d="M1611 565q0 -51 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-294 293v-704q0 -52 -37.5 -84.5t-90.5 -32.5h-128q-53 0 -90.5 32.5t-37.5 84.5v704l-294 -293q-36 -38 -90 -38t-90 38l-75 75q-38 38 -38 90q0 53 38 91l651 651q35 37 90 37q54 0 91 -37l651 -651 q37 -39 37 -91z" />
-<glyph unicode="&#xf063;" horiz-adv-x="1664" d="M1611 704q0 -53 -37 -90l-651 -652q-39 -37 -91 -37q-53 0 -90 37l-651 652q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l294 -294v704q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-704l294 294q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" />
-<glyph unicode="&#xf064;" horiz-adv-x="1792" d="M1792 896q0 -26 -19 -45l-512 -512q-19 -19 -45 -19t-45 19t-19 45v256h-224q-98 0 -175.5 -6t-154 -21.5t-133 -42.5t-105.5 -69.5t-80 -101t-48.5 -138.5t-17.5 -181q0 -55 5 -123q0 -6 2.5 -23.5t2.5 -26.5q0 -15 -8.5 -25t-23.5 -10q-16 0 -28 17q-7 9 -13 22 t-13.5 30t-10.5 24q-127 285 -127 451q0 199 53 333q162 403 875 403h224v256q0 26 19 45t45 19t45 -19l512 -512q19 -19 19 -45z" />
-<glyph unicode="&#xf065;" d="M755 480q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23zM1536 1344v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332 q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf066;" d="M768 576v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45zM1523 1248q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45 t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23z" />
-<glyph unicode="&#xf067;" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-416v-416q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v416h-416q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h416v416q0 40 28 68t68 28h192q40 0 68 -28t28 -68v-416h416q40 0 68 -28t28 -68z" />
-<glyph unicode="&#xf068;" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-1216q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h1216q40 0 68 -28t28 -68z" />
-<glyph unicode="&#xf069;" horiz-adv-x="1664" d="M1482 486q46 -26 59.5 -77.5t-12.5 -97.5l-64 -110q-26 -46 -77.5 -59.5t-97.5 12.5l-266 153v-307q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v307l-266 -153q-46 -26 -97.5 -12.5t-77.5 59.5l-64 110q-26 46 -12.5 97.5t59.5 77.5l266 154l-266 154 q-46 26 -59.5 77.5t12.5 97.5l64 110q26 46 77.5 59.5t97.5 -12.5l266 -153v307q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-307l266 153q46 26 97.5 12.5t77.5 -59.5l64 -110q26 -46 12.5 -97.5t-59.5 -77.5l-266 -154z" />
-<glyph unicode="&#xf06a;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM896 161v190q0 14 -9 23.5t-22 9.5h-192q-13 0 -23 -10t-10 -23v-190q0 -13 10 -23t23 -10h192 q13 0 22 9.5t9 23.5zM894 505l18 621q0 12 -10 18q-10 8 -24 8h-220q-14 0 -24 -8q-10 -6 -10 -18l17 -621q0 -10 10 -17.5t24 -7.5h185q14 0 23.5 7.5t10.5 17.5z" />
-<glyph unicode="&#xf06b;" d="M928 180v56v468v192h-320v-192v-468v-56q0 -25 18 -38.5t46 -13.5h192q28 0 46 13.5t18 38.5zM472 1024h195l-126 161q-26 31 -69 31q-40 0 -68 -28t-28 -68t28 -68t68 -28zM1160 1120q0 40 -28 68t-68 28q-43 0 -69 -31l-125 -161h194q40 0 68 28t28 68zM1536 864v-320 q0 -14 -9 -23t-23 -9h-96v-416q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v416h-96q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h440q-93 0 -158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5q107 0 168 -77l128 -165l128 165q61 77 168 77q93 0 158.5 -65.5t65.5 -158.5 t-65.5 -158.5t-158.5 -65.5h440q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf06c;" horiz-adv-x="1792" d="M1280 832q0 26 -19 45t-45 19q-172 0 -318 -49.5t-259.5 -134t-235.5 -219.5q-19 -21 -19 -45q0 -26 19 -45t45 -19q24 0 45 19q27 24 74 71t67 66q137 124 268.5 176t313.5 52q26 0 45 19t19 45zM1792 1030q0 -95 -20 -193q-46 -224 -184.5 -383t-357.5 -268 q-214 -108 -438 -108q-148 0 -286 47q-15 5 -88 42t-96 37q-16 0 -39.5 -32t-45 -70t-52.5 -70t-60 -32q-30 0 -51 11t-31 24t-27 42q-2 4 -6 11t-5.5 10t-3 9.5t-1.5 13.5q0 35 31 73.5t68 65.5t68 56t31 48q0 4 -14 38t-16 44q-9 51 -9 104q0 115 43.5 220t119 184.5 t170.5 139t204 95.5q55 18 145 25.5t179.5 9t178.5 6t163.5 24t113.5 56.5l29.5 29.5t29.5 28t27 20t36.5 16t43.5 4.5q39 0 70.5 -46t47.5 -112t24 -124t8 -96z" />
-<glyph unicode="&#xf06d;" horiz-adv-x="1408" d="M1408 -160v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1152 896q0 -78 -24.5 -144t-64 -112.5t-87.5 -88t-96 -77.5t-87.5 -72t-64 -81.5t-24.5 -96.5q0 -96 67 -224l-4 1l1 -1 q-90 41 -160 83t-138.5 100t-113.5 122.5t-72.5 150.5t-27.5 184q0 78 24.5 144t64 112.5t87.5 88t96 77.5t87.5 72t64 81.5t24.5 96.5q0 94 -66 224l3 -1l-1 1q90 -41 160 -83t138.5 -100t113.5 -122.5t72.5 -150.5t27.5 -184z" />
-<glyph unicode="&#xf06e;" horiz-adv-x="1792" d="M1664 576q-152 236 -381 353q61 -104 61 -225q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 121 61 225q-229 -117 -381 -353q133 -205 333.5 -326.5t434.5 -121.5t434.5 121.5t333.5 326.5zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5 t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1792 576q0 -34 -20 -69q-140 -230 -376.5 -368.5t-499.5 -138.5t-499.5 139t-376.5 368q-20 35 -20 69t20 69q140 229 376.5 368t499.5 139t499.5 -139t376.5 -368q20 -35 20 -69z" />
-<glyph unicode="&#xf070;" horiz-adv-x="1792" d="M555 201l78 141q-87 63 -136 159t-49 203q0 121 61 225q-229 -117 -381 -353q167 -258 427 -375zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1307 1151q0 -7 -1 -9 q-105 -188 -315 -566t-316 -567l-49 -89q-10 -16 -28 -16q-12 0 -134 70q-16 10 -16 28q0 12 44 87q-143 65 -263.5 173t-208.5 245q-20 31 -20 69t20 69q153 235 380 371t496 136q89 0 180 -17l54 97q10 16 28 16q5 0 18 -6t31 -15.5t33 -18.5t31.5 -18.5t19.5 -11.5 q16 -10 16 -27zM1344 704q0 -139 -79 -253.5t-209 -164.5l280 502q8 -45 8 -84zM1792 576q0 -35 -20 -69q-39 -64 -109 -145q-150 -172 -347.5 -267t-419.5 -95l74 132q212 18 392.5 137t301.5 307q-115 179 -282 294l63 112q95 -64 182.5 -153t144.5 -184q20 -34 20 -69z " />
-<glyph unicode="&#xf071;" horiz-adv-x="1792" d="M1024 161v190q0 14 -9.5 23.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -23.5v-190q0 -14 9.5 -23.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 23.5zM1022 535l18 459q0 12 -10 19q-13 11 -24 11h-220q-11 0 -24 -11q-10 -7 -10 -21l17 -457q0 -10 10 -16.5t24 -6.5h185 q14 0 23.5 6.5t10.5 16.5zM1008 1469l768 -1408q35 -63 -2 -126q-17 -29 -46.5 -46t-63.5 -17h-1536q-34 0 -63.5 17t-46.5 46q-37 63 -2 126l768 1408q17 31 47 49t65 18t65 -18t47 -49z" />
-<glyph unicode="&#xf072;" horiz-adv-x="1408" d="M1376 1376q44 -52 12 -148t-108 -172l-161 -161l160 -696q5 -19 -12 -33l-128 -96q-7 -6 -19 -6q-4 0 -7 1q-15 3 -21 16l-279 508l-259 -259l53 -194q5 -17 -8 -31l-96 -96q-9 -9 -23 -9h-2q-15 2 -24 13l-189 252l-252 189q-11 7 -13 23q-1 13 9 25l96 97q9 9 23 9 q6 0 8 -1l194 -53l259 259l-508 279q-14 8 -17 24q-2 16 9 27l128 128q14 13 30 8l665 -159l160 160q76 76 172 108t148 -12z" />
-<glyph unicode="&#xf073;" horiz-adv-x="1664" d="M128 -128h288v288h-288v-288zM480 -128h320v288h-320v-288zM128 224h288v320h-288v-320zM480 224h320v320h-320v-320zM128 608h288v288h-288v-288zM864 -128h320v288h-320v-288zM480 608h320v288h-320v-288zM1248 -128h288v288h-288v-288zM864 224h320v320h-320v-320z M512 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1248 224h288v320h-288v-320zM864 608h320v288h-320v-288zM1248 608h288v288h-288v-288zM1280 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64 q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47 h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
-<glyph unicode="&#xf074;" horiz-adv-x="1792" d="M666 1055q-60 -92 -137 -273q-22 45 -37 72.5t-40.5 63.5t-51 56.5t-63 35t-81.5 14.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q250 0 410 -225zM1792 256q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192q-32 0 -85 -0.5t-81 -1t-73 1 t-71 5t-64 10.5t-63 18.5t-58 28.5t-59 40t-55 53.5t-56 69.5q59 93 136 273q22 -45 37 -72.5t40.5 -63.5t51 -56.5t63 -35t81.5 -14.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1792 1152q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5 v192h-256q-48 0 -87 -15t-69 -45t-51 -61.5t-45 -77.5q-32 -62 -78 -171q-29 -66 -49.5 -111t-54 -105t-64 -100t-74 -83t-90 -68.5t-106.5 -42t-128 -16.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q48 0 87 15t69 45t51 61.5t45 77.5q32 62 78 171q29 66 49.5 111 t54 105t64 100t74 83t90 68.5t106.5 42t128 16.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
-<glyph unicode="&#xf075;" horiz-adv-x="1792" d="M1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22q-17 -2 -30.5 9t-17.5 29v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281 q0 130 71 248.5t191 204.5t286 136.5t348 50.5q244 0 450 -85.5t326 -233t120 -321.5z" />
-<glyph unicode="&#xf076;" d="M1536 704v-128q0 -201 -98.5 -362t-274 -251.5t-395.5 -90.5t-395.5 90.5t-274 251.5t-98.5 362v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-128q0 -52 23.5 -90t53.5 -57t71 -30t64 -13t44 -2t44 2t64 13t71 30t53.5 57t23.5 90v128q0 26 19 45t45 19h384 q26 0 45 -19t19 -45zM512 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45zM1536 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf077;" horiz-adv-x="1792" d="M1683 205l-166 -165q-19 -19 -45 -19t-45 19l-531 531l-531 -531q-19 -19 -45 -19t-45 19l-166 165q-19 19 -19 45.5t19 45.5l742 741q19 19 45 19t45 -19l742 -741q19 -19 19 -45.5t-19 -45.5z" />
-<glyph unicode="&#xf078;" horiz-adv-x="1792" d="M1683 728l-742 -741q-19 -19 -45 -19t-45 19l-742 741q-19 19 -19 45.5t19 45.5l166 165q19 19 45 19t45 -19l531 -531l531 531q19 19 45 19t45 -19l166 -165q19 -19 19 -45.5t-19 -45.5z" />
-<glyph unicode="&#xf079;" horiz-adv-x="1920" d="M1280 32q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-8 0 -13.5 2t-9 7t-5.5 8t-3 11.5t-1 11.5v13v11v160v416h-192q-26 0 -45 19t-19 45q0 24 15 41l320 384q19 22 49 22t49 -22l320 -384q15 -17 15 -41q0 -26 -19 -45t-45 -19h-192v-384h576q16 0 25 -11l160 -192q7 -11 7 -21 zM1920 448q0 -24 -15 -41l-320 -384q-20 -23 -49 -23t-49 23l-320 384q-15 17 -15 41q0 26 19 45t45 19h192v384h-576q-16 0 -25 12l-160 192q-7 9 -7 20q0 13 9.5 22.5t22.5 9.5h960q8 0 13.5 -2t9 -7t5.5 -8t3 -11.5t1 -11.5v-13v-11v-160v-416h192q26 0 45 -19t19 -45z " />
-<glyph unicode="&#xf07a;" horiz-adv-x="1664" d="M640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5 l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5 t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf07b;" horiz-adv-x="1664" d="M1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
-<glyph unicode="&#xf07c;" horiz-adv-x="1920" d="M1879 584q0 -31 -31 -66l-336 -396q-43 -51 -120.5 -86.5t-143.5 -35.5h-1088q-34 0 -60.5 13t-26.5 43q0 31 31 66l336 396q43 51 120.5 86.5t143.5 35.5h1088q34 0 60.5 -13t26.5 -43zM1536 928v-160h-832q-94 0 -197 -47.5t-164 -119.5l-337 -396l-5 -6q0 4 -0.5 12.5 t-0.5 12.5v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158z" />
-<glyph unicode="&#xf07d;" horiz-adv-x="768" d="M704 1216q0 -26 -19 -45t-45 -19h-128v-1024h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v1024h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45z" />
-<glyph unicode="&#xf07e;" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-1024v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h1024v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
-<glyph unicode="&#xf080;" horiz-adv-x="2048" d="M640 640v-512h-256v512h256zM1024 1152v-1024h-256v1024h256zM2048 0v-128h-2048v1536h128v-1408h1920zM1408 896v-768h-256v768h256zM1792 1280v-1152h-256v1152h256z" />
-<glyph unicode="&#xf081;" d="M1280 926q-56 -25 -121 -34q68 40 93 117q-65 -38 -134 -51q-61 66 -153 66q-87 0 -148.5 -61.5t-61.5 -148.5q0 -29 5 -48q-129 7 -242 65t-192 155q-29 -50 -29 -106q0 -114 91 -175q-47 1 -100 26v-2q0 -75 50 -133.5t123 -72.5q-29 -8 -51 -8q-13 0 -39 4 q21 -63 74.5 -104t121.5 -42q-116 -90 -261 -90q-26 0 -50 3q148 -94 322 -94q112 0 210 35.5t168 95t120.5 137t75 162t24.5 168.5q0 18 -1 27q63 45 105 109zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5 t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf082;" d="M1536 160q0 -119 -84.5 -203.5t-203.5 -84.5h-192v608h203l30 224h-233v143q0 54 28 83t96 29l132 1v207q-96 9 -180 9q-136 0 -218 -80.5t-82 -225.5v-166h-224v-224h224v-608h-544q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960 q119 0 203.5 -84.5t84.5 -203.5v-960z" />
-<glyph unicode="&#xf083;" horiz-adv-x="1792" d="M928 704q0 14 -9 23t-23 9q-66 0 -113 -47t-47 -113q0 -14 9 -23t23 -9t23 9t9 23q0 40 28 68t68 28q14 0 23 9t9 23zM1152 574q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM128 0h1536v128h-1536v-128zM1280 574q0 159 -112.5 271.5 t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM256 1216h384v128h-384v-128zM128 1024h1536v118v138h-828l-64 -128h-644v-128zM1792 1280v-1280q0 -53 -37.5 -90.5t-90.5 -37.5h-1536q-53 0 -90.5 37.5t-37.5 90.5v1280 q0 53 37.5 90.5t90.5 37.5h1536q53 0 90.5 -37.5t37.5 -90.5z" />
-<glyph unicode="&#xf084;" horiz-adv-x="1792" d="M832 1024q0 80 -56 136t-136 56t-136 -56t-56 -136q0 -42 19 -83q-41 19 -83 19q-80 0 -136 -56t-56 -136t56 -136t136 -56t136 56t56 136q0 42 -19 83q41 -19 83 -19q80 0 136 56t56 136zM1683 320q0 -17 -49 -66t-66 -49q-9 0 -28.5 16t-36.5 33t-38.5 40t-24.5 26 l-96 -96l220 -220q28 -28 28 -68q0 -42 -39 -81t-81 -39q-40 0 -68 28l-671 671q-176 -131 -365 -131q-163 0 -265.5 102.5t-102.5 265.5q0 160 95 313t248 248t313 95q163 0 265.5 -102.5t102.5 -265.5q0 -189 -131 -365l355 -355l96 96q-3 3 -26 24.5t-40 38.5t-33 36.5 t-16 28.5q0 17 49 66t66 49q13 0 23 -10q6 -6 46 -44.5t82 -79.5t86.5 -86t73 -78t28.5 -41z" />
-<glyph unicode="&#xf085;" horiz-adv-x="1920" d="M896 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1664 128q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1152q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1280 731v-185q0 -10 -7 -19.5t-16 -10.5l-155 -24q-11 -35 -32 -76q34 -48 90 -115q7 -10 7 -20q0 -12 -7 -19q-23 -30 -82.5 -89.5t-78.5 -59.5q-11 0 -21 7l-115 90q-37 -19 -77 -31q-11 -108 -23 -155q-7 -24 -30 -24h-186q-11 0 -20 7.5t-10 17.5 l-23 153q-34 10 -75 31l-118 -89q-7 -7 -20 -7q-11 0 -21 8q-144 133 -144 160q0 9 7 19q10 14 41 53t47 61q-23 44 -35 82l-152 24q-10 1 -17 9.5t-7 19.5v185q0 10 7 19.5t16 10.5l155 24q11 35 32 76q-34 48 -90 115q-7 11 -7 20q0 12 7 20q22 30 82 89t79 59q11 0 21 -7 l115 -90q34 18 77 32q11 108 23 154q7 24 30 24h186q11 0 20 -7.5t10 -17.5l23 -153q34 -10 75 -31l118 89q8 7 20 7q11 0 21 -8q144 -133 144 -160q0 -9 -7 -19q-12 -16 -42 -54t-45 -60q23 -48 34 -82l152 -23q10 -2 17 -10.5t7 -19.5zM1920 198v-140q0 -16 -149 -31 q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20 t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31zM1920 1222v-140q0 -16 -149 -31q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68 q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70 q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31z" />
-<glyph unicode="&#xf086;" horiz-adv-x="1792" d="M1408 768q0 -139 -94 -257t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224 q0 139 94 257t256.5 186.5t353.5 68.5t353.5 -68.5t256.5 -186.5t94 -257zM1792 512q0 -120 -71 -224.5t-195 -176.5q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7 q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230z" />
-<glyph unicode="&#xf087;" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 768q0 51 -39 89.5t-89 38.5h-352q0 58 48 159.5t48 160.5q0 98 -32 145t-128 47q-26 -26 -38 -85t-30.5 -125.5t-59.5 -109.5q-22 -23 -77 -91q-4 -5 -23 -30t-31.5 -41t-34.5 -42.5 t-40 -44t-38.5 -35.5t-40 -27t-35.5 -9h-32v-640h32q13 0 31.5 -3t33 -6.5t38 -11t35 -11.5t35.5 -12.5t29 -10.5q211 -73 342 -73h121q192 0 192 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5q32 1 53.5 47t21.5 81zM1536 769 q0 -89 -49 -163q9 -33 9 -69q0 -77 -38 -144q3 -21 3 -43q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5h-36h-93q-96 0 -189.5 22.5t-216.5 65.5q-116 40 -138 40h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h274q36 24 137 155q58 75 107 128 q24 25 35.5 85.5t30.5 126.5t62 108q39 37 90 37q84 0 151 -32.5t102 -101.5t35 -186q0 -93 -48 -192h176q104 0 180 -76t76 -179z" />
-<glyph unicode="&#xf088;" d="M256 1088q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 512q0 35 -21.5 81t-53.5 47q15 17 25 47.5t10 55.5q0 69 -53 119q18 32 18 69t-17.5 73.5t-47.5 52.5q5 30 5 56q0 85 -49 126t-136 41h-128q-131 0 -342 -73q-5 -2 -29 -10.5 t-35.5 -12.5t-35 -11.5t-38 -11t-33 -6.5t-31.5 -3h-32v-640h32q16 0 35.5 -9t40 -27t38.5 -35.5t40 -44t34.5 -42.5t31.5 -41t23 -30q55 -68 77 -91q41 -43 59.5 -109.5t30.5 -125.5t38 -85q96 0 128 47t32 145q0 59 -48 160.5t-48 159.5h352q50 0 89 38.5t39 89.5z M1536 511q0 -103 -76 -179t-180 -76h-176q48 -99 48 -192q0 -118 -35 -186q-35 -69 -102 -101.5t-151 -32.5q-51 0 -90 37q-34 33 -54 82t-25.5 90.5t-17.5 84.5t-31 64q-48 50 -107 127q-101 131 -137 155h-274q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5 h288q22 0 138 40q128 44 223 66t200 22h112q140 0 226.5 -79t85.5 -216v-5q60 -77 60 -178q0 -22 -3 -43q38 -67 38 -144q0 -36 -9 -69q49 -74 49 -163z" />
-<glyph unicode="&#xf089;" horiz-adv-x="896" d="M832 1504v-1339l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41z" />
-<glyph unicode="&#xf08a;" horiz-adv-x="1792" d="M1664 940q0 81 -21.5 143t-55 98.5t-81.5 59.5t-94 31t-98 8t-112 -25.5t-110.5 -64t-86.5 -72t-60 -61.5q-18 -22 -49 -22t-49 22q-24 28 -60 61.5t-86.5 72t-110.5 64t-112 25.5t-98 -8t-94 -31t-81.5 -59.5t-55 -98.5t-21.5 -143q0 -168 187 -355l581 -560l580 559 q188 188 188 356zM1792 940q0 -221 -229 -450l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5 q224 0 351 -124t127 -344z" />
-<glyph unicode="&#xf08b;" horiz-adv-x="1664" d="M640 96q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h320q13 0 22.5 -9.5t9.5 -22.5q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-66 0 -113 -47t-47 -113v-704 q0 -66 47 -113t113 -47h288h11h13t11.5 -1t11.5 -3t8 -5.5t7 -9t2 -13.5zM1568 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45z" />
-<glyph unicode="&#xf08c;" d="M237 122h231v694h-231v-694zM483 1030q-1 52 -36 86t-93 34t-94.5 -34t-36.5 -86q0 -51 35.5 -85.5t92.5 -34.5h1q59 0 95 34.5t36 85.5zM1068 122h231v398q0 154 -73 233t-193 79q-136 0 -209 -117h2v101h-231q3 -66 0 -694h231v388q0 38 7 56q15 35 45 59.5t74 24.5 q116 0 116 -157v-371zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf08d;" horiz-adv-x="1152" d="M480 672v448q0 14 -9 23t-23 9t-23 -9t-9 -23v-448q0 -14 9 -23t23 -9t23 9t9 23zM1152 320q0 -26 -19 -45t-45 -19h-429l-51 -483q-2 -12 -10.5 -20.5t-20.5 -8.5h-1q-27 0 -32 27l-76 485h-404q-26 0 -45 19t-19 45q0 123 78.5 221.5t177.5 98.5v512q-52 0 -90 38 t-38 90t38 90t90 38h640q52 0 90 -38t38 -90t-38 -90t-90 -38v-512q99 0 177.5 -98.5t78.5 -221.5z" />
-<glyph unicode="&#xf08e;" horiz-adv-x="1792" d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf090;" d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5 q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf091;" horiz-adv-x="1664" d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91 t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96 q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" />
-<glyph unicode="&#xf092;" d="M394 184q-8 -9 -20 3q-13 11 -4 19q8 9 20 -3q12 -11 4 -19zM352 245q9 -12 0 -19q-8 -6 -17 7t0 18q9 7 17 -6zM291 305q-5 -7 -13 -2q-10 5 -7 12q3 5 13 2q10 -5 7 -12zM322 271q-6 -7 -16 3q-9 11 -2 16q6 6 16 -3q9 -11 2 -16zM451 159q-4 -12 -19 -6q-17 4 -13 15 t19 7q16 -5 13 -16zM514 154q0 -11 -16 -11q-17 -2 -17 11q0 11 16 11q17 2 17 -11zM572 164q2 -10 -14 -14t-18 8t14 15q16 2 18 -9zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-224q-16 0 -24.5 1t-19.5 5t-16 14.5t-5 27.5v239q0 97 -52 142q57 6 102.5 18t94 39 t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103 q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -103t0.5 -68q0 -22 -11 -33.5t-22 -13t-33 -1.5 h-224q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf093;" horiz-adv-x="1664" d="M1280 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 288v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h427q21 -56 70.5 -92 t110.5 -36h256q61 0 110.5 36t70.5 92h427q40 0 68 -28t28 -68zM1339 936q-17 -40 -59 -40h-256v-448q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-42 0 -59 40q-17 39 14 69l448 448q18 19 45 19t45 -19l448 -448q31 -30 14 -69z" />
-<glyph unicode="&#xf094;" d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5 q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44 q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5 q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -10 1 -18.5t3 -17t4 -13.5t6.5 -16t6.5 -17q16 -40 25 -118.5t9 -136.5z" />
-<glyph unicode="&#xf095;" horiz-adv-x="1408" d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -52.5 3.5t-57.5 12.5t-47.5 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-128 79 -264.5 215.5t-215.5 264.5q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47.5t-12.5 57.5t-3.5 52.5 q0 92 51 186q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174 q2 -1 19 -11.5t24 -14t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" />
-<glyph unicode="&#xf096;" horiz-adv-x="1408" d="M1120 1280h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v832q0 66 -47 113t-113 47zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf097;" horiz-adv-x="1280" d="M1152 1280h-1024v-1242l423 406l89 85l89 -85l423 -406v1242zM1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289 q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
-<glyph unicode="&#xf098;" d="M1280 343q0 11 -2 16q-3 8 -38.5 29.5t-88.5 49.5l-53 29q-5 3 -19 13t-25 15t-21 5q-18 0 -47 -32.5t-57 -65.5t-44 -33q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170.5 126.5t-126.5 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5t-3.5 16.5q0 13 20.5 33.5t45 38.5 t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5t320.5 -216.5q6 -2 30 -11t33 -12.5 t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf099;" horiz-adv-x="1664" d="M1620 1128q-67 -98 -162 -167q1 -14 1 -42q0 -130 -38 -259.5t-115.5 -248.5t-184.5 -210.5t-258 -146t-323 -54.5q-271 0 -496 145q35 -4 78 -4q225 0 401 138q-105 2 -188 64.5t-114 159.5q33 -5 61 -5q43 0 85 11q-112 23 -185.5 111.5t-73.5 205.5v4q68 -38 146 -41 q-66 44 -105 115t-39 154q0 88 44 163q121 -149 294.5 -238.5t371.5 -99.5q-8 38 -8 74q0 134 94.5 228.5t228.5 94.5q140 0 236 -102q109 21 205 78q-37 -115 -142 -178q93 10 186 50z" />
-<glyph unicode="&#xf09a;" horiz-adv-x="1024" d="M959 1524v-264h-157q-86 0 -116 -36t-30 -108v-189h293l-39 -296h-254v-759h-306v759h-255v296h255v218q0 186 104 288.5t277 102.5q147 0 228 -12z" />
-<glyph unicode="&#xf09b;" d="M1536 640q0 -251 -146.5 -451.5t-378.5 -277.5q-27 -5 -39.5 7t-12.5 30v211q0 97 -52 142q57 6 102.5 18t94 39t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5 q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23 q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -89t0.5 -54q0 -18 -13 -30t-40 -7q-232 77 -378.5 277.5t-146.5 451.5q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf09c;" horiz-adv-x="1664" d="M1664 960v-256q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5 t316.5 -131.5t131.5 -316.5z" />
-<glyph unicode="&#xf09d;" horiz-adv-x="1920" d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608 q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" />
-<glyph unicode="&#xf09e;" horiz-adv-x="1408" d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5 t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294 q187 -186 294 -425.5t120 -501.5z" />
-<glyph unicode="&#xf0a0;" d="M1040 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1296 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1408 160v320q0 13 -9.5 22.5t-22.5 9.5 h-1216q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5zM178 640h1180l-157 482q-4 13 -16 21.5t-26 8.5h-782q-14 0 -26 -8.5t-16 -21.5zM1536 480v-320q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v320q0 25 16 75 l197 606q17 53 63 86t101 33h782q55 0 101 -33t63 -86l197 -606q16 -50 16 -75z" />
-<glyph unicode="&#xf0a1;" horiz-adv-x="1792" d="M1664 896q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5v-384q0 -52 -38 -90t-90 -38q-417 347 -812 380q-58 -19 -91 -66t-31 -100.5t40 -92.5q-20 -33 -23 -65.5t6 -58t33.5 -55t48 -50t61.5 -50.5q-29 -58 -111.5 -83t-168.5 -11.5t-132 55.5q-7 23 -29.5 87.5 t-32 94.5t-23 89t-15 101t3.5 98.5t22 110.5h-122q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h480q435 0 896 384q52 0 90 -38t38 -90v-384zM1536 292v954q-394 -302 -768 -343v-270q377 -42 768 -341z" />
-<glyph unicode="&#xf0a2;" horiz-adv-x="1792" d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM246 128h1300q-266 300 -266 832q0 51 -24 105t-69 103t-121.5 80.5t-169.5 31.5t-169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -532 -266 -832z M1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5 t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
-<glyph unicode="&#xf0a3;" d="M1376 640l138 -135q30 -28 20 -70q-12 -41 -52 -51l-188 -48l53 -186q12 -41 -19 -70q-29 -31 -70 -19l-186 53l-48 -188q-10 -40 -51 -52q-12 -2 -19 -2q-31 0 -51 22l-135 138l-135 -138q-28 -30 -70 -20q-41 11 -51 52l-48 188l-186 -53q-41 -12 -70 19q-31 29 -19 70 l53 186l-188 48q-40 10 -52 51q-10 42 20 70l138 135l-138 135q-30 28 -20 70q12 41 52 51l188 48l-53 186q-12 41 19 70q29 31 70 19l186 -53l48 188q10 41 51 51q41 12 70 -19l135 -139l135 139q29 30 70 19q41 -10 51 -51l48 -188l186 53q41 12 70 -19q31 -29 19 -70 l-53 -186l188 -48q40 -10 52 -51q10 -42 -20 -70z" />
-<glyph unicode="&#xf0a4;" horiz-adv-x="1792" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 768q0 51 -39 89.5t-89 38.5h-576q0 20 15 48.5t33 55t33 68t15 84.5q0 67 -44.5 97.5t-115.5 30.5q-24 0 -90 -139q-24 -44 -37 -65q-40 -64 -112 -145q-71 -81 -101 -106 q-69 -57 -140 -57h-32v-640h32q72 0 167 -32t193.5 -64t179.5 -32q189 0 189 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5h331q52 0 90 38t38 90zM1792 769q0 -105 -75.5 -181t-180.5 -76h-169q-4 -62 -37 -119q3 -21 3 -43 q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5q-133 0 -322 69q-164 59 -223 59h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h288q10 0 21.5 4.5t23.5 14t22.5 18t24 22.5t20.5 21.5t19 21.5t14 17q65 74 100 129q13 21 33 62t37 72t40.5 63t55 49.5 t69.5 17.5q125 0 206.5 -67t81.5 -189q0 -68 -22 -128h374q104 0 180 -76t76 -179z" />
-<glyph unicode="&#xf0a5;" horiz-adv-x="1792" d="M1376 128h32v640h-32q-35 0 -67.5 12t-62.5 37t-50 46t-49 54q-2 3 -3.5 4.5t-4 4.5t-4.5 5q-72 81 -112 145q-14 22 -38 68q-1 3 -10.5 22.5t-18.5 36t-20 35.5t-21.5 30.5t-18.5 11.5q-71 0 -115.5 -30.5t-44.5 -97.5q0 -43 15 -84.5t33 -68t33 -55t15 -48.5h-576 q-50 0 -89 -38.5t-39 -89.5q0 -52 38 -90t90 -38h331q-15 -17 -25 -47.5t-10 -55.5q0 -69 53 -119q-18 -32 -18 -69t17.5 -73.5t47.5 -52.5q-4 -24 -4 -56q0 -85 48.5 -126t135.5 -41q84 0 183 32t194 64t167 32zM1664 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45 t45 -19t45 19t19 45zM1792 768v-640q0 -53 -37.5 -90.5t-90.5 -37.5h-288q-59 0 -223 -59q-190 -69 -317 -69q-142 0 -230 77.5t-87 217.5l1 5q-61 76 -61 178q0 22 3 43q-33 57 -37 119h-169q-105 0 -180.5 76t-75.5 181q0 103 76 179t180 76h374q-22 60 -22 128 q0 122 81.5 189t206.5 67q38 0 69.5 -17.5t55 -49.5t40.5 -63t37 -72t33 -62q35 -55 100 -129q2 -3 14 -17t19 -21.5t20.5 -21.5t24 -22.5t22.5 -18t23.5 -14t21.5 -4.5h288q53 0 90.5 -37.5t37.5 -90.5z" />
-<glyph unicode="&#xf0a6;" d="M1280 -64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 700q0 189 -167 189q-26 0 -56 -5q-16 30 -52.5 47.5t-73.5 17.5t-69 -18q-50 53 -119 53q-25 0 -55.5 -10t-47.5 -25v331q0 52 -38 90t-90 38q-51 0 -89.5 -39t-38.5 -89v-576 q-20 0 -48.5 15t-55 33t-68 33t-84.5 15q-67 0 -97.5 -44.5t-30.5 -115.5q0 -24 139 -90q44 -24 65 -37q64 -40 145 -112q81 -71 106 -101q57 -69 57 -140v-32h640v32q0 72 32 167t64 193.5t32 179.5zM1536 705q0 -133 -69 -322q-59 -164 -59 -223v-288q0 -53 -37.5 -90.5 t-90.5 -37.5h-640q-53 0 -90.5 37.5t-37.5 90.5v288q0 10 -4.5 21.5t-14 23.5t-18 22.5t-22.5 24t-21.5 20.5t-21.5 19t-17 14q-74 65 -129 100q-21 13 -62 33t-72 37t-63 40.5t-49.5 55t-17.5 69.5q0 125 67 206.5t189 81.5q68 0 128 -22v374q0 104 76 180t179 76 q105 0 181 -75.5t76 -180.5v-169q62 -4 119 -37q21 3 43 3q101 0 178 -60q139 1 219.5 -85t80.5 -227z" />
-<glyph unicode="&#xf0a7;" d="M1408 576q0 84 -32 183t-64 194t-32 167v32h-640v-32q0 -35 -12 -67.5t-37 -62.5t-46 -50t-54 -49q-9 -8 -14 -12q-81 -72 -145 -112q-22 -14 -68 -38q-3 -1 -22.5 -10.5t-36 -18.5t-35.5 -20t-30.5 -21.5t-11.5 -18.5q0 -71 30.5 -115.5t97.5 -44.5q43 0 84.5 15t68 33 t55 33t48.5 15v-576q0 -50 38.5 -89t89.5 -39q52 0 90 38t38 90v331q46 -35 103 -35q69 0 119 53q32 -18 69 -18t73.5 17.5t52.5 47.5q24 -4 56 -4q85 0 126 48.5t41 135.5zM1280 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 580 q0 -142 -77.5 -230t-217.5 -87l-5 1q-76 -61 -178 -61q-22 0 -43 3q-54 -30 -119 -37v-169q0 -105 -76 -180.5t-181 -75.5q-103 0 -179 76t-76 180v374q-54 -22 -128 -22q-121 0 -188.5 81.5t-67.5 206.5q0 38 17.5 69.5t49.5 55t63 40.5t72 37t62 33q55 35 129 100 q3 2 17 14t21.5 19t21.5 20.5t22.5 24t18 22.5t14 23.5t4.5 21.5v288q0 53 37.5 90.5t90.5 37.5h640q53 0 90.5 -37.5t37.5 -90.5v-288q0 -59 59 -223q69 -190 69 -317z" />
-<glyph unicode="&#xf0a8;" d="M1280 576v128q0 26 -19 45t-45 19h-502l189 189q19 19 19 45t-19 45l-91 91q-18 18 -45 18t-45 -18l-362 -362l-91 -91q-18 -18 -18 -45t18 -45l91 -91l362 -362q18 -18 45 -18t45 18l91 91q18 18 18 45t-18 45l-189 189h502q26 0 45 19t19 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf0a9;" d="M1285 640q0 27 -18 45l-91 91l-362 362q-18 18 -45 18t-45 -18l-91 -91q-18 -18 -18 -45t18 -45l189 -189h-502q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h502l-189 -189q-19 -19 -19 -45t19 -45l91 -91q18 -18 45 -18t45 18l362 362l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf0aa;" d="M1284 641q0 27 -18 45l-362 362l-91 91q-18 18 -45 18t-45 -18l-91 -91l-362 -362q-18 -18 -18 -45t18 -45l91 -91q18 -18 45 -18t45 18l189 189v-502q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v502l189 -189q19 -19 45 -19t45 19l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf0ab;" d="M1284 639q0 27 -18 45l-91 91q-18 18 -45 18t-45 -18l-189 -189v502q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-502l-189 189q-19 19 -45 19t-45 -19l-91 -91q-18 -18 -18 -45t18 -45l362 -362l91 -91q18 -18 45 -18t45 18l91 91l362 362q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf0ac;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1042 887q-2 -1 -9.5 -9.5t-13.5 -9.5q2 0 4.5 5t5 11t3.5 7q6 7 22 15q14 6 52 12q34 8 51 -11 q-2 2 9.5 13t14.5 12q3 2 15 4.5t15 7.5l2 22q-12 -1 -17.5 7t-6.5 21q0 -2 -6 -8q0 7 -4.5 8t-11.5 -1t-9 -1q-10 3 -15 7.5t-8 16.5t-4 15q-2 5 -9.5 10.5t-9.5 10.5q-1 2 -2.5 5.5t-3 6.5t-4 5.5t-5.5 2.5t-7 -5t-7.5 -10t-4.5 -5q-3 2 -6 1.5t-4.5 -1t-4.5 -3t-5 -3.5 q-3 -2 -8.5 -3t-8.5 -2q15 5 -1 11q-10 4 -16 3q9 4 7.5 12t-8.5 14h5q-1 4 -8.5 8.5t-17.5 8.5t-13 6q-8 5 -34 9.5t-33 0.5q-5 -6 -4.5 -10.5t4 -14t3.5 -12.5q1 -6 -5.5 -13t-6.5 -12q0 -7 14 -15.5t10 -21.5q-3 -8 -16 -16t-16 -12q-5 -8 -1.5 -18.5t10.5 -16.5 q2 -2 1.5 -4t-3.5 -4.5t-5.5 -4t-6.5 -3.5l-3 -2q-11 -5 -20.5 6t-13.5 26q-7 25 -16 30q-23 8 -29 -1q-5 13 -41 26q-25 9 -58 4q6 1 0 15q-7 15 -19 12q3 6 4 17.5t1 13.5q3 13 12 23q1 1 7 8.5t9.5 13.5t0.5 6q35 -4 50 11q5 5 11.5 17t10.5 17q9 6 14 5.5t14.5 -5.5 t14.5 -5q14 -1 15.5 11t-7.5 20q12 -1 3 17q-5 7 -8 9q-12 4 -27 -5q-8 -4 2 -8q-1 1 -9.5 -10.5t-16.5 -17.5t-16 5q-1 1 -5.5 13.5t-9.5 13.5q-8 0 -16 -15q3 8 -11 15t-24 8q19 12 -8 27q-7 4 -20.5 5t-19.5 -4q-5 -7 -5.5 -11.5t5 -8t10.5 -5.5t11.5 -4t8.5 -3 q14 -10 8 -14q-2 -1 -8.5 -3.5t-11.5 -4.5t-6 -4q-3 -4 0 -14t-2 -14q-5 5 -9 17.5t-7 16.5q7 -9 -25 -6l-10 1q-4 0 -16 -2t-20.5 -1t-13.5 8q-4 8 0 20q1 4 4 2q-4 3 -11 9.5t-10 8.5q-46 -15 -94 -41q6 -1 12 1q5 2 13 6.5t10 5.5q34 14 42 7l5 5q14 -16 20 -25 q-7 4 -30 1q-20 -6 -22 -12q7 -12 5 -18q-4 3 -11.5 10t-14.5 11t-15 5q-16 0 -22 -1q-146 -80 -235 -222q7 -7 12 -8q4 -1 5 -9t2.5 -11t11.5 3q9 -8 3 -19q1 1 44 -27q19 -17 21 -21q3 -11 -10 -18q-1 2 -9 9t-9 4q-3 -5 0.5 -18.5t10.5 -12.5q-7 0 -9.5 -16t-2.5 -35.5 t-1 -23.5l2 -1q-3 -12 5.5 -34.5t21.5 -19.5q-13 -3 20 -43q6 -8 8 -9q3 -2 12 -7.5t15 -10t10 -10.5q4 -5 10 -22.5t14 -23.5q-2 -6 9.5 -20t10.5 -23q-1 0 -2.5 -1t-2.5 -1q3 -7 15.5 -14t15.5 -13q1 -3 2 -10t3 -11t8 -2q2 20 -24 62q-15 25 -17 29q-3 5 -5.5 15.5 t-4.5 14.5q2 0 6 -1.5t8.5 -3.5t7.5 -4t2 -3q-3 -7 2 -17.5t12 -18.5t17 -19t12 -13q6 -6 14 -19.5t0 -13.5q9 0 20 -10t17 -20q5 -8 8 -26t5 -24q2 -7 8.5 -13.5t12.5 -9.5l16 -8t13 -7q5 -2 18.5 -10.5t21.5 -11.5q10 -4 16 -4t14.5 2.5t13.5 3.5q15 2 29 -15t21 -21 q36 -19 55 -11q-2 -1 0.5 -7.5t8 -15.5t9 -14.5t5.5 -8.5q5 -6 18 -15t18 -15q6 4 7 9q-3 -8 7 -20t18 -10q14 3 14 32q-31 -15 -49 18q0 1 -2.5 5.5t-4 8.5t-2.5 8.5t0 7.5t5 3q9 0 10 3.5t-2 12.5t-4 13q-1 8 -11 20t-12 15q-5 -9 -16 -8t-16 9q0 -1 -1.5 -5.5t-1.5 -6.5 q-13 0 -15 1q1 3 2.5 17.5t3.5 22.5q1 4 5.5 12t7.5 14.5t4 12.5t-4.5 9.5t-17.5 2.5q-19 -1 -26 -20q-1 -3 -3 -10.5t-5 -11.5t-9 -7q-7 -3 -24 -2t-24 5q-13 8 -22.5 29t-9.5 37q0 10 2.5 26.5t3 25t-5.5 24.5q3 2 9 9.5t10 10.5q2 1 4.5 1.5t4.5 0t4 1.5t3 6q-1 1 -4 3 q-3 3 -4 3q7 -3 28.5 1.5t27.5 -1.5q15 -11 22 2q0 1 -2.5 9.5t-0.5 13.5q5 -27 29 -9q3 -3 15.5 -5t17.5 -5q3 -2 7 -5.5t5.5 -4.5t5 0.5t8.5 6.5q10 -14 12 -24q11 -40 19 -44q7 -3 11 -2t4.5 9.5t0 14t-1.5 12.5l-1 8v18l-1 8q-15 3 -18.5 12t1.5 18.5t15 18.5q1 1 8 3.5 t15.5 6.5t12.5 8q21 19 15 35q7 0 11 9q-1 0 -5 3t-7.5 5t-4.5 2q9 5 2 16q5 3 7.5 11t7.5 10q9 -12 21 -2q7 8 1 16q5 7 20.5 10.5t18.5 9.5q7 -2 8 2t1 12t3 12q4 5 15 9t13 5l17 11q3 4 0 4q18 -2 31 11q10 11 -6 20q3 6 -3 9.5t-15 5.5q3 1 11.5 0.5t10.5 1.5 q15 10 -7 16q-17 5 -43 -12zM879 10q206 36 351 189q-3 3 -12.5 4.5t-12.5 3.5q-18 7 -24 8q1 7 -2.5 13t-8 9t-12.5 8t-11 7q-2 2 -7 6t-7 5.5t-7.5 4.5t-8.5 2t-10 -1l-3 -1q-3 -1 -5.5 -2.5t-5.5 -3t-4 -3t0 -2.5q-21 17 -36 22q-5 1 -11 5.5t-10.5 7t-10 1.5t-11.5 -7 q-5 -5 -6 -15t-2 -13q-7 5 0 17.5t2 18.5q-3 6 -10.5 4.5t-12 -4.5t-11.5 -8.5t-9 -6.5t-8.5 -5.5t-8.5 -7.5q-3 -4 -6 -12t-5 -11q-2 4 -11.5 6.5t-9.5 5.5q2 -10 4 -35t5 -38q7 -31 -12 -48q-27 -25 -29 -40q-4 -22 12 -26q0 -7 -8 -20.5t-7 -21.5q0 -6 2 -16z" />
-<glyph unicode="&#xf0ad;" horiz-adv-x="1664" d="M384 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1028 484l-682 -682q-37 -37 -90 -37q-52 0 -91 37l-106 108q-38 36 -38 90q0 53 38 91l681 681q39 -98 114.5 -173.5t173.5 -114.5zM1662 919q0 -39 -23 -106q-47 -134 -164.5 -217.5 t-258.5 -83.5q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q58 0 121.5 -16.5t107.5 -46.5q16 -11 16 -28t-16 -28l-293 -169v-224l193 -107q5 3 79 48.5t135.5 81t70.5 35.5q15 0 23.5 -10t8.5 -25z" />
-<glyph unicode="&#xf0ae;" horiz-adv-x="1792" d="M1024 128h640v128h-640v-128zM640 640h1024v128h-1024v-128zM1280 1152h384v128h-384v-128zM1792 320v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 832v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19 t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0b0;" horiz-adv-x="1408" d="M1403 1241q17 -41 -14 -70l-493 -493v-742q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-256 256q-19 19 -19 45v486l-493 493q-31 29 -14 70q17 39 59 39h1280q42 0 59 -39z" />
-<glyph unicode="&#xf0b1;" horiz-adv-x="1792" d="M640 1280h512v128h-512v-128zM1792 640v-480q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v480h672v-160q0 -26 19 -45t45 -19h320q26 0 45 19t19 45v160h672zM1024 640v-128h-256v128h256zM1792 1120v-384h-1792v384q0 66 47 113t113 47h352v160q0 40 28 68 t68 28h576q40 0 68 -28t28 -68v-160h352q66 0 113 -47t47 -113z" />
-<glyph unicode="&#xf0b2;" d="M1283 995l-355 -355l355 -355l144 144q29 31 70 14q39 -17 39 -59v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l144 144l-355 355l-355 -355l144 -144q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l144 -144 l355 355l-355 355l-144 -144q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v448q0 26 19 45t45 19h448q42 0 59 -40q17 -39 -14 -69l-144 -144l355 -355l355 355l-144 144q-31 30 -14 69q17 40 59 40h448q26 0 45 -19t19 -45v-448q0 -42 -39 -59q-13 -5 -25 -5q-26 0 -45 19z " />
-<glyph unicode="&#xf0c0;" horiz-adv-x="1920" d="M593 640q-162 -5 -265 -128h-134q-82 0 -138 40.5t-56 118.5q0 353 124 353q6 0 43.5 -21t97.5 -42.5t119 -21.5q67 0 133 23q-5 -37 -5 -66q0 -139 81 -256zM1664 3q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5 t43 97.5t62 81t85.5 53.5t111.5 20q10 0 43 -21.5t73 -48t107 -48t135 -21.5t135 21.5t107 48t73 48t43 21.5q61 0 111.5 -20t85.5 -53.5t62 -81t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM640 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75 t75 -181zM1344 896q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5zM1920 671q0 -78 -56 -118.5t-138 -40.5h-134q-103 123 -265 128q81 117 81 256q0 29 -5 66q66 -23 133 -23q59 0 119 21.5t97.5 42.5 t43.5 21q124 0 124 -353zM1792 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181z" />
-<glyph unicode="&#xf0c1;" horiz-adv-x="1664" d="M1456 320q0 40 -28 68l-208 208q-28 28 -68 28q-42 0 -72 -32q3 -3 19 -18.5t21.5 -21.5t15 -19t13 -25.5t3.5 -27.5q0 -40 -28 -68t-68 -28q-15 0 -27.5 3.5t-25.5 13t-19 15t-21.5 21.5t-18.5 19q-33 -31 -33 -73q0 -40 28 -68l206 -207q27 -27 68 -27q40 0 68 26 l147 146q28 28 28 67zM753 1025q0 40 -28 68l-206 207q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l208 -208q27 -27 68 -27q42 0 72 31q-3 3 -19 18.5t-21.5 21.5t-15 19t-13 25.5t-3.5 27.5q0 40 28 68t68 28q15 0 27.5 -3.5t25.5 -13t19 -15 t21.5 -21.5t18.5 -19q33 31 33 73zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-206 207q-83 83 -83 203q0 123 88 209l-88 88q-86 -88 -208 -88q-120 0 -204 84l-208 208q-84 84 -84 204t85 203l147 146q83 83 203 83q121 0 204 -85l206 -207 q83 -83 83 -203q0 -123 -88 -209l88 -88q86 88 208 88q120 0 204 -84l208 -208q84 -84 84 -204z" />
-<glyph unicode="&#xf0c2;" horiz-adv-x="1920" d="M1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088q-185 0 -316.5 131.5t-131.5 316.5q0 132 71 241.5t187 163.5q-2 28 -2 43q0 212 150 362t362 150q158 0 286.5 -88t187.5 -230q70 62 166 62q106 0 181 -75t75 -181q0 -75 -41 -138q129 -30 213 -134.5t84 -239.5z " />
-<glyph unicode="&#xf0c3;" horiz-adv-x="1664" d="M1527 88q56 -89 21.5 -152.5t-140.5 -63.5h-1152q-106 0 -140.5 63.5t21.5 152.5l503 793v399h-64q-26 0 -45 19t-19 45t19 45t45 19h512q26 0 45 -19t19 -45t-19 -45t-45 -19h-64v-399zM748 813l-272 -429h712l-272 429l-20 31v37v399h-128v-399v-37z" />
-<glyph unicode="&#xf0c4;" horiz-adv-x="1792" d="M960 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1260 576l507 -398q28 -20 25 -56q-5 -35 -35 -51l-128 -64q-13 -7 -29 -7q-17 0 -31 8l-690 387l-110 -66q-8 -4 -12 -5q14 -49 10 -97q-7 -77 -56 -147.5t-132 -123.5q-132 -84 -277 -84 q-136 0 -222 78q-90 84 -79 207q7 76 56 147t131 124q132 84 278 84q83 0 151 -31q9 13 22 22l122 73l-122 73q-13 9 -22 22q-68 -31 -151 -31q-146 0 -278 84q-82 53 -131 124t-56 147q-5 59 15.5 113t63.5 93q85 79 222 79q145 0 277 -84q83 -52 132 -123t56 -148 q4 -48 -10 -97q4 -1 12 -5l110 -66l690 387q14 8 31 8q16 0 29 -7l128 -64q30 -16 35 -51q3 -36 -25 -56zM579 836q46 42 21 108t-106 117q-92 59 -192 59q-74 0 -113 -36q-46 -42 -21 -108t106 -117q92 -59 192 -59q74 0 113 36zM494 91q81 51 106 117t-21 108 q-39 36 -113 36q-100 0 -192 -59q-81 -51 -106 -117t21 -108q39 -36 113 -36q100 0 192 59zM672 704l96 -58v11q0 36 33 56l14 8l-79 47l-26 -26q-3 -3 -10 -11t-12 -12q-2 -2 -4 -3.5t-3 -2.5zM896 480l96 -32l736 576l-128 64l-768 -431v-113l-160 -96l9 -8q2 -2 7 -6 q4 -4 11 -12t11 -12l26 -26zM1600 64l128 64l-520 408l-177 -138q-2 -3 -13 -7z" />
-<glyph unicode="&#xf0c5;" horiz-adv-x="1792" d="M1696 1152q40 0 68 -28t28 -68v-1216q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v288h-544q-40 0 -68 28t-28 68v672q0 40 20 88t48 76l408 408q28 28 76 48t88 20h416q40 0 68 -28t28 -68v-328q68 40 128 40h416zM1152 939l-299 -299h299v299zM512 1323l-299 -299 h299v299zM708 676l316 316v416h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h512v256q0 40 20 88t48 76zM1664 -128v1152h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h896z" />
-<glyph unicode="&#xf0c6;" horiz-adv-x="1408" d="M1404 151q0 -117 -79 -196t-196 -79q-135 0 -235 100l-777 776q-113 115 -113 271q0 159 110 270t269 111q158 0 273 -113l605 -606q10 -10 10 -22q0 -16 -30.5 -46.5t-46.5 -30.5q-13 0 -23 10l-606 607q-79 77 -181 77q-106 0 -179 -75t-73 -181q0 -105 76 -181 l776 -777q63 -63 145 -63q64 0 106 42t42 106q0 82 -63 145l-581 581q-26 24 -60 24q-29 0 -48 -19t-19 -48q0 -32 25 -59l410 -410q10 -10 10 -22q0 -16 -31 -47t-47 -31q-12 0 -22 10l-410 410q-63 61 -63 149q0 82 57 139t139 57q88 0 149 -63l581 -581q100 -98 100 -235 z" />
-<glyph unicode="&#xf0c7;" d="M384 0h768v384h-768v-384zM1280 0h128v896q0 14 -10 38.5t-20 34.5l-281 281q-10 10 -34 20t-39 10v-416q0 -40 -28 -68t-68 -28h-576q-40 0 -68 28t-28 68v416h-128v-1280h128v416q0 40 28 68t68 28h832q40 0 68 -28t28 -68v-416zM896 928v320q0 13 -9.5 22.5t-22.5 9.5 h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1536 896v-928q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h928q40 0 88 -20t76 -48l280 -280q28 -28 48 -76t20 -88z" />
-<glyph unicode="&#xf0c8;" d="M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf0c9;" d="M1536 192v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 704v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 1216v-128q0 -26 -19 -45 t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0ca;" horiz-adv-x="1792" d="M384 128q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 640q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1152q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z M1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
-<glyph unicode="&#xf0cb;" horiz-adv-x="1792" d="M381 -84q0 -80 -54.5 -126t-135.5 -46q-106 0 -172 66l57 88q49 -45 106 -45q29 0 50.5 14.5t21.5 42.5q0 64 -105 56l-26 56q8 10 32.5 43.5t42.5 54t37 38.5v1q-16 0 -48.5 -1t-48.5 -1v-53h-106v152h333v-88l-95 -115q51 -12 81 -49t30 -88zM383 543v-159h-362 q-6 36 -6 54q0 51 23.5 93t56.5 68t66 47.5t56.5 43.5t23.5 45q0 25 -14.5 38.5t-39.5 13.5q-46 0 -81 -58l-85 59q24 51 71.5 79.5t105.5 28.5q73 0 123 -41.5t50 -112.5q0 -50 -34 -91.5t-75 -64.5t-75.5 -50.5t-35.5 -52.5h127v60h105zM1792 224v-192q0 -13 -9.5 -22.5 t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1123v-99h-335v99h107q0 41 0.5 122t0.5 121v12h-2q-8 -17 -50 -54l-71 76l136 127h106v-404h108zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5 t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
-<glyph unicode="&#xf0cc;" horiz-adv-x="1792" d="M1760 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h1728zM483 704q-28 35 -51 80q-48 97 -48 188q0 181 134 309q133 127 393 127q50 0 167 -19q66 -12 177 -48q10 -38 21 -118q14 -123 14 -183q0 -18 -5 -45l-12 -3l-84 6 l-14 2q-50 149 -103 205q-88 91 -210 91q-114 0 -182 -59q-67 -58 -67 -146q0 -73 66 -140t279 -129q69 -20 173 -66q58 -28 95 -52h-743zM990 448h411q7 -39 7 -92q0 -111 -41 -212q-23 -55 -71 -104q-37 -35 -109 -81q-80 -48 -153 -66q-80 -21 -203 -21q-114 0 -195 23 l-140 40q-57 16 -72 28q-8 8 -8 22v13q0 108 -2 156q-1 30 0 68l2 37v44l102 2q15 -34 30 -71t22.5 -56t12.5 -27q35 -57 80 -94q43 -36 105 -57q59 -22 132 -22q64 0 139 27q77 26 122 86q47 61 47 129q0 84 -81 157q-34 29 -137 71z" />
-<glyph unicode="&#xf0cd;" d="M48 1313q-37 2 -45 4l-3 88q13 1 40 1q60 0 112 -4q132 -7 166 -7q86 0 168 3q116 4 146 5q56 0 86 2l-1 -14l2 -64v-9q-60 -9 -124 -9q-60 0 -79 -25q-13 -14 -13 -132q0 -13 0.5 -32.5t0.5 -25.5l1 -229l14 -280q6 -124 51 -202q35 -59 96 -92q88 -47 177 -47 q104 0 191 28q56 18 99 51q48 36 65 64q36 56 53 114q21 73 21 229q0 79 -3.5 128t-11 122.5t-13.5 159.5l-4 59q-5 67 -24 88q-34 35 -77 34l-100 -2l-14 3l2 86h84l205 -10q76 -3 196 10l18 -2q6 -38 6 -51q0 -7 -4 -31q-45 -12 -84 -13q-73 -11 -79 -17q-15 -15 -15 -41 q0 -7 1.5 -27t1.5 -31q8 -19 22 -396q6 -195 -15 -304q-15 -76 -41 -122q-38 -65 -112 -123q-75 -57 -182 -89q-109 -33 -255 -33q-167 0 -284 46q-119 47 -179 122q-61 76 -83 195q-16 80 -16 237v333q0 188 -17 213q-25 36 -147 39zM1536 -96v64q0 14 -9 23t-23 9h-1472 q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h1472q14 0 23 9t9 23z" />
-<glyph unicode="&#xf0ce;" horiz-adv-x="1664" d="M512 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23 v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 160v192 q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192 q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1664 1248v-1088q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1344q66 0 113 -47t47 -113 z" />
-<glyph unicode="&#xf0d0;" horiz-adv-x="1664" d="M1190 955l293 293l-107 107l-293 -293zM1637 1248q0 -27 -18 -45l-1286 -1286q-18 -18 -45 -18t-45 18l-198 198q-18 18 -18 45t18 45l1286 1286q18 18 45 18t45 -18l198 -198q18 -18 18 -45zM286 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM636 1276 l196 -60l-196 -60l-60 -196l-60 196l-196 60l196 60l60 196zM1566 798l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM926 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98z" />
-<glyph unicode="&#xf0d1;" horiz-adv-x="1792" d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5 t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38 t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0d2;" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134 q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33 q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf0d3;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5 t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5 t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" />
-<glyph unicode="&#xf0d4;" d="M829 318q0 -76 -58.5 -112.5t-139.5 -36.5q-41 0 -80.5 9.5t-75.5 28.5t-58 53t-22 78q0 46 25 80t65.5 51.5t82 25t84.5 7.5q20 0 31 -2q2 -1 23 -16.5t26 -19t23 -18t24.5 -22t19 -22.5t17 -26t9 -26.5t4.5 -31.5zM755 863q0 -60 -33 -99.5t-92 -39.5q-53 0 -93 42.5 t-57.5 96.5t-17.5 106q0 61 32 104t92 43q53 0 93.5 -45t58 -101t17.5 -107zM861 1120l88 64h-265q-85 0 -161 -32t-127.5 -98t-51.5 -153q0 -93 64.5 -154.5t158.5 -61.5q22 0 43 3q-13 -29 -13 -54q0 -44 40 -94q-175 -12 -257 -63q-47 -29 -75.5 -73t-28.5 -95 q0 -43 18.5 -77.5t48.5 -56.5t69 -37t77.5 -21t76.5 -6q60 0 120.5 15.5t113.5 46t86 82.5t33 117q0 49 -20 89.5t-49 66.5t-58 47.5t-49 44t-20 44.5t15.5 42.5t37.5 39.5t44 42t37.5 59.5t15.5 82.5q0 60 -22.5 99.5t-72.5 90.5h83zM1152 672h128v64h-128v128h-64v-128 h-128v-64h128v-160h64v160zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf0d5;" horiz-adv-x="1664" d="M735 740q0 -36 32 -70.5t77.5 -68t90.5 -73.5t77 -104t32 -142q0 -90 -48 -173q-72 -122 -211 -179.5t-298 -57.5q-132 0 -246.5 41.5t-171.5 137.5q-37 60 -37 131q0 81 44.5 150t118.5 115q131 82 404 100q-32 42 -47.5 74t-15.5 73q0 36 21 85q-46 -4 -68 -4 q-148 0 -249.5 96.5t-101.5 244.5q0 82 36 159t99 131q77 66 182.5 98t217.5 32h418l-138 -88h-131q74 -63 112 -133t38 -160q0 -72 -24.5 -129.5t-59 -93t-69.5 -65t-59.5 -61.5t-24.5 -66zM589 836q38 0 78 16.5t66 43.5q53 57 53 159q0 58 -17 125t-48.5 129.5 t-84.5 103.5t-117 41q-42 0 -82.5 -19.5t-65.5 -52.5q-47 -59 -47 -160q0 -46 10 -97.5t31.5 -103t52 -92.5t75 -67t96.5 -26zM591 -37q58 0 111.5 13t99 39t73 73t27.5 109q0 25 -7 49t-14.5 42t-27 41.5t-29.5 35t-38.5 34.5t-36.5 29t-41.5 30t-36.5 26q-16 2 -48 2 q-53 0 -105 -7t-107.5 -25t-97 -46t-68.5 -74.5t-27 -105.5q0 -70 35 -123.5t91.5 -83t119 -44t127.5 -14.5zM1401 839h213v-108h-213v-219h-105v219h-212v108h212v217h105v-217z" />
-<glyph unicode="&#xf0d6;" horiz-adv-x="1920" d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384 v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0d7;" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0d8;" horiz-adv-x="1024" d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
-<glyph unicode="&#xf0d9;" horiz-adv-x="640" d="M640 1088v-896q0 -26 -19 -45t-45 -19t-45 19l-448 448q-19 19 -19 45t19 45l448 448q19 19 45 19t45 -19t19 -45z" />
-<glyph unicode="&#xf0da;" horiz-adv-x="640" d="M576 640q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19t-19 45v896q0 26 19 45t45 19t45 -19l448 -448q19 -19 19 -45z" />
-<glyph unicode="&#xf0db;" horiz-adv-x="1664" d="M160 0h608v1152h-640v-1120q0 -13 9.5 -22.5t22.5 -9.5zM1536 32v1120h-640v-1152h608q13 0 22.5 9.5t9.5 22.5zM1664 1248v-1216q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1344q66 0 113 -47t47 -113z" />
-<glyph unicode="&#xf0dc;" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45zM1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
-<glyph unicode="&#xf0dd;" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0de;" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
-<glyph unicode="&#xf0e0;" horiz-adv-x="1792" d="M1792 826v-794q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v794q44 -49 101 -87q362 -246 497 -345q57 -42 92.5 -65.5t94.5 -48t110 -24.5h1h1q51 0 110 24.5t94.5 48t92.5 65.5q170 123 498 345q57 39 100 87zM1792 1120q0 -79 -49 -151t-122 -123 q-376 -261 -468 -325q-10 -7 -42.5 -30.5t-54 -38t-52 -32.5t-57.5 -27t-50 -9h-1h-1q-23 0 -50 9t-57.5 27t-52 32.5t-54 38t-42.5 30.5q-91 64 -262 182.5t-205 142.5q-62 42 -117 115.5t-55 136.5q0 78 41.5 130t118.5 52h1472q65 0 112.5 -47t47.5 -113z" />
-<glyph unicode="&#xf0e1;" d="M349 911v-991h-330v991h330zM370 1217q1 -73 -50.5 -122t-135.5 -49h-2q-82 0 -132 49t-50 122q0 74 51.5 122.5t134.5 48.5t133 -48.5t51 -122.5zM1536 488v-568h-329v530q0 105 -40.5 164.5t-126.5 59.5q-63 0 -105.5 -34.5t-63.5 -85.5q-11 -30 -11 -81v-553h-329 q2 399 2 647t-1 296l-1 48h329v-144h-2q20 32 41 56t56.5 52t87 43.5t114.5 15.5q171 0 275 -113.5t104 -332.5z" />
-<glyph unicode="&#xf0e2;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298z" />
-<glyph unicode="&#xf0e3;" horiz-adv-x="1792" d="M1771 0q0 -53 -37 -90l-107 -108q-39 -37 -91 -37q-53 0 -90 37l-363 364q-38 36 -38 90q0 53 43 96l-256 256l-126 -126q-14 -14 -34 -14t-34 14q2 -2 12.5 -12t12.5 -13t10 -11.5t10 -13.5t6 -13.5t5.5 -16.5t1.5 -18q0 -38 -28 -68q-3 -3 -16.5 -18t-19 -20.5 t-18.5 -16.5t-22 -15.5t-22 -9t-26 -4.5q-40 0 -68 28l-408 408q-28 28 -28 68q0 13 4.5 26t9 22t15.5 22t16.5 18.5t20.5 19t18 16.5q30 28 68 28q10 0 18 -1.5t16.5 -5.5t13.5 -6t13.5 -10t11.5 -10t13 -12.5t12 -12.5q-14 14 -14 34t14 34l348 348q14 14 34 14t34 -14 q-2 2 -12.5 12t-12.5 13t-10 11.5t-10 13.5t-6 13.5t-5.5 16.5t-1.5 18q0 38 28 68q3 3 16.5 18t19 20.5t18.5 16.5t22 15.5t22 9t26 4.5q40 0 68 -28l408 -408q28 -28 28 -68q0 -13 -4.5 -26t-9 -22t-15.5 -22t-16.5 -18.5t-20.5 -19t-18 -16.5q-30 -28 -68 -28 q-10 0 -18 1.5t-16.5 5.5t-13.5 6t-13.5 10t-11.5 10t-13 12.5t-12 12.5q14 -14 14 -34t-14 -34l-126 -126l256 -256q43 43 96 43q52 0 91 -37l363 -363q37 -39 37 -91z" />
-<glyph unicode="&#xf0e4;" horiz-adv-x="1792" d="M384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM576 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1004 351l101 382q6 26 -7.5 48.5t-38.5 29.5 t-48 -6.5t-30 -39.5l-101 -382q-60 -5 -107 -43.5t-63 -98.5q-20 -77 20 -146t117 -89t146 20t89 117q16 60 -6 117t-72 91zM1664 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 1024q0 53 -37.5 90.5 t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1472 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 384q0 -261 -141 -483q-19 -29 -54 -29h-1402q-35 0 -54 29 q-141 221 -141 483q0 182 71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
-<glyph unicode="&#xf0e5;" horiz-adv-x="1792" d="M896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640 q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 174 120 321.5 t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
-<glyph unicode="&#xf0e6;" horiz-adv-x="1792" d="M704 1152q-153 0 -286 -52t-211.5 -141t-78.5 -191q0 -82 53 -158t149 -132l97 -56l-35 -84q34 20 62 39l44 31l53 -10q78 -14 153 -14q153 0 286 52t211.5 141t78.5 191t-78.5 191t-211.5 141t-286 52zM704 1280q191 0 353.5 -68.5t256.5 -186.5t94 -257t-94 -257 t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224q0 139 94 257t256.5 186.5 t353.5 68.5zM1526 111q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129 q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230q0 -120 -71 -224.5t-195 -176.5z" />
-<glyph unicode="&#xf0e7;" horiz-adv-x="896" d="M885 970q18 -20 7 -44l-540 -1157q-13 -25 -42 -25q-4 0 -14 2q-17 5 -25.5 19t-4.5 30l197 808l-406 -101q-4 -1 -12 -1q-18 0 -31 11q-18 15 -13 39l201 825q4 14 16 23t28 9h328q19 0 32 -12.5t13 -29.5q0 -8 -5 -18l-171 -463l396 98q8 2 12 2q19 0 34 -15z" />
-<glyph unicode="&#xf0e8;" horiz-adv-x="1792" d="M1792 288v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192q0 52 38 90t90 38h512v192h-96q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h320q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-96v-192h512q52 0 90 -38t38 -90v-192h96q40 0 68 -28t28 -68 z" />
-<glyph unicode="&#xf0e9;" horiz-adv-x="1664" d="M896 708v-580q0 -104 -76 -180t-180 -76t-180 76t-76 180q0 26 19 45t45 19t45 -19t19 -45q0 -50 39 -89t89 -39t89 39t39 89v580q33 11 64 11t64 -11zM1664 681q0 -13 -9.5 -22.5t-22.5 -9.5q-11 0 -23 10q-49 46 -93 69t-102 23q-68 0 -128 -37t-103 -97 q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -28 -17q-18 0 -29 17q-4 6 -14.5 24t-17.5 28q-43 60 -102.5 97t-127.5 37t-127.5 -37t-102.5 -97q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -29 -17q-17 0 -28 17q-4 6 -14.5 24t-17.5 28q-43 60 -103 97t-128 37q-58 0 -102 -23t-93 -69 q-12 -10 -23 -10q-13 0 -22.5 9.5t-9.5 22.5q0 5 1 7q45 183 172.5 319.5t298 204.5t360.5 68q140 0 274.5 -40t246.5 -113.5t194.5 -187t115.5 -251.5q1 -2 1 -7zM896 1408v-98q-42 2 -64 2t-64 -2v98q0 26 19 45t45 19t45 -19t19 -45z" />
-<glyph unicode="&#xf0ea;" horiz-adv-x="1792" d="M768 -128h896v640h-416q-40 0 -68 28t-28 68v416h-384v-1152zM1024 1312v64q0 13 -9.5 22.5t-22.5 9.5h-704q-13 0 -22.5 -9.5t-9.5 -22.5v-64q0 -13 9.5 -22.5t22.5 -9.5h704q13 0 22.5 9.5t9.5 22.5zM1280 640h299l-299 299v-299zM1792 512v-672q0 -40 -28 -68t-68 -28 h-960q-40 0 -68 28t-28 68v160h-544q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1088q40 0 68 -28t28 -68v-328q21 -13 36 -28l408 -408q28 -28 48 -76t20 -88z" />
-<glyph unicode="&#xf0eb;" horiz-adv-x="1024" d="M736 960q0 -13 -9.5 -22.5t-22.5 -9.5t-22.5 9.5t-9.5 22.5q0 46 -54 71t-106 25q-13 0 -22.5 9.5t-9.5 22.5t9.5 22.5t22.5 9.5q50 0 99.5 -16t87 -54t37.5 -90zM896 960q0 72 -34.5 134t-90 101.5t-123 62t-136.5 22.5t-136.5 -22.5t-123 -62t-90 -101.5t-34.5 -134 q0 -101 68 -180q10 -11 30.5 -33t30.5 -33q128 -153 141 -298h228q13 145 141 298q10 11 30.5 33t30.5 33q68 79 68 180zM1024 960q0 -155 -103 -268q-45 -49 -74.5 -87t-59.5 -95.5t-34 -107.5q47 -28 47 -82q0 -37 -25 -64q25 -27 25 -64q0 -52 -45 -81q13 -23 13 -47 q0 -46 -31.5 -71t-77.5 -25q-20 -44 -60 -70t-87 -26t-87 26t-60 70q-46 0 -77.5 25t-31.5 71q0 24 13 47q-45 29 -45 81q0 37 25 64q-25 27 -25 64q0 54 47 82q-4 50 -34 107.5t-59.5 95.5t-74.5 87q-103 113 -103 268q0 99 44.5 184.5t117 142t164 89t186.5 32.5 t186.5 -32.5t164 -89t117 -142t44.5 -184.5z" />
-<glyph unicode="&#xf0ec;" horiz-adv-x="1792" d="M1792 352v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5q-12 0 -24 10l-319 320q-9 9 -9 22q0 14 9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h1376q13 0 22.5 -9.5t9.5 -22.5zM1792 896q0 -14 -9 -23l-320 -320q-9 -9 -23 -9 q-13 0 -22.5 9.5t-9.5 22.5v192h-1376q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1376v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
-<glyph unicode="&#xf0ed;" horiz-adv-x="1920" d="M1280 608q0 14 -9 23t-23 9h-224v352q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-352h-224q-13 0 -22.5 -9.5t-9.5 -22.5q0 -14 9 -23l352 -352q9 -9 23 -9t23 9l351 351q10 12 10 24zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
-<glyph unicode="&#xf0ee;" horiz-adv-x="1920" d="M1280 672q0 14 -9 23l-352 352q-9 9 -23 9t-23 -9l-351 -351q-10 -12 -10 -24q0 -14 9 -23t23 -9h224v-352q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5v352h224q13 0 22.5 9.5t9.5 22.5zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
-<glyph unicode="&#xf0f0;" horiz-adv-x="1408" d="M384 192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 68 5.5 131t24 138t47.5 132.5t81 103t120 60.5q-22 -52 -22 -120v-203q-58 -20 -93 -70t-35 -111q0 -80 56 -136t136 -56 t136 56t56 136q0 61 -35.5 111t-92.5 70v203q0 62 25 93q132 -104 295 -104t295 104q25 -31 25 -93v-64q-106 0 -181 -75t-75 -181v-89q-32 -29 -32 -71q0 -40 28 -68t68 -28t68 28t28 68q0 42 -32 71v89q0 52 38 90t90 38t90 -38t38 -90v-89q-32 -29 -32 -71q0 -40 28 -68 t68 -28t68 28t28 68q0 42 -32 71v89q0 68 -34.5 127.5t-93.5 93.5q0 10 0.5 42.5t0 48t-2.5 41.5t-7 47t-13 40q68 -15 120 -60.5t81 -103t47.5 -132.5t24 -138t5.5 -131zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5 t271.5 -112.5t112.5 -271.5z" />
-<glyph unicode="&#xf0f1;" horiz-adv-x="1408" d="M1280 832q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 832q0 -62 -35.5 -111t-92.5 -70v-395q0 -159 -131.5 -271.5t-316.5 -112.5t-316.5 112.5t-131.5 271.5v132q-164 20 -274 128t-110 252v512q0 26 19 45t45 19q6 0 16 -2q17 30 47 48 t65 18q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5q-33 0 -64 18v-402q0 -106 94 -181t226 -75t226 75t94 181v402q-31 -18 -64 -18q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5q35 0 65 -18t47 -48q10 2 16 2q26 0 45 -19t19 -45v-512q0 -144 -110 -252 t-274 -128v-132q0 -106 94 -181t226 -75t226 75t94 181v395q-57 21 -92.5 70t-35.5 111q0 80 56 136t136 56t136 -56t56 -136z" />
-<glyph unicode="&#xf0f2;" horiz-adv-x="1792" d="M640 1152h512v128h-512v-128zM288 1152v-1280h-64q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h64zM1408 1152v-1280h-1024v1280h128v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h128zM1792 928v-832q0 -92 -66 -158t-158 -66h-64v1280h64q92 0 158 -66 t66 -158z" />
-<glyph unicode="&#xf0f3;" horiz-adv-x="1792" d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5 t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
-<glyph unicode="&#xf0f4;" horiz-adv-x="1920" d="M1664 896q0 80 -56 136t-136 56h-64v-384h64q80 0 136 56t56 136zM0 128h1792q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM1856 896q0 -159 -112.5 -271.5t-271.5 -112.5h-64v-32q0 -92 -66 -158t-158 -66h-704q-92 0 -158 66t-66 158v736q0 26 19 45 t45 19h1152q159 0 271.5 -112.5t112.5 -271.5z" />
-<glyph unicode="&#xf0f5;" horiz-adv-x="1408" d="M640 1472v-640q0 -61 -35.5 -111t-92.5 -70v-779q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v779q-57 20 -92.5 70t-35.5 111v640q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45 t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45zM1408 1472v-1600q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v512h-224q-13 0 -22.5 9.5t-9.5 22.5v800q0 132 94 226t226 94h256q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0f6;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M384 736q0 14 9 23t23 9h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64zM1120 512q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704zM1120 256q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704 q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704z" />
-<glyph unicode="&#xf0f7;" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1536h-1152v-1536h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM1408 1472v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0f8;" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1152h-256v-32q0 -40 -28 -68t-68 -28h-448q-40 0 -68 28t-28 68v32h-256v-1152h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM896 1056v320q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-96h-128v96q0 13 -9.5 22.5 t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5v96h128v-96q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1408 1088v-1280q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1280q0 26 19 45t45 19h320 v288q0 40 28 68t68 28h448q40 0 68 -28t28 -68v-288h320q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0f9;" horiz-adv-x="1920" d="M640 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM256 640h384v256h-158q-14 -2 -22 -9l-195 -195q-7 -12 -9 -22v-30zM1536 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1664 800v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM1920 1344v-1152 q0 -26 -19 -45t-45 -19h-192q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-128q-26 0 -45 19t-19 45t19 45t45 19v416q0 26 13 58t32 51l198 198q19 19 51 32t58 13h160v320q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0fa;" horiz-adv-x="1792" d="M1280 416v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM640 1152h512v128h-512v-128zM256 1152v-1280h-32 q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h32zM1440 1152v-1280h-1088v1280h160v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h160zM1792 928v-832q0 -92 -66 -158t-158 -66h-32v1280h32q92 0 158 -66t66 -158z" />
-<glyph unicode="&#xf0fb;" horiz-adv-x="1920" d="M1920 576q-1 -32 -288 -96l-352 -32l-224 -64h-64l-293 -352h69q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-96h-160h-64v32h64v416h-160l-192 -224h-96l-32 32v192h32v32h128v8l-192 24v128l192 24v8h-128v32h-32v192l32 32h96l192 -224h160v416h-64v32h64h160h96 q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-69l293 -352h64l224 -64l352 -32q261 -58 287 -93z" />
-<glyph unicode="&#xf0fc;" horiz-adv-x="1664" d="M640 640v384h-256v-256q0 -53 37.5 -90.5t90.5 -37.5h128zM1664 192v-192h-1152v192l128 192h-128q-159 0 -271.5 112.5t-112.5 271.5v320l-64 64l32 128h480l32 128h960l32 -192l-64 -32v-800z" />
-<glyph unicode="&#xf0fd;" d="M1280 192v896q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-512v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-896q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h512v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf0fe;" d="M1280 576v128q0 26 -19 45t-45 19h-320v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-320q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h320v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h320q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf100;" horiz-adv-x="1024" d="M627 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23zM1011 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23z" />
-<glyph unicode="&#xf101;" horiz-adv-x="1024" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM979 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23 l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
-<glyph unicode="&#xf102;" horiz-adv-x="1152" d="M1075 224q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM1075 608q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393 q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
-<glyph unicode="&#xf103;" horiz-adv-x="1152" d="M1075 672q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23zM1075 1056q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
-<glyph unicode="&#xf104;" horiz-adv-x="640" d="M627 992q0 -13 -10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
-<glyph unicode="&#xf105;" horiz-adv-x="640" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
-<glyph unicode="&#xf106;" horiz-adv-x="1152" d="M1075 352q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
-<glyph unicode="&#xf107;" horiz-adv-x="1152" d="M1075 800q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
-<glyph unicode="&#xf108;" horiz-adv-x="1920" d="M1792 544v832q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1376v-1088q0 -66 -47 -113t-113 -47h-544q0 -37 16 -77.5t32 -71t16 -43.5q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19 t-19 45q0 14 16 44t32 70t16 78h-544q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
-<glyph unicode="&#xf109;" horiz-adv-x="1920" d="M416 256q-66 0 -113 47t-47 113v704q0 66 47 113t113 47h1088q66 0 113 -47t47 -113v-704q0 -66 -47 -113t-113 -47h-1088zM384 1120v-704q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5v704q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5z M1760 192h160v-96q0 -40 -47 -68t-113 -28h-1600q-66 0 -113 28t-47 68v96h160h1600zM1040 96q16 0 16 16t-16 16h-160q-16 0 -16 -16t16 -16h160z" />
-<glyph unicode="&#xf10a;" horiz-adv-x="1152" d="M640 128q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1024 288v960q0 13 -9.5 22.5t-22.5 9.5h-832q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h832q13 0 22.5 9.5t9.5 22.5zM1152 1248v-1088q0 -66 -47 -113t-113 -47h-832 q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h832q66 0 113 -47t47 -113z" />
-<glyph unicode="&#xf10b;" horiz-adv-x="768" d="M464 128q0 33 -23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5t56.5 23.5t23.5 56.5zM672 288v704q0 13 -9.5 22.5t-22.5 9.5h-512q-13 0 -22.5 -9.5t-9.5 -22.5v-704q0 -13 9.5 -22.5t22.5 -9.5h512q13 0 22.5 9.5t9.5 22.5zM480 1136 q0 16 -16 16h-160q-16 0 -16 -16t16 -16h160q16 0 16 16zM768 1152v-1024q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v1024q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
-<glyph unicode="&#xf10c;" d="M768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103 t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf10d;" horiz-adv-x="1664" d="M768 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z M1664 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z" />
-<glyph unicode="&#xf10e;" horiz-adv-x="1664" d="M768 1216v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136zM1664 1216 v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136z" />
-<glyph unicode="&#xf110;" horiz-adv-x="1568" d="M496 192q0 -60 -42.5 -102t-101.5 -42q-60 0 -102 42t-42 102t42 102t102 42q59 0 101.5 -42t42.5 -102zM928 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM320 640q0 -66 -47 -113t-113 -47t-113 47t-47 113 t47 113t113 47t113 -47t47 -113zM1360 192q0 -46 -33 -79t-79 -33t-79 33t-33 79t33 79t79 33t79 -33t33 -79zM528 1088q0 -73 -51.5 -124.5t-124.5 -51.5t-124.5 51.5t-51.5 124.5t51.5 124.5t124.5 51.5t124.5 -51.5t51.5 -124.5zM992 1280q0 -80 -56 -136t-136 -56 t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1536 640q0 -40 -28 -68t-68 -28t-68 28t-28 68t28 68t68 28t68 -28t28 -68zM1328 1088q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5z" />
-<glyph unicode="&#xf111;" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf112;" horiz-adv-x="1792" d="M1792 416q0 -166 -127 -451q-3 -7 -10.5 -24t-13.5 -30t-13 -22q-12 -17 -28 -17q-15 0 -23.5 10t-8.5 25q0 9 2.5 26.5t2.5 23.5q5 68 5 123q0 101 -17.5 181t-48.5 138.5t-80 101t-105.5 69.5t-133 42.5t-154 21.5t-175.5 6h-224v-256q0 -26 -19 -45t-45 -19t-45 19 l-512 512q-19 19 -19 45t19 45l512 512q19 19 45 19t45 -19t19 -45v-256h224q713 0 875 -403q53 -134 53 -333z" />
-<glyph unicode="&#xf113;" horiz-adv-x="1664" d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320 q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86 t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218 q0 -87 -27 -168q136 -160 136 -398z" />
-<glyph unicode="&#xf114;" horiz-adv-x="1664" d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320 q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
-<glyph unicode="&#xf115;" horiz-adv-x="1920" d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68 v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z " />
-<glyph unicode="&#xf116;" horiz-adv-x="1792" />
-<glyph unicode="&#xf117;" horiz-adv-x="1792" />
-<glyph unicode="&#xf118;" d="M1134 461q-37 -121 -138 -195t-228 -74t-228 74t-138 195q-8 25 4 48.5t38 31.5q25 8 48.5 -4t31.5 -38q25 -80 92.5 -129.5t151.5 -49.5t151.5 49.5t92.5 129.5q8 26 32 38t49 4t37 -31.5t4 -48.5zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5 t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf119;" d="M1134 307q8 -25 -4 -48.5t-37 -31.5t-49 4t-32 38q-25 80 -92.5 129.5t-151.5 49.5t-151.5 -49.5t-92.5 -129.5q-8 -26 -31.5 -38t-48.5 -4q-26 8 -38 31.5t-4 48.5q37 121 138 195t228 74t228 -74t138 -195zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204 t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf11a;" d="M1152 448q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h640q26 0 45 -19t19 -45zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf11b;" horiz-adv-x="1920" d="M832 448v128q0 14 -9 23t-23 9h-192v192q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-192h-192q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h192v-192q0 -14 9 -23t23 -9h128q14 0 23 9t9 23v192h192q14 0 23 9t9 23zM1408 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1920 512q0 -212 -150 -362t-362 -150q-192 0 -338 128h-220q-146 -128 -338 -128q-212 0 -362 150 t-150 362t150 362t362 150h896q212 0 362 -150t150 -362z" />
-<glyph unicode="&#xf11c;" horiz-adv-x="1920" d="M384 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM512 624v-96q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h224q16 0 16 -16zM384 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 368v-96q0 -16 -16 -16 h-864q-16 0 -16 16v96q0 16 16 16h864q16 0 16 -16zM768 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM640 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1024 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16 h96q16 0 16 -16zM896 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1280 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1152 880v-96 q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 880v-352q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h112v240q0 16 16 16h96q16 0 16 -16zM1792 128v896h-1664v-896 h1664zM1920 1024v-896q0 -53 -37.5 -90.5t-90.5 -37.5h-1664q-53 0 -90.5 37.5t-37.5 90.5v896q0 53 37.5 90.5t90.5 37.5h1664q53 0 90.5 -37.5t37.5 -90.5z" />
-<glyph unicode="&#xf11d;" horiz-adv-x="1792" d="M1664 491v616q-169 -91 -306 -91q-82 0 -145 32q-100 49 -184 76.5t-178 27.5q-173 0 -403 -127v-599q245 113 433 113q55 0 103.5 -7.5t98 -26t77 -31t82.5 -39.5l28 -14q44 -22 101 -22q120 0 293 92zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9 h-64q-14 0 -23 9t-9 23v1266q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102 q-15 -9 -33 -9q-16 0 -32 8q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
-<glyph unicode="&#xf11e;" horiz-adv-x="1792" d="M832 536v192q-181 -16 -384 -117v-185q205 96 384 110zM832 954v197q-172 -8 -384 -126v-189q215 111 384 118zM1664 491v184q-235 -116 -384 -71v224q-20 6 -39 15q-5 3 -33 17t-34.5 17t-31.5 15t-34.5 15.5t-32.5 13t-36 12.5t-35 8.5t-39.5 7.5t-39.5 4t-44 2 q-23 0 -49 -3v-222h19q102 0 192.5 -29t197.5 -82q19 -9 39 -15v-188q42 -17 91 -17q120 0 293 92zM1664 918v189q-169 -91 -306 -91q-45 0 -78 8v-196q148 -42 384 90zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v1266 q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102q-15 -9 -33 -9q-16 0 -32 8 q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
-<glyph unicode="&#xf120;" horiz-adv-x="1664" d="M585 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23zM1664 96v-64q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h960q14 0 23 -9 t9 -23z" />
-<glyph unicode="&#xf121;" horiz-adv-x="1920" d="M617 137l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23zM1208 1204l-373 -1291q-4 -13 -15.5 -19.5t-23.5 -2.5l-62 17q-13 4 -19.5 15.5t-2.5 24.5 l373 1291q4 13 15.5 19.5t23.5 2.5l62 -17q13 -4 19.5 -15.5t2.5 -24.5zM1865 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23z" />
-<glyph unicode="&#xf122;" horiz-adv-x="1792" d="M640 454v-70q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-69l-397 -398q-19 -19 -19 -45t19 -45zM1792 416q0 -58 -17 -133.5t-38.5 -138t-48 -125t-40.5 -90.5l-20 -40q-8 -17 -28 -17q-6 0 -9 1 q-25 8 -23 34q43 400 -106 565q-64 71 -170.5 110.5t-267.5 52.5v-251q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-262q411 -28 599 -221q169 -173 169 -509z" />
-<glyph unicode="&#xf123;" horiz-adv-x="1664" d="M1186 579l257 250l-356 52l-66 10l-30 60l-159 322v-963l59 -31l318 -168l-60 355l-12 66zM1638 841l-363 -354l86 -500q5 -33 -6 -51.5t-34 -18.5q-17 0 -40 12l-449 236l-449 -236q-23 -12 -40 -12q-23 0 -34 18.5t-6 51.5l86 500l-364 354q-32 32 -23 59.5t54 34.5 l502 73l225 455q20 41 49 41q28 0 49 -41l225 -455l502 -73q45 -7 54 -34.5t-24 -59.5z" />
-<glyph unicode="&#xf124;" horiz-adv-x="1408" d="M1401 1187l-640 -1280q-17 -35 -57 -35q-5 0 -15 2q-22 5 -35.5 22.5t-13.5 39.5v576h-576q-22 0 -39.5 13.5t-22.5 35.5t4 42t29 30l1280 640q13 7 29 7q27 0 45 -19q15 -14 18.5 -34.5t-6.5 -39.5z" />
-<glyph unicode="&#xf125;" horiz-adv-x="1664" d="M557 256h595v595zM512 301l595 595h-595v-595zM1664 224v-192q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v224h-864q-14 0 -23 9t-9 23v864h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23 -9t9 -23 v-224h851l246 247q10 9 23 9t23 -9q9 -10 9 -23t-9 -23l-247 -246v-851h224q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf126;" horiz-adv-x="1024" d="M288 64q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM288 1216q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM928 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1024 1088q0 -52 -26 -96.5t-70 -69.5 q-2 -287 -226 -414q-68 -38 -203 -81q-128 -40 -169.5 -71t-41.5 -100v-26q44 -25 70 -69.5t26 -96.5q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 52 26 96.5t70 69.5v820q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136q0 -52 -26 -96.5t-70 -69.5v-497 q54 26 154 57q55 17 87.5 29.5t70.5 31t59 39.5t40.5 51t28 69.5t8.5 91.5q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136z" />
-<glyph unicode="&#xf127;" horiz-adv-x="1664" d="M439 265l-256 -256q-10 -9 -23 -9q-12 0 -23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23zM608 224v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM384 448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23t9 23t23 9h320 q14 0 23 -9t9 -23zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-334 335q-21 21 -42 56l239 18l273 -274q27 -27 68 -27.5t68 26.5l147 146q28 28 28 67q0 40 -28 68l-274 275l18 239q35 -21 56 -42l336 -336q84 -86 84 -204zM1031 1044l-239 -18 l-273 274q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l274 -274l-18 -240q-35 21 -56 42l-336 336q-84 86 -84 204q0 120 85 203l147 146q83 83 203 83q121 0 204 -85l334 -335q21 -21 42 -56zM1664 960q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9 t-9 23t9 23t23 9h320q14 0 23 -9t9 -23zM1120 1504v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM1527 1353l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
-<glyph unicode="&#xf128;" horiz-adv-x="1024" d="M704 280v-240q0 -16 -12 -28t-28 -12h-240q-16 0 -28 12t-12 28v240q0 16 12 28t28 12h240q16 0 28 -12t12 -28zM1020 880q0 -54 -15.5 -101t-35 -76.5t-55 -59.5t-57.5 -43.5t-61 -35.5q-41 -23 -68.5 -65t-27.5 -67q0 -17 -12 -32.5t-28 -15.5h-240q-15 0 -25.5 18.5 t-10.5 37.5v45q0 83 65 156.5t143 108.5q59 27 84 56t25 76q0 42 -46.5 74t-107.5 32q-65 0 -108 -29q-35 -25 -107 -115q-13 -16 -31 -16q-12 0 -25 8l-164 125q-13 10 -15.5 25t5.5 28q160 266 464 266q80 0 161 -31t146 -83t106 -127.5t41 -158.5z" />
-<glyph unicode="&#xf129;" horiz-adv-x="640" d="M640 192v-128q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64v384h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-576h64q26 0 45 -19t19 -45zM512 1344v-192q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v192 q0 26 19 45t45 19h256q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf12a;" horiz-adv-x="640" d="M512 288v-224q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v224q0 26 19 45t45 19h256q26 0 45 -19t19 -45zM542 1344l-28 -768q-1 -26 -20.5 -45t-45.5 -19h-256q-26 0 -45.5 19t-20.5 45l-28 768q-1 26 17.5 45t44.5 19h320q26 0 44.5 -19t17.5 -45z" />
-<glyph unicode="&#xf12b;" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1534 846v-206h-514l-3 27 q-4 28 -4 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q83 65 188 65q110 0 178 -59.5t68 -158.5q0 -56 -24.5 -103t-62 -76.5t-81.5 -58.5t-82 -50.5t-65.5 -51.5t-30.5 -63h232v80 h126z" />
-<glyph unicode="&#xf12c;" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1536 -50v-206h-514l-4 27 q-3 45 -3 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q80 65 188 65q110 0 178 -59.5t68 -158.5q0 -66 -34.5 -118.5t-84 -86t-99.5 -62.5t-87 -63t-41 -73h232v80h126z" />
-<glyph unicode="&#xf12d;" horiz-adv-x="1920" d="M896 128l336 384h-768l-336 -384h768zM1909 1205q15 -34 9.5 -71.5t-30.5 -65.5l-896 -1024q-38 -44 -96 -44h-768q-38 0 -69.5 20.5t-47.5 54.5q-15 34 -9.5 71.5t30.5 65.5l896 1024q38 44 96 44h768q38 0 69.5 -20.5t47.5 -54.5z" />
-<glyph unicode="&#xf12e;" horiz-adv-x="1664" d="M1664 438q0 -81 -44.5 -135t-123.5 -54q-41 0 -77.5 17.5t-59 38t-56.5 38t-71 17.5q-110 0 -110 -124q0 -39 16 -115t15 -115v-5q-22 0 -33 -1q-34 -3 -97.5 -11.5t-115.5 -13.5t-98 -5q-61 0 -103 26.5t-42 83.5q0 37 17.5 71t38 56.5t38 59t17.5 77.5q0 79 -54 123.5 t-135 44.5q-84 0 -143 -45.5t-59 -127.5q0 -43 15 -83t33.5 -64.5t33.5 -53t15 -50.5q0 -45 -46 -89q-37 -35 -117 -35q-95 0 -245 24q-9 2 -27.5 4t-27.5 4l-13 2q-1 0 -3 1q-2 0 -2 1v1024q2 -1 17.5 -3.5t34 -5t21.5 -3.5q150 -24 245 -24q80 0 117 35q46 44 46 89 q0 22 -15 50.5t-33.5 53t-33.5 64.5t-15 83q0 82 59 127.5t144 45.5q80 0 134 -44.5t54 -123.5q0 -41 -17.5 -77.5t-38 -59t-38 -56.5t-17.5 -71q0 -57 42 -83.5t103 -26.5q64 0 180 15t163 17v-2q-1 -2 -3.5 -17.5t-5 -34t-3.5 -21.5q-24 -150 -24 -245q0 -80 35 -117 q44 -46 89 -46q22 0 50.5 15t53 33.5t64.5 33.5t83 15q82 0 127.5 -59t45.5 -143z" />
-<glyph unicode="&#xf130;" horiz-adv-x="1152" d="M1152 832v-128q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-217 24 -364.5 187.5t-147.5 384.5v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -185 131.5 -316.5t316.5 -131.5 t316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45zM896 1216v-512q0 -132 -94 -226t-226 -94t-226 94t-94 226v512q0 132 94 226t226 94t226 -94t94 -226z" />
-<glyph unicode="&#xf131;" horiz-adv-x="1408" d="M271 591l-101 -101q-42 103 -42 214v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -53 15 -113zM1385 1193l-361 -361v-128q0 -132 -94 -226t-226 -94q-55 0 -109 19l-96 -96q97 -51 205 -51q185 0 316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45v-128 q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-125 13 -235 81l-254 -254q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l1234 1234q10 10 23 10t23 -10l82 -82q10 -10 10 -23 t-10 -23zM1005 1325l-621 -621v512q0 132 94 226t226 94q102 0 184.5 -59t116.5 -152z" />
-<glyph unicode="&#xf132;" horiz-adv-x="1280" d="M1088 576v640h-448v-1137q119 63 213 137q235 184 235 360zM1280 1344v-768q0 -86 -33.5 -170.5t-83 -150t-118 -127.5t-126.5 -103t-121 -77.5t-89.5 -49.5t-42.5 -20q-12 -6 -26 -6t-26 6q-16 7 -42.5 20t-89.5 49.5t-121 77.5t-126.5 103t-118 127.5t-83 150 t-33.5 170.5v768q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf133;" horiz-adv-x="1664" d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280 q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
-<glyph unicode="&#xf134;" horiz-adv-x="1408" d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800 q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113 q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" />
-<glyph unicode="&#xf135;" horiz-adv-x="1664" d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1 q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" />
-<glyph unicode="&#xf136;" horiz-adv-x="1792" d="M1745 763l-164 -763h-334l178 832q13 56 -15 88q-27 33 -83 33h-169l-204 -953h-334l204 953h-286l-204 -953h-334l204 953l-153 327h1276q101 0 189.5 -40.5t147.5 -113.5q60 -73 81 -168.5t0 -194.5z" />
-<glyph unicode="&#xf137;" d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf138;" d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf139;" d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf13a;" d="M813 237l454 454q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-307 -307l-307 307q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf13b;" horiz-adv-x="1408" d="M1130 939l16 175h-884l47 -534h612l-22 -228l-197 -53l-196 53l-13 140h-175l22 -278l362 -100h4v1l359 99l50 544h-644l-15 181h674zM0 1408h1408l-128 -1438l-578 -162l-574 162z" />
-<glyph unicode="&#xf13c;" horiz-adv-x="1792" d="M275 1408h1505l-266 -1333l-804 -267l-698 267l71 356h297l-29 -147l422 -161l486 161l68 339h-1208l58 297h1209l38 191h-1208z" />
-<glyph unicode="&#xf13d;" horiz-adv-x="1792" d="M960 1280q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1792 352v-352q0 -22 -20 -30q-8 -2 -12 -2q-13 0 -23 9l-93 93q-119 -143 -318.5 -226.5t-429.5 -83.5t-429.5 83.5t-318.5 226.5l-93 -93q-9 -9 -23 -9q-4 0 -12 2q-20 8 -20 30v352 q0 14 9 23t23 9h352q22 0 30 -20q8 -19 -7 -35l-100 -100q67 -91 189.5 -153.5t271.5 -82.5v647h-192q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h192v163q-58 34 -93 92.5t-35 128.5q0 106 75 181t181 75t181 -75t75 -181q0 -70 -35 -128.5t-93 -92.5v-163h192q26 0 45 -19 t19 -45v-128q0 -26 -19 -45t-45 -19h-192v-647q149 20 271.5 82.5t189.5 153.5l-100 100q-15 16 -7 35q8 20 30 20h352q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf13e;" horiz-adv-x="1152" d="M1056 768q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v320q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45q0 106 -75 181t-181 75t-181 -75t-75 -181 v-320h736z" />
-<glyph unicode="&#xf140;" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM1152 640q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1280 640q0 -212 -150 -362t-362 -150t-362 150 t-150 362t150 362t362 150t362 -150t150 -362zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf141;" horiz-adv-x="1408" d="M384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM896 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM1408 800v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
-<glyph unicode="&#xf142;" horiz-adv-x="384" d="M384 288v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 1312v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
-<glyph unicode="&#xf143;" d="M512 256q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM863 162q-13 232 -177 396t-396 177q-14 1 -24 -9t-10 -23v-128q0 -13 8.5 -22t21.5 -10q154 -11 264 -121t121 -264q1 -13 10 -21.5t22 -8.5h128q13 0 23 10 t9 24zM1247 161q-5 154 -56 297.5t-139.5 260t-205 205t-260 139.5t-297.5 56q-14 1 -23 -9q-10 -10 -10 -23v-128q0 -13 9 -22t22 -10q204 -7 378 -111.5t278.5 -278.5t111.5 -378q1 -13 10 -22t22 -9h128q13 0 23 10q11 9 9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf144;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1152 585q32 18 32 55t-32 55l-544 320q-31 19 -64 1q-32 -19 -32 -56v-640q0 -37 32 -56 q16 -8 32 -8q17 0 32 9z" />
-<glyph unicode="&#xf145;" horiz-adv-x="1792" d="M1024 1084l316 -316l-572 -572l-316 316zM813 105l618 618q19 19 19 45t-19 45l-362 362q-18 18 -45 18t-45 -18l-618 -618q-19 -19 -19 -45t19 -45l362 -362q18 -18 45 -18t45 18zM1702 742l-907 -908q-37 -37 -90.5 -37t-90.5 37l-126 126q56 56 56 136t-56 136 t-136 56t-136 -56l-125 126q-37 37 -37 90.5t37 90.5l907 906q37 37 90.5 37t90.5 -37l125 -125q-56 -56 -56 -136t56 -136t136 -56t136 56l126 -125q37 -37 37 -90.5t-37 -90.5z" />
-<glyph unicode="&#xf146;" d="M1280 576v128q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h896q26 0 45 19t19 45zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" />
-<glyph unicode="&#xf147;" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h832q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5 t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf148;" horiz-adv-x="1024" d="M1018 933q-18 -37 -58 -37h-192v-864q0 -14 -9 -23t-23 -9h-704q-21 0 -29 18q-8 20 4 35l160 192q9 11 25 11h320v640h-192q-40 0 -58 37q-17 37 9 68l320 384q18 22 49 22t49 -22l320 -384q27 -32 9 -68z" />
-<glyph unicode="&#xf149;" horiz-adv-x="1024" d="M32 1280h704q13 0 22.5 -9.5t9.5 -23.5v-863h192q40 0 58 -37t-9 -69l-320 -384q-18 -22 -49 -22t-49 22l-320 384q-26 31 -9 69q18 37 58 37h192v640h-320q-14 0 -25 11l-160 192q-13 14 -4 34q9 19 29 19z" />
-<glyph unicode="&#xf14a;" d="M685 237l614 614q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-467 -467l-211 211q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l358 -358q19 -19 45 -19t45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5 t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf14b;" d="M404 428l152 -152l-52 -52h-56v96h-96v56zM818 818q14 -13 -3 -30l-291 -291q-17 -17 -30 -3q-14 13 3 30l291 291q17 17 30 3zM544 128l544 544l-288 288l-544 -544v-288h288zM1152 736l92 92q28 28 28 68t-28 68l-152 152q-28 28 -68 28t-68 -28l-92 -92zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf14c;" d="M1280 608v480q0 26 -19 45t-45 19h-480q-42 0 -59 -39q-17 -41 14 -70l144 -144l-534 -534q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l534 534l144 -144q18 -19 45 -19q12 0 25 5q39 17 39 59zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf14d;" d="M1005 435l352 352q19 19 19 45t-19 45l-352 352q-30 31 -69 14q-40 -17 -40 -59v-160q-119 0 -216 -19.5t-162.5 -51t-114 -79t-76.5 -95.5t-44.5 -109t-21.5 -111.5t-5 -110.5q0 -181 167 -404q10 -12 25 -12q7 0 13 3q22 9 19 33q-44 354 62 473q46 52 130 75.5 t224 23.5v-160q0 -42 40 -59q12 -5 24 -5q26 0 45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf14e;" d="M640 448l256 128l-256 128v-256zM1024 1039v-542l-512 -256v542zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf150;" d="M1145 861q18 -35 -5 -66l-320 -448q-19 -27 -52 -27t-52 27l-320 448q-23 31 -5 66q17 35 57 35h640q40 0 57 -35zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf151;" d="M1145 419q-17 -35 -57 -35h-640q-40 0 -57 35q-18 35 5 66l320 448q19 27 52 27t52 -27l320 -448q23 -31 5 -66zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf152;" d="M1088 640q0 -33 -27 -52l-448 -320q-31 -23 -66 -5q-35 17 -35 57v640q0 40 35 57q35 18 66 -5l448 -320q27 -19 27 -52zM1280 160v960q0 14 -9 23t-23 9h-960q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h960q14 0 23 9t9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf153;" horiz-adv-x="1024" d="M976 229l35 -159q3 -12 -3 -22.5t-17 -14.5l-5 -1q-4 -2 -10.5 -3.5t-16 -4.5t-21.5 -5.5t-25.5 -5t-30 -5t-33.5 -4.5t-36.5 -3t-38.5 -1q-234 0 -409 130.5t-238 351.5h-95q-13 0 -22.5 9.5t-9.5 22.5v113q0 13 9.5 22.5t22.5 9.5h66q-2 57 1 105h-67q-14 0 -23 9 t-9 23v114q0 14 9 23t23 9h98q67 210 243.5 338t400.5 128q102 0 194 -23q11 -3 20 -15q6 -11 3 -24l-43 -159q-3 -13 -14 -19.5t-24 -2.5l-4 1q-4 1 -11.5 2.5l-17.5 3.5t-22.5 3.5t-26 3t-29 2.5t-29.5 1q-126 0 -226 -64t-150 -176h468q16 0 25 -12q10 -12 7 -26 l-24 -114q-5 -26 -32 -26h-488q-3 -37 0 -105h459q15 0 25 -12q9 -12 6 -27l-24 -112q-2 -11 -11 -18.5t-20 -7.5h-387q48 -117 149.5 -185.5t228.5 -68.5q18 0 36 1.5t33.5 3.5t29.5 4.5t24.5 5t18.5 4.5l12 3l5 2q13 5 26 -2q12 -7 15 -21z" />
-<glyph unicode="&#xf154;" horiz-adv-x="1024" d="M1020 399v-367q0 -14 -9 -23t-23 -9h-956q-14 0 -23 9t-9 23v150q0 13 9.5 22.5t22.5 9.5h97v383h-95q-14 0 -23 9.5t-9 22.5v131q0 14 9 23t23 9h95v223q0 171 123.5 282t314.5 111q185 0 335 -125q9 -8 10 -20.5t-7 -22.5l-103 -127q-9 -11 -22 -12q-13 -2 -23 7 q-5 5 -26 19t-69 32t-93 18q-85 0 -137 -47t-52 -123v-215h305q13 0 22.5 -9t9.5 -23v-131q0 -13 -9.5 -22.5t-22.5 -9.5h-305v-379h414v181q0 13 9 22.5t23 9.5h162q14 0 23 -9.5t9 -22.5z" />
-<glyph unicode="&#xf155;" horiz-adv-x="1024" d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43 t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5 t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50 t53 -63.5t31.5 -76.5t13 -94z" />
-<glyph unicode="&#xf156;" horiz-adv-x="898" d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102 q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf157;" horiz-adv-x="1027" d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61 l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" />
-<glyph unicode="&#xf158;" horiz-adv-x="1280" d="M1043 971q0 100 -65 162t-171 62h-320v-448h320q106 0 171 62t65 162zM1280 971q0 -193 -126.5 -315t-326.5 -122h-340v-118h505q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-505v-192q0 -14 -9.5 -23t-22.5 -9h-167q-14 0 -23 9t-9 23v192h-224q-14 0 -23 9t-9 23v128 q0 14 9 23t23 9h224v118h-224q-14 0 -23 9t-9 23v149q0 13 9 22.5t23 9.5h224v629q0 14 9 23t23 9h539q200 0 326.5 -122t126.5 -315z" />
-<glyph unicode="&#xf159;" horiz-adv-x="1792" d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23 t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28 q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf15a;" horiz-adv-x="1280" d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164 l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30 t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" />
-<glyph unicode="&#xf15b;" d="M1024 1024v472q22 -14 36 -28l408 -408q14 -14 28 -36h-472zM896 992q0 -40 28 -68t68 -28h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544z" />
-<glyph unicode="&#xf15c;" d="M1468 1060q14 -14 28 -36h-472v472q22 -14 36 -28zM992 896h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544q0 -40 28 -68t68 -28zM1152 160v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704 q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23z" />
-<glyph unicode="&#xf15d;" horiz-adv-x="1664" d="M1191 1128h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1572 -23 v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -11v-2l14 2q9 2 30 2h248v119h121zM1661 874v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162 l230 -662h70z" />
-<glyph unicode="&#xf15e;" horiz-adv-x="1664" d="M1191 104h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1661 -150 v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162l230 -662h70zM1572 1001v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -10v-3l14 3q9 1 30 1h248 v119h121z" />
-<glyph unicode="&#xf160;" horiz-adv-x="1792" d="M736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1792 -32v-192q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832 q14 0 23 -9t9 -23zM1600 480v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1408 992v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1216 1504v-192q0 -14 -9 -23t-23 -9h-256 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf161;" horiz-adv-x="1792" d="M1216 -32v-192q0 -14 -9 -23t-23 -9h-256q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192 q14 0 23 -9t9 -23zM1408 480v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1600 992v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1792 1504v-192q0 -14 -9 -23t-23 -9h-832 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf162;" d="M1346 223q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23 zM1486 165q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5 t82 -252.5zM1456 882v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165z" />
-<glyph unicode="&#xf163;" d="M1346 1247q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9 t9 -23zM1456 -142v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165zM1486 1189q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13 q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5t82 -252.5z" />
-<glyph unicode="&#xf164;" horiz-adv-x="1664" d="M256 192q0 26 -19 45t-45 19q-27 0 -45.5 -19t-18.5 -45q0 -27 18.5 -45.5t45.5 -18.5q26 0 45 18.5t19 45.5zM416 704v-640q0 -26 -19 -45t-45 -19h-288q-26 0 -45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45 -19t19 -45zM1600 704q0 -86 -55 -149q15 -44 15 -76 q3 -76 -43 -137q17 -56 0 -117q-15 -57 -54 -94q9 -112 -49 -181q-64 -76 -197 -78h-36h-76h-17q-66 0 -144 15.5t-121.5 29t-120.5 39.5q-123 43 -158 44q-26 1 -45 19.5t-19 44.5v641q0 25 18 43.5t43 20.5q24 2 76 59t101 121q68 87 101 120q18 18 31 48t17.5 48.5 t13.5 60.5q7 39 12.5 61t19.5 52t34 50q19 19 45 19q46 0 82.5 -10.5t60 -26t40 -40.5t24 -45t12 -50t5 -45t0.5 -39q0 -38 -9.5 -76t-19 -60t-27.5 -56q-3 -6 -10 -18t-11 -22t-8 -24h277q78 0 135 -57t57 -135z" />
-<glyph unicode="&#xf165;" horiz-adv-x="1664" d="M256 960q0 -26 -19 -45t-45 -19q-27 0 -45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45 -18.5t19 -45.5zM416 448v640q0 26 -19 45t-45 19h-288q-26 0 -45 -19t-19 -45v-640q0 -26 19 -45t45 -19h288q26 0 45 19t19 45zM1545 597q55 -61 55 -149q-1 -78 -57.5 -135 t-134.5 -57h-277q4 -14 8 -24t11 -22t10 -18q18 -37 27 -57t19 -58.5t10 -76.5q0 -24 -0.5 -39t-5 -45t-12 -50t-24 -45t-40 -40.5t-60 -26t-82.5 -10.5q-26 0 -45 19q-20 20 -34 50t-19.5 52t-12.5 61q-9 42 -13.5 60.5t-17.5 48.5t-31 48q-33 33 -101 120q-49 64 -101 121 t-76 59q-25 2 -43 20.5t-18 43.5v641q0 26 19 44.5t45 19.5q35 1 158 44q77 26 120.5 39.5t121.5 29t144 15.5h17h76h36q133 -2 197 -78q58 -69 49 -181q39 -37 54 -94q17 -61 0 -117q46 -61 43 -137q0 -32 -15 -76z" />
-<glyph unicode="&#xf166;" d="M919 233v157q0 50 -29 50q-17 0 -33 -16v-224q16 -16 33 -16q29 0 29 49zM1103 355h66v34q0 51 -33 51t-33 -51v-34zM532 621v-70h-80v-423h-74v423h-78v70h232zM733 495v-367h-67v40q-39 -45 -76 -45q-33 0 -42 28q-6 16 -6 54v290h66v-270q0 -24 1 -26q1 -15 15 -15 q20 0 42 31v280h67zM985 384v-146q0 -52 -7 -73q-12 -42 -53 -42q-35 0 -68 41v-36h-67v493h67v-161q32 40 68 40q41 0 53 -42q7 -21 7 -74zM1236 255v-9q0 -29 -2 -43q-3 -22 -15 -40q-27 -40 -80 -40q-52 0 -81 38q-21 27 -21 86v129q0 59 20 86q29 38 80 38t78 -38 q21 -28 21 -86v-76h-133v-65q0 -51 34 -51q24 0 30 26q0 1 0.5 7t0.5 16.5v21.5h68zM785 1079v-156q0 -51 -32 -51t-32 51v156q0 52 32 52t32 -52zM1318 366q0 177 -19 260q-10 44 -43 73.5t-76 34.5q-136 15 -412 15q-275 0 -411 -15q-44 -5 -76.5 -34.5t-42.5 -73.5 q-20 -87 -20 -260q0 -176 20 -260q10 -43 42.5 -73t75.5 -35q137 -15 412 -15t412 15q43 5 75.5 35t42.5 73q20 84 20 260zM563 1017l90 296h-75l-51 -195l-53 195h-78l24 -69t23 -69q35 -103 46 -158v-201h74v201zM852 936v130q0 58 -21 87q-29 38 -78 38q-51 0 -78 -38 q-21 -29 -21 -87v-130q0 -58 21 -87q27 -38 78 -38q49 0 78 38q21 27 21 87zM1033 816h67v370h-67v-283q-22 -31 -42 -31q-15 0 -16 16q-1 2 -1 26v272h-67v-293q0 -37 6 -55q11 -27 43 -27q36 0 77 45v-40zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf167;" d="M971 292v-211q0 -67 -39 -67q-23 0 -45 22v301q22 22 45 22q39 0 39 -67zM1309 291v-46h-90v46q0 68 45 68t45 -68zM343 509h107v94h-312v-94h105v-569h100v569zM631 -60h89v494h-89v-378q-30 -42 -57 -42q-18 0 -21 21q-1 3 -1 35v364h-89v-391q0 -49 8 -73 q12 -37 58 -37q48 0 102 61v-54zM1060 88v197q0 73 -9 99q-17 56 -71 56q-50 0 -93 -54v217h-89v-663h89v48q45 -55 93 -55q54 0 71 55q9 27 9 100zM1398 98v13h-91q0 -51 -2 -61q-7 -36 -40 -36q-46 0 -46 69v87h179v103q0 79 -27 116q-39 51 -106 51q-68 0 -107 -51 q-28 -37 -28 -116v-173q0 -79 29 -116q39 -51 108 -51q72 0 108 53q18 27 21 54q2 9 2 58zM790 1011v210q0 69 -43 69t-43 -69v-210q0 -70 43 -70t43 70zM1509 260q0 -234 -26 -350q-14 -59 -58 -99t-102 -46q-184 -21 -555 -21t-555 21q-58 6 -102.5 46t-57.5 99 q-26 112 -26 350q0 234 26 350q14 59 58 99t103 47q183 20 554 20t555 -20q58 -7 102.5 -47t57.5 -99q26 -112 26 -350zM511 1536h102l-121 -399v-271h-100v271q-14 74 -61 212q-37 103 -65 187h106l71 -263zM881 1203v-175q0 -81 -28 -118q-37 -51 -106 -51q-67 0 -105 51 q-28 38 -28 118v175q0 80 28 117q38 51 105 51q69 0 106 -51q28 -37 28 -117zM1216 1365v-499h-91v55q-53 -62 -103 -62q-46 0 -59 37q-8 24 -8 75v394h91v-367q0 -33 1 -35q3 -22 21 -22q27 0 57 43v381h91z" />
-<glyph unicode="&#xf168;" horiz-adv-x="1408" d="M597 869q-10 -18 -257 -456q-27 -46 -65 -46h-239q-21 0 -31 17t0 36l253 448q1 0 0 1l-161 279q-12 22 -1 37q9 15 32 15h239q40 0 66 -45zM1403 1511q11 -16 0 -37l-528 -934v-1l336 -615q11 -20 1 -37q-10 -15 -32 -15h-239q-42 0 -66 45l-339 622q18 32 531 942 q25 45 64 45h241q22 0 31 -15z" />
-<glyph unicode="&#xf169;" d="M685 771q0 1 -126 222q-21 34 -52 34h-184q-18 0 -26 -11q-7 -12 1 -29l125 -216v-1l-196 -346q-9 -14 0 -28q8 -13 24 -13h185q31 0 50 36zM1309 1268q-7 12 -24 12h-187q-30 0 -49 -35l-411 -729q1 -2 262 -481q20 -35 52 -35h184q18 0 25 12q8 13 -1 28l-260 476v1 l409 723q8 16 0 28zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf16a;" horiz-adv-x="1792" d="M1280 640q0 37 -30 54l-512 320q-31 20 -65 2q-33 -18 -33 -56v-640q0 -38 33 -56q16 -8 31 -8q20 0 34 10l512 320q30 17 30 54zM1792 640q0 -96 -1 -150t-8.5 -136.5t-22.5 -147.5q-16 -73 -69 -123t-124 -58q-222 -25 -671 -25t-671 25q-71 8 -124.5 58t-69.5 123 q-14 65 -21.5 147.5t-8.5 136.5t-1 150t1 150t8.5 136.5t22.5 147.5q16 73 69 123t124 58q222 25 671 25t671 -25q71 -8 124.5 -58t69.5 -123q14 -65 21.5 -147.5t8.5 -136.5t1 -150z" />
-<glyph unicode="&#xf16b;" horiz-adv-x="1792" d="M402 829l494 -305l-342 -285l-490 319zM1388 274v-108l-490 -293v-1l-1 1l-1 -1v1l-489 293v108l147 -96l342 284v2l1 -1l1 1v-2l343 -284zM554 1418l342 -285l-494 -304l-338 270zM1390 829l338 -271l-489 -319l-343 285zM1239 1418l489 -319l-338 -270l-494 304z" />
-<glyph unicode="&#xf16c;" horiz-adv-x="1408" d="M928 135v-151l-707 -1v151zM1169 481v-701l-1 -35v-1h-1132l-35 1h-1v736h121v-618h928v618h120zM241 393l704 -65l-13 -150l-705 65zM309 709l683 -183l-39 -146l-683 183zM472 1058l609 -360l-77 -130l-609 360zM832 1389l398 -585l-124 -85l-399 584zM1285 1536 l121 -697l-149 -26l-121 697z" />
-<glyph unicode="&#xf16d;" d="M1362 110v648h-135q20 -63 20 -131q0 -126 -64 -232.5t-174 -168.5t-240 -62q-197 0 -337 135.5t-140 327.5q0 68 20 131h-141v-648q0 -26 17.5 -43.5t43.5 -17.5h1069q25 0 43 17.5t18 43.5zM1078 643q0 124 -90.5 211.5t-218.5 87.5q-127 0 -217.5 -87.5t-90.5 -211.5 t90.5 -211.5t217.5 -87.5q128 0 218.5 87.5t90.5 211.5zM1362 1003v165q0 28 -20 48.5t-49 20.5h-174q-29 0 -49 -20.5t-20 -48.5v-165q0 -29 20 -49t49 -20h174q29 0 49 20t20 49zM1536 1211v-1142q0 -81 -58 -139t-139 -58h-1142q-81 0 -139 58t-58 139v1142q0 81 58 139 t139 58h1142q81 0 139 -58t58 -139z" />
-<glyph unicode="&#xf16e;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM698 640q0 88 -62 150t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150zM1262 640q0 88 -62 150 t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150z" />
-<glyph unicode="&#xf170;" d="M768 914l201 -306h-402zM1133 384h94l-459 691l-459 -691h94l104 160h522zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf171;" horiz-adv-x="1408" d="M815 677q8 -63 -50.5 -101t-111.5 -6q-39 17 -53.5 58t-0.5 82t52 58q36 18 72.5 12t64 -35.5t27.5 -67.5zM926 698q-14 107 -113 164t-197 13q-63 -28 -100.5 -88.5t-34.5 -129.5q4 -91 77.5 -155t165.5 -56q91 8 152 84t50 168zM1165 1240q-20 27 -56 44.5t-58 22 t-71 12.5q-291 47 -566 -2q-43 -7 -66 -12t-55 -22t-50 -43q30 -28 76 -45.5t73.5 -22t87.5 -11.5q228 -29 448 -1q63 8 89.5 12t72.5 21.5t75 46.5zM1222 205q-8 -26 -15.5 -76.5t-14 -84t-28.5 -70t-58 -56.5q-86 -48 -189.5 -71.5t-202 -22t-201.5 18.5q-46 8 -81.5 18 t-76.5 27t-73 43.5t-52 61.5q-25 96 -57 292l6 16l18 9q223 -148 506.5 -148t507.5 148q21 -6 24 -23t-5 -45t-8 -37zM1403 1166q-26 -167 -111 -655q-5 -30 -27 -56t-43.5 -40t-54.5 -31q-252 -126 -610 -88q-248 27 -394 139q-15 12 -25.5 26.5t-17 35t-9 34t-6 39.5 t-5.5 35q-9 50 -26.5 150t-28 161.5t-23.5 147.5t-22 158q3 26 17.5 48.5t31.5 37.5t45 30t46 22.5t48 18.5q125 46 313 64q379 37 676 -50q155 -46 215 -122q16 -20 16.5 -51t-5.5 -54z" />
-<glyph unicode="&#xf172;" d="M848 666q0 43 -41 66t-77 1q-43 -20 -42.5 -72.5t43.5 -70.5q39 -23 81 4t36 72zM928 682q8 -66 -36 -121t-110 -61t-119 40t-56 113q-2 49 25.5 93t72.5 64q70 31 141.5 -10t81.5 -118zM1100 1073q-20 -21 -53.5 -34t-53 -16t-63.5 -8q-155 -20 -324 0q-44 6 -63 9.5 t-52.5 16t-54.5 32.5q13 19 36 31t40 15.5t47 8.5q198 35 408 1q33 -5 51 -8.5t43 -16t39 -31.5zM1142 327q0 7 5.5 26.5t3 32t-17.5 16.5q-161 -106 -365 -106t-366 106l-12 -6l-5 -12q26 -154 41 -210q47 -81 204 -108q249 -46 428 53q34 19 49 51.5t22.5 85.5t12.5 71z M1272 1020q9 53 -8 75q-43 55 -155 88q-216 63 -487 36q-132 -12 -226 -46q-38 -15 -59.5 -25t-47 -34t-29.5 -54q8 -68 19 -138t29 -171t24 -137q1 -5 5 -31t7 -36t12 -27t22 -28q105 -80 284 -100q259 -28 440 63q24 13 39.5 23t31 29t19.5 40q48 267 80 473zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf173;" horiz-adv-x="1024" d="M944 207l80 -237q-23 -35 -111 -66t-177 -32q-104 -2 -190.5 26t-142.5 74t-95 106t-55.5 120t-16.5 118v544h-168v215q72 26 129 69.5t91 90t58 102t34 99t15 88.5q1 5 4.5 8.5t7.5 3.5h244v-424h333v-252h-334v-518q0 -30 6.5 -56t22.5 -52.5t49.5 -41.5t81.5 -14 q78 2 134 29z" />
-<glyph unicode="&#xf174;" d="M1136 75l-62 183q-44 -22 -103 -22q-36 -1 -62 10.5t-38.5 31.5t-17.5 40.5t-5 43.5v398h257v194h-256v326h-188q-8 0 -9 -10q-5 -44 -17.5 -87t-39 -95t-77 -95t-118.5 -68v-165h130v-418q0 -57 21.5 -115t65 -111t121 -85.5t176.5 -30.5q69 1 136.5 25t85.5 50z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf175;" horiz-adv-x="768" d="M765 237q8 -19 -5 -35l-350 -384q-10 -10 -23 -10q-14 0 -24 10l-355 384q-13 16 -5 35q9 19 29 19h224v1248q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1248h224q21 0 29 -19z" />
-<glyph unicode="&#xf176;" horiz-adv-x="768" d="M765 1043q-9 -19 -29 -19h-224v-1248q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1248h-224q-21 0 -29 19t5 35l350 384q10 10 23 10q14 0 24 -10l355 -384q13 -16 5 -35z" />
-<glyph unicode="&#xf177;" horiz-adv-x="1792" d="M1792 736v-192q0 -14 -9 -23t-23 -9h-1248v-224q0 -21 -19 -29t-35 5l-384 350q-10 10 -10 23q0 14 10 24l384 354q16 14 35 6q19 -9 19 -29v-224h1248q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf178;" horiz-adv-x="1792" d="M1728 643q0 -14 -10 -24l-384 -354q-16 -14 -35 -6q-19 9 -19 29v224h-1248q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h1248v224q0 21 19 29t35 -5l384 -350q10 -10 10 -23z" />
-<glyph unicode="&#xf179;" horiz-adv-x="1408" d="M1393 321q-39 -125 -123 -250q-129 -196 -257 -196q-49 0 -140 32q-86 32 -151 32q-61 0 -142 -33q-81 -34 -132 -34q-152 0 -301 259q-147 261 -147 503q0 228 113 374q112 144 284 144q72 0 177 -30q104 -30 138 -30q45 0 143 34q102 34 173 34q119 0 213 -65 q52 -36 104 -100q-79 -67 -114 -118q-65 -94 -65 -207q0 -124 69 -223t158 -126zM1017 1494q0 -61 -29 -136q-30 -75 -93 -138q-54 -54 -108 -72q-37 -11 -104 -17q3 149 78 257q74 107 250 148q1 -3 2.5 -11t2.5 -11q0 -4 0.5 -10t0.5 -10z" />
-<glyph unicode="&#xf17a;" horiz-adv-x="1664" d="M682 530v-651l-682 94v557h682zM682 1273v-659h-682v565zM1664 530v-786l-907 125v661h907zM1664 1408v-794h-907v669z" />
-<glyph unicode="&#xf17b;" horiz-adv-x="1408" d="M493 1053q16 0 27.5 11.5t11.5 27.5t-11.5 27.5t-27.5 11.5t-27 -11.5t-11 -27.5t11 -27.5t27 -11.5zM915 1053q16 0 27 11.5t11 27.5t-11 27.5t-27 11.5t-27.5 -11.5t-11.5 -27.5t11.5 -27.5t27.5 -11.5zM103 869q42 0 72 -30t30 -72v-430q0 -43 -29.5 -73t-72.5 -30 t-73 30t-30 73v430q0 42 30 72t73 30zM1163 850v-666q0 -46 -32 -78t-77 -32h-75v-227q0 -43 -30 -73t-73 -30t-73 30t-30 73v227h-138v-227q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73l-1 227h-74q-46 0 -78 32t-32 78v666h918zM931 1255q107 -55 171 -153.5t64 -215.5 h-925q0 117 64 215.5t172 153.5l-71 131q-7 13 5 20q13 6 20 -6l72 -132q95 42 201 42t201 -42l72 132q7 12 20 6q12 -7 5 -20zM1408 767v-430q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73v430q0 43 30 72.5t72 29.5q43 0 73 -29.5t30 -72.5z" />
-<glyph unicode="&#xf17c;" d="M663 1125q-11 -1 -15.5 -10.5t-8.5 -9.5q-5 -1 -5 5q0 12 19 15h10zM750 1111q-4 -1 -11.5 6.5t-17.5 4.5q24 11 32 -2q3 -6 -3 -9zM399 684q-4 1 -6 -3t-4.5 -12.5t-5.5 -13.5t-10 -13q-7 -10 -1 -12q4 -1 12.5 7t12.5 18q1 3 2 7t2 6t1.5 4.5t0.5 4v3t-1 2.5t-3 2z M1254 325q0 18 -55 42q4 15 7.5 27.5t5 26t3 21.5t0.5 22.5t-1 19.5t-3.5 22t-4 20.5t-5 25t-5.5 26.5q-10 48 -47 103t-72 75q24 -20 57 -83q87 -162 54 -278q-11 -40 -50 -42q-31 -4 -38.5 18.5t-8 83.5t-11.5 107q-9 39 -19.5 69t-19.5 45.5t-15.5 24.5t-13 15t-7.5 7 q-14 62 -31 103t-29.5 56t-23.5 33t-15 40q-4 21 6 53.5t4.5 49.5t-44.5 25q-15 3 -44.5 18t-35.5 16q-8 1 -11 26t8 51t36 27q37 3 51 -30t4 -58q-11 -19 -2 -26.5t30 -0.5q13 4 13 36v37q-5 30 -13.5 50t-21 30.5t-23.5 15t-27 7.5q-107 -8 -89 -134q0 -15 -1 -15 q-9 9 -29.5 10.5t-33 -0.5t-15.5 5q1 57 -16 90t-45 34q-27 1 -41.5 -27.5t-16.5 -59.5q-1 -15 3.5 -37t13 -37.5t15.5 -13.5q10 3 16 14q4 9 -7 8q-7 0 -15.5 14.5t-9.5 33.5q-1 22 9 37t34 14q17 0 27 -21t9.5 -39t-1.5 -22q-22 -15 -31 -29q-8 -12 -27.5 -23.5 t-20.5 -12.5q-13 -14 -15.5 -27t7.5 -18q14 -8 25 -19.5t16 -19t18.5 -13t35.5 -6.5q47 -2 102 15q2 1 23 7t34.5 10.5t29.5 13t21 17.5q9 14 20 8q5 -3 6.5 -8.5t-3 -12t-16.5 -9.5q-20 -6 -56.5 -21.5t-45.5 -19.5q-44 -19 -70 -23q-25 -5 -79 2q-10 2 -9 -2t17 -19 q25 -23 67 -22q17 1 36 7t36 14t33.5 17.5t30 17t24.5 12t17.5 2.5t8.5 -11q0 -2 -1 -4.5t-4 -5t-6 -4.5t-8.5 -5t-9 -4.5t-10 -5t-9.5 -4.5q-28 -14 -67.5 -44t-66.5 -43t-49 -1q-21 11 -63 73q-22 31 -25 22q-1 -3 -1 -10q0 -25 -15 -56.5t-29.5 -55.5t-21 -58t11.5 -63 q-23 -6 -62.5 -90t-47.5 -141q-2 -18 -1.5 -69t-5.5 -59q-8 -24 -29 -3q-32 31 -36 94q-2 28 4 56q4 19 -1 18l-4 -5q-36 -65 10 -166q5 -12 25 -28t24 -20q20 -23 104 -90.5t93 -76.5q16 -15 17.5 -38t-14 -43t-45.5 -23q8 -15 29 -44.5t28 -54t7 -70.5q46 24 7 92 q-4 8 -10.5 16t-9.5 12t-2 6q3 5 13 9.5t20 -2.5q46 -52 166 -36q133 15 177 87q23 38 34 30q12 -6 10 -52q-1 -25 -23 -92q-9 -23 -6 -37.5t24 -15.5q3 19 14.5 77t13.5 90q2 21 -6.5 73.5t-7.5 97t23 70.5q15 18 51 18q1 37 34.5 53t72.5 10.5t60 -22.5zM626 1152 q3 17 -2.5 30t-11.5 15q-9 2 -9 -7q2 -5 5 -6q10 0 7 -15q-3 -20 8 -20q3 0 3 3zM1045 955q-2 8 -6.5 11.5t-13 5t-14.5 5.5q-5 3 -9.5 8t-7 8t-5.5 6.5t-4 4t-4 -1.5q-14 -16 7 -43.5t39 -31.5q9 -1 14.5 8t3.5 20zM867 1168q0 11 -5 19.5t-11 12.5t-9 3q-14 -1 -7 -7l4 -2 q14 -4 18 -31q0 -3 8 2zM921 1401q0 2 -2.5 5t-9 7t-9.5 6q-15 15 -24 15q-9 -1 -11.5 -7.5t-1 -13t-0.5 -12.5q-1 -4 -6 -10.5t-6 -9t3 -8.5q4 -3 8 0t11 9t15 9q1 1 9 1t15 2t9 7zM1486 60q20 -12 31 -24.5t12 -24t-2.5 -22.5t-15.5 -22t-23.5 -19.5t-30 -18.5 t-31.5 -16.5t-32 -15.5t-27 -13q-38 -19 -85.5 -56t-75.5 -64q-17 -16 -68 -19.5t-89 14.5q-18 9 -29.5 23.5t-16.5 25.5t-22 19.5t-47 9.5q-44 1 -130 1q-19 0 -57 -1.5t-58 -2.5q-44 -1 -79.5 -15t-53.5 -30t-43.5 -28.5t-53.5 -11.5q-29 1 -111 31t-146 43q-19 4 -51 9.5 t-50 9t-39.5 9.5t-33.5 14.5t-17 19.5q-10 23 7 66.5t18 54.5q1 16 -4 40t-10 42.5t-4.5 36.5t10.5 27q14 12 57 14t60 12q30 18 42 35t12 51q21 -73 -32 -106q-32 -20 -83 -15q-34 3 -43 -10q-13 -15 5 -57q2 -6 8 -18t8.5 -18t4.5 -17t1 -22q0 -15 -17 -49t-14 -48 q3 -17 37 -26q20 -6 84.5 -18.5t99.5 -20.5q24 -6 74 -22t82.5 -23t55.5 -4q43 6 64.5 28t23 48t-7.5 58.5t-19 52t-20 36.5q-121 190 -169 242q-68 74 -113 40q-11 -9 -15 15q-3 16 -2 38q1 29 10 52t24 47t22 42q8 21 26.5 72t29.5 78t30 61t39 54q110 143 124 195 q-12 112 -16 310q-2 90 24 151.5t106 104.5q39 21 104 21q53 1 106 -13.5t89 -41.5q57 -42 91.5 -121.5t29.5 -147.5q-5 -95 30 -214q34 -113 133 -218q55 -59 99.5 -163t59.5 -191q8 -49 5 -84.5t-12 -55.5t-20 -22q-10 -2 -23.5 -19t-27 -35.5t-40.5 -33.5t-61 -14 q-18 1 -31.5 5t-22.5 13.5t-13.5 15.5t-11.5 20.5t-9 19.5q-22 37 -41 30t-28 -49t7 -97q20 -70 1 -195q-10 -65 18 -100.5t73 -33t85 35.5q59 49 89.5 66.5t103.5 42.5q53 18 77 36.5t18.5 34.5t-25 28.5t-51.5 23.5q-33 11 -49.5 48t-15 72.5t15.5 47.5q1 -31 8 -56.5 t14.5 -40.5t20.5 -28.5t21 -19t21.5 -13t16.5 -9.5z" />
-<glyph unicode="&#xf17d;" d="M1024 36q-42 241 -140 498h-2l-2 -1q-16 -6 -43 -16.5t-101 -49t-137 -82t-131 -114.5t-103 -148l-15 11q184 -150 418 -150q132 0 256 52zM839 643q-21 49 -53 111q-311 -93 -673 -93q-1 -7 -1 -21q0 -124 44 -236.5t124 -201.5q50 89 123.5 166.5t142.5 124.5t130.5 81 t99.5 48l37 13q4 1 13 3.5t13 4.5zM732 855q-120 213 -244 378q-138 -65 -234 -186t-128 -272q302 0 606 80zM1416 536q-210 60 -409 29q87 -239 128 -469q111 75 185 189.5t96 250.5zM611 1277q-1 0 -2 -1q1 1 2 1zM1201 1132q-185 164 -433 164q-76 0 -155 -19 q131 -170 246 -382q69 26 130 60.5t96.5 61.5t65.5 57t37.5 40.5zM1424 647q-3 232 -149 410l-1 -1q-9 -12 -19 -24.5t-43.5 -44.5t-71 -60.5t-100 -65t-131.5 -64.5q25 -53 44 -95q2 -6 6.5 -17.5t7.5 -16.5q36 5 74.5 7t73.5 2t69 -1.5t64 -4t56.5 -5.5t48 -6.5t36.5 -6 t25 -4.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf17e;" d="M1173 473q0 50 -19.5 91.5t-48.5 68.5t-73 49t-82.5 34t-87.5 23l-104 24q-30 7 -44 10.5t-35 11.5t-30 16t-16.5 21t-7.5 30q0 77 144 77q43 0 77 -12t54 -28.5t38 -33.5t40 -29t48 -12q47 0 75.5 32t28.5 77q0 55 -56 99.5t-142 67.5t-182 23q-68 0 -132 -15.5 t-119.5 -47t-89 -87t-33.5 -128.5q0 -61 19 -106.5t56 -75.5t80 -48.5t103 -32.5l146 -36q90 -22 112 -36q32 -20 32 -60q0 -39 -40 -64.5t-105 -25.5q-51 0 -91.5 16t-65 38.5t-45.5 45t-46 38.5t-54 16q-50 0 -75.5 -30t-25.5 -75q0 -92 122 -157.5t291 -65.5 q73 0 140 18.5t122.5 53.5t88.5 93.5t33 131.5zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5q-130 0 -234 80q-77 -16 -150 -16q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5q0 73 16 150q-80 104 -80 234q0 159 112.5 271.5t271.5 112.5q130 0 234 -80 q77 16 150 16q143 0 273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -73 -16 -150q80 -104 80 -234z" />
-<glyph unicode="&#xf180;" horiz-adv-x="1280" d="M1000 1102l37 194q5 23 -9 40t-35 17h-712q-23 0 -38.5 -17t-15.5 -37v-1101q0 -7 6 -1l291 352q23 26 38 33.5t48 7.5h239q22 0 37 14.5t18 29.5q24 130 37 191q4 21 -11.5 40t-36.5 19h-294q-29 0 -48 19t-19 48v42q0 29 19 47.5t48 18.5h346q18 0 35 13.5t20 29.5z M1227 1324q-15 -73 -53.5 -266.5t-69.5 -350t-35 -173.5q-6 -22 -9 -32.5t-14 -32.5t-24.5 -33t-38.5 -21t-58 -10h-271q-13 0 -22 -10q-8 -9 -426 -494q-22 -25 -58.5 -28.5t-48.5 5.5q-55 22 -55 98v1410q0 55 38 102.5t120 47.5h888q95 0 127 -53t10 -159zM1227 1324 l-158 -790q4 17 35 173.5t69.5 350t53.5 266.5z" />
-<glyph unicode="&#xf181;" d="M704 192v1024q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-1024q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1376 576v640q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-640q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408 q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf182;" horiz-adv-x="1280" d="M1280 480q0 -40 -28 -68t-68 -28q-51 0 -80 43l-227 341h-45v-132l247 -411q9 -15 9 -33q0 -26 -19 -45t-45 -19h-192v-272q0 -46 -33 -79t-79 -33h-160q-46 0 -79 33t-33 79v272h-192q-26 0 -45 19t-19 45q0 18 9 33l247 411v132h-45l-227 -341q-29 -43 -80 -43 q-40 0 -68 28t-28 68q0 29 16 53l256 384q73 107 176 107h384q103 0 176 -107l256 -384q16 -24 16 -53zM864 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
-<glyph unicode="&#xf183;" horiz-adv-x="1024" d="M1024 832v-416q0 -40 -28 -68t-68 -28t-68 28t-28 68v352h-64v-912q0 -46 -33 -79t-79 -33t-79 33t-33 79v464h-64v-464q0 -46 -33 -79t-79 -33t-79 33t-33 79v912h-64v-352q0 -40 -28 -68t-68 -28t-68 28t-28 68v416q0 80 56 136t136 56h640q80 0 136 -56t56 -136z M736 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
-<glyph unicode="&#xf184;" d="M773 234l350 473q16 22 24.5 59t-6 85t-61.5 79q-40 26 -83 25.5t-73.5 -17.5t-54.5 -45q-36 -40 -96 -40q-59 0 -95 40q-24 28 -54.5 45t-73.5 17.5t-84 -25.5q-46 -31 -60.5 -79t-6 -85t24.5 -59zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf185;" horiz-adv-x="1792" d="M1472 640q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5zM1748 363q-4 -15 -20 -20l-292 -96v-306q0 -16 -13 -26q-15 -10 -29 -4 l-292 94l-180 -248q-10 -13 -26 -13t-26 13l-180 248l-292 -94q-14 -6 -29 4q-13 10 -13 26v306l-292 96q-16 5 -20 20q-5 17 4 29l180 248l-180 248q-9 13 -4 29q4 15 20 20l292 96v306q0 16 13 26q15 10 29 4l292 -94l180 248q9 12 26 12t26 -12l180 -248l292 94 q14 6 29 -4q13 -10 13 -26v-306l292 -96q16 -5 20 -20q5 -16 -4 -29l-180 -248l180 -248q9 -12 4 -29z" />
-<glyph unicode="&#xf186;" d="M1262 233q-54 -9 -110 -9q-182 0 -337 90t-245 245t-90 337q0 192 104 357q-201 -60 -328.5 -229t-127.5 -384q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51q144 0 273.5 61.5t220.5 171.5zM1465 318q-94 -203 -283.5 -324.5t-413.5 -121.5q-156 0 -298 61 t-245 164t-164 245t-61 298q0 153 57.5 292.5t156 241.5t235.5 164.5t290 68.5q44 2 61 -39q18 -41 -15 -72q-86 -78 -131.5 -181.5t-45.5 -218.5q0 -148 73 -273t198 -198t273 -73q118 0 228 51q41 18 72 -13q14 -14 17.5 -34t-4.5 -38z" />
-<glyph unicode="&#xf187;" horiz-adv-x="1792" d="M1088 704q0 26 -19 45t-45 19h-256q-26 0 -45 -19t-19 -45t19 -45t45 -19h256q26 0 45 19t19 45zM1664 896v-960q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v960q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1728 1344v-256q0 -26 -19 -45t-45 -19h-1536 q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1536q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf188;" horiz-adv-x="1664" d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207 q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19 t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" />
-<glyph unicode="&#xf189;" horiz-adv-x="1920" d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-78 -100 -90 -131q-17 -41 14 -81q17 -21 81 -82h1l1 -1l1 -1l2 -2q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58 t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6 q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q17 19 38 30q53 26 239 24 q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2 q39 5 64 -2.5t31 -16.5z" />
-<glyph unicode="&#xf18a;" horiz-adv-x="1792" d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12 q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422 q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178 q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" />
-<glyph unicode="&#xf18b;" d="M1133 -34q-171 -94 -368 -94q-196 0 -367 94q138 87 235.5 211t131.5 268q35 -144 132.5 -268t235.5 -211zM638 1394v-485q0 -252 -126.5 -459.5t-330.5 -306.5q-181 215 -181 495q0 187 83.5 349.5t229.5 269.5t325 137zM1536 638q0 -280 -181 -495 q-204 99 -330.5 306.5t-126.5 459.5v485q179 -30 325 -137t229.5 -269.5t83.5 -349.5z" />
-<glyph unicode="&#xf18c;" horiz-adv-x="1408" d="M1402 433q-32 -80 -76 -138t-91 -88.5t-99 -46.5t-101.5 -14.5t-96.5 8.5t-86.5 22t-69.5 27.5t-46 22.5l-17 10q-113 -228 -289.5 -359.5t-384.5 -132.5q-19 0 -32 13t-13 32t13 31.5t32 12.5q173 1 322.5 107.5t251.5 294.5q-36 -14 -72 -23t-83 -13t-91 2.5t-93 28.5 t-92 59t-84.5 100t-74.5 146q114 47 214 57t167.5 -7.5t124.5 -56.5t88.5 -77t56.5 -82q53 131 79 291q-7 -1 -18 -2.5t-46.5 -2.5t-69.5 0.5t-81.5 10t-88.5 23t-84 42.5t-75 65t-54.5 94.5t-28.5 127.5q70 28 133.5 36.5t112.5 -1t92 -30t73.5 -50t56 -61t42 -63t27.5 -56 t16 -39.5l4 -16q12 122 12 195q-8 6 -21.5 16t-49 44.5t-63.5 71.5t-54 93t-33 112.5t12 127t70 138.5q73 -25 127.5 -61.5t84.5 -76.5t48 -85t20.5 -89t-0.5 -85.5t-13 -76.5t-19 -62t-17 -42l-7 -15q1 -5 1 -50.5t-1 -71.5q3 7 10 18.5t30.5 43t50.5 58t71 55.5t91.5 44.5 t112 14.5t132.5 -24q-2 -78 -21.5 -141.5t-50 -104.5t-69.5 -71.5t-81.5 -45.5t-84.5 -24t-80 -9.5t-67.5 1t-46.5 4.5l-17 3q-23 -147 -73 -283q6 7 18 18.5t49.5 41t77.5 52.5t99.5 42t117.5 20t129 -23.5t137 -77.5z" />
-<glyph unicode="&#xf18d;" horiz-adv-x="1280" d="M1259 283v-66q0 -85 -57.5 -144.5t-138.5 -59.5h-57l-260 -269v269h-529q-81 0 -138.5 59.5t-57.5 144.5v66h1238zM1259 609v-255h-1238v255h1238zM1259 937v-255h-1238v255h1238zM1259 1077v-67h-1238v67q0 84 57.5 143.5t138.5 59.5h846q81 0 138.5 -59.5t57.5 -143.5z " />
-<glyph unicode="&#xf18e;" d="M1152 640q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf190;" d="M1152 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-192q0 -14 -9 -23t-23 -9q-12 0 -24 10l-319 319q-9 9 -9 23t9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h352q13 0 22.5 -9.5t9.5 -22.5zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf191;" d="M1024 960v-640q0 -26 -19 -45t-45 -19q-20 0 -37 12l-448 320q-27 19 -27 52t27 52l448 320q17 12 37 12q26 0 45 -19t19 -45zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf192;" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5 t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf193;" horiz-adv-x="1664" d="M1023 349l102 -204q-58 -179 -210 -290t-339 -111q-156 0 -288.5 77.5t-210 210t-77.5 288.5q0 181 104.5 330t274.5 211l17 -131q-122 -54 -195 -165.5t-73 -244.5q0 -185 131.5 -316.5t316.5 -131.5q126 0 232.5 65t165 175.5t49.5 236.5zM1571 249l58 -114l-256 -128 q-13 -7 -29 -7q-40 0 -57 35l-239 477h-472q-24 0 -42.5 16.5t-21.5 40.5l-96 779q-2 16 6 42q14 51 57 82.5t97 31.5q66 0 113 -47t47 -113q0 -69 -52 -117.5t-120 -41.5l37 -289h423v-128h-407l16 -128h455q40 0 57 -35l228 -455z" />
-<glyph unicode="&#xf194;" d="M1254 899q16 85 -21 132q-52 65 -187 45q-17 -3 -41 -12.5t-57.5 -30.5t-64.5 -48.5t-59.5 -70t-44.5 -91.5q80 7 113.5 -16t26.5 -99q-5 -52 -52 -143q-43 -78 -71 -99q-44 -32 -87 14q-23 24 -37.5 64.5t-19 73t-10 84t-8.5 71.5q-23 129 -34 164q-12 37 -35.5 69 t-50.5 40q-57 16 -127 -25q-54 -32 -136.5 -106t-122.5 -102v-7q16 -8 25.5 -26t21.5 -20q21 -3 54.5 8.5t58 10.5t41.5 -30q11 -18 18.5 -38.5t15 -48t12.5 -40.5q17 -46 53 -187q36 -146 57 -197q42 -99 103 -125q43 -12 85 -1.5t76 31.5q131 77 250 237 q104 139 172.5 292.5t82.5 226.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf195;" horiz-adv-x="1152" d="M1152 704q0 -191 -94.5 -353t-256.5 -256.5t-353 -94.5h-160q-14 0 -23 9t-9 23v611l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v93l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v250q0 14 9 23t23 9h160 q14 0 23 -9t9 -23v-181l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-93l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-487q188 13 318 151t130 328q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf196;" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-352v-352q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v352h-352q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h352v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-352h352q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832 q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf197;" horiz-adv-x="2176" d="M620 416q-110 -64 -268 -64h-128v64h-64q-13 0 -22.5 23.5t-9.5 56.5q0 24 7 49q-58 2 -96.5 10.5t-38.5 20.5t38.5 20.5t96.5 10.5q-7 25 -7 49q0 33 9.5 56.5t22.5 23.5h64v64h128q158 0 268 -64h1113q42 -7 106.5 -18t80.5 -14q89 -15 150 -40.5t83.5 -47.5t22.5 -40 t-22.5 -40t-83.5 -47.5t-150 -40.5q-16 -3 -80.5 -14t-106.5 -18h-1113zM1739 668q53 -36 53 -92t-53 -92l81 -30q68 48 68 122t-68 122zM625 400h1015q-217 -38 -456 -80q-57 0 -113 -24t-83 -48l-28 -24l-288 -288q-26 -26 -70.5 -45t-89.5 -19h-96l-93 464h29 q157 0 273 64zM352 816h-29l93 464h96q46 0 90 -19t70 -45l288 -288q4 -4 11 -10.5t30.5 -23t48.5 -29t61.5 -23t72.5 -10.5l456 -80h-1015q-116 64 -273 64z" />
-<glyph unicode="&#xf198;" horiz-adv-x="1664" d="M1519 760q62 0 103.5 -40.5t41.5 -101.5q0 -97 -93 -130l-172 -59l56 -167q7 -21 7 -47q0 -59 -42 -102t-101 -43q-47 0 -85.5 27t-53.5 72l-55 165l-310 -106l55 -164q8 -24 8 -47q0 -59 -42 -102t-102 -43q-47 0 -85 27t-53 72l-55 163l-153 -53q-29 -9 -50 -9 q-61 0 -101.5 40t-40.5 101q0 47 27.5 85t71.5 53l156 53l-105 313l-156 -54q-26 -8 -48 -8q-60 0 -101 40.5t-41 100.5q0 47 27.5 85t71.5 53l157 53l-53 159q-8 24 -8 47q0 60 42 102.5t102 42.5q47 0 85 -27t53 -72l54 -160l310 105l-54 160q-8 24 -8 47q0 59 42.5 102 t101.5 43q47 0 85.5 -27.5t53.5 -71.5l53 -161l162 55q21 6 43 6q60 0 102.5 -39.5t42.5 -98.5q0 -45 -30 -81.5t-74 -51.5l-157 -54l105 -316l164 56q24 8 46 8zM725 498l310 105l-105 315l-310 -107z" />
-<glyph unicode="&#xf199;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM1280 352v436q-31 -35 -64 -55q-34 -22 -132.5 -85t-151.5 -99q-98 -69 -164 -69v0v0q-66 0 -164 69 q-46 32 -141.5 92.5t-142.5 92.5q-12 8 -33 27t-31 27v-436q0 -40 28 -68t68 -28h832q40 0 68 28t28 68zM1280 925q0 41 -27.5 70t-68.5 29h-832q-40 0 -68 -28t-28 -68q0 -37 30.5 -76.5t67.5 -64.5q47 -32 137.5 -89t129.5 -83q3 -2 17 -11.5t21 -14t21 -13t23.5 -13 t21.5 -9.5t22.5 -7.5t20.5 -2.5t20.5 2.5t22.5 7.5t21.5 9.5t23.5 13t21 13t21 14t17 11.5l267 174q35 23 66.5 62.5t31.5 73.5z" />
-<glyph unicode="&#xf19a;" horiz-adv-x="1792" d="M127 640q0 163 67 313l367 -1005q-196 95 -315 281t-119 411zM1415 679q0 -19 -2.5 -38.5t-10 -49.5t-11.5 -44t-17.5 -59t-17.5 -58l-76 -256l-278 826q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-75 1 -202 10q-12 1 -20.5 -5t-11.5 -15t-1.5 -18.5t9 -16.5 t19.5 -8l80 -8l120 -328l-168 -504l-280 832q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-7 0 -23 0.5t-26 0.5q105 160 274.5 253.5t367.5 93.5q147 0 280.5 -53t238.5 -149h-10q-55 0 -92 -40.5t-37 -95.5q0 -12 2 -24t4 -21.5t8 -23t9 -21t12 -22.5t12.5 -21 t14.5 -24t14 -23q63 -107 63 -212zM909 573l237 -647q1 -6 5 -11q-126 -44 -255 -44q-112 0 -217 32zM1570 1009q95 -174 95 -369q0 -209 -104 -385.5t-279 -278.5l235 678q59 169 59 276q0 42 -6 79zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286 t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 -215q173 0 331.5 68t273 182.5t182.5 273t68 331.5t-68 331.5t-182.5 273t-273 182.5t-331.5 68t-331.5 -68t-273 -182.5t-182.5 -273t-68 -331.5t68 -331.5t182.5 -273 t273 -182.5t331.5 -68z" />
-<glyph unicode="&#xf19b;" horiz-adv-x="1792" d="M1086 1536v-1536l-272 -128q-228 20 -414 102t-293 208.5t-107 272.5q0 140 100.5 263.5t275 205.5t391.5 108v-172q-217 -38 -356.5 -150t-139.5 -255q0 -152 154.5 -267t388.5 -145v1360zM1755 954l37 -390l-525 114l147 83q-119 70 -280 99v172q277 -33 481 -157z" />
-<glyph unicode="&#xf19c;" horiz-adv-x="2048" d="M960 1536l960 -384v-128h-128q0 -26 -20.5 -45t-48.5 -19h-1526q-28 0 -48.5 19t-20.5 45h-128v128zM256 896h256v-768h128v768h256v-768h128v768h256v-768h128v768h256v-768h59q28 0 48.5 -19t20.5 -45v-64h-1664v64q0 26 20.5 45t48.5 19h59v768zM1851 -64 q28 0 48.5 -19t20.5 -45v-128h-1920v128q0 26 20.5 45t48.5 19h1782z" />
-<glyph unicode="&#xf19d;" horiz-adv-x="2304" d="M1774 700l18 -316q4 -69 -82 -128t-235 -93.5t-323 -34.5t-323 34.5t-235 93.5t-82 128l18 316l574 -181q22 -7 48 -7t48 7zM2304 1024q0 -23 -22 -31l-1120 -352q-4 -1 -10 -1t-10 1l-652 206q-43 -34 -71 -111.5t-34 -178.5q63 -36 63 -109q0 -69 -58 -107l58 -433 q2 -14 -8 -25q-9 -11 -24 -11h-192q-15 0 -24 11q-10 11 -8 25l58 433q-58 38 -58 107q0 73 65 111q11 207 98 330l-333 104q-22 8 -22 31t22 31l1120 352q4 1 10 1t10 -1l1120 -352q22 -8 22 -31z" />
-<glyph unicode="&#xf19e;" d="M859 579l13 -707q-62 11 -105 11q-41 0 -105 -11l13 707q-40 69 -168.5 295.5t-216.5 374.5t-181 287q58 -15 108 -15q43 0 111 15q63 -111 133.5 -229.5t167 -276.5t138.5 -227q37 61 109.5 177.5t117.5 190t105 176t107 189.5q54 -14 107 -14q56 0 114 14v0 q-28 -39 -60 -88.5t-49.5 -78.5t-56.5 -96t-49 -84q-146 -248 -353 -610z" />
-<glyph unicode="&#xf1a0;" horiz-adv-x="1280" d="M981 197q0 25 -7 49t-14.5 42t-27 41.5t-29.5 35t-38.5 34.5t-36.5 29t-41.5 30t-36.5 26q-16 2 -49 2q-53 0 -104.5 -7t-107 -25t-97 -46t-68.5 -74.5t-27 -105.5q0 -56 23.5 -102t61 -75.5t87 -50t100 -29t101.5 -8.5q58 0 111.5 13t99 39t73 73t27.5 109zM864 1055 q0 59 -17 125.5t-48 129t-84 103.5t-117 41q-42 0 -82.5 -19.5t-66.5 -52.5q-46 -59 -46 -160q0 -46 10 -97.5t31.5 -103t52 -92.5t75 -67t96.5 -26q37 0 77.5 16.5t65.5 43.5q53 56 53 159zM752 1536h417l-137 -88h-132q75 -63 113 -133t38 -160q0 -72 -24.5 -129.5 t-59.5 -93t-69.5 -65t-59 -61.5t-24.5 -66q0 -36 32 -70.5t77 -68t90.5 -73.5t77.5 -104t32 -142q0 -91 -49 -173q-71 -122 -209.5 -179.5t-298.5 -57.5q-132 0 -246.5 41.5t-172.5 137.5q-36 59 -36 131q0 81 44.5 150t118.5 115q131 82 404 100q-32 41 -47.5 73.5 t-15.5 73.5q0 40 21 85q-46 -4 -68 -4q-148 0 -249.5 96.5t-101.5 244.5q0 82 36 159t99 131q76 66 182 98t218 32z" />
-<glyph unicode="&#xf1a1;" horiz-adv-x="1984" d="M831 572q0 -56 -40.5 -96t-96.5 -40q-57 0 -98 40t-41 96q0 57 41.5 98t97.5 41t96.5 -41t40.5 -98zM1292 711q56 0 96.5 -41t40.5 -98q0 -56 -40.5 -96t-96.5 -40q-57 0 -98 40t-41 96q0 57 41.5 98t97.5 41zM1984 722q0 -62 -31 -114t-83 -82q5 -33 5 -61 q0 -121 -68.5 -230.5t-197.5 -193.5q-125 -82 -285.5 -125.5t-335.5 -43.5q-176 0 -336.5 43.5t-284.5 125.5q-129 84 -197.5 193t-68.5 231q0 29 5 66q-48 31 -77 81.5t-29 109.5q0 94 66 160t160 66q83 0 148 -55q248 158 592 164l134 423q4 14 17.5 21.5t28.5 4.5 l347 -82q22 50 68.5 81t102.5 31q77 0 131.5 -54.5t54.5 -131.5t-54.5 -132t-131.5 -55q-76 0 -130.5 54t-55.5 131l-315 74l-116 -366q327 -14 560 -166q64 58 151 58q94 0 160 -66t66 -160zM1664 1459q-45 0 -77 -32t-32 -77t32 -77t77 -32t77 32t32 77t-32 77t-77 32z M77 722q0 -67 51 -111q49 131 180 235q-36 25 -82 25q-62 0 -105.5 -43.5t-43.5 -105.5zM1567 105q112 73 171.5 166t59.5 194t-59.5 193.5t-171.5 165.5q-116 75 -265.5 115.5t-313.5 40.5t-313.5 -40.5t-265.5 -115.5q-112 -73 -171.5 -165.5t-59.5 -193.5t59.5 -194 t171.5 -166q116 -75 265.5 -115.5t313.5 -40.5t313.5 40.5t265.5 115.5zM1850 605q57 46 57 117q0 62 -43.5 105.5t-105.5 43.5q-49 0 -86 -28q131 -105 178 -238zM1258 237q11 11 27 11t27 -11t11 -27.5t-11 -27.5q-99 -99 -319 -99h-2q-220 0 -319 99q-11 11 -11 27.5 t11 27.5t27 11t27 -11q77 -77 265 -77h2q188 0 265 77z" />
-<glyph unicode="&#xf1a2;" d="M950 393q7 7 17.5 7t17.5 -7t7 -18t-7 -18q-65 -64 -208 -64h-1h-1q-143 0 -207 64q-8 7 -8 18t8 18q7 7 17.5 7t17.5 -7q49 -51 172 -51h1h1q122 0 173 51zM671 613q0 -37 -26 -64t-63 -27t-63 27t-26 64t26 63t63 26t63 -26t26 -63zM1214 1049q-29 0 -50 21t-21 50 q0 30 21 51t50 21q30 0 51 -21t21 -51q0 -29 -21 -50t-51 -21zM1216 1408q132 0 226 -94t94 -227v-894q0 -133 -94 -227t-226 -94h-896q-132 0 -226 94t-94 227v894q0 133 94 227t226 94h896zM1321 596q35 14 57 45.5t22 70.5q0 51 -36 87.5t-87 36.5q-60 0 -98 -48 q-151 107 -375 115l83 265l206 -49q1 -50 36.5 -85t84.5 -35q50 0 86 35.5t36 85.5t-36 86t-86 36q-36 0 -66 -20.5t-45 -53.5l-227 54q-9 2 -17.5 -2.5t-11.5 -14.5l-95 -302q-224 -4 -381 -113q-36 43 -93 43q-51 0 -87 -36.5t-36 -87.5q0 -37 19.5 -67.5t52.5 -45.5 q-7 -25 -7 -54q0 -98 74 -181.5t201.5 -132t278.5 -48.5q150 0 277.5 48.5t201.5 132t74 181.5q0 27 -6 54zM971 702q37 0 63 -26t26 -63t-26 -64t-63 -27t-63 27t-26 64t26 63t63 26z" />
-<glyph unicode="&#xf1a3;" d="M866 697l90 27v62q0 79 -58 135t-138 56t-138 -55.5t-58 -134.5v-283q0 -20 -14 -33.5t-33 -13.5t-32.5 13.5t-13.5 33.5v120h-151v-122q0 -82 57.5 -139t139.5 -57q81 0 138.5 56.5t57.5 136.5v280q0 19 13.5 33t33.5 14q19 0 32.5 -14t13.5 -33v-54zM1199 502v122h-150 v-126q0 -20 -13.5 -33.5t-33.5 -13.5q-19 0 -32.5 14t-13.5 33v123l-90 -26l-60 28v-123q0 -80 58 -137t139 -57t138.5 57t57.5 139zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103 t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf1a4;" horiz-adv-x="1920" d="M1062 824v118q0 42 -30 72t-72 30t-72 -30t-30 -72v-612q0 -175 -126 -299t-303 -124q-178 0 -303.5 125.5t-125.5 303.5v266h328v-262q0 -43 30 -72.5t72 -29.5t72 29.5t30 72.5v620q0 171 126.5 292t301.5 121q176 0 302 -122t126 -294v-136l-195 -58zM1592 602h328 v-266q0 -178 -125.5 -303.5t-303.5 -125.5q-177 0 -303 124.5t-126 300.5v268l131 -61l195 58v-270q0 -42 30 -71.5t72 -29.5t72 29.5t30 71.5v275z" />
-<glyph unicode="&#xf1a5;" d="M1472 160v480h-704v704h-480q-93 0 -158.5 -65.5t-65.5 -158.5v-480h704v-704h480q93 0 158.5 65.5t65.5 158.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" />
-<glyph unicode="&#xf1a6;" horiz-adv-x="2048" d="M328 1254h204v-983h-532v697h328v286zM328 435v369h-123v-369h123zM614 968v-697h205v697h-205zM614 1254v-204h205v204h-205zM901 968h533v-942h-533v163h328v82h-328v697zM1229 435v369h-123v-369h123zM1516 968h532v-942h-532v163h327v82h-327v697zM1843 435v369h-123 v-369h123z" />
-<glyph unicode="&#xf1a7;" d="M1046 516q0 -64 -38 -109t-91 -45q-43 0 -70 15v277q28 17 70 17q53 0 91 -45.5t38 -109.5zM703 944q0 -64 -38 -109.5t-91 -45.5q-43 0 -70 15v277q28 17 70 17q53 0 91 -45t38 -109zM1265 513q0 134 -88 229t-213 95q-20 0 -39 -3q-23 -78 -78 -136q-87 -95 -211 -101 v-636l211 41v206q51 -19 117 -19q125 0 213 95t88 229zM922 940q0 134 -88.5 229t-213.5 95q-74 0 -141 -36h-186v-840l211 41v206q55 -19 116 -19q125 0 213.5 95t88.5 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf1a8;" horiz-adv-x="2038" d="M1222 607q75 3 143.5 -20.5t118 -58.5t101 -94.5t84 -108t75.5 -120.5q33 -56 78.5 -109t75.5 -80.5t99 -88.5q-48 -30 -108.5 -57.5t-138.5 -59t-114 -47.5q-44 37 -74 115t-43.5 164.5t-33 180.5t-42.5 168.5t-72.5 123t-122.5 48.5l-10 -2l-6 -4q4 -5 13 -14 q6 -5 28 -23.5t25.5 -22t19 -18t18 -20.5t11.5 -21t10.5 -27.5t4.5 -31t4 -40.5l1 -33q1 -26 -2.5 -57.5t-7.5 -52t-12.5 -58.5t-11.5 -53q-35 1 -101 -9.5t-98 -10.5q-39 0 -72 10q-2 16 -2 47q0 74 3 96q2 13 31.5 41.5t57 59t26.5 51.5q-24 2 -43 -24 q-36 -53 -111.5 -99.5t-136.5 -46.5q-25 0 -75.5 63t-106.5 139.5t-84 96.5q-6 4 -27 30q-482 -112 -513 -112q-16 0 -28 11t-12 27q0 15 8.5 26.5t22.5 14.5l486 106q-8 14 -8 25t5.5 17.5t16 11.5t20 7t23 4.5t18.5 4.5q4 1 15.5 7.5t17.5 6.5q15 0 28 -16t20 -33 q163 37 172 37q17 0 29.5 -11t12.5 -28q0 -15 -8.5 -26t-23.5 -14l-182 -40l-1 -16q-1 -26 81.5 -117.5t104.5 -91.5q47 0 119 80t72 129q0 36 -23.5 53t-51 18.5t-51 11.5t-23.5 34q0 16 10 34l-68 19q43 44 43 117q0 26 -5 58q82 16 144 16q44 0 71.5 -1.5t48.5 -8.5 t31 -13.5t20.5 -24.5t15.5 -33.5t17 -47.5t24 -60l50 25q-3 -40 -23 -60t-42.5 -21t-40 -6.5t-16.5 -20.5zM1282 842q-5 5 -13.5 15.5t-12 14.5t-10.5 11.5t-10 10.5l-8 8t-8.5 7.5t-8 5t-8.5 4.5q-7 3 -14.5 5t-20.5 2.5t-22 0.5h-32.5h-37.5q-126 0 -217 -43 q16 30 36 46.5t54 29.5t65.5 36t46 36.5t50 55t43.5 50.5q12 -9 28 -31.5t32 -36.5t38 -13l12 1v-76l22 -1q247 95 371 190q28 21 50 39t42.5 37.5t33 31t29.5 34t24 31t24.5 37t23 38t27 47.5t29.5 53l7 9q-2 -53 -43 -139q-79 -165 -205 -264t-306 -142q-14 -3 -42 -7.5 t-50 -9.5t-39 -14q3 -19 24.5 -46t21.5 -34q0 -11 -26 -30zM1061 -79q39 26 131.5 47.5t146.5 21.5q9 0 22.5 -15.5t28 -42.5t26 -50t24 -51t14.5 -33q-121 -45 -244 -45q-61 0 -125 11zM822 568l48 12l109 -177l-73 -48zM1323 51q3 -15 3 -16q0 -7 -17.5 -14.5t-46 -13 t-54 -9.5t-53.5 -7.5t-32 -4.5l-7 43q21 2 60.5 8.5t72 10t60.5 3.5h14zM866 679l-96 -20l-6 17q10 1 32.5 7t34.5 6q19 0 35 -10zM1061 45h31l10 -83l-41 -12v95zM1950 1535v1v-1zM1950 1535l-1 -5l-2 -2l1 3zM1950 1535l1 1z" />
-<glyph unicode="&#xf1a9;" d="M1167 -50q-5 19 -24 5q-30 -22 -87 -39t-131 -17q-129 0 -193 49q-5 4 -13 4q-11 0 -26 -12q-7 -6 -7.5 -16t7.5 -20q34 -32 87.5 -46t102.5 -12.5t99 4.5q41 4 84.5 20.5t65 30t28.5 20.5q12 12 7 29zM1128 65q-19 47 -39 61q-23 15 -76 15q-47 0 -71 -10 q-29 -12 -78 -56q-26 -24 -12 -44q9 -8 17.5 -4.5t31.5 23.5q3 2 10.5 8.5t10.5 8.5t10 7t11.5 7t12.5 5t15 4.5t16.5 2.5t20.5 1q27 0 44.5 -7.5t23 -14.5t13.5 -22q10 -17 12.5 -20t12.5 1q23 12 14 34zM1483 346q0 22 -5 44.5t-16.5 45t-34 36.5t-52.5 14 q-33 0 -97 -41.5t-129 -83.5t-101 -42q-27 -1 -63.5 19t-76 49t-83.5 58t-100 49t-111 19q-115 -1 -197 -78.5t-84 -178.5q-2 -112 74 -164q29 -20 62.5 -28.5t103.5 -8.5q57 0 132 32.5t134 71t120 70.5t93 31q26 -1 65 -31.5t71.5 -67t68 -67.5t55.5 -32q35 -3 58.5 14 t55.5 63q28 41 42.5 101t14.5 106zM1536 506q0 -164 -62 -304.5t-166 -236t-242.5 -149.5t-290.5 -54t-293 57.5t-247.5 157t-170.5 241.5t-64 302q0 89 19.5 172.5t49 145.5t70.5 118.5t78.5 94t78.5 69.5t64.5 46.5t42.5 24.5q14 8 51 26.5t54.5 28.5t48 30t60.5 44 q36 28 58 72.5t30 125.5q129 -155 186 -193q44 -29 130 -68t129 -66q21 -13 39 -25t60.5 -46.5t76 -70.5t75 -95t69 -122t47 -148.5t19.5 -177.5z" />
-<glyph unicode="&#xf1aa;" d="M1070 463l-160 -160l-151 -152l-30 -30q-65 -64 -151.5 -87t-171.5 -2q-16 -70 -72 -115t-129 -45q-85 0 -145 60.5t-60 145.5q0 72 44.5 128t113.5 72q-22 86 1 173t88 152l12 12l151 -152l-11 -11q-37 -37 -37 -89t37 -90q37 -37 89 -37t89 37l30 30l151 152l161 160z M729 1145l12 -12l-152 -152l-12 12q-37 37 -89 37t-89 -37t-37 -89.5t37 -89.5l29 -29l152 -152l160 -160l-151 -152l-161 160l-151 152l-30 30q-68 67 -90 159.5t5 179.5q-70 15 -115 71t-45 129q0 85 60 145.5t145 60.5q76 0 133.5 -49t69.5 -123q84 20 169.5 -3.5 t149.5 -87.5zM1536 78q0 -85 -60 -145.5t-145 -60.5q-74 0 -131 47t-71 118q-86 -28 -179.5 -6t-161.5 90l-11 12l151 152l12 -12q37 -37 89 -37t89 37t37 89t-37 89l-30 30l-152 152l-160 160l152 152l160 -160l152 -152l29 -30q64 -64 87.5 -150.5t2.5 -171.5 q76 -11 126.5 -68.5t50.5 -134.5zM1534 1202q0 -77 -51 -135t-127 -69q26 -85 3 -176.5t-90 -158.5l-12 -12l-151 152l12 12q37 37 37 89t-37 89t-89 37t-89 -37l-30 -30l-152 -152l-160 -160l-152 152l161 160l152 152l29 30q67 67 159 89.5t178 -3.5q11 75 68.5 126 t135.5 51q85 0 145 -60.5t60 -145.5z" />
-<glyph unicode="&#xf1ab;" d="M654 458q-1 -3 -12.5 0.5t-31.5 11.5l-20 9q-44 20 -87 49q-7 5 -41 31.5t-38 28.5q-67 -103 -134 -181q-81 -95 -105 -110q-4 -2 -19.5 -4t-18.5 0q6 4 82 92q21 24 85.5 115t78.5 118q17 30 51 98.5t36 77.5q-8 1 -110 -33q-8 -2 -27.5 -7.5t-34.5 -9.5t-17 -5 q-2 -2 -2 -10.5t-1 -9.5q-5 -10 -31 -15q-23 -7 -47 0q-18 4 -28 21q-4 6 -5 23q6 2 24.5 5t29.5 6q58 16 105 32q100 35 102 35q10 2 43 19.5t44 21.5q9 3 21.5 8t14.5 5.5t6 -0.5q2 -12 -1 -33q0 -2 -12.5 -27t-26.5 -53.5t-17 -33.5q-25 -50 -77 -131l64 -28 q12 -6 74.5 -32t67.5 -28q4 -1 10.5 -25.5t4.5 -30.5zM449 944q3 -15 -4 -28q-12 -23 -50 -38q-30 -12 -60 -12q-26 3 -49 26q-14 15 -18 41l1 3q3 -3 19.5 -5t26.5 0t58 16q36 12 55 14q17 0 21 -17zM1147 815l63 -227l-139 42zM39 15l694 232v1032l-694 -233v-1031z M1280 332l102 -31l-181 657l-100 31l-216 -536l102 -31l45 110l211 -65zM777 1294l573 -184v380zM1088 -29l158 -13l-54 -160l-40 66q-130 -83 -276 -108q-58 -12 -91 -12h-84q-79 0 -199.5 39t-183.5 85q-8 7 -8 16q0 8 5 13.5t13 5.5q4 0 18 -7.5t30.5 -16.5t20.5 -11 q73 -37 159.5 -61.5t157.5 -24.5q95 0 167 14.5t157 50.5q15 7 30.5 15.5t34 19t28.5 16.5zM1536 1050v-1079l-774 246q-14 -6 -375 -127.5t-368 -121.5q-13 0 -18 13q0 1 -1 3v1078q3 9 4 10q5 6 20 11q106 35 149 50v384l558 -198q2 0 160.5 55t316 108.5t161.5 53.5 q20 0 20 -21v-418z" />
-<glyph unicode="&#xf1ac;" horiz-adv-x="1792" d="M288 1152q66 0 113 -47t47 -113v-1088q0 -66 -47 -113t-113 -47h-128q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h128zM1664 989q58 -34 93 -93t35 -128v-768q0 -106 -75 -181t-181 -75h-864q-66 0 -113 47t-47 113v1536q0 40 28 68t68 28h672q40 0 88 -20t76 -48 l152 -152q28 -28 48 -76t20 -88v-163zM928 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 512v128q0 14 -9 23 t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128 q14 0 23 9t9 23zM1184 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 256v128q0 14 -9 23t-23 9h-128 q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1536 896v256h-160q-40 0 -68 28t-28 68v160h-640v-512h896z" />
-<glyph unicode="&#xf1ad;" d="M1344 1536q26 0 45 -19t19 -45v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280zM512 1248v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 992v-64q0 -14 9 -23t23 -9h64q14 0 23 9 t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 736v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 480v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 160v64 q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64 q14 0 23 9t9 23zM384 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 -96v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9 t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM896 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 928v64 q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 160v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64 q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9 t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23z" />
-<glyph unicode="&#xf1ae;" horiz-adv-x="1280" d="M1188 988l-292 -292v-824q0 -46 -33 -79t-79 -33t-79 33t-33 79v384h-64v-384q0 -46 -33 -79t-79 -33t-79 33t-33 79v824l-292 292q-28 28 -28 68t28 68t68 28t68 -28l228 -228h368l228 228q28 28 68 28t68 -28t28 -68t-28 -68zM864 1152q0 -93 -65.5 -158.5 t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
-<glyph unicode="&#xf1b0;" horiz-adv-x="1664" d="M780 1064q0 -60 -19 -113.5t-63 -92.5t-105 -39q-76 0 -138 57.5t-92 135.5t-30 151q0 60 19 113.5t63 92.5t105 39q77 0 138.5 -57.5t91.5 -135t30 -151.5zM438 581q0 -80 -42 -139t-119 -59q-76 0 -141.5 55.5t-100.5 133.5t-35 152q0 80 42 139.5t119 59.5 q76 0 141.5 -55.5t100.5 -134t35 -152.5zM832 608q118 0 255 -97.5t229 -237t92 -254.5q0 -46 -17 -76.5t-48.5 -45t-64.5 -20t-76 -5.5q-68 0 -187.5 45t-182.5 45q-66 0 -192.5 -44.5t-200.5 -44.5q-183 0 -183 146q0 86 56 191.5t139.5 192.5t187.5 146t193 59zM1071 819 q-61 0 -105 39t-63 92.5t-19 113.5q0 74 30 151.5t91.5 135t138.5 57.5q61 0 105 -39t63 -92.5t19 -113.5q0 -73 -30 -151t-92 -135.5t-138 -57.5zM1503 923q77 0 119 -59.5t42 -139.5q0 -74 -35 -152t-100.5 -133.5t-141.5 -55.5q-77 0 -119 59t-42 139q0 74 35 152.5 t100.5 134t141.5 55.5z" />
-<glyph unicode="&#xf1b1;" horiz-adv-x="768" d="M704 1008q0 -145 -57 -243.5t-152 -135.5l45 -821q2 -26 -16 -45t-44 -19h-192q-26 0 -44 19t-16 45l45 821q-95 37 -152 135.5t-57 243.5q0 128 42.5 249.5t117.5 200t160 78.5t160 -78.5t117.5 -200t42.5 -249.5z" />
-<glyph unicode="&#xf1b2;" horiz-adv-x="1792" d="M896 -93l640 349v636l-640 -233v-752zM832 772l698 254l-698 254l-698 -254zM1664 1024v-768q0 -35 -18 -65t-49 -47l-704 -384q-28 -16 -61 -16t-61 16l-704 384q-31 17 -49 47t-18 65v768q0 40 23 73t61 47l704 256q22 8 44 8t44 -8l704 -256q38 -14 61 -47t23 -73z " />
-<glyph unicode="&#xf1b3;" horiz-adv-x="2304" d="M640 -96l384 192v314l-384 -164v-342zM576 358l404 173l-404 173l-404 -173zM1664 -96l384 192v314l-384 -164v-342zM1600 358l404 173l-404 173l-404 -173zM1152 651l384 165v266l-384 -164v-267zM1088 1030l441 189l-441 189l-441 -189zM2176 512v-416q0 -36 -19 -67 t-52 -47l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-5 2 -7 4q-2 -2 -7 -4l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-33 16 -52 47t-19 67v416q0 38 21.5 70t56.5 48l434 186v400q0 38 21.5 70t56.5 48l448 192q23 10 50 10t50 -10l448 -192q35 -16 56.5 -48t21.5 -70 v-400l434 -186q36 -16 57 -48t21 -70z" />
-<glyph unicode="&#xf1b4;" horiz-adv-x="2048" d="M1848 1197h-511v-124h511v124zM1596 771q-90 0 -146 -52.5t-62 -142.5h408q-18 195 -200 195zM1612 186q63 0 122 32t76 87h221q-100 -307 -427 -307q-214 0 -340.5 132t-126.5 347q0 208 130.5 345.5t336.5 137.5q138 0 240.5 -68t153 -179t50.5 -248q0 -17 -2 -47h-658 q0 -111 57.5 -171.5t166.5 -60.5zM277 236h296q205 0 205 167q0 180 -199 180h-302v-347zM277 773h281q78 0 123.5 36.5t45.5 113.5q0 144 -190 144h-260v-294zM0 1282h594q87 0 155 -14t126.5 -47.5t90 -96.5t31.5 -154q0 -181 -172 -263q114 -32 172 -115t58 -204 q0 -75 -24.5 -136.5t-66 -103.5t-98.5 -71t-121 -42t-134 -13h-611v1260z" />
-<glyph unicode="&#xf1b5;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM499 1041h-371v-787h382q117 0 197 57.5t80 170.5q0 158 -143 200q107 52 107 164q0 57 -19.5 96.5 t-56.5 60.5t-79 29.5t-97 8.5zM477 723h-176v184h163q119 0 119 -90q0 -94 -106 -94zM486 388h-185v217h189q124 0 124 -113q0 -104 -128 -104zM1136 356q-68 0 -104 38t-36 107h411q1 10 1 30q0 132 -74.5 220.5t-203.5 88.5q-128 0 -210 -86t-82 -216q0 -135 79 -217 t213 -82q205 0 267 191h-138q-11 -34 -47.5 -54t-75.5 -20zM1126 722q113 0 124 -122h-254q4 56 39 89t91 33zM964 988h319v-77h-319v77z" />
-<glyph unicode="&#xf1b6;" horiz-adv-x="1792" d="M1582 954q0 -101 -71.5 -172.5t-172.5 -71.5t-172.5 71.5t-71.5 172.5t71.5 172.5t172.5 71.5t172.5 -71.5t71.5 -172.5zM812 212q0 104 -73 177t-177 73q-27 0 -54 -6l104 -42q77 -31 109.5 -106.5t1.5 -151.5q-31 -77 -107 -109t-152 -1q-21 8 -62 24.5t-61 24.5 q32 -60 91 -96.5t130 -36.5q104 0 177 73t73 177zM1642 953q0 126 -89.5 215.5t-215.5 89.5q-127 0 -216.5 -89.5t-89.5 -215.5q0 -127 89.5 -216t216.5 -89q126 0 215.5 89t89.5 216zM1792 953q0 -189 -133.5 -322t-321.5 -133l-437 -319q-12 -129 -109 -218t-229 -89 q-121 0 -214 76t-118 192l-230 92v429l389 -157q79 48 173 48q13 0 35 -2l284 407q2 187 135.5 319t320.5 132q188 0 321.5 -133.5t133.5 -321.5z" />
-<glyph unicode="&#xf1b7;" d="M1242 889q0 80 -57 136.5t-137 56.5t-136.5 -57t-56.5 -136q0 -80 56.5 -136.5t136.5 -56.5t137 56.5t57 136.5zM632 301q0 -83 -58 -140.5t-140 -57.5q-56 0 -103 29t-72 77q52 -20 98 -40q60 -24 120 1.5t85 86.5q24 60 -1.5 120t-86.5 84l-82 33q22 5 42 5 q82 0 140 -57.5t58 -140.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v153l172 -69q20 -92 93.5 -152t168.5 -60q104 0 181 70t87 173l345 252q150 0 255.5 105.5t105.5 254.5q0 150 -105.5 255.5t-255.5 105.5 q-148 0 -253 -104.5t-107 -252.5l-225 -322q-9 1 -28 1q-75 0 -137 -37l-297 119v468q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5zM1289 887q0 -100 -71 -170.5t-171 -70.5t-170.5 70.5t-70.5 170.5t70.5 171t170.5 71q101 0 171.5 -70.5t70.5 -171.5z " />
-<glyph unicode="&#xf1b8;" horiz-adv-x="1792" d="M836 367l-15 -368l-2 -22l-420 29q-36 3 -67 31.5t-47 65.5q-11 27 -14.5 55t4 65t12 55t21.5 64t19 53q78 -12 509 -28zM449 953l180 -379l-147 92q-63 -72 -111.5 -144.5t-72.5 -125t-39.5 -94.5t-18.5 -63l-4 -21l-190 357q-17 26 -18 56t6 47l8 18q35 63 114 188 l-140 86zM1680 436l-188 -359q-12 -29 -36.5 -46.5t-43.5 -20.5l-18 -4q-71 -7 -219 -12l8 -164l-230 367l211 362l7 -173q170 -16 283 -5t170 33zM895 1360q-47 -63 -265 -435l-317 187l-19 12l225 356q20 31 60 45t80 10q24 -2 48.5 -12t42 -21t41.5 -33t36 -34.5 t36 -39.5t32 -35zM1550 1053l212 -363q18 -37 12.5 -76t-27.5 -74q-13 -20 -33 -37t-38 -28t-48.5 -22t-47 -16t-51.5 -14t-46 -12q-34 72 -265 436l313 195zM1407 1279l142 83l-220 -373l-419 20l151 86q-34 89 -75 166t-75.5 123.5t-64.5 80t-47 46.5l-17 13l405 -1 q31 3 58 -10.5t39 -28.5l11 -15q39 -61 112 -190z" />
-<glyph unicode="&#xf1b9;" horiz-adv-x="2048" d="M480 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM516 768h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5zM1888 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM2048 544v-384 q0 -14 -9 -23t-23 -9h-96v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-1024v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5t179 63.5h768q98 0 179 -63.5t104 -157.5 l105 -419h28q93 0 158.5 -65.5t65.5 -158.5z" />
-<glyph unicode="&#xf1ba;" horiz-adv-x="2048" d="M1824 640q93 0 158.5 -65.5t65.5 -158.5v-384q0 -14 -9 -23t-23 -9h-96v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-1024v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5 t179 63.5h128v224q0 14 9 23t23 9h448q14 0 23 -9t9 -23v-224h128q98 0 179 -63.5t104 -157.5l105 -419h28zM320 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM516 640h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5z M1728 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47z" />
-<glyph unicode="&#xf1bb;" d="M1504 64q0 -26 -19 -45t-45 -19h-462q1 -17 6 -87.5t5 -108.5q0 -25 -18 -42.5t-43 -17.5h-320q-25 0 -43 17.5t-18 42.5q0 38 5 108.5t6 87.5h-462q-26 0 -45 19t-19 45t19 45l402 403h-229q-26 0 -45 19t-19 45t19 45l402 403h-197q-26 0 -45 19t-19 45t19 45l384 384 q19 19 45 19t45 -19l384 -384q19 -19 19 -45t-19 -45t-45 -19h-197l402 -403q19 -19 19 -45t-19 -45t-45 -19h-229l402 -403q19 -19 19 -45z" />
-<glyph unicode="&#xf1bc;" d="M1127 326q0 32 -30 51q-193 115 -447 115q-133 0 -287 -34q-42 -9 -42 -52q0 -20 13.5 -34.5t35.5 -14.5q5 0 37 8q132 27 243 27q226 0 397 -103q19 -11 33 -11q19 0 33 13.5t14 34.5zM1223 541q0 40 -35 61q-237 141 -548 141q-153 0 -303 -42q-48 -13 -48 -64 q0 -25 17.5 -42.5t42.5 -17.5q7 0 37 8q122 33 251 33q279 0 488 -124q24 -13 38 -13q25 0 42.5 17.5t17.5 42.5zM1331 789q0 47 -40 70q-126 73 -293 110.5t-343 37.5q-204 0 -364 -47q-23 -7 -38.5 -25.5t-15.5 -48.5q0 -31 20.5 -52t51.5 -21q11 0 40 8q133 37 307 37 q159 0 309.5 -34t253.5 -95q21 -12 40 -12q29 0 50.5 20.5t21.5 51.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf1bd;" d="M1397 1408q58 0 98.5 -40.5t40.5 -98.5v-1258q0 -58 -40.5 -98.5t-98.5 -40.5h-1258q-58 0 -98.5 40.5t-40.5 98.5v1258q0 58 40.5 98.5t98.5 40.5h1258zM1465 11v1258q0 28 -20 48t-48 20h-1258q-28 0 -48 -20t-20 -48v-1258q0 -28 20 -48t48 -20h1258q28 0 48 20t20 48 zM694 749l188 -387l533 145v-496q0 -7 -5.5 -12.5t-12.5 -5.5h-1258q-7 0 -12.5 5.5t-5.5 12.5v141l711 195l-212 439q4 1 12 2.5t12 1.5q170 32 303.5 21.5t221 -46t143.5 -94.5q27 -28 -25 -42q-64 -16 -256 -62l-97 198q-111 7 -240 -16zM1397 1287q7 0 12.5 -5.5 t5.5 -12.5v-428q-85 30 -188 52q-294 64 -645 12l-18 -3l-65 134h-233l85 -190q-132 -51 -230 -137v560q0 7 5.5 12.5t12.5 5.5h1258zM286 387q-14 -3 -26 4.5t-14 21.5q-24 203 166 305l129 -270z" />
-<glyph unicode="&#xf1be;" horiz-adv-x="2304" d="M784 164l16 241l-16 523q-1 10 -7.5 17t-16.5 7q-9 0 -16 -7t-7 -17l-14 -523l14 -241q1 -10 7.5 -16.5t15.5 -6.5q22 0 24 23zM1080 193l11 211l-12 586q0 16 -13 24q-8 5 -16 5t-16 -5q-13 -8 -13 -24l-1 -6l-10 -579q0 -1 11 -236v-1q0 -10 6 -17q9 -11 23 -11 q11 0 20 9q9 7 9 20zM35 533l20 -128l-20 -126q-2 -9 -9 -9t-9 9l-17 126l17 128q2 9 9 9t9 -9zM121 612l26 -207l-26 -203q-2 -9 -10 -9q-9 0 -9 10l-23 202l23 207q0 9 9 9q8 0 10 -9zM401 159zM213 650l25 -245l-25 -237q0 -11 -11 -11q-10 0 -12 11l-21 237l21 245 q2 12 12 12q11 0 11 -12zM307 657l23 -252l-23 -244q-2 -13 -14 -13q-13 0 -13 13l-21 244l21 252q0 13 13 13q12 0 14 -13zM401 639l21 -234l-21 -246q-2 -16 -16 -16q-6 0 -10.5 4.5t-4.5 11.5l-20 246l20 234q0 6 4.5 10.5t10.5 4.5q14 0 16 -15zM784 164zM495 785 l21 -380l-21 -246q0 -7 -5 -12.5t-12 -5.5q-16 0 -18 18l-18 246l18 380q2 18 18 18q7 0 12 -5.5t5 -12.5zM589 871l19 -468l-19 -244q0 -8 -5.5 -13.5t-13.5 -5.5q-18 0 -20 19l-16 244l16 468q2 19 20 19q8 0 13.5 -5.5t5.5 -13.5zM687 911l18 -506l-18 -242 q-2 -21 -22 -21q-19 0 -21 21l-16 242l16 506q0 9 6.5 15.5t14.5 6.5q9 0 15 -6.5t7 -15.5zM1079 169v0v0zM881 915l15 -510l-15 -239q0 -10 -7.5 -17.5t-17.5 -7.5t-17 7t-8 18l-14 239l14 510q0 11 7.5 18t17.5 7t17.5 -7t7.5 -18zM980 896l14 -492l-14 -236q0 -11 -8 -19 t-19 -8t-19 8t-9 19l-12 236l12 492q1 12 9 20t19 8t18.5 -8t8.5 -20zM1192 404l-14 -231v0q0 -13 -9 -22t-22 -9t-22 9t-10 22l-6 114l-6 117l12 636v3q2 15 12 24q9 7 20 7q8 0 15 -5q14 -8 16 -26zM2304 423q0 -117 -83 -199.5t-200 -82.5h-786q-13 2 -22 11t-9 22v899 q0 23 28 33q85 34 181 34q195 0 338 -131.5t160 -323.5q53 22 110 22q117 0 200 -83t83 -201z" />
-<glyph unicode="&#xf1c0;" d="M768 768q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 0q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127 t443 -43zM768 384q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 1536q208 0 385 -34.5t280 -93.5t103 -128v-128q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5 t-103 128v128q0 69 103 128t280 93.5t385 34.5z" />
-<glyph unicode="&#xf1c1;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M894 465q33 -26 84 -56q59 7 117 7q147 0 177 -49q16 -22 2 -52q0 -1 -1 -2l-2 -2v-1q-6 -38 -71 -38q-48 0 -115 20t-130 53q-221 -24 -392 -83q-153 -262 -242 -262q-15 0 -28 7l-24 12q-1 1 -6 5q-10 10 -6 36q9 40 56 91.5t132 96.5q14 9 23 -6q2 -2 2 -4q52 85 107 197 q68 136 104 262q-24 82 -30.5 159.5t6.5 127.5q11 40 42 40h21h1q23 0 35 -15q18 -21 9 -68q-2 -6 -4 -8q1 -3 1 -8v-30q-2 -123 -14 -192q55 -164 146 -238zM318 54q52 24 137 158q-51 -40 -87.5 -84t-49.5 -74zM716 974q-15 -42 -2 -132q1 7 7 44q0 3 7 43q1 4 4 8 q-1 1 -1 2t-0.5 1.5t-0.5 1.5q-1 22 -13 36q0 -1 -1 -2v-2zM592 313q135 54 284 81q-2 1 -13 9.5t-16 13.5q-76 67 -127 176q-27 -86 -83 -197q-30 -56 -45 -83zM1238 329q-24 24 -140 24q76 -28 124 -28q14 0 18 1q0 1 -2 3z" />
-<glyph unicode="&#xf1c2;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M233 768v-107h70l164 -661h159l128 485q7 20 10 46q2 16 2 24h4l3 -24q1 -3 3.5 -20t5.5 -26l128 -485h159l164 661h70v107h-300v-107h90l-99 -438q-5 -20 -7 -46l-2 -21h-4l-3 21q-1 5 -4 21t-5 25l-144 545h-114l-144 -545q-2 -9 -4.5 -24.5t-3.5 -21.5l-4 -21h-4l-2 21 q-2 26 -7 46l-99 438h90v107h-300z" />
-<glyph unicode="&#xf1c3;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M429 106v-106h281v106h-75l103 161q5 7 10 16.5t7.5 13.5t3.5 4h2q1 -4 5 -10q2 -4 4.5 -7.5t6 -8t6.5 -8.5l107 -161h-76v-106h291v106h-68l-192 273l195 282h67v107h-279v-107h74l-103 -159q-4 -7 -10 -16.5t-9 -13.5l-2 -3h-2q-1 4 -5 10q-6 11 -17 23l-106 159h76v107 h-290v-107h68l189 -272l-194 -283h-68z" />
-<glyph unicode="&#xf1c4;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M416 106v-106h327v106h-93v167h137q76 0 118 15q67 23 106.5 87t39.5 146q0 81 -37 141t-100 87q-48 19 -130 19h-368v-107h92v-555h-92zM769 386h-119v268h120q52 0 83 -18q56 -33 56 -115q0 -89 -62 -120q-31 -15 -78 -15z" />
-<glyph unicode="&#xf1c5;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M1280 320v-320h-1024v192l192 192l128 -128l384 384zM448 512q-80 0 -136 56t-56 136t56 136t136 56t136 -56t56 -136t-56 -136t-136 -56z" />
-<glyph unicode="&#xf1c6;" d="M640 1152v128h-128v-128h128zM768 1024v128h-128v-128h128zM640 896v128h-128v-128h128zM768 768v128h-128v-128h128zM1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400 v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-128v-128h-128v128h-512v-1536h1280zM781 593l107 -349q8 -27 8 -52q0 -83 -72.5 -137.5t-183.5 -54.5t-183.5 54.5t-72.5 137.5q0 25 8 52q21 63 120 396v128h128v-128h79 q22 0 39 -13t23 -34zM640 128q53 0 90.5 19t37.5 45t-37.5 45t-90.5 19t-90.5 -19t-37.5 -45t37.5 -45t90.5 -19z" />
-<glyph unicode="&#xf1c7;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M620 686q20 -8 20 -30v-544q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-166 167h-131q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h131l166 167q16 15 35 7zM1037 -3q31 0 50 24q129 159 129 363t-129 363q-16 21 -43 24t-47 -14q-21 -17 -23.5 -43.5t14.5 -47.5 q100 -123 100 -282t-100 -282q-17 -21 -14.5 -47.5t23.5 -42.5q18 -15 40 -15zM826 145q27 0 47 20q87 93 87 219t-87 219q-18 19 -45 20t-46 -17t-20 -44.5t18 -46.5q52 -57 52 -131t-52 -131q-19 -20 -18 -46.5t20 -44.5q20 -17 44 -17z" />
-<glyph unicode="&#xf1c8;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M768 768q52 0 90 -38t38 -90v-384q0 -52 -38 -90t-90 -38h-384q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h384zM1260 766q20 -8 20 -30v-576q0 -22 -20 -30q-8 -2 -12 -2q-14 0 -23 9l-265 266v90l265 266q9 9 23 9q4 0 12 -2z" />
-<glyph unicode="&#xf1c9;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M480 768q8 11 21 12.5t24 -6.5l51 -38q11 -8 12.5 -21t-6.5 -24l-182 -243l182 -243q8 -11 6.5 -24t-12.5 -21l-51 -38q-11 -8 -24 -6.5t-21 12.5l-226 301q-14 19 0 38zM1282 467q14 -19 0 -38l-226 -301q-8 -11 -21 -12.5t-24 6.5l-51 38q-11 8 -12.5 21t6.5 24l182 243 l-182 243q-8 11 -6.5 24t12.5 21l51 38q11 8 24 6.5t21 -12.5zM662 6q-13 2 -20.5 13t-5.5 24l138 831q2 13 13 20.5t24 5.5l63 -10q13 -2 20.5 -13t5.5 -24l-138 -831q-2 -13 -13 -20.5t-24 -5.5z" />
-<glyph unicode="&#xf1ca;" d="M1497 709v-198q-101 -23 -198 -23q-65 -136 -165.5 -271t-181.5 -215.5t-128 -106.5q-80 -45 -162 3q-28 17 -60.5 43.5t-85 83.5t-102.5 128.5t-107.5 184t-105.5 244t-91.5 314.5t-70.5 390h283q26 -218 70 -398.5t104.5 -317t121.5 -235.5t140 -195q169 169 287 406 q-142 72 -223 220t-81 333q0 192 104 314.5t284 122.5q178 0 273 -105.5t95 -297.5q0 -159 -58 -286q-7 -1 -19.5 -3t-46 -2t-63 6t-62 25.5t-50.5 51.5q31 103 31 184q0 87 -29 132t-79 45q-53 0 -85 -49.5t-32 -140.5q0 -186 105 -293.5t267 -107.5q62 0 121 14z" />
-<glyph unicode="&#xf1cb;" horiz-adv-x="1792" d="M216 367l603 -402v359l-334 223zM154 511l193 129l-193 129v-258zM973 -35l603 402l-269 180l-334 -223v-359zM896 458l272 182l-272 182l-272 -182zM485 733l334 223v359l-603 -402zM1445 640l193 -129v258zM1307 733l269 180l-603 402v-359zM1792 913v-546 q0 -41 -34 -64l-819 -546q-21 -13 -43 -13t-43 13l-819 546q-34 23 -34 64v546q0 41 34 64l819 546q21 13 43 13t43 -13l819 -546q34 -23 34 -64z" />
-<glyph unicode="&#xf1cc;" horiz-adv-x="2048" d="M1800 764q111 -46 179.5 -145.5t68.5 -221.5q0 -164 -118 -280.5t-285 -116.5q-4 0 -11.5 0.5t-10.5 0.5h-1209h-1h-2h-5q-170 10 -288 125.5t-118 280.5q0 110 55 203t147 147q-12 39 -12 82q0 115 82 196t199 81q95 0 172 -58q75 154 222.5 248t326.5 94 q166 0 306 -80.5t221.5 -218.5t81.5 -301q0 -6 -0.5 -18t-0.5 -18zM468 498q0 -122 84 -193t208 -71q137 0 240 99q-16 20 -47.5 56.5t-43.5 50.5q-67 -65 -144 -65q-55 0 -93.5 33.5t-38.5 87.5q0 53 38.5 87t91.5 34q44 0 84.5 -21t73 -55t65 -75t69 -82t77 -75t97 -55 t121.5 -21q121 0 204.5 71.5t83.5 190.5q0 121 -84 192t-207 71q-143 0 -241 -97q14 -16 29.5 -34t34.5 -40t29 -34q66 64 142 64q52 0 92 -33t40 -84q0 -57 -37 -91.5t-94 -34.5q-43 0 -82.5 21t-72 55t-65.5 75t-69.5 82t-77.5 75t-96.5 55t-118.5 21q-122 0 -207 -70.5 t-85 -189.5z" />
-<glyph unicode="&#xf1cd;" horiz-adv-x="1792" d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 1408q-190 0 -361 -90l194 -194q82 28 167 28t167 -28l194 194q-171 90 -361 90zM218 279l194 194 q-28 82 -28 167t28 167l-194 194q-90 -171 -90 -361t90 -361zM896 -128q190 0 361 90l-194 194q-82 -28 -167 -28t-167 28l-194 -194q171 -90 361 -90zM896 256q159 0 271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5 t271.5 -112.5zM1380 473l194 -194q90 171 90 361t-90 361l-194 -194q28 -82 28 -167t-28 -167z" />
-<glyph unicode="&#xf1ce;" horiz-adv-x="1792" d="M1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348q0 222 101 414.5t276.5 317t390.5 155.5v-260q-221 -45 -366.5 -221t-145.5 -406q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5 q0 230 -145.5 406t-366.5 221v260q215 -31 390.5 -155.5t276.5 -317t101 -414.5z" />
-<glyph unicode="&#xf1d0;" horiz-adv-x="1792" d="M19 662q8 217 116 406t305 318h5q0 -1 -1 -3q-8 -8 -28 -33.5t-52 -76.5t-60 -110.5t-44.5 -135.5t-14 -150.5t39 -157.5t108.5 -154q50 -50 102 -69.5t90.5 -11.5t69.5 23.5t47 32.5l16 16q39 51 53 116.5t6.5 122.5t-21 107t-26.5 80l-14 29q-10 25 -30.5 49.5t-43 41 t-43.5 29.5t-35 19l-13 6l104 115q39 -17 78 -52t59 -61l19 -27q1 48 -18.5 103.5t-40.5 87.5l-20 31l161 183l160 -181q-33 -46 -52.5 -102.5t-22.5 -90.5l-4 -33q22 37 61.5 72.5t67.5 52.5l28 17l103 -115q-44 -14 -85 -50t-60 -65l-19 -29q-31 -56 -48 -133.5t-7 -170 t57 -156.5q33 -45 77.5 -60.5t85 -5.5t76 26.5t57.5 33.5l21 16q60 53 96.5 115t48.5 121.5t10 121.5t-18 118t-37 107.5t-45.5 93t-45 72t-34.5 47.5l-13 17q-14 13 -7 13l10 -3q40 -29 62.5 -46t62 -50t64 -58t58.5 -65t55.5 -77t45.5 -88t38 -103t23.5 -117t10.5 -136 q3 -259 -108 -465t-312 -321t-456 -115q-185 0 -351 74t-283.5 198t-184 293t-60.5 353z" />
-<glyph unicode="&#xf1d1;" horiz-adv-x="1792" d="M874 -102v-66q-208 6 -385 109.5t-283 275.5l58 34q29 -49 73 -99l65 57q148 -168 368 -212l-17 -86q65 -12 121 -13zM276 428l-83 -28q22 -60 49 -112l-57 -33q-98 180 -98 385t98 385l57 -33q-30 -56 -49 -112l82 -28q-35 -100 -35 -212q0 -109 36 -212zM1528 251 l58 -34q-106 -172 -283 -275.5t-385 -109.5v66q56 1 121 13l-17 86q220 44 368 212l65 -57q44 50 73 99zM1377 805l-233 -80q14 -42 14 -85t-14 -85l232 -80q-31 -92 -98 -169l-185 162q-57 -67 -147 -85l48 -241q-52 -10 -98 -10t-98 10l48 241q-90 18 -147 85l-185 -162 q-67 77 -98 169l232 80q-14 42 -14 85t14 85l-233 80q33 93 99 169l185 -162q59 68 147 86l-48 240q44 10 98 10t98 -10l-48 -240q88 -18 147 -86l185 162q66 -76 99 -169zM874 1448v-66q-65 -2 -121 -13l17 -86q-220 -42 -368 -211l-65 56q-38 -42 -73 -98l-57 33 q106 172 282 275.5t385 109.5zM1705 640q0 -205 -98 -385l-57 33q27 52 49 112l-83 28q36 103 36 212q0 112 -35 212l82 28q-19 56 -49 112l57 33q98 -180 98 -385zM1585 1063l-57 -33q-35 56 -73 98l-65 -56q-148 169 -368 211l17 86q-56 11 -121 13v66q209 -6 385 -109.5 t282 -275.5zM1748 640q0 173 -67.5 331t-181.5 272t-272 181.5t-331 67.5t-331 -67.5t-272 -181.5t-181.5 -272t-67.5 -331t67.5 -331t181.5 -272t272 -181.5t331 -67.5t331 67.5t272 181.5t181.5 272t67.5 331zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71 t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
-<glyph unicode="&#xf1d2;" d="M582 228q0 -66 -93 -66q-107 0 -107 63q0 64 98 64q102 0 102 -61zM546 694q0 -85 -74 -85q-77 0 -77 84q0 90 77 90q36 0 55 -25.5t19 -63.5zM712 769v125q-78 -29 -135 -29q-50 29 -110 29q-86 0 -145 -57t-59 -143q0 -50 29.5 -102t73.5 -67v-3q-38 -17 -38 -85 q0 -53 41 -77v-3q-113 -37 -113 -139q0 -45 20 -78.5t54 -51t72 -25.5t81 -8q224 0 224 188q0 67 -48 99t-126 46q-27 5 -51.5 20.5t-24.5 39.5q0 44 49 52q77 15 122 70t45 134q0 24 -10 52q37 9 49 13zM771 350h137q-2 27 -2 82v387q0 46 2 69h-137q3 -23 3 -71v-392 q0 -50 -3 -75zM1280 366v121q-30 -21 -68 -21q-53 0 -53 82v225h52q9 0 26.5 -1t26.5 -1v117h-105q0 82 3 102h-140q4 -24 4 -55v-47h-60v-117q36 3 37 3q3 0 11 -0.5t12 -0.5v-2h-2v-217q0 -37 2.5 -64t11.5 -56.5t24.5 -48.5t43.5 -31t66 -12q64 0 108 24zM924 1072 q0 36 -24 63.5t-60 27.5t-60.5 -27t-24.5 -64q0 -36 25 -62.5t60 -26.5t59.5 27t24.5 62zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf1d3;" horiz-adv-x="1792" d="M595 22q0 100 -165 100q-158 0 -158 -104q0 -101 172 -101q151 0 151 105zM536 777q0 61 -30 102t-89 41q-124 0 -124 -145q0 -135 124 -135q119 0 119 137zM805 1101v-202q-36 -12 -79 -22q16 -43 16 -84q0 -127 -73 -216.5t-197 -112.5q-40 -8 -59.5 -27t-19.5 -58 q0 -31 22.5 -51.5t58 -32t78.5 -22t86 -25.5t78.5 -37.5t58 -64t22.5 -98.5q0 -304 -363 -304q-69 0 -130 12.5t-116 41t-87.5 82t-32.5 127.5q0 165 182 225v4q-67 41 -67 126q0 109 63 137v4q-72 24 -119.5 108.5t-47.5 165.5q0 139 95 231.5t235 92.5q96 0 178 -47 q98 0 218 47zM1123 220h-222q4 45 4 134v609q0 94 -4 128h222q-4 -33 -4 -124v-613q0 -89 4 -134zM1724 442v-196q-71 -39 -174 -39q-62 0 -107 20t-70 50t-39.5 78t-18.5 92t-4 103v351h2v4q-7 0 -19 1t-18 1q-21 0 -59 -6v190h96v76q0 54 -6 89h227q-6 -41 -6 -165h171 v-190q-15 0 -43.5 2t-42.5 2h-85v-365q0 -131 87 -131q61 0 109 33zM1148 1389q0 -58 -39 -101.5t-96 -43.5q-58 0 -98 43.5t-40 101.5q0 59 39.5 103t98.5 44q58 0 96.5 -44.5t38.5 -102.5z" />
-<glyph unicode="&#xf1d4;" d="M825 547l343 588h-150q-21 -39 -63.5 -118.5t-68 -128.5t-59.5 -118.5t-60 -128.5h-3q-21 48 -44.5 97t-52 105.5t-46.5 92t-54 104.5t-49 95h-150l323 -589v-435h134v436zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf1d5;" horiz-adv-x="1280" d="M842 964q0 -80 -57 -136.5t-136 -56.5q-60 0 -111 35q-62 -67 -115 -146q-247 -371 -202 -859q1 -22 -12.5 -38.5t-34.5 -18.5h-5q-20 0 -35 13.5t-17 33.5q-14 126 -3.5 247.5t29.5 217t54 186t69 155.5t74 125q61 90 132 165q-16 35 -16 77q0 80 56.5 136.5t136.5 56.5 t136.5 -56.5t56.5 -136.5zM1223 953q0 -158 -78 -292t-212.5 -212t-292.5 -78q-64 0 -131 14q-21 5 -32.5 23.5t-6.5 39.5q5 20 23 31.5t39 7.5q51 -13 108 -13q97 0 186 38t153 102t102 153t38 186t-38 186t-102 153t-153 102t-186 38t-186 -38t-153 -102t-102 -153 t-38 -186q0 -114 52 -218q10 -20 3.5 -40t-25.5 -30t-39.5 -3t-30.5 26q-64 123 -64 265q0 119 46.5 227t124.5 186t186 124t226 46q158 0 292.5 -78t212.5 -212.5t78 -292.5z" />
-<glyph unicode="&#xf1d6;" horiz-adv-x="1792" d="M270 730q-8 19 -8 52q0 20 11 49t24 45q-1 22 7.5 53t22.5 43q0 139 92.5 288.5t217.5 209.5q139 66 324 66q133 0 266 -55q49 -21 90 -48t71 -56t55 -68t42 -74t32.5 -84.5t25.5 -89.5t22 -98l1 -5q55 -83 55 -150q0 -14 -9 -40t-9 -38q0 -1 1.5 -3.5t3.5 -5t2 -3.5 q77 -114 120.5 -214.5t43.5 -208.5q0 -43 -19.5 -100t-55.5 -57q-9 0 -19.5 7.5t-19 17.5t-19 26t-16 26.5t-13.5 26t-9 17.5q-1 1 -3 1l-5 -4q-59 -154 -132 -223q20 -20 61.5 -38.5t69 -41.5t35.5 -65q-2 -4 -4 -16t-7 -18q-64 -97 -302 -97q-53 0 -110.5 9t-98 20 t-104.5 30q-15 5 -23 7q-14 4 -46 4.5t-40 1.5q-41 -45 -127.5 -65t-168.5 -20q-35 0 -69 1.5t-93 9t-101 20.5t-74.5 40t-32.5 64q0 40 10 59.5t41 48.5q11 2 40.5 13t49.5 12q4 0 14 2q2 2 2 4l-2 3q-48 11 -108 105.5t-73 156.5l-5 3q-4 0 -12 -20q-18 -41 -54.5 -74.5 t-77.5 -37.5h-1q-4 0 -6 4.5t-5 5.5q-23 54 -23 100q0 275 252 466z" />
-<glyph unicode="&#xf1d7;" horiz-adv-x="2048" d="M580 1075q0 41 -25 66t-66 25q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 66 24.5t25 65.5zM1323 568q0 28 -25.5 50t-65.5 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q40 0 65.5 22t25.5 51zM1087 1075q0 41 -24.5 66t-65.5 25 q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 65.5 24.5t24.5 65.5zM1722 568q0 28 -26 50t-65 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q39 0 65 22t26 51zM1456 965q-31 4 -70 4q-169 0 -311 -77t-223.5 -208.5t-81.5 -287.5 q0 -78 23 -152q-35 -3 -68 -3q-26 0 -50 1.5t-55 6.5t-44.5 7t-54.5 10.5t-50 10.5l-253 -127l72 218q-290 203 -290 490q0 169 97.5 311t264 223.5t363.5 81.5q176 0 332.5 -66t262 -182.5t136.5 -260.5zM2048 404q0 -117 -68.5 -223.5t-185.5 -193.5l55 -181l-199 109 q-150 -37 -218 -37q-169 0 -311 70.5t-223.5 191.5t-81.5 264t81.5 264t223.5 191.5t311 70.5q161 0 303 -70.5t227.5 -192t85.5 -263.5z" />
-<glyph unicode="&#xf1d8;" horiz-adv-x="1792" d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-453 185l-242 -295q-18 -23 -49 -23q-13 0 -22 4q-19 7 -30.5 23.5t-11.5 36.5v349l864 1059l-1069 -925l-395 162q-37 14 -40 55q-2 40 32 59l1664 960q15 9 32 9q20 0 36 -11z" />
-<glyph unicode="&#xf1d9;" horiz-adv-x="1792" d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-527 215l-298 -327q-18 -21 -47 -21q-14 0 -23 4q-19 7 -30 23.5t-11 36.5v452l-472 193q-37 14 -40 55q-3 39 32 59l1664 960q35 21 68 -2zM1422 26l221 1323l-1434 -827l336 -137 l863 639l-478 -797z" />
-<glyph unicode="&#xf1da;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298zM896 928v-448q0 -14 -9 -23 t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf1db;" d="M768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf1dc;" horiz-adv-x="1792" d="M1682 -128q-44 0 -132.5 3.5t-133.5 3.5q-44 0 -132 -3.5t-132 -3.5q-24 0 -37 20.5t-13 45.5q0 31 17 46t39 17t51 7t45 15q33 21 33 140l-1 391q0 21 -1 31q-13 4 -50 4h-675q-38 0 -51 -4q-1 -10 -1 -31l-1 -371q0 -142 37 -164q16 -10 48 -13t57 -3.5t45 -15 t20 -45.5q0 -26 -12.5 -48t-36.5 -22q-47 0 -139.5 3.5t-138.5 3.5q-43 0 -128 -3.5t-127 -3.5q-23 0 -35.5 21t-12.5 45q0 30 15.5 45t36 17.5t47.5 7.5t42 15q33 23 33 143l-1 57v813q0 3 0.5 26t0 36.5t-1.5 38.5t-3.5 42t-6.5 36.5t-11 31.5t-16 18q-15 10 -45 12t-53 2 t-41 14t-18 45q0 26 12 48t36 22q46 0 138.5 -3.5t138.5 -3.5q42 0 126.5 3.5t126.5 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17 -43.5t-38.5 -14.5t-49.5 -4t-43 -13q-35 -21 -35 -160l1 -320q0 -21 1 -32q13 -3 39 -3h699q25 0 38 3q1 11 1 32l1 320q0 139 -35 160 q-18 11 -58.5 12.5t-66 13t-25.5 49.5q0 26 12.5 48t37.5 22q44 0 132 -3.5t132 -3.5q43 0 129 3.5t129 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17.5 -44t-40 -14.5t-51.5 -3t-44 -12.5q-35 -23 -35 -161l1 -943q0 -119 34 -140q16 -10 46 -13.5t53.5 -4.5t41.5 -15.5t18 -44.5 q0 -26 -12 -48t-36 -22z" />
-<glyph unicode="&#xf1dd;" horiz-adv-x="1280" d="M1278 1347v-73q0 -29 -18.5 -61t-42.5 -32q-50 0 -54 -1q-26 -6 -32 -31q-3 -11 -3 -64v-1152q0 -25 -18 -43t-43 -18h-108q-25 0 -43 18t-18 43v1218h-143v-1218q0 -25 -17.5 -43t-43.5 -18h-108q-26 0 -43.5 18t-17.5 43v496q-147 12 -245 59q-126 58 -192 179 q-64 117 -64 259q0 166 88 286q88 118 209 159q111 37 417 37h479q25 0 43 -18t18 -43z" />
-<glyph unicode="&#xf1de;" d="M352 128v-128h-352v128h352zM704 256q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM864 640v-128h-864v128h864zM224 1152v-128h-224v128h224zM1536 128v-128h-736v128h736zM576 1280q26 0 45 -19t19 -45v-256 q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1216 768q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1536 640v-128h-224v128h224zM1536 1152v-128h-864v128h864z" />
-<glyph unicode="&#xf1e0;" d="M1216 512q133 0 226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5t-226.5 93.5t-93.5 226.5q0 12 2 34l-360 180q-92 -86 -218 -86q-133 0 -226.5 93.5t-93.5 226.5t93.5 226.5t226.5 93.5q126 0 218 -86l360 180q-2 22 -2 34q0 133 93.5 226.5t226.5 93.5 t226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5q-126 0 -218 86l-360 -180q2 -22 2 -34t-2 -34l360 -180q92 86 218 86z" />
-<glyph unicode="&#xf1e1;" d="M1280 341q0 88 -62.5 151t-150.5 63q-84 0 -145 -58l-241 120q2 16 2 23t-2 23l241 120q61 -58 145 -58q88 0 150.5 63t62.5 151t-62.5 150.5t-150.5 62.5t-151 -62.5t-63 -150.5q0 -7 2 -23l-241 -120q-62 57 -145 57q-88 0 -150.5 -62.5t-62.5 -150.5t62.5 -150.5 t150.5 -62.5q83 0 145 57l241 -120q-2 -16 -2 -23q0 -88 63 -150.5t151 -62.5t150.5 62.5t62.5 150.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf1e2;" horiz-adv-x="1792" d="M571 947q-10 25 -34 35t-49 0q-108 -44 -191 -127t-127 -191q-10 -25 0 -49t35 -34q13 -5 24 -5q42 0 60 40q34 84 98.5 148.5t148.5 98.5q25 11 35 35t0 49zM1513 1303l46 -46l-244 -243l68 -68q19 -19 19 -45.5t-19 -45.5l-64 -64q89 -161 89 -343q0 -143 -55.5 -273.5 t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5q182 0 343 -89l64 64q19 19 45.5 19t45.5 -19l68 -68zM1521 1359q-10 -10 -22 -10q-13 0 -23 10l-91 90q-9 10 -9 23t9 23q10 9 23 9t23 -9l90 -91 q10 -9 10 -22.5t-10 -22.5zM1751 1129q-11 -9 -23 -9t-23 9l-90 91q-10 9 -10 22.5t10 22.5q9 10 22.5 10t22.5 -10l91 -90q9 -10 9 -23t-9 -23zM1792 1312q0 -14 -9 -23t-23 -9h-96q-14 0 -23 9t-9 23t9 23t23 9h96q14 0 23 -9t9 -23zM1600 1504v-96q0 -14 -9 -23t-23 -9 t-23 9t-9 23v96q0 14 9 23t23 9t23 -9t9 -23zM1751 1449l-91 -90q-10 -10 -22 -10q-13 0 -23 10q-10 9 -10 22.5t10 22.5l90 91q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
-<glyph unicode="&#xf1e3;" horiz-adv-x="1792" d="M609 720l287 208l287 -208l-109 -336h-355zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM1515 186q149 203 149 454v3l-102 -89l-240 224l63 323 l134 -12q-150 206 -389 282l53 -124l-287 -159l-287 159l53 124q-239 -76 -389 -282l135 12l62 -323l-240 -224l-102 89v-3q0 -251 149 -454l30 132l326 -40l139 -298l-116 -69q117 -39 240 -39t240 39l-116 69l139 298l326 40z" />
-<glyph unicode="&#xf1e4;" horiz-adv-x="1792" d="M448 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM256 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM832 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM66 768q-28 0 -47 19t-19 46v129h514v-129q0 -27 -19 -46t-46 -19h-383zM1216 224v-192q0 -14 -9 -23t-23 -9h-192 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1600 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23 zM1408 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1016v-13h-514v10q0 104 -382 102q-382 -1 -382 -102v-10h-514v13q0 17 8.5 43t34 64t65.5 75.5t110.5 76t160 67.5t224 47.5t293.5 18.5t293 -18.5t224 -47.5 t160.5 -67.5t110.5 -76t65.5 -75.5t34 -64t8.5 -43zM1792 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 962v-129q0 -27 -19 -46t-46 -19h-384q-27 0 -46 19t-19 46v129h514z" />
-<glyph unicode="&#xf1e5;" horiz-adv-x="1792" d="M704 1216v-768q0 -26 -19 -45t-45 -19v-576q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v512l249 873q7 23 31 23h424zM1024 1216v-704h-256v704h256zM1792 320v-512q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v576q-26 0 -45 19t-19 45v768h424q24 0 31 -23z M736 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23zM1408 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf1e6;" horiz-adv-x="1792" d="M1755 1083q37 -37 37 -90t-37 -91l-401 -400l150 -150l-160 -160q-163 -163 -389.5 -186.5t-411.5 100.5l-362 -362h-181v181l362 362q-124 185 -100.5 411.5t186.5 389.5l160 160l150 -150l400 401q38 37 91 37t90 -37t37 -90.5t-37 -90.5l-400 -401l234 -234l401 400 q38 37 91 37t90 -37z" />
-<glyph unicode="&#xf1e7;" horiz-adv-x="1792" d="M873 796q0 -83 -63.5 -142.5t-152.5 -59.5t-152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59t152.5 -59t63.5 -143zM1375 796q0 -83 -63 -142.5t-153 -59.5q-89 0 -152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59q90 0 153 -59t63 -143zM1600 616v667q0 87 -32 123.5 t-111 36.5h-1112q-83 0 -112.5 -34t-29.5 -126v-673q43 -23 88.5 -40t81 -28t81 -18.5t71 -11t70 -4t58.5 -0.5t56.5 2t44.5 2q68 1 95 -27q6 -6 10 -9q26 -25 61 -51q7 91 118 87q5 0 36.5 -1.5t43 -2t45.5 -1t53 1t54.5 4.5t61 8.5t62 13.5t67 19.5t67.5 27t72 34.5z M1763 621q-121 -149 -372 -252q84 -285 -23 -465q-66 -113 -183 -148q-104 -32 -182 15q-86 51 -82 164l-1 326v1q-8 2 -24.5 6t-23.5 5l-1 -338q4 -114 -83 -164q-79 -47 -183 -15q-117 36 -182 150q-105 180 -22 463q-251 103 -372 252q-25 37 -4 63t60 -1q3 -2 11 -7 t11 -8v694q0 72 47 123t114 51h1257q67 0 114 -51t47 -123v-694l21 15q39 27 60 1t-4 -63z" />
-<glyph unicode="&#xf1e8;" horiz-adv-x="1792" d="M896 1102v-434h-145v434h145zM1294 1102v-434h-145v434h145zM1294 342l253 254v795h-1194v-1049h326v-217l217 217h398zM1692 1536v-1013l-434 -434h-326l-217 -217h-217v217h-398v1158l109 289h1483z" />
-<glyph unicode="&#xf1e9;" d="M773 217v-127q-1 -292 -6 -305q-12 -32 -51 -40q-54 -9 -181.5 38t-162.5 89q-13 15 -17 36q-1 12 4 26q4 10 34 47t181 216q1 0 60 70q15 19 39.5 24.5t49.5 -3.5q24 -10 37.5 -29t12.5 -42zM624 468q-3 -55 -52 -70l-120 -39q-275 -88 -292 -88q-35 2 -54 36 q-12 25 -17 75q-8 76 1 166.5t30 124.5t56 32q13 0 202 -77q70 -29 115 -47l84 -34q23 -9 35.5 -30.5t11.5 -48.5zM1450 171q-7 -54 -91.5 -161t-135.5 -127q-37 -14 -63 7q-14 10 -184 287l-47 77q-14 21 -11.5 46t19.5 46q35 43 83 26q1 -1 119 -40q203 -66 242 -79.5 t47 -20.5q28 -22 22 -61zM778 803q5 -102 -54 -122q-58 -17 -114 71l-378 598q-8 35 19 62q41 43 207.5 89.5t224.5 31.5q40 -10 49 -45q3 -18 22 -305.5t24 -379.5zM1440 695q3 -39 -26 -59q-15 -10 -329 -86q-67 -15 -91 -23l1 2q-23 -6 -46 4t-37 32q-30 47 0 87 q1 1 75 102q125 171 150 204t34 39q28 19 65 2q48 -23 123 -133.5t81 -167.5v-3z" />
-<glyph unicode="&#xf1ea;" horiz-adv-x="2048" d="M1024 1024h-384v-384h384v384zM1152 384v-128h-640v128h640zM1152 1152v-640h-640v640h640zM1792 384v-128h-512v128h512zM1792 640v-128h-512v128h512zM1792 896v-128h-512v128h512zM1792 1152v-128h-512v128h512zM256 192v960h-128v-960q0 -26 19 -45t45 -19t45 19 t19 45zM1920 192v1088h-1536v-1088q0 -33 -11 -64h1483q26 0 45 19t19 45zM2048 1408v-1216q0 -80 -56 -136t-136 -56h-1664q-80 0 -136 56t-56 136v1088h256v128h1792z" />
-<glyph unicode="&#xf1eb;" horiz-adv-x="2048" d="M1024 13q-20 0 -93 73.5t-73 93.5q0 32 62.5 54t103.5 22t103.5 -22t62.5 -54q0 -20 -73 -93.5t-93 -73.5zM1294 284q-2 0 -40 25t-101.5 50t-128.5 25t-128.5 -25t-101 -50t-40.5 -25q-18 0 -93.5 75t-75.5 93q0 13 10 23q78 77 196 121t233 44t233 -44t196 -121 q10 -10 10 -23q0 -18 -75.5 -93t-93.5 -75zM1567 556q-11 0 -23 8q-136 105 -252 154.5t-268 49.5q-85 0 -170.5 -22t-149 -53t-113.5 -62t-79 -53t-31 -22q-17 0 -92 75t-75 93q0 12 10 22q132 132 320 205t380 73t380 -73t320 -205q10 -10 10 -22q0 -18 -75 -93t-92 -75z M1838 827q-11 0 -22 9q-179 157 -371.5 236.5t-420.5 79.5t-420.5 -79.5t-371.5 -236.5q-11 -9 -22 -9q-17 0 -92.5 75t-75.5 93q0 13 10 23q187 186 445 288t527 102t527 -102t445 -288q10 -10 10 -23q0 -18 -75.5 -93t-92.5 -75z" />
-<glyph unicode="&#xf1ec;" horiz-adv-x="1792" d="M384 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5 t37.5 90.5zM384 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 768q0 53 -37.5 90.5t-90.5 37.5 t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1536 0v384q0 52 -38 90t-90 38t-90 -38t-38 -90v-384q0 -52 38 -90t90 -38t90 38t38 90zM1152 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z M1536 1088v256q0 26 -19 45t-45 19h-1280q-26 0 -45 -19t-19 -45v-256q0 -26 19 -45t45 -19h1280q26 0 45 19t19 45zM1536 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1408v-1536q0 -52 -38 -90t-90 -38 h-1408q-52 0 -90 38t-38 90v1536q0 52 38 90t90 38h1408q52 0 90 -38t38 -90z" />
-<glyph unicode="&#xf1ed;" horiz-adv-x="1792" d="M1112 1090q0 159 -237 159h-70q-32 0 -59.5 -21.5t-34.5 -52.5l-63 -276q-2 -5 -2 -16q0 -24 17 -39.5t41 -15.5h53q69 0 128.5 13t112.5 41t83.5 81.5t30.5 126.5zM1716 938q0 -265 -220 -428q-219 -161 -612 -161h-61q-32 0 -59 -21.5t-34 -52.5l-73 -316 q-8 -36 -40.5 -61.5t-69.5 -25.5h-213q-31 0 -53 20t-22 51q0 10 13 65h151q34 0 64 23.5t38 56.5l73 316q8 33 37.5 57t63.5 24h61q390 0 607 160t217 421q0 129 -51 207q183 -92 183 -335zM1533 1123q0 -264 -221 -428q-218 -161 -612 -161h-60q-32 0 -59.5 -22t-34.5 -53 l-73 -315q-8 -36 -40 -61.5t-69 -25.5h-214q-31 0 -52.5 19.5t-21.5 51.5q0 8 2 20l300 1301q8 36 40.5 61.5t69.5 25.5h444q68 0 125 -4t120.5 -15t113.5 -30t96.5 -50.5t77.5 -74t49.5 -103.5t18.5 -136z" />
-<glyph unicode="&#xf1ee;" horiz-adv-x="1792" d="M602 949q19 -61 31 -123.5t17 -141.5t-14 -159t-62 -145q-21 81 -67 157t-95.5 127t-99 90.5t-78.5 57.5t-33 19q-62 34 -81.5 100t14.5 128t101 81.5t129 -14.5q138 -83 238 -177zM927 1236q11 -25 20.5 -46t36.5 -100.5t42.5 -150.5t25.5 -179.5t0 -205.5t-47.5 -209.5 t-105.5 -208.5q-51 -72 -138 -72q-54 0 -98 31q-57 40 -69 109t28 127q60 85 81 195t13 199.5t-32 180.5t-39 128t-22 52q-31 63 -8.5 129.5t85.5 97.5q34 17 75 17q47 0 88.5 -25t63.5 -69zM1248 567q-17 -160 -72 -311q-17 131 -63 246q25 174 -5 361q-27 178 -94 342 q114 -90 212 -211q9 -37 15 -80q26 -179 7 -347zM1520 1440q9 -17 23.5 -49.5t43.5 -117.5t50.5 -178t34 -227.5t5 -269t-47 -300t-112.5 -323.5q-22 -48 -66 -75.5t-95 -27.5q-39 0 -74 16q-67 31 -92.5 100t4.5 136q58 126 90 257.5t37.5 239.5t-3.5 213.5t-26.5 180.5 t-38.5 138.5t-32.5 90t-15.5 32.5q-34 65 -11.5 135.5t87.5 104.5q37 20 81 20q49 0 91.5 -25.5t66.5 -70.5z" />
-<glyph unicode="&#xf1f0;" horiz-adv-x="2304" d="M1975 546h-138q14 37 66 179l3 9q4 10 10 26t9 26l12 -55zM531 611l-58 295q-11 54 -75 54h-268l-2 -13q311 -79 403 -336zM710 960l-162 -438l-17 89q-26 70 -85 129.5t-131 88.5l135 -510h175l261 641h-176zM849 318h166l104 642h-166zM1617 944q-69 27 -149 27 q-123 0 -201 -59t-79 -153q-1 -102 145 -174q48 -23 67 -41t19 -39q0 -30 -30 -46t-69 -16q-86 0 -156 33l-22 11l-23 -144q74 -34 185 -34q130 -1 208.5 59t80.5 160q0 106 -140 174q-49 25 -71 42t-22 38q0 22 24.5 38.5t70.5 16.5q70 1 124 -24l15 -8zM2042 960h-128 q-65 0 -87 -54l-246 -588h174l35 96h212q5 -22 20 -96h154zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
-<glyph unicode="&#xf1f1;" horiz-adv-x="2304" d="M671 603h-13q-47 0 -47 -32q0 -22 20 -22q17 0 28 15t12 39zM1066 639h62v3q1 4 0.5 6.5t-1 7t-2 8t-4.5 6.5t-7.5 5t-11.5 2q-28 0 -36 -38zM1606 603h-12q-48 0 -48 -32q0 -22 20 -22q17 0 28 15t12 39zM1925 629q0 41 -30 41q-19 0 -31 -20t-12 -51q0 -42 28 -42 q20 0 32.5 20t12.5 52zM480 770h87l-44 -262h-56l32 201l-71 -201h-39l-4 200l-34 -200h-53l44 262h81l2 -163zM733 663q0 -6 -4 -42q-16 -101 -17 -113h-47l1 22q-20 -26 -58 -26q-23 0 -37.5 16t-14.5 42q0 39 26 60.5t73 21.5q14 0 23 -1q0 3 0.5 5.5t1 4.5t0.5 3 q0 20 -36 20q-29 0 -59 -10q0 4 7 48q38 11 67 11q74 0 74 -62zM889 721l-8 -49q-22 3 -41 3q-27 0 -27 -17q0 -8 4.5 -12t21.5 -11q40 -19 40 -60q0 -72 -87 -71q-34 0 -58 6q0 2 7 49q29 -8 51 -8q32 0 32 19q0 7 -4.5 11.5t-21.5 12.5q-43 20 -43 59q0 72 84 72 q30 0 50 -4zM977 721h28l-7 -52h-29q-2 -17 -6.5 -40.5t-7 -38.5t-2.5 -18q0 -16 19 -16q8 0 16 2l-8 -47q-21 -7 -40 -7q-43 0 -45 47q0 12 8 56q3 20 25 146h55zM1180 648q0 -23 -7 -52h-111q-3 -22 10 -33t38 -11q30 0 58 14l-9 -54q-30 -8 -57 -8q-95 0 -95 95 q0 55 27.5 90.5t69.5 35.5q35 0 55.5 -21t20.5 -56zM1319 722q-13 -23 -22 -62q-22 2 -31 -24t-25 -128h-56l3 14q22 130 29 199h51l-3 -33q14 21 25.5 29.5t28.5 4.5zM1506 763l-9 -57q-28 14 -50 14q-31 0 -51 -27.5t-20 -70.5q0 -30 13.5 -47t38.5 -17q21 0 48 13 l-10 -59q-28 -8 -50 -8q-45 0 -71.5 30.5t-26.5 82.5q0 70 35.5 114.5t91.5 44.5q26 0 61 -13zM1668 663q0 -18 -4 -42q-13 -79 -17 -113h-46l1 22q-20 -26 -59 -26q-23 0 -37 16t-14 42q0 39 25.5 60.5t72.5 21.5q15 0 23 -1q2 7 2 13q0 20 -36 20q-29 0 -59 -10q0 4 8 48 q38 11 67 11q73 0 73 -62zM1809 722q-14 -24 -21 -62q-23 2 -31.5 -23t-25.5 -129h-56l3 14q19 104 29 199h52q0 -11 -4 -33q15 21 26.5 29.5t27.5 4.5zM1950 770h56l-43 -262h-53l3 19q-23 -23 -52 -23q-31 0 -49.5 24t-18.5 64q0 53 27.5 92t64.5 39q31 0 53 -29z M2061 640q0 148 -72.5 273t-198 198t-273.5 73q-181 0 -328 -110q127 -116 171 -284h-50q-44 150 -158 253q-114 -103 -158 -253h-50q44 168 171 284q-147 110 -328 110q-148 0 -273.5 -73t-198 -198t-72.5 -273t72.5 -273t198 -198t273.5 -73q181 0 328 110 q-120 111 -165 264h50q46 -138 152 -233q106 95 152 233h50q-45 -153 -165 -264q147 -110 328 -110q148 0 273.5 73t198 198t72.5 273zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
-<glyph unicode="&#xf1f2;" horiz-adv-x="2304" d="M313 759q0 -51 -36 -84q-29 -26 -89 -26h-17v220h17q61 0 89 -27q36 -31 36 -83zM2089 824q0 -52 -64 -52h-19v101h20q63 0 63 -49zM380 759q0 74 -50 120.5t-129 46.5h-95v-333h95q74 0 119 38q60 51 60 128zM410 593h65v333h-65v-333zM730 694q0 40 -20.5 62t-75.5 42 q-29 10 -39.5 19t-10.5 23q0 16 13.5 26.5t34.5 10.5q29 0 53 -27l34 44q-41 37 -98 37q-44 0 -74 -27.5t-30 -67.5q0 -35 18 -55.5t64 -36.5q37 -13 45 -19q19 -12 19 -34q0 -20 -14 -33.5t-36 -13.5q-48 0 -71 44l-42 -40q44 -64 115 -64q51 0 83 30.5t32 79.5zM1008 604 v77q-37 -37 -78 -37q-49 0 -80.5 32.5t-31.5 82.5q0 48 31.5 81.5t77.5 33.5q43 0 81 -38v77q-40 20 -80 20q-74 0 -125.5 -50.5t-51.5 -123.5t51 -123.5t125 -50.5q42 0 81 19zM2240 0v527q-65 -40 -144.5 -84t-237.5 -117t-329.5 -137.5t-417.5 -134.5t-504 -118h1569 q26 0 45 19t19 45zM1389 757q0 75 -53 128t-128 53t-128 -53t-53 -128t53 -128t128 -53t128 53t53 128zM1541 584l144 342h-71l-90 -224l-89 224h-71l142 -342h35zM1714 593h184v56h-119v90h115v56h-115v74h119v57h-184v-333zM2105 593h80l-105 140q76 16 76 94q0 47 -31 73 t-87 26h-97v-333h65v133h9zM2304 1274v-1268q0 -56 -38.5 -95t-93.5 -39h-2040q-55 0 -93.5 39t-38.5 95v1268q0 56 38.5 95t93.5 39h2040q55 0 93.5 -39t38.5 -95z" />
-<glyph unicode="&#xf1f3;" horiz-adv-x="2304" d="M119 854h89l-45 108zM740 328l74 79l-70 79h-163v-49h142v-55h-142v-54h159zM898 406l99 -110v217zM1186 453q0 33 -40 33h-84v-69h83q41 0 41 36zM1475 457q0 29 -42 29h-82v-61h81q43 0 43 32zM1197 923q0 29 -42 29h-82v-60h81q43 0 43 31zM1656 854h89l-44 108z M699 1009v-271h-66v212l-94 -212h-57l-94 212v-212h-132l-25 60h-135l-25 -60h-70l116 271h96l110 -257v257h106l85 -184l77 184h108zM1255 453q0 -20 -5.5 -35t-14 -25t-22.5 -16.5t-26 -10t-31.5 -4.5t-31.5 -1t-32.5 0.5t-29.5 0.5v-91h-126l-80 90l-83 -90h-256v271h260 l80 -89l82 89h207q109 0 109 -89zM964 794v-56h-217v271h217v-57h-152v-49h148v-55h-148v-54h152zM2304 235v-229q0 -55 -38.5 -94.5t-93.5 -39.5h-2040q-55 0 -93.5 39.5t-38.5 94.5v678h111l25 61h55l25 -61h218v46l19 -46h113l20 47v-47h541v99l10 1q10 0 10 -14v-86h279 v23q23 -12 55 -18t52.5 -6.5t63 0.5t51.5 1l25 61h56l25 -61h227v58l34 -58h182v378h-180v-44l-25 44h-185v-44l-23 44h-249q-69 0 -109 -22v22h-172v-22q-24 22 -73 22h-628l-43 -97l-43 97h-198v-44l-22 44h-169l-78 -179v391q0 55 38.5 94.5t93.5 39.5h2040 q55 0 93.5 -39.5t38.5 -94.5v-678h-120q-51 0 -81 -22v22h-177q-55 0 -78 -22v22h-316v-22q-31 22 -87 22h-209v-22q-23 22 -91 22h-234l-54 -58l-50 58h-349v-378h343l55 59l52 -59h211v89h21q59 0 90 13v-102h174v99h8q8 0 10 -2t2 -10v-87h529q57 0 88 24v-24h168 q60 0 95 17zM1546 469q0 -23 -12 -43t-34 -29q25 -9 34 -26t9 -46v-54h-65v45q0 33 -12 43.5t-46 10.5h-69v-99h-65v271h154q48 0 77 -15t29 -58zM1269 936q0 -24 -12.5 -44t-33.5 -29q26 -9 34.5 -25.5t8.5 -46.5v-53h-65q0 9 0.5 26.5t0 25t-3 18.5t-8.5 16t-17.5 8.5 t-29.5 3.5h-70v-98h-64v271l153 -1q49 0 78 -14.5t29 -57.5zM1798 327v-56h-216v271h216v-56h-151v-49h148v-55h-148v-54zM1372 1009v-271h-66v271h66zM2065 357q0 -86 -102 -86h-126v58h126q34 0 34 25q0 16 -17 21t-41.5 5t-49.5 3.5t-42 22.5t-17 55q0 39 26 60t66 21 h130v-57h-119q-36 0 -36 -25q0 -16 17.5 -20.5t42 -4t49 -2.5t42 -21.5t17.5 -54.5zM2304 407v-101q-24 -35 -88 -35h-125v58h125q33 0 33 25q0 13 -12.5 19t-31 5.5t-40 2t-40 8t-31 24t-12.5 48.5q0 39 26.5 60t66.5 21h129v-57h-118q-36 0 -36 -25q0 -20 29 -22t68.5 -5 t56.5 -26zM2139 1008v-270h-92l-122 203v-203h-132l-26 60h-134l-25 -60h-75q-129 0 -129 133q0 138 133 138h63v-59q-7 0 -28 1t-28.5 0.5t-23 -2t-21.5 -6.5t-14.5 -13.5t-11.5 -23t-3 -33.5q0 -38 13.5 -58t49.5 -20h29l92 213h97l109 -256v256h99l114 -188v188h66z" />
-<glyph unicode="&#xf1f4;" horiz-adv-x="2304" d="M322 689h-15q-19 0 -19 18q0 28 19 85q5 15 15 19.5t28 4.5q77 0 77 -49q0 -41 -30.5 -59.5t-74.5 -18.5zM664 528q-47 0 -47 29q0 62 123 62l3 -3q-5 -88 -79 -88zM1438 687h-15q-19 0 -19 19q0 28 19 85q5 15 14.5 19t28.5 4q77 0 77 -49q0 -41 -30.5 -59.5 t-74.5 -18.5zM1780 527q-47 0 -47 30q0 62 123 62l3 -3q-5 -89 -79 -89zM373 894h-128q-8 0 -14.5 -4t-8.5 -7.5t-7 -12.5q-3 -7 -45 -190t-42 -192q0 -7 5.5 -12.5t13.5 -5.5h62q25 0 32.5 34.5l15 69t32.5 34.5q47 0 87.5 7.5t80.5 24.5t63.5 52.5t23.5 84.5 q0 36 -14.5 61t-41 36.5t-53.5 15.5t-62 4zM719 798q-38 0 -74 -6q-2 0 -8.5 -1t-9 -1.5l-7.5 -1.5t-7.5 -2t-6.5 -3t-6.5 -4t-5 -5t-4.5 -7t-4 -9q-9 -29 -9 -39t9 -10q5 0 21.5 5t19.5 6q30 8 58 8q74 0 74 -36q0 -11 -10 -14q-8 -2 -18 -3t-21.5 -1.5t-17.5 -1.5 q-38 -4 -64.5 -10t-56.5 -19.5t-45.5 -39t-15.5 -62.5q0 -38 26 -59.5t64 -21.5q24 0 45.5 6.5t33 13t38.5 23.5q-3 -7 -3 -15t5.5 -13.5t12.5 -5.5h56q1 1 7 3.5t7.5 3.5t5 3.5t5 5.5t2.5 8l45 194q4 13 4 30q0 81 -145 81zM1247 793h-74q-22 0 -39 -23q-5 -7 -29.5 -51 t-46.5 -81.5t-26 -38.5l-5 4q0 77 -27 166q-1 5 -3.5 8.5t-6 6.5t-6.5 5t-8.5 3t-8.5 1.5t-9.5 1t-9 0.5h-10h-8.5q-38 0 -38 -21l1 -5q5 -53 25 -151t25 -143q2 -16 2 -24q0 -19 -30.5 -61.5t-30.5 -58.5q0 -13 40 -13q61 0 76 25l245 415q10 20 10 26q0 9 -8 9zM1489 892 h-129q-18 0 -29 -23q-6 -13 -46.5 -191.5t-40.5 -190.5q0 -20 43 -20h7.5h9h9t9.5 1t8.5 2t8.5 3t6.5 4.5t5.5 6t3 8.5l21 91q2 10 10.5 17t19.5 7q47 0 87.5 7t80.5 24.5t63.5 52.5t23.5 84q0 36 -14.5 61t-41 36.5t-53.5 15.5t-62 4zM1835 798q-26 0 -74 -6 q-38 -6 -48 -16q-7 -8 -11 -19q-8 -24 -8 -39q0 -10 8 -10q1 0 41 12q30 8 58 8q74 0 74 -36q0 -12 -10 -14q-4 -1 -57 -7q-38 -4 -64.5 -10t-56.5 -19.5t-45.5 -39t-15.5 -62.5t26 -58.5t64 -21.5q24 0 45 6t34 13t38 24q-3 -15 -3 -16q0 -5 2 -8.5t6.5 -5.5t8 -3.5 t10.5 -2t9.5 -0.5h9.5h8q42 0 48 25l45 194q3 15 3 31q0 81 -145 81zM2157 889h-55q-25 0 -33 -40q-10 -44 -36.5 -167t-42.5 -190v-5q0 -16 16 -18h1h57q10 0 18.5 6.5t10.5 16.5l83 374h-1l1 5q0 7 -5.5 12.5t-13.5 5.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048 q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
-<glyph unicode="&#xf1f5;" horiz-adv-x="2304" d="M1597 633q0 -69 -21 -106q-19 -35 -52 -35q-23 0 -41 9v224q29 30 57 30q57 0 57 -122zM2035 669h-110q6 98 56 98q51 0 54 -98zM476 534q0 59 -33 91.5t-101 57.5q-36 13 -52 24t-16 25q0 26 38 26q58 0 124 -33l18 112q-67 32 -149 32q-77 0 -123 -38q-48 -39 -48 -109 q0 -58 32.5 -90.5t99.5 -56.5q39 -14 54.5 -25.5t15.5 -27.5q0 -31 -48 -31q-29 0 -70 12.5t-72 30.5l-18 -113q72 -41 168 -41q81 0 129 37q51 41 51 117zM771 749l19 111h-96v135l-129 -21l-18 -114l-46 -8l-17 -103h62v-219q0 -84 44 -120q38 -30 111 -30q32 0 79 11v118 q-32 -7 -44 -7q-42 0 -42 50v197h77zM1087 724v139q-15 3 -28 3q-32 0 -55.5 -16t-33.5 -46l-10 56h-131v-471h150v306q26 31 82 31q16 0 26 -2zM1124 389h150v471h-150v-471zM1746 638q0 122 -45 179q-40 52 -111 52q-64 0 -117 -56l-8 47h-132v-645l150 25v151 q36 -11 68 -11q83 0 134 56q61 65 61 202zM1278 986q0 33 -23 56t-56 23t-56 -23t-23 -56t23 -56.5t56 -23.5t56 23.5t23 56.5zM2176 629q0 113 -48 176q-50 64 -144 64q-96 0 -151.5 -66t-55.5 -180q0 -128 63 -188q55 -55 161 -55q101 0 160 40l-16 103q-57 -31 -128 -31 q-43 0 -63 19q-23 19 -28 66h248q2 14 2 52zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
-<glyph unicode="&#xf1f6;" horiz-adv-x="2048" d="M1558 684q61 -356 298 -556q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5zM1024 -176q16 0 16 16t-16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5zM2026 1424q8 -10 7.5 -23.5t-10.5 -22.5 l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5 l418 363q10 8 23.5 7t21.5 -11z" />
-<glyph unicode="&#xf1f7;" horiz-adv-x="2048" d="M1040 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM503 315l877 760q-42 88 -132.5 146.5t-223.5 58.5q-93 0 -169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -384 -137 -645zM1856 128 q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5l149 129h757q-166 187 -227 459l111 97q61 -356 298 -556zM1942 1520l84 -96q8 -10 7.5 -23.5t-10.5 -22.5l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161 q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5l418 363q10 8 23.5 7t21.5 -11z" />
-<glyph unicode="&#xf1f8;" horiz-adv-x="1408" d="M512 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM768 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1024 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704 q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167 q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf1f9;" d="M1150 462v-109q0 -50 -36.5 -89t-94 -60.5t-118 -32.5t-117.5 -11q-205 0 -342.5 139t-137.5 346q0 203 136 339t339 136q34 0 75.5 -4.5t93 -18t92.5 -34t69 -56.5t28 -81v-109q0 -16 -16 -16h-118q-16 0 -16 16v70q0 43 -65.5 67.5t-137.5 24.5q-140 0 -228.5 -91.5 t-88.5 -237.5q0 -151 91.5 -249.5t233.5 -98.5q68 0 138 24t70 66v70q0 7 4.5 11.5t10.5 4.5h119q6 0 11 -4.5t5 -11.5zM768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5 t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf1fa;" d="M972 761q0 108 -53.5 169t-147.5 61q-63 0 -124 -30.5t-110 -84.5t-79.5 -137t-30.5 -180q0 -112 53.5 -173t150.5 -61q96 0 176 66.5t122.5 166t42.5 203.5zM1536 640q0 -111 -37 -197t-98.5 -135t-131.5 -74.5t-145 -27.5q-6 0 -15.5 -0.5t-16.5 -0.5q-95 0 -142 53 q-28 33 -33 83q-52 -66 -131.5 -110t-173.5 -44q-161 0 -249.5 95.5t-88.5 269.5q0 157 66 290t179 210.5t246 77.5q87 0 155 -35.5t106 -99.5l2 19l11 56q1 6 5.5 12t9.5 6h118q5 0 13 -11q5 -5 3 -16l-120 -614q-5 -24 -5 -48q0 -39 12.5 -52t44.5 -13q28 1 57 5.5t73 24 t77 50t57 89.5t24 137q0 292 -174 466t-466 174q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51q228 0 405 144q11 9 24 8t21 -12l41 -49q8 -12 7 -24q-2 -13 -12 -22q-102 -83 -227.5 -128t-258.5 -45q-156 0 -298 61 t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q344 0 556 -212t212 -556z" />
-<glyph unicode="&#xf1fb;" horiz-adv-x="1792" d="M1698 1442q94 -94 94 -226.5t-94 -225.5l-225 -223l104 -104q10 -10 10 -23t-10 -23l-210 -210q-10 -10 -23 -10t-23 10l-105 105l-603 -603q-37 -37 -90 -37h-203l-256 -128l-64 64l128 256v203q0 53 37 90l603 603l-105 105q-10 10 -10 23t10 23l210 210q10 10 23 10 t23 -10l104 -104l223 225q93 94 225.5 94t226.5 -94zM512 64l576 576l-192 192l-576 -576v-192h192z" />
-<glyph unicode="&#xf1fc;" horiz-adv-x="1792" d="M1615 1536q70 0 122.5 -46.5t52.5 -116.5q0 -63 -45 -151q-332 -629 -465 -752q-97 -91 -218 -91q-126 0 -216.5 92.5t-90.5 219.5q0 128 92 212l638 579q59 54 130 54zM706 502q39 -76 106.5 -130t150.5 -76l1 -71q4 -213 -129.5 -347t-348.5 -134q-123 0 -218 46.5 t-152.5 127.5t-86.5 183t-29 220q7 -5 41 -30t62 -44.5t59 -36.5t46 -17q41 0 55 37q25 66 57.5 112.5t69.5 76t88 47.5t103 25.5t125 10.5z" />
-<glyph unicode="&#xf1fd;" horiz-adv-x="1792" d="M1792 128v-384h-1792v384q45 0 85 14t59 27.5t47 37.5q30 27 51.5 38t56.5 11t55.5 -11t52.5 -38q29 -25 47 -38t58 -27t86 -14q45 0 85 14.5t58 27t48 37.5q21 19 32.5 27t31 15t43.5 7q35 0 56.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14t85 14t59 27.5t47 37.5 q30 27 51.5 38t56.5 11q34 0 55.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14zM1792 448v-192q-35 0 -55.5 11t-52.5 38q-29 25 -47 38t-58 27t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-22 -19 -33 -27t-31 -15t-44 -7q-35 0 -56.5 11t-51.5 38q-29 25 -47 38t-58 27 t-86 14q-45 0 -85 -14.5t-58 -27t-48 -37.5q-21 -19 -32.5 -27t-31 -15t-43.5 -7q-35 0 -56.5 11t-51.5 38q-28 24 -47 37.5t-59 27.5t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-30 -27 -51.5 -38t-56.5 -11v192q0 80 56 136t136 56h64v448h256v-448h256v448h256v-448h256v448 h256v-448h64q80 0 136 -56t56 -136zM512 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1024 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51 t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1536 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150z" />
-<glyph unicode="&#xf1fe;" horiz-adv-x="2048" d="M2048 0v-128h-2048v1536h128v-1408h1920zM1664 1024l256 -896h-1664v576l448 576l576 -576z" />
-<glyph unicode="&#xf200;" horiz-adv-x="1792" d="M768 646l546 -546q-106 -108 -247.5 -168t-298.5 -60q-209 0 -385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103v-762zM955 640h773q0 -157 -60 -298.5t-168 -247.5zM1664 768h-768v768q209 0 385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf201;" horiz-adv-x="2048" d="M2048 0v-128h-2048v1536h128v-1408h1920zM1920 1248v-435q0 -21 -19.5 -29.5t-35.5 7.5l-121 121l-633 -633q-10 -10 -23 -10t-23 10l-233 233l-416 -416l-192 192l585 585q10 10 23 10t23 -10l233 -233l464 464l-121 121q-16 16 -7.5 35.5t29.5 19.5h435q14 0 23 -9 t9 -23z" />
-<glyph unicode="&#xf202;" horiz-adv-x="1792" d="M1292 832q0 -6 10 -41q10 -29 25 -49.5t41 -34t44 -20t55 -16.5q325 -91 325 -332q0 -146 -105.5 -242.5t-254.5 -96.5q-59 0 -111.5 18.5t-91.5 45.5t-77 74.5t-63 87.5t-53.5 103.5t-43.5 103t-39.5 106.5t-35.5 95q-32 81 -61.5 133.5t-73.5 96.5t-104 64t-142 20 q-96 0 -183 -55.5t-138 -144.5t-51 -185q0 -160 106.5 -279.5t263.5 -119.5q177 0 258 95q56 63 83 116l84 -152q-15 -34 -44 -70l1 -1q-131 -152 -388 -152q-147 0 -269.5 79t-190.5 207.5t-68 274.5q0 105 43.5 206t116 176.5t172 121.5t204.5 46q87 0 159 -19t123.5 -50 t95 -80t72.5 -99t58.5 -117t50.5 -124.5t50 -130.5t55 -127q96 -200 233 -200q81 0 138.5 48.5t57.5 128.5q0 42 -19 72t-50.5 46t-72.5 31.5t-84.5 27t-87.5 34t-81 52t-65 82t-39 122.5q-3 16 -3 33q0 110 87.5 192t198.5 78q78 -3 120.5 -14.5t90.5 -53.5h-1 q12 -11 23 -24.5t26 -36t19 -27.5l-129 -99q-26 49 -54 70v1q-23 21 -97 21q-49 0 -84 -33t-35 -83z" />
-<glyph unicode="&#xf203;" d="M1432 484q0 173 -234 239q-35 10 -53 16.5t-38 25t-29 46.5q0 2 -2 8.5t-3 12t-1 7.5q0 36 24.5 59.5t60.5 23.5q54 0 71 -15h-1q20 -15 39 -51l93 71q-39 54 -49 64q-33 29 -67.5 39t-85.5 10q-80 0 -142 -57.5t-62 -137.5q0 -7 2 -23q16 -96 64.5 -140t148.5 -73 q29 -8 49 -15.5t45 -21.5t38.5 -34.5t13.5 -46.5v-5q1 -58 -40.5 -93t-100.5 -35q-97 0 -167 144q-23 47 -51.5 121.5t-48 125.5t-54 110.5t-74 95.5t-103.5 60.5t-147 24.5q-101 0 -192 -56t-144 -148t-50 -192v-1q4 -108 50.5 -199t133.5 -147.5t196 -56.5q186 0 279 110 q20 27 31 51l-60 109q-42 -80 -99 -116t-146 -36q-115 0 -191 87t-76 204q0 105 82 189t186 84q112 0 170 -53.5t104 -172.5q8 -21 25.5 -68.5t28.5 -76.5t31.5 -74.5t38.5 -74t45.5 -62.5t55.5 -53.5t66 -33t80 -13.5q107 0 183 69.5t76 174.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf204;" horiz-adv-x="2048" d="M1152 640q0 104 -40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM1920 640q0 104 -40.5 198.5 t-109.5 163.5t-163.5 109.5t-198.5 40.5h-386q119 -90 188.5 -224t69.5 -288t-69.5 -288t-188.5 -224h386q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM2048 640q0 -130 -51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5 t-136.5 204t-51 248.5t51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5z" />
-<glyph unicode="&#xf205;" horiz-adv-x="2048" d="M0 640q0 130 51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5t-51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5t-136.5 204t-51 248.5zM1408 128q104 0 198.5 40.5t163.5 109.5 t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5z" />
-<glyph unicode="&#xf206;" horiz-adv-x="2304" d="M762 384h-314q-40 0 -57.5 35t6.5 67l188 251q-65 31 -137 31q-132 0 -226 -94t-94 -226t94 -226t226 -94q115 0 203 72.5t111 183.5zM576 512h186q-18 85 -75 148zM1056 512l288 384h-480l-99 -132q105 -103 126 -252h165zM2176 448q0 132 -94 226t-226 94 q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94t226 94t94 226zM2304 448q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 97 39.5 183.5t109.5 149.5l-65 98l-353 -469 q-18 -26 -51 -26h-197q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q114 0 215 -55l137 183h-224q-26 0 -45 19t-19 45t19 45t45 19h384v-128h435l-85 128h-222q-26 0 -45 19t-19 45t19 45t45 19h256q33 0 53 -28l267 -400 q91 44 192 44q185 0 316.5 -131.5t131.5 -316.5z" />
-<glyph unicode="&#xf207;" d="M384 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1362 716l-72 384q-5 23 -22.5 37.5t-40.5 14.5 h-918q-23 0 -40.5 -14.5t-22.5 -37.5l-72 -384q-5 -30 14 -53t49 -23h1062q30 0 49 23t14 53zM1136 1328q0 20 -14 34t-34 14h-640q-20 0 -34 -14t-14 -34t14 -34t34 -14h640q20 0 34 14t14 34zM1536 603v-603h-128v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5v128h-768v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v128h-128v603q0 112 25 223l103 454q9 78 97.5 137t230 89t312.5 30t312.5 -30t230 -89t97.5 -137l105 -454q23 -102 23 -223z" />
-<glyph unicode="&#xf208;" horiz-adv-x="2048" d="M1463 704q0 -35 -25 -60.5t-61 -25.5h-702q-36 0 -61 25.5t-25 60.5t25 60.5t61 25.5h702q36 0 61 -25.5t25 -60.5zM1677 704q0 86 -23 170h-982q-36 0 -61 25t-25 60q0 36 25 61t61 25h908q-88 143 -235 227t-320 84q-177 0 -327.5 -87.5t-238 -237.5t-87.5 -327 q0 -86 23 -170h982q36 0 61 -25t25 -60q0 -36 -25 -61t-61 -25h-908q88 -143 235.5 -227t320.5 -84q132 0 253 51.5t208 139t139 208t52 253.5zM2048 959q0 -35 -25 -60t-61 -25h-131q17 -85 17 -170q0 -167 -65.5 -319.5t-175.5 -263t-262.5 -176t-319.5 -65.5 q-246 0 -448.5 133t-301.5 350h-189q-36 0 -61 25t-25 61q0 35 25 60t61 25h132q-17 85 -17 170q0 167 65.5 319.5t175.5 263t262.5 176t320.5 65.5q245 0 447.5 -133t301.5 -350h188q36 0 61 -25t25 -61z" />
-<glyph unicode="&#xf209;" horiz-adv-x="1280" d="M953 1158l-114 -328l117 -21q165 451 165 518q0 56 -38 56q-57 0 -130 -225zM654 471l33 -88q37 42 71 67l-33 5.5t-38.5 7t-32.5 8.5zM362 1367q0 -98 159 -521q18 10 49 10q15 0 75 -5l-121 351q-75 220 -123 220q-19 0 -29 -17.5t-10 -37.5zM283 608q0 -36 51.5 -119 t117.5 -153t100 -70q14 0 25.5 13t11.5 27q0 24 -32 102q-13 32 -32 72t-47.5 89t-61.5 81t-62 32q-20 0 -45.5 -27t-25.5 -47zM125 273q0 -41 25 -104q59 -145 183.5 -227t281.5 -82q227 0 382 170q152 169 152 427q0 43 -1 67t-11.5 62t-30.5 56q-56 49 -211.5 75.5 t-270.5 26.5q-37 0 -49 -11q-12 -5 -12 -35q0 -34 21.5 -60t55.5 -40t77.5 -23.5t87.5 -11.5t85 -4t70 0h23q24 0 40 -19q15 -19 19 -55q-28 -28 -96 -54q-61 -22 -93 -46q-64 -46 -108.5 -114t-44.5 -137q0 -31 18.5 -88.5t18.5 -87.5l-3 -12q-4 -12 -4 -14 q-137 10 -146 216q-8 -2 -41 -2q2 -7 2 -21q0 -53 -40.5 -89.5t-94.5 -36.5q-82 0 -166.5 78t-84.5 159q0 34 33 67q52 -64 60 -76q77 -104 133 -104q12 0 26.5 8.5t14.5 20.5q0 34 -87.5 145t-116.5 111q-43 0 -70 -44.5t-27 -90.5zM11 264q0 101 42.5 163t136.5 88 q-28 74 -28 104q0 62 61 123t122 61q29 0 70 -15q-163 462 -163 567q0 80 41 130.5t119 50.5q131 0 325 -581q6 -17 8 -23q6 16 29 79.5t43.5 118.5t54 127.5t64.5 123t70.5 86.5t76.5 36q71 0 112 -49t41 -122q0 -108 -159 -550q61 -15 100.5 -46t58.5 -78t26 -93.5 t7 -110.5q0 -150 -47 -280t-132 -225t-211 -150t-278 -55q-111 0 -223 42q-149 57 -258 191.5t-109 286.5z" />
-<glyph unicode="&#xf20a;" horiz-adv-x="2048" d="M785 528h207q-14 -158 -98.5 -248.5t-214.5 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-203q-5 64 -35.5 99t-81.5 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t40 -51.5t66 -18q95 0 109 139zM1497 528h206 q-14 -158 -98 -248.5t-214 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-204q-4 64 -35 99t-81 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t39.5 -51.5t65.5 -18q49 0 76.5 38t33.5 101zM1856 647q0 207 -15.5 307 t-60.5 161q-6 8 -13.5 14t-21.5 15t-16 11q-86 63 -697 63q-625 0 -710 -63q-5 -4 -17.5 -11.5t-21 -14t-14.5 -14.5q-45 -60 -60 -159.5t-15 -308.5q0 -208 15 -307.5t60 -160.5q6 -8 15 -15t20.5 -14t17.5 -12q44 -33 239.5 -49t470.5 -16q610 0 697 65q5 4 17 11t20.5 14 t13.5 16q46 60 61 159t15 309zM2048 1408v-1536h-2048v1536h2048z" />
-<glyph unicode="&#xf20b;" d="M992 912v-496q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v496q0 112 -80 192t-192 80h-272v-1152q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v1344q0 14 9 23t23 9h464q135 0 249 -66.5t180.5 -180.5t66.5 -249zM1376 1376v-880q0 -135 -66.5 -249t-180.5 -180.5 t-249 -66.5h-464q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h160q14 0 23 -9t9 -23v-768h272q112 0 192 80t80 192v880q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf20c;" d="M1311 694v-114q0 -24 -13.5 -38t-37.5 -14h-202q-24 0 -38 14t-14 38v114q0 24 14 38t38 14h202q24 0 37.5 -14t13.5 -38zM821 464v250q0 53 -32.5 85.5t-85.5 32.5h-133q-68 0 -96 -52q-28 52 -96 52h-130q-53 0 -85.5 -32.5t-32.5 -85.5v-250q0 -22 21 -22h55 q22 0 22 22v230q0 24 13.5 38t38.5 14h94q24 0 38 -14t14 -38v-230q0 -22 21 -22h54q22 0 22 22v230q0 24 14 38t38 14h97q24 0 37.5 -14t13.5 -38v-230q0 -22 22 -22h55q21 0 21 22zM1410 560v154q0 53 -33 85.5t-86 32.5h-264q-53 0 -86 -32.5t-33 -85.5v-410 q0 -21 22 -21h55q21 0 21 21v180q31 -42 94 -42h191q53 0 86 32.5t33 85.5zM1536 1176v-1072q0 -96 -68 -164t-164 -68h-1072q-96 0 -164 68t-68 164v1072q0 96 68 164t164 68h1072q96 0 164 -68t68 -164z" />
-<glyph unicode="&#xf20d;" horiz-adv-x="1792" />
-<glyph unicode="&#xf20e;" horiz-adv-x="1792" />
-<glyph unicode="&#xf500;" horiz-adv-x="1792" />
-</font>
-</defs></svg> 
\ No newline at end of file
diff --git a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/fontawesome-webfont.ttf b/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/fontawesome-webfont.ttf
deleted file mode 100644
index 96a3639cdde5e8ab459c6380e3b9524ee81641dc..0000000000000000000000000000000000000000
Binary files a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/fontawesome-webfont.ttf and /dev/null differ
diff --git a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/fontawesome-webfont.woff b/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/fontawesome-webfont.woff
deleted file mode 100644
index 628b6a52a87e62c6f22426e17c01f6a303aa194e..0000000000000000000000000000000000000000
Binary files a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/fonts/fontawesome-webfont.woff and /dev/null differ
diff --git a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/img/ti_logo.png b/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/img/ti_logo.png
deleted file mode 100644
index 5f45933524af35b579734baa58dfa81a5d335fb1..0000000000000000000000000000000000000000
Binary files a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/img/ti_logo.png and /dev/null differ
diff --git a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/js/modernizr.min.js b/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/js/modernizr.min.js
deleted file mode 100644
index f65d47974786ee51c258f680bd9be621629244f5..0000000000000000000000000000000000000000
--- a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/js/modernizr.min.js
+++ /dev/null
@@ -1,4 +0,0 @@
-/* Modernizr 2.6.2 (Custom Build) | MIT & BSD
- * Build: http://modernizr.com/download/#-fontface-backgroundsize-borderimage-borderradius-boxshadow-flexbox-hsla-multiplebgs-opacity-rgba-textshadow-cssanimations-csscolumns-generatedcontent-cssgradients-cssreflections-csstransforms-csstransforms3d-csstransitions-applicationcache-canvas-canvastext-draganddrop-hashchange-history-audio-video-indexeddb-input-inputtypes-localstorage-postmessage-sessionstorage-websockets-websqldatabase-webworkers-geolocation-inlinesvg-smil-svg-svgclippaths-touch-webgl-shiv-mq-cssclasses-addtest-prefixed-teststyles-testprop-testallprops-hasevent-prefixes-domprefixes-load
- */
-;window.Modernizr=function(a,b,c){function D(a){j.cssText=a}function E(a,b){return D(n.join(a+";")+(b||""))}function F(a,b){return typeof a===b}function G(a,b){return!!~(""+a).indexOf(b)}function H(a,b){for(var d in a){var e=a[d];if(!G(e,"-")&&j[e]!==c)return b=="pfx"?e:!0}return!1}function I(a,b,d){for(var e in a){var f=b[a[e]];if(f!==c)return d===!1?a[e]:F(f,"function")?f.bind(d||b):f}return!1}function J(a,b,c){var d=a.charAt(0).toUpperCase()+a.slice(1),e=(a+" "+p.join(d+" ")+d).split(" ");return F(b,"string")||F(b,"undefined")?H(e,b):(e=(a+" "+q.join(d+" ")+d).split(" "),I(e,b,c))}function K(){e.input=function(c){for(var d=0,e=c.length;d<e;d++)u[c[d]]=c[d]in k;return u.list&&(u.list=!!b.createElement("datalist")&&!!a.HTMLDataListElement),u}("autocomplete autofocus list placeholder max min multiple pattern required step".split(" ")),e.inputtypes=function(a){for(var d=0,e,f,h,i=a.length;d<i;d++)k.setAttribute("type",f=a[d]),e=k.type!=="text",e&&(k.value=l,k.style.cssText="position:absolute;visibility:hidden;",/^range$/.test(f)&&k.style.WebkitAppearance!==c?(g.appendChild(k),h=b.defaultView,e=h.getComputedStyle&&h.getComputedStyle(k,null).WebkitAppearance!=="textfield"&&k.offsetHeight!==0,g.removeChild(k)):/^(search|tel)$/.test(f)||(/^(url|email)$/.test(f)?e=k.checkValidity&&k.checkValidity()===!1:e=k.value!=l)),t[a[d]]=!!e;return t}("search tel url email datetime date month week time datetime-local number range color".split(" "))}var d="2.6.2",e={},f=!0,g=b.documentElement,h="modernizr",i=b.createElement(h),j=i.style,k=b.createElement("input"),l=":)",m={}.toString,n=" -webkit- -moz- -o- -ms- ".split(" "),o="Webkit Moz O ms",p=o.split(" "),q=o.toLowerCase().split(" "),r={svg:"http://www.w3.org/2000/svg"},s={},t={},u={},v=[],w=v.slice,x,y=function(a,c,d,e){var f,i,j,k,l=b.createElement("div"),m=b.body,n=m||b.createElement("body");if(parseInt(d,10))while(d--)j=b.createElement("div"),j.id=e?e[d]:h+(d+1),l.appendChild(j);return f=["&#173;",'<style id="s',h,'">',a,"</style>"].join(""),l.id=h,(m?l:n).innerHTML+=f,n.appendChild(l),m||(n.style.background="",n.style.overflow="hidden",k=g.style.overflow,g.style.overflow="hidden",g.appendChild(n)),i=c(l,a),m?l.parentNode.removeChild(l):(n.parentNode.removeChild(n),g.style.overflow=k),!!i},z=function(b){var c=a.matchMedia||a.msMatchMedia;if(c)return c(b).matches;var d;return y("@media "+b+" { #"+h+" { position: absolute; } }",function(b){d=(a.getComputedStyle?getComputedStyle(b,null):b.currentStyle)["position"]=="absolute"}),d},A=function(){function d(d,e){e=e||b.createElement(a[d]||"div"),d="on"+d;var f=d in e;return f||(e.setAttribute||(e=b.createElement("div")),e.setAttribute&&e.removeAttribute&&(e.setAttribute(d,""),f=F(e[d],"function"),F(e[d],"undefined")||(e[d]=c),e.removeAttribute(d))),e=null,f}var a={select:"input",change:"input",submit:"form",reset:"form",error:"img",load:"img",abort:"img"};return d}(),B={}.hasOwnProperty,C;!F(B,"undefined")&&!F(B.call,"undefined")?C=function(a,b){return B.call(a,b)}:C=function(a,b){return b in a&&F(a.constructor.prototype[b],"undefined")},Function.prototype.bind||(Function.prototype.bind=function(b){var c=this;if(typeof c!="function")throw new TypeError;var d=w.call(arguments,1),e=function(){if(this instanceof e){var a=function(){};a.prototype=c.prototype;var f=new a,g=c.apply(f,d.concat(w.call(arguments)));return Object(g)===g?g:f}return c.apply(b,d.concat(w.call(arguments)))};return e}),s.flexbox=function(){return J("flexWrap")},s.canvas=function(){var a=b.createElement("canvas");return!!a.getContext&&!!a.getContext("2d")},s.canvastext=function(){return!!e.canvas&&!!F(b.createElement("canvas").getContext("2d").fillText,"function")},s.webgl=function(){return!!a.WebGLRenderingContext},s.touch=function(){var c;return"ontouchstart"in a||a.DocumentTouch&&b instanceof DocumentTouch?c=!0:y(["@media (",n.join("touch-enabled),("),h,")","{#modernizr{top:9px;position:absolute}}"].join(""),function(a){c=a.offsetTop===9}),c},s.geolocation=function(){return"geolocation"in navigator},s.postmessage=function(){return!!a.postMessage},s.websqldatabase=function(){return!!a.openDatabase},s.indexedDB=function(){return!!J("indexedDB",a)},s.hashchange=function(){return A("hashchange",a)&&(b.documentMode===c||b.documentMode>7)},s.history=function(){return!!a.history&&!!history.pushState},s.draganddrop=function(){var a=b.createElement("div");return"draggable"in a||"ondragstart"in a&&"ondrop"in a},s.websockets=function(){return"WebSocket"in a||"MozWebSocket"in a},s.rgba=function(){return D("background-color:rgba(150,255,150,.5)"),G(j.backgroundColor,"rgba")},s.hsla=function(){return D("background-color:hsla(120,40%,100%,.5)"),G(j.backgroundColor,"rgba")||G(j.backgroundColor,"hsla")},s.multiplebgs=function(){return D("background:url(https://),url(https://),red url(https://)"),/(url\s*\(.*?){3}/.test(j.background)},s.backgroundsize=function(){return J("backgroundSize")},s.borderimage=function(){return J("borderImage")},s.borderradius=function(){return J("borderRadius")},s.boxshadow=function(){return J("boxShadow")},s.textshadow=function(){return b.createElement("div").style.textShadow===""},s.opacity=function(){return E("opacity:.55"),/^0.55$/.test(j.opacity)},s.cssanimations=function(){return J("animationName")},s.csscolumns=function(){return J("columnCount")},s.cssgradients=function(){var a="background-image:",b="gradient(linear,left top,right bottom,from(#9f9),to(white));",c="linear-gradient(left top,#9f9, white);";return D((a+"-webkit- ".split(" ").join(b+a)+n.join(c+a)).slice(0,-a.length)),G(j.backgroundImage,"gradient")},s.cssreflections=function(){return J("boxReflect")},s.csstransforms=function(){return!!J("transform")},s.csstransforms3d=function(){var a=!!J("perspective");return a&&"webkitPerspective"in g.style&&y("@media (transform-3d),(-webkit-transform-3d){#modernizr{left:9px;position:absolute;height:3px;}}",function(b,c){a=b.offsetLeft===9&&b.offsetHeight===3}),a},s.csstransitions=function(){return J("transition")},s.fontface=function(){var a;return y('@font-face {font-family:"font";src:url("https://")}',function(c,d){var e=b.getElementById("smodernizr"),f=e.sheet||e.styleSheet,g=f?f.cssRules&&f.cssRules[0]?f.cssRules[0].cssText:f.cssText||"":"";a=/src/i.test(g)&&g.indexOf(d.split(" ")[0])===0}),a},s.generatedcontent=function(){var a;return y(["#",h,"{font:0/0 a}#",h,':after{content:"',l,'";visibility:hidden;font:3px/1 a}'].join(""),function(b){a=b.offsetHeight>=3}),a},s.video=function(){var a=b.createElement("video"),c=!1;try{if(c=!!a.canPlayType)c=new Boolean(c),c.ogg=a.canPlayType('video/ogg; codecs="theora"').replace(/^no$/,""),c.h264=a.canPlayType('video/mp4; codecs="avc1.42E01E"').replace(/^no$/,""),c.webm=a.canPlayType('video/webm; codecs="vp8, vorbis"').replace(/^no$/,"")}catch(d){}return c},s.audio=function(){var a=b.createElement("audio"),c=!1;try{if(c=!!a.canPlayType)c=new Boolean(c),c.ogg=a.canPlayType('audio/ogg; codecs="vorbis"').replace(/^no$/,""),c.mp3=a.canPlayType("audio/mpeg;").replace(/^no$/,""),c.wav=a.canPlayType('audio/wav; codecs="1"').replace(/^no$/,""),c.m4a=(a.canPlayType("audio/x-m4a;")||a.canPlayType("audio/aac;")).replace(/^no$/,"")}catch(d){}return c},s.localstorage=function(){try{return localStorage.setItem(h,h),localStorage.removeItem(h),!0}catch(a){return!1}},s.sessionstorage=function(){try{return sessionStorage.setItem(h,h),sessionStorage.removeItem(h),!0}catch(a){return!1}},s.webworkers=function(){return!!a.Worker},s.applicationcache=function(){return!!a.applicationCache},s.svg=function(){return!!b.createElementNS&&!!b.createElementNS(r.svg,"svg").createSVGRect},s.inlinesvg=function(){var a=b.createElement("div");return a.innerHTML="<svg/>",(a.firstChild&&a.firstChild.namespaceURI)==r.svg},s.smil=function(){return!!b.createElementNS&&/SVGAnimate/.test(m.call(b.createElementNS(r.svg,"animate")))},s.svgclippaths=function(){return!!b.createElementNS&&/SVGClipPath/.test(m.call(b.createElementNS(r.svg,"clipPath")))};for(var L in s)C(s,L)&&(x=L.toLowerCase(),e[x]=s[L](),v.push((e[x]?"":"no-")+x));return e.input||K(),e.addTest=function(a,b){if(typeof a=="object")for(var d in a)C(a,d)&&e.addTest(d,a[d]);else{a=a.toLowerCase();if(e[a]!==c)return e;b=typeof b=="function"?b():b,typeof f!="undefined"&&f&&(g.className+=" "+(b?"":"no-")+a),e[a]=b}return e},D(""),i=k=null,function(a,b){function k(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x<style>"+b+"</style>",d.insertBefore(c.lastChild,d.firstChild)}function l(){var a=r.elements;return typeof a=="string"?a.split(" "):a}function m(a){var b=i[a[g]];return b||(b={},h++,a[g]=h,i[h]=b),b}function n(a,c,f){c||(c=b);if(j)return c.createElement(a);f||(f=m(c));var g;return f.cache[a]?g=f.cache[a].cloneNode():e.test(a)?g=(f.cache[a]=f.createElem(a)).cloneNode():g=f.createElem(a),g.canHaveChildren&&!d.test(a)?f.frag.appendChild(g):g}function o(a,c){a||(a=b);if(j)return a.createDocumentFragment();c=c||m(a);var d=c.frag.cloneNode(),e=0,f=l(),g=f.length;for(;e<g;e++)d.createElement(f[e]);return d}function p(a,b){b.cache||(b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag()),a.createElement=function(c){return r.shivMethods?n(c,a,b):b.createElem(c)},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+l().join().replace(/\w+/g,function(a){return b.createElem(a),b.frag.createElement(a),'c("'+a+'")'})+");return n}")(r,b.frag)}function q(a){a||(a=b);var c=m(a);return r.shivCSS&&!f&&!c.hasCSS&&(c.hasCSS=!!k(a,"article,aside,figcaption,figure,footer,header,hgroup,nav,section{display:block}mark{background:#FF0;color:#000}")),j||p(a,c),a}var c=a.html5||{},d=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,e=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,f,g="_html5shiv",h=0,i={},j;(function(){try{var a=b.createElement("a");a.innerHTML="<xyz></xyz>",f="hidden"in a,j=a.childNodes.length==1||function(){b.createElement("a");var a=b.createDocumentFragment();return typeof a.cloneNode=="undefined"||typeof a.createDocumentFragment=="undefined"||typeof a.createElement=="undefined"}()}catch(c){f=!0,j=!0}})();var r={elements:c.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",shivCSS:c.shivCSS!==!1,supportsUnknownElements:j,shivMethods:c.shivMethods!==!1,type:"default",shivDocument:q,createElement:n,createDocumentFragment:o};a.html5=r,q(b)}(this,b),e._version=d,e._prefixes=n,e._domPrefixes=q,e._cssomPrefixes=p,e.mq=z,e.hasEvent=A,e.testProp=function(a){return H([a])},e.testAllProps=J,e.testStyles=y,e.prefixed=function(a,b,c){return b?J(a,b,c):J(a,"pfx")},g.className=g.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(f?" js "+v.join(" "):""),e}(this,this.document),function(a,b,c){function d(a){return"[object Function]"==o.call(a)}function e(a){return"string"==typeof a}function f(){}function g(a){return!a||"loaded"==a||"complete"==a||"uninitialized"==a}function h(){var a=p.shift();q=1,a?a.t?m(function(){("c"==a.t?B.injectCss:B.injectJs)(a.s,0,a.a,a.x,a.e,1)},0):(a(),h()):q=0}function i(a,c,d,e,f,i,j){function k(b){if(!o&&g(l.readyState)&&(u.r=o=1,!q&&h(),l.onload=l.onreadystatechange=null,b)){"img"!=a&&m(function(){t.removeChild(l)},50);for(var d in y[c])y[c].hasOwnProperty(d)&&y[c][d].onload()}}var j=j||B.errorTimeout,l=b.createElement(a),o=0,r=0,u={t:d,s:c,e:f,a:i,x:j};1===y[c]&&(r=1,y[c]=[]),"object"==a?l.data=c:(l.src=c,l.type=a),l.width=l.height="0",l.onerror=l.onload=l.onreadystatechange=function(){k.call(this,r)},p.splice(e,0,u),"img"!=a&&(r||2===y[c]?(t.insertBefore(l,s?null:n),m(k,j)):y[c].push(l))}function j(a,b,c,d,f){return q=0,b=b||"j",e(a)?i("c"==b?v:u,a,b,this.i++,c,d,f):(p.splice(this.i++,0,a),1==p.length&&h()),this}function k(){var a=B;return a.loader={load:j,i:0},a}var l=b.documentElement,m=a.setTimeout,n=b.getElementsByTagName("script")[0],o={}.toString,p=[],q=0,r="MozAppearance"in l.style,s=r&&!!b.createRange().compareNode,t=s?l:n.parentNode,l=a.opera&&"[object Opera]"==o.call(a.opera),l=!!b.attachEvent&&!l,u=r?"object":l?"script":"img",v=l?"script":u,w=Array.isArray||function(a){return"[object Array]"==o.call(a)},x=[],y={},z={timeout:function(a,b){return b.length&&(a.timeout=b[0]),a}},A,B;B=function(a){function b(a){var a=a.split("!"),b=x.length,c=a.pop(),d=a.length,c={url:c,origUrl:c,prefixes:a},e,f,g;for(f=0;f<d;f++)g=a[f].split("="),(e=z[g.shift()])&&(c=e(c,g));for(f=0;f<b;f++)c=x[f](c);return c}function g(a,e,f,g,h){var i=b(a),j=i.autoCallback;i.url.split(".").pop().split("?").shift(),i.bypass||(e&&(e=d(e)?e:e[a]||e[g]||e[a.split("/").pop().split("?")[0]]),i.instead?i.instead(a,e,f,g,h):(y[i.url]?i.noexec=!0:y[i.url]=1,f.load(i.url,i.forceCSS||!i.forceJS&&"css"==i.url.split(".").pop().split("?").shift()?"c":c,i.noexec,i.attrs,i.timeout),(d(e)||d(j))&&f.load(function(){k(),e&&e(i.origUrl,h,g),j&&j(i.origUrl,h,g),y[i.url]=2})))}function h(a,b){function c(a,c){if(a){if(e(a))c||(j=function(){var a=[].slice.call(arguments);k.apply(this,a),l()}),g(a,j,b,0,h);else if(Object(a)===a)for(n in m=function(){var b=0,c;for(c in a)a.hasOwnProperty(c)&&b++;return b}(),a)a.hasOwnProperty(n)&&(!c&&!--m&&(d(j)?j=function(){var a=[].slice.call(arguments);k.apply(this,a),l()}:j[n]=function(a){return function(){var b=[].slice.call(arguments);a&&a.apply(this,b),l()}}(k[n])),g(a[n],j,b,n,h))}else!c&&l()}var h=!!a.test,i=a.load||a.both,j=a.callback||f,k=j,l=a.complete||f,m,n;c(h?a.yep:a.nope,!!i),i&&c(i)}var i,j,l=this.yepnope.loader;if(e(a))g(a,0,l,0);else if(w(a))for(i=0;i<a.length;i++)j=a[i],e(j)?g(j,0,l,0):w(j)?B(j):Object(j)===j&&h(j,l);else Object(a)===a&&h(a,l)},B.addPrefix=function(a,b){z[a]=b},B.addFilter=function(a){x.push(a)},B.errorTimeout=1e4,null==b.readyState&&b.addEventListener&&(b.readyState="loading",b.addEventListener("DOMContentLoaded",A=function(){b.removeEventListener("DOMContentLoaded",A,0),b.readyState="complete"},0)),a.yepnope=k(),a.yepnope.executeStack=h,a.yepnope.injectJs=function(a,c,d,e,i,j){var k=b.createElement("script"),l,o,e=e||B.errorTimeout;k.src=a;for(o in d)k.setAttribute(o,d[o]);c=j?h:c||f,k.onreadystatechange=k.onload=function(){!l&&g(k.readyState)&&(l=1,c(),k.onload=k.onreadystatechange=null)},m(function(){l||(l=1,c(1))},e),i?k.onload():n.parentNode.insertBefore(k,n)},a.yepnope.injectCss=function(a,c,d,e,g,i){var e=b.createElement("link"),j,c=i?h:c||f;e.href=a,e.rel="stylesheet",e.type="text/css";for(j in d)e.setAttribute(j,d[j]);g||(n.parentNode.insertBefore(e,n),m(c,0))}}(this,document),Modernizr.load=function(){yepnope.apply(window,[].slice.call(arguments,0))};
diff --git a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/js/theme.js b/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/js/theme.js
deleted file mode 100644
index 48a9f06b5b893afd1afca05d880273eb6cbaf941..0000000000000000000000000000000000000000
--- a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/static/js/theme.js
+++ /dev/null
@@ -1,153 +0,0 @@
-require=(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({"sphinx-rtd-theme":[function(require,module,exports){
-var jQuery = (typeof(window) != 'undefined') ? window.jQuery : require('jquery');
-
-// Sphinx theme nav state
-function ThemeNav () {
-
-    var nav = {
-        navBar: null,
-        win: null,
-        winScroll: false,
-        winResize: false,
-        linkScroll: false,
-        winPosition: 0,
-        winHeight: null,
-        docHeight: null,
-        isRunning: null
-    };
-
-    nav.enable = function () {
-        var self = this;
-
-        jQuery(function ($) {
-            self.init($);
-
-            self.reset();
-            self.win.on('hashchange', self.reset);
-
-            // Set scroll monitor
-            self.win.on('scroll', function () {
-                if (!self.linkScroll) {
-                    self.winScroll = true;
-                }
-            });
-            setInterval(function () { if (self.winScroll) self.onScroll(); }, 25);
-
-            // Set resize monitor
-            self.win.on('resize', function () {
-                self.winResize = true;
-            });
-            setInterval(function () { if (self.winResize) self.onResize(); }, 25);
-            self.onResize();
-        });
-    };
-
-    nav.init = function ($) {
-        var doc = $(document),
-            self = this;
-
-        this.navBar = $('div.wy-side-scroll:first');
-        this.win = $(window);
-
-        // Set up javascript UX bits
-        $(document)
-            // Shift nav in mobile when clicking the menu.
-            .on('click', "[data-toggle='wy-nav-top']", function() {
-                $("[data-toggle='wy-nav-shift']").toggleClass("shift");
-                $("[data-toggle='rst-versions']").toggleClass("shift");
-            })
-
-            // Nav menu link click operations
-            .on('click', ".wy-menu-vertical .current ul li a", function() {
-                var target = $(this);
-                // Close menu when you click a link.
-                $("[data-toggle='wy-nav-shift']").removeClass("shift");
-                $("[data-toggle='rst-versions']").toggleClass("shift");
-                // Handle dynamic display of l3 and l4 nav lists
-                self.toggleCurrent(target);
-                self.hashChange();
-            })
-            .on('click', "[data-toggle='rst-current-version']", function() {
-                $("[data-toggle='rst-versions']").toggleClass("shift-up");
-            })
-
-        // Make tables responsive
-        $("table.docutils:not(.field-list)")
-            .wrap("<div class='wy-table-responsive'></div>");
-
-        // Add expand links to all parents of nested ul
-        $('.wy-menu-vertical ul').not('.simple').siblings('a').each(function () {
-            var link = $(this);
-                expand = $('<span class="toctree-expand"></span>');
-            expand.on('click', function (ev) {
-                self.toggleCurrent(link);
-                ev.stopPropagation();
-                return false;
-            });
-            link.prepend(expand);
-        });
-    };
-
-    nav.reset = function () {
-        // Get anchor from URL and open up nested nav
-        var anchor = encodeURI(window.location.hash);
-        if (anchor) {
-            try {
-                var link = $('.wy-menu-vertical')
-                    .find('[href="' + anchor + '"]');
-                $('.wy-menu-vertical li.toctree-l1 li.current')
-                    .removeClass('current');
-                link.closest('li.toctree-l2').addClass('current');
-                link.closest('li.toctree-l3').addClass('current');
-                link.closest('li.toctree-l4').addClass('current');
-            }
-            catch (err) {
-                console.log("Error expanding nav for anchor", err);
-            }
-        }
-    };
-
-    nav.onScroll = function () {
-        this.winScroll = false;
-        var newWinPosition = this.win.scrollTop(),
-            winBottom = newWinPosition + this.winHeight,
-            navPosition = this.navBar.scrollTop(),
-            newNavPosition = navPosition + (newWinPosition - this.winPosition);
-        if (newWinPosition < 0 || winBottom > this.docHeight) {
-            return;
-        }
-        this.navBar.scrollTop(newNavPosition);
-        this.winPosition = newWinPosition;
-    };
-
-    nav.onResize = function () {
-        this.winResize = false;
-        this.winHeight = this.win.height();
-        this.docHeight = $(document).height();
-    };
-
-    nav.hashChange = function () {
-        this.linkScroll = true;
-        this.win.one('hashchange', function () {
-            this.linkScroll = false;
-        });
-    };
-
-    nav.toggleCurrent = function (elem) {
-        var parent_li = elem.closest('li');
-        parent_li.siblings('li.current').removeClass('current');
-        parent_li.siblings().find('li.current').removeClass('current');
-        parent_li.find('> ul li.current').removeClass('current');
-        parent_li.toggleClass('current');
-    }
-
-    return nav;
-};
-
-module.exports.ThemeNav = ThemeNav();
-
-if (typeof(window) != 'undefined') {
-    window.SphinxRtdTheme = { StickyNav: module.exports.ThemeNav };
-}
-
-},{"jquery":"jquery"}]},{},["sphinx-rtd-theme"]);
diff --git a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/theme.conf b/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/theme.conf
deleted file mode 100644
index 3896d4d38fbdde84e29f9a37ed8c32448553f882..0000000000000000000000000000000000000000
--- a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/theme.conf
+++ /dev/null
@@ -1,11 +0,0 @@
-[theme]
-inherit = basic
-stylesheet = css/theme.css
-
-[options]
-typekit_id = hiw1hhg
-analytics_id = 
-sticky_navigation = False
-logo_only =
-collapse_navigation = False
-display_version = True
diff --git a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/versions.html b/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/versions.html
deleted file mode 100644
index 8b3eb79d2592e8aae24d868c7b2832a855bbc96e..0000000000000000000000000000000000000000
--- a/boards/beaglebone/ai-64/edge_ai_apps/themes/sphinx_rtd_theme_ti/versions.html
+++ /dev/null
@@ -1,37 +0,0 @@
-{% if READTHEDOCS %}
-{# Add rst-badge after rst-versions for small badge style. #}
-  <div class="rst-versions" data-toggle="rst-versions" role="note" aria-label="versions">
-    <span class="rst-current-version" data-toggle="rst-current-version">
-      <span class="fa fa-book"> Read the Docs</span>
-      v: {{ current_version }}
-      <span class="fa fa-caret-down"></span>
-    </span>
-    <div class="rst-other-versions">
-      <dl>
-        <dt>Versions</dt>
-        {% for slug, url in versions %}
-          <dd><a href="{{ url }}">{{ slug }}</a></dd>
-        {% endfor %}
-      </dl>
-      <dl>
-        <dt>Downloads</dt>
-        {% for type, url in downloads %}
-          <dd><a href="{{ url }}">{{ type }}</a></dd>
-        {% endfor %}
-      </dl>
-      <dl>
-        <dt>On Read the Docs</dt>
-          <dd>
-            <a href="//{{ PRODUCTION_DOMAIN }}/projects/{{ slug }}/?fromdocs={{ slug }}">Project Home</a>
-          </dd>
-          <dd>
-            <a href="//{{ PRODUCTION_DOMAIN }}/builds/{{ slug }}/?fromdocs={{ slug }}">Builds</a>
-          </dd>
-      </dl>
-      <hr/>
-      Free document hosting provided by <a href="http://www.readthedocs.org">Read the Docs</a>.
-
-    </div>
-  </div>
-{% endif %}
-
diff --git a/boards/beaglebone/ai-64/index.rst b/boards/beaglebone/ai-64/index.rst
index 598431af47bc2e47f78f72a36a5481c3c54a34e9..691b7213df478e9496d5965524be5b7ea773f9fd 100644
--- a/boards/beaglebone/ai-64/index.rst
+++ b/boards/beaglebone/ai-64/index.rst
@@ -16,4 +16,5 @@ BeagleBone® AI-64 brings a complete system for developing artificial intelligen
    /boards/beaglebone/ai-64/ch09.rst
    /boards/beaglebone/ai-64/ch10.rst
    /boards/beaglebone/ai-64/ch11.rst
+   /boards/beaglebone/ai-64/update.rst
    /boards/beaglebone/ai-64/edge_ai_apps/index.rst
diff --git a/boards/beaglebone/ai-64/update.rst b/boards/beaglebone/ai-64/update.rst
new file mode 100644
index 0000000000000000000000000000000000000000..576492b5ef0dd259809f15c20c43953e89c17a40
--- /dev/null
+++ b/boards/beaglebone/ai-64/update.rst
@@ -0,0 +1,60 @@
+.. _bbai64-update:
+
+Update software on BeagleBone AI-64
+###################################
+
+Production boards currently ship with the factory-installed 2022-01-14-8GB image. To upgrade from the software image on your BeagleBone AI-64 to the latest, you don't need to completely reflash the board. If you do want to reflash it, visit the flashing instructions on the getting started page.
+Factory Image update (without reflashing)…
+
+.. code-block:: bash
+   :linenos:
+
+   sudo apt update
+   sudo apt install --only-upgrade bb-j721e-evm-firmware generic-sys-mods
+   sudo apt upgrade
+
+Update U-Boot:
+==============
+
+to ensure only tiboot3.bin is in boot0, the pre-production image we tried to do more in boot0, but failed…
+
+.. code-block:: bash
+   :linenos:
+
+   sudo /opt/u-boot/bb-u-boot-beagleboneai64/install-emmc.sh
+   sudo /opt/u-boot/bb-u-boot-beagleboneai64/install-microsd.sh
+   sudo reboot
+
+Update Kernel and SGX modules:
+==============================
+
+.. code-block:: bash
+   :linenos:
+
+   sudo apt install bbb.io-kernel-5.10-ti-k3-j721e    
+
+Update xfce:
+============
+
+.. code-block:: bash
+   :linenos:
+
+   sudo apt install bbb.io-xfce4-desktop
+
+Update ti-edge-ai 8.2 examples
+==============================
+
+.. code-block:: bash
+   :linenos:
+
+   sudo apt install ti-edgeai-8.2-base ti-vision-apps-8.2 ti-vision-apps-eaik-firmware-8.2
+
+Cleanup:
+========
+
+.. code-block:: bash
+   :linenos:
+
+   sudo apt autoremove --purge
+
+
diff --git a/boards/beaglebone/index.rst b/boards/beaglebone/index.rst
index 3956a3bf81db41dad8ea9ca1e78528076d85f422..679d03fa3945679bbe78c1a034cd2969fca30fac 100644
--- a/boards/beaglebone/index.rst
+++ b/boards/beaglebone/index.rst
@@ -1,16 +1,19 @@
+.. _beaglebone-all-home:
+
 BeagleBone (all)
 ###################
 
 BeagleBone boards are intended to be bare-bones, with a balance of features to enable
 rapid prototyping and provide a solid reference for building end products.
 
-The most popular design is `BeagleBone Black <black>`__, a staple reference for an open hardware
+The most popular design is :ref:`beagleboneblack-home`, a staple reference for an open hardware
 embedded Linux single board computer.
 
-`BeagleBone AI-64 <ai-64>`__ is our most powerful design with tremendous machine learning inference
-performance and 
+:ref:`bbai64-home` is our most powerful design with tremendous machine learning inference
+performance, 64-bit processing and a mixture of microcontrollers for various types of
+highly-reliable and low-latency control.
 
-For simplicity of developing small, mobile robotics, check out BeagleBone Blue, a highly
+For simplicity of developing small, mobile robotics, check out :ref:`beaglebone-blue-home`, a highly
 integrated board with motor drivers, battery support, altimeter, gyroscope, accelerometer,
 and much more to get started developing quickly.
 
@@ -20,8 +23,8 @@ included both here and in the downloadable beagleboard-docs.pdf linked on the bo
 of your screen.
 
 * `BeagleBone (original) <https://git.beagleboard.org/beagleboard/beaglebone/-/blob/master/BeagleBone_SRM_A6_0_1.pdf>`__
-* `BeagleBone Black </boards/beaglebone/black/index.html>`__
-* `BeagleBone Blue </boards/beaglebone/blue/index.html>`__
-* `BeagleBone AI-64 </boards/beaglebone/ai-64/index.html>`__
-* `BeagleBone AI </boards/beaglebone/ai/index.html>`__
+* :ref:`beagleboneblack-home`
+* :ref:`beaglebone-blue-home`
+* :ref:`beaglebone-ai-home`
+* :ref:`bbai64-home`
 
diff --git a/boards/beagleconnect/freedom/index.rst b/boards/beagleconnect/freedom/index.rst
index bd602d22cc1b1c7062bd7619a4fd3e01ef96b425..3d1180027569f8b1fbba6fb2470d2dffc20e850b 100644
--- a/boards/beagleconnect/freedom/index.rst
+++ b/boards/beagleconnect/freedom/index.rst
@@ -1,6 +1,12 @@
+.. _beagleconnect_freedom_home:
+
 BeagleConnect Freedom
 ######################
 
+.. important::
+
+   Currently under development
+
 .. image:: media/image1.jpg
    :width: 600
    :align: center
@@ -29,12 +35,12 @@ devices within the first year after the initial release.
 BeagleConnectâ„¢ Freedom
 **********************
 
-BeagleConnectâ„¢ Freedom is based on the `TI CC1352 <https://www.ti.com/product/CC1352R>`_ 
+BeagleConnectâ„¢ Freedom is based on a `TI Arm Cortex-M4 wireless-enabled microcontroller <https://www.ti.com/product/CC1352P7>`_ 
 and is the first available BeagleConnectâ„¢ solution. It implements:
 
 * BeagleConnectâ„¢ gateway device function for Sub-GHz 802.15.4 long-range 
   wireless
-* BeagleConnectâ„¢ node device function for Bluetooth Low-Energe (BLE) and 
+* BeagleConnectâ„¢ node device function for Bluetooth Low-Energy (BLE) and 
   Sub-GHz 802.15.4 long range wireless
 * USB-based serial console and firmware updates
 * 2x `mikroBUS sockets <https://www.mikroe.com/mikrobus>`_ with BeagleConnectâ„¢ 
@@ -125,9 +131,9 @@ Long-range, low-power wireless
 ==============================
 
 BeagleConnectâ„¢ Freedom wireless hardware is built around a 
-`TI CC1352 <http://www.ti.com/product/CC1352R>`_ multiprotocol and multi-band 
-Sub-1 GHz and 2.4-GHz wireless microcontroller (MCU). CC1352R includes a 48-MHz
-Arm® Cortex®-M4F processor, 352KB Flash, 256KB ROM, 8KB Cache SRAM, 80KB of 
+`TI CC1352P7 <http://www.ti.com/product/CC1352P7>`_ multiprotocol and multi-band 
+Sub-1 GHz and 2.4-GHz wireless microcontroller (MCU). CC1352P7 includes a 48-MHz
+Arm® Cortex®-M4F processor, 704KB Flash, 256KB ROM, 8KB Cache SRAM, 144KB of 
 ultra-low leakage SRAM, and `Over-the-Air <https://en.wikipedia.org/wiki/Over-the-air_programming>`_ 
 upgrades (OTA).
 
@@ -160,12 +166,12 @@ Each BeagleBoard.org BeagleConnectâ„¢ solution will be:
 Getting Started
 ***************
 
-* `Typical usage with a Linux host </boards/beagleconnect/freedom/usage.html>`__
-* `Programming with Zephyr </boards/beagleconnect/freedom/zephyr.html>`__
+* :ref:`Typical BeagleConnect Freedom usage with a Linux host <beagleconnect-usage>`
+* :ref:`Programming BeagleConnect Freedom with Zephyr <beagleconnect-zephyr>`
 
 .. toctree::
    :maxdepth: 1
    :hidden:
 
-   usage.rst
-   zephyr.rst
+   /boards/beagleconnect/freedom/usage.rst
+   /boards/beagleconnect/freedom/zephyr.rst
diff --git a/boards/beagleconnect/freedom/usage.rst b/boards/beagleconnect/freedom/usage.rst
index b55d5dd5d24f539d5d0bf5e0d504d48ef47b065d..862e89741edf6889ba77c2e9f3a30194f14665ce 100644
--- a/boards/beagleconnect/freedom/usage.rst
+++ b/boards/beagleconnect/freedom/usage.rst
@@ -1,4 +1,4 @@
-.. _beagleconnect-Usage:
+.. _beagleconnect-usage:
 
 BeagleConnect Freedom Usage
 ###########################
diff --git a/boards/beagleconnect/freedom/zephyr.rst b/boards/beagleconnect/freedom/zephyr.rst
index 2836c00a84e7a8da6cb462094e4aec267cdd7a4c..60ab95732bb0a9ae44b569f602179cf8f82cd386 100644
--- a/boards/beagleconnect/freedom/zephyr.rst
+++ b/boards/beagleconnect/freedom/zephyr.rst
@@ -1,4 +1,4 @@
-.. _beagleconnect-connectivity:
+.. _beagleconnect-zephyr:
 
 BeagleConnect Freedom & Zephyr
 ###############################
@@ -73,6 +73,57 @@ BeagleBone® Green Gateway host.
 
 #TODO: describe how to know it is working
 
+Other systems
+-------------
+
+.. important::
+
+    If you are using the image above, none of the instructions in this section are required.
+
+#. Update the system.
+    .. code-block:: bash
+        
+        sudo apt update
+
+#. Install all BeagleConnectâ„¢ management software.
+    .. code-block:: bash
+
+        sudo apt install -y \
+        beagleconnect beagleconnect-msp430 \
+        git vim \
+        build-essential \
+        cmake ninja-build gperf \
+        ccache dfu-util device-tree-compiler \
+        make gcc libsdl2-dev \
+        libxml2-dev libxslt-dev libssl-dev libjpeg62-turbo-dev \
+        gcc-arm-none-eabi libnewlib-arm-none-eabi \
+        libtool-bin pkg-config autoconf automake libusb-1.0-0-dev \
+        python3-dev python3-pip python3-setuptools python3-tk python3-wheel
+
+    .. code-block:: bash
+
+        echo "export PATH=$PATH:$HOME/.local/bin" >> $HOME/.bashrc
+
+    .. code-block:: bash
+
+        source $HOME/.bashrc
+
+#. Reboot
+    .. code-block:: bash
+
+        sudo reboot
+
+#. Install BeagleConnectâ„¢ flashing software
+    .. code-block:: bash
+
+        pip3 install -U west
+
+#. Reboot
+    .. code-block:: bash
+
+        sudo reboot
+
+
 Log into BeagleBone Green Gateway
 =================================
 
@@ -86,7 +137,6 @@ computer can be used to connect to your BeagleBone Green Gateway.
     * To connect you can simply type :code:`$ ssh debian@192.168.7.2` and when 
       asked for password just type :code:`temppwd`
     * Congratulations, You are now connected to the device!
-
 #. Connect to the `WiFi <https://forum.beagleboard.org/t/debian-11-x-bullseye-monthly-snapshots/31280>`_
     * Execute :code:`sudo nano /etc/wpa_supplicant/wpa_supplicant-wlan0.conf` 
       and provide the password :code:`temppwd` to edit the configuration file 
@@ -94,7 +144,8 @@ computer can be used to connect to your BeagleBone Green Gateway.
     * Now edit the file (shown below) under the :code:`network={...}`
       section you can set you :code:`ssid` (WiFi name) and :code:`psk` (Wifi 
       Password).
-    .. code-block::
+
+      .. code-block::
 
         ctrl_interface=DIR=/run/wpa_supplicant GROUP=netdev
         update_config=1
@@ -103,10 +154,12 @@ computer can be used to connect to your BeagleBone Green Gateway.
                 ssid="WiFi Name"
                 psk="WiFi Password"
         }
+
     * Now save the file with :code:`CTRL+O` and exit with :code:`CTRL+X`.
     * Check if the connection is established by executing :code:`$ ping 8.8.8.8`
       you should see something like shown below.
-    .. code-block:: bash
+
+      .. code-block:: bash
 
         debian@BeagleBone:~$ ping 8.8.8.8
         PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
@@ -115,62 +168,24 @@ computer can be used to connect to your BeagleBone Green Gateway.
         64 bytes from 8.8.8.8: icmp_seq=3 ttl=118 time=6.13 ms
         64 bytes from 8.8.8.8: icmp_seq=4 ttl=118 time=6.11 ms
         ...
+
     * If everything goes well, you are ready to update your system and install 
       new applications for beagleconnect.
 
-Note: If you are facing some issue during boot then you can try debugging the 
-boot session with a USB to serial interface cable such as those made by FTDI 
-plugged into J10 with the black wire of the FTDI cable toward the Ethernet 
-connector. Application like tio/minicom/putty can be used to make the connection 
-establishment procedure easy. 
+.. note:
 
-TODO: Simplify and elaborate on this section, add boot session debugging walkthrough
+    If you are facing some issue during boot then you can try debugging the 
+    boot session with a USB to serial interface cable such as those made by FTDI 
+    plugged into J10 with the black wire of the FTDI cable toward the Ethernet 
+    connector. Application like tio/minicom/putty can be used to make the connection 
+    establishment procedure easy. 
 
-Install Zephyr development tools on BeagleBone Green Gateway
-============================================================
+.. note:
 
-#. Update the system.
-    .. code-block:: bash
-        
-        sudo apt update
-
-#. Install all BeagleConnectâ„¢ management software.
-    .. code-block:: bash
+   #TODO#: Simplify and elaborate on this section, add boot session debugging walkthrough
 
-        sudo apt install -y \
-        beagleconnect beagleconnect-msp430 \
-        git vim \
-        build-essential \
-        cmake ninja-build gperf \
-        ccache dfu-util device-tree-compiler \
-        make gcc libsdl2-dev \
-        libxml2-dev libxslt-dev libssl-dev libjpeg62-turbo-dev \
-        gcc-arm-none-eabi libnewlib-arm-none-eabi \
-        libtool-bin pkg-config autoconf automake libusb-1.0-0-dev \
-        python3-dev python3-pip python3-setuptools python3-tk python3-wheel
-
-    .. code-block:: bash
-
-        echo "export PATH=$PATH:$HOME/.local/bin" >> $HOME/.bashrc
-
-    .. code-block:: bash
-
-        source $HOME/.bashrc
-
-#. Reboot
-    .. code-block:: bash
-
-        sudo reboot
-
-#. Install BeagleConnectâ„¢ flashing software
-    .. code-block:: bash
-
-        pip3 install -U west
-
-#. Reboot
-    .. code-block:: bash
-
-        sudo reboot
+Install Zephyr development tools on BeagleBone Green Gateway
+============================================================
 
 #. Download and setup Zephyr for BeagleConnectâ„¢
     .. code-block:: bash
@@ -193,32 +208,37 @@ Build applications for BeagleConnect Freedom on BeagleBone Green Gateway
 Now you can build various Zephyr applications
 
 #. Change directory to BeagleConnect Freedom zephyr repository.
+
     .. code-block:: bash
 
         cd $HOME/bcf-zephyr
         
 #. Build blinky example
-    .. code-block:: bash
-        west build -d build/blinky zephyr/samples/basic/blinky
 
+    .. code-block:: bash
 
+        west build -d build/blinky zephyr/samples/basic/blinky
 
 #. TODO
+
     .. code-block:: bash
 
         west build -d build/sensortest zephyr/samples/boards/beagle_bcf/sensortest -- -DOVERLAY_CONFIG=overlay-subghz.conf
 
 #. TODO
+
     .. code-block:: bash
 
         west build -d build/wpanusb modules/lib/wpanusb_bc -- -DOVERLAY_CONFIG=overlay-subghz.conf
 
 #. TODO
+
     .. code-block:: bash
 
         west build -d build/bcfserial modules/lib/wpanusb_bc -- -DOVERLAY_CONFIG=overlay-bcfserial.conf -DDTC_OVERLAY_FILE=bcfserial.overlay
 
 #. TODO
+
     .. code-block:: bash
 
         west build -d build/greybus modules/lib/greybus/samples/subsys/greybus/net -- -DOVERLAY_CONFIG=overlay-802154-subg.conf
diff --git a/boards/beagleconnect/index.rst b/boards/beagleconnect/index.rst
index 7c2ee09ff5320ed1faf9e08f41800123b7206896..d7941e51d1b03c85692afd5b595995766f79f207 100644
--- a/boards/beagleconnect/index.rst
+++ b/boards/beagleconnect/index.rst
@@ -3,6 +3,10 @@
 BeagleConnect
 ###############
 
+.. important::
+
+   Currently under development
+
 BeagleConnectâ„¢ is a revolutionary technology virtually eliminating low-level 
 software development for `IoT <https://en.wikipedia.org/wiki/Internet_of_things>`_ 
 and `IIoT <https://en.wikipedia.org/wiki/Industrial_internet_of_things>`_ 
@@ -38,6 +42,12 @@ BeagleConnectâ„¢ technology solves:
 * The need to produce high-volume custom hardware cost-optimized for your 
   requirements.
 
+.. toctree::
+   :maxdepth: 2
+
+   /boards/beagleconnect/technology/index.rst
+   /boards/beagleconnect/technology/story.rst
+
 BeagleConnect Experience
 *************************
 
@@ -88,18 +98,6 @@ For home automaters, integration into WebThings…
    :alt: BeagleConnect
 
 
-BeagleConnect Technology
-************************
-
-Learn about the technology behind BeagleConnect.
-
-.. toctree::
-   :maxdepth: 2
-
-   /boards/beagleconnect/technology/index.rst
-   /boards/beagleconnect/technology/story.rst
-
-
 BeagleConnect Boards
 ********************
 
diff --git a/boards/beagleconnect/technology/index.rst b/boards/beagleconnect/technology/index.rst
index 3f24588dad933ecb6e172342fdddbce3bc985130..06196ee5de47d7ac2ca3931c5483f821c1bd70dd 100644
--- a/boards/beagleconnect/technology/index.rst
+++ b/boards/beagleconnect/technology/index.rst
@@ -1,3 +1,6 @@
+.. role:: strike
+   :class: strike
+
 .. _beagleconnect-overview:
 
 BeagleConnect Technology
@@ -15,12 +18,8 @@ architecture.
    :height: 400
    :alt: BeagleConnect
 
-BeagleConnectâ„¢ Greybus Stack
-****************************
-
-Work in progress
-================
-
+BeagleConnectâ„¢ is built using `Greybus <https://kernel-recipes.org/en/2015/talks/an-introduction-to-greybus/>`__
+code in the Linux kernel originally designed for mobile phones.
 To understand a bit more about how the BeagleConnectâ„¢ Greybus stack is being
 built, this section helps describe the development currently in progress and
 the principles of operation.
@@ -65,16 +64,18 @@ Software architecture
 TODO items
 ----------
 
-* Linux kernel driver
+* :strike:`Linux kernel driver` (wpanusb and bcfserial still need to be upstreamed)
 
 * Provisioning
 
-* Firmware for host CC13x
+* :strike:`Firmware for host CC13x`
+
+* :strike:`Firmware for device CC13x`
 
-* Firmware for device CC13x
+* Unify firmware for host/device CC13x
 
-* Click Board drivers and device tree formatted metadata for 100 or so Click 
-  Boards
+* :strike:`Click Board drivers and device tree formatted metadata for 100 or so Click 
+  Boards`
 
 * Click Board plug-ins for node-red for the same 100 or so Click Boards
 
@@ -110,7 +111,7 @@ User experience concerns
   provisioning is completed
 
 BeagleConnectâ„¢ Greybus demo using BeagleConnectâ„¢ Freedom
-========================================================
+########################################################
 BeagleConnectâ„¢ Freedom runs a subGHz IEEE 802.15.4 network. This BeagleConnectâ„¢
 Greybus demo shows how to interact with GPIO, I2C and mikroBUS add-on boards 
 remotely connected over a BeagleConnectâ„¢ Freedom.
diff --git a/boards/beagleconnect/technology/story.rst b/boards/beagleconnect/technology/story.rst
index 4a907c0600a83a63a08e36ac7a340a49ce32da6c..a4f77d55a55dac6f8647c90e56d2cd3e19e12026 100644
--- a/boards/beagleconnect/technology/story.rst
+++ b/boards/beagleconnect/technology/story.rst
@@ -1,4 +1,4 @@
-.. _beagleconnect-home:
+.. _beagleconnect-story:
 
 BeagleConnectâ„¢ Story
 *********************
diff --git a/boards/capes/cape-interface-spec.rst b/boards/capes/cape-interface-spec.rst
index a115bad7d0b1a304010785420a446c42ab30647e..9d600bc7cd9b110cc8b626fe0167fea34e9fbfb6 100644
--- a/boards/capes/cape-interface-spec.rst
+++ b/boards/capes/cape-interface-spec.rst
@@ -3,354 +3,730 @@
 BeagleBone cape interface spec
 ###############################
 
-This page is a replica of `BeagleBone cape interface spec <https://elinux.org/Beagleboard:BeagleBone_cape_interface_spec>`_ page on elinux.
-
-See `this <https://beagleboard.org/blog/2022-03-31-device-tree-supporting-similar-boards-the-beaglebone-example>`_ blog post on BeagleBoard.org 
-for an introduction on Device Tree: Supporting Similar Boards - The BeagleBone Example. 
-`This <https://docs.google.com/spreadsheets/d/1fE-AsDZvJ-bBwzNBj1_sPDrutvEvsmARqFwvbw_HkrE/edit?usp=sharing>`_ 
-spreadsheet provides a summary of expansion header signals on various BeagleBoard.org board designs. 
-`This <https://elinux.org/Beagleboard:Cape_Expansion_Headers>`_ provides information on Cape Expansion Headers for BeagleBone designs.
-
-.. Note:: Below, when mentioning "Black", this is true for all AM3358-based BeagleBone boards. "AI" is AM5729-based. "AI-64" is TDA4VM-based.
-
+.. |I2C| replace:: I\ :sup:`2`\ C
+
+This page is a fork of `BeagleBone cape interface spec <https://elinux.org/Beagleboard:BeagleBone_cape_interface_spec>`_ page on elinux. This is the new official home.
+
+Background and overview
+***********************
+
+.. important::
+
+   Resources 
+   
+   * See `Device Tree: Supporting Similar Boards - The BeagleBone Example blog post <https://beagleboard.org/blog/2022-03-31-device-tree-supporting-similar-boards-the-beaglebone-example>`_ on BeagleBoard.org
+   * See `spreadsheet with pin header details <https://docs.google.com/spreadsheets/d/1fE-AsDZvJ-bBwzNBj1_sPDrutvEvsmARqFwvbw_HkrE/edit?usp=sharing>`_ 
+   * See `elinux.org Cape Expansion Headers for BeagleBone page <https://elinux.org/Beagleboard:Cape_Expansion_Headers>`_
+   * See :ref:`BeagleBone Black System Reference Manual Connectors section <beagleboneblack-connectors>`
+   * See :ref:`BeagleBone AI System Reference Manual Connectors section <beaglebone-ai-connectors>`
+   * See :ref:`BeagleBone AI-64 System Reference Manual Connectors section <TODO>`
+
+.. note:: Below, when mentioning "Black", this is true for all AM3358-based BeagleBone boards. "AI" is AM5729-based. "AI-64" is TDA4VM-based.
+
+The device tree symbols for the BeagleBone Cape Compatibility Layer are provided in `BeagleBoard-DeviceTrees <https://git.beagleboard.org/beagleboard/BeagleBoard-DeviceTrees>`_ at:
+
+* Black: `bbb-bone-buses.dtsi <https://git.beagleboard.org/beagleboard/BeagleBoard-DeviceTrees/-/blob/v5.10.x-ti-unified/src/arm/bbb-bone-buses.dtsi>`_
+* AI: `bbai-bone-buses.dtsi <https://git.beagleboard.org/beagleboard/BeagleBoard-DeviceTrees/-/blob/v5.10.x-ti-unified/src/arm/bbai-bone-buses.dtsi>`_
+* AI-64: `k3-j721e-beagleboneai-64-bone-buses.dtsi <https://git.beagleboard.org/beagleboard/BeagleBoard-DeviceTrees/-/blob/v5.10.x-ti-unified/src/arm64/k3-j721e-beagleboneai64-bone-buses.dtsi>`_
+
+The udev rules used to create the userspace symlinks for the BeagleBone Cape Compatibility Layer are provided in `usr-customizations <https://git.beagleboard.org/beagleboard/usr-customizations>`_ at:
+
+More details can be found in :ref:`bone-methodology`.
+
+.. |A| replace:: :ref:`A <bone-analog>`
+.. |B| replace:: :ref:`B <bone-i2s>`
+.. |C| replace:: :ref:`C <bone-can>`
+.. |D| replace:: :ref:`D <bone-gpio>`
+.. |E| replace:: :ref:`E <bone-pwm>`
+.. |I| replace:: :ref:`I <bone-i2c>`
+.. |L| replace:: :ref:`L <bone-lcd>`
+.. |M| replace:: :ref:`M <bone-mmc>`
+.. |P| replace:: :ref:`P <bone-pru>`
+.. |Q| replace:: :ref:`Q <bone-capture>`
+.. |S| replace:: :ref:`S <bone-spi>`
+.. |U| replace:: :ref:`U <bone-uart>`
+.. |Y| replace:: :ref:`Y <bone-ecap>`
+
+.. note::
+
+    Legend
+
+    * |D|: Digital general purpose input and output (GPIO)
+    * |I|: Inter-integrated circuit bus (|I2C|) ports
+    * |S|: Serial peripheral interface (SPI) ports
+    * |U|: Universal asynchronous reciever/transmitter (UART) serial ports
+    * |C|: CAN
+    * |A|: Analog inputs
+    * |E|: PWM
+    * |Q|: Capture/EQEP
+    * |M|: MMC/SD/SDIO
+    * |B|: I2S/audio serial ports
+    * |L|: LCD
+    * |P|: PRU
+    * |Y|: ECAP
 
 .. table:: Overall
 
-	+-----------------------------------------------+-----+------------------------------------+
-	| .. centered:: P8                              |     |    .. centered:: P8                |
-	+===============+=====+======+==================+=====+===========+=====+======+===========+
-	|   Functions   | odd | even |    Functions     |     | Functions | odd | even | Functions |
-	+---------------+-----+------+------------------+-----+-----------+-----+------+-----------+
-	| USB D+        | E1  | E2   | USB D-           |     | -         | -   | -    | -         |
-	+---------------+-----+------+------------------+-----+-----------+-----+------+-----------+
-	| 5V OUT        | E3  | E4   | GND              |     | -         | -   | -    | -         |
-	+---------------+-----+------+------------------+-----+-----------+-----+------+-----------+
-	| GND           | 1   | 2    | GND              |     | GND       | 1   | 2    | GND       |
-	+---------------+-----+------+------------------+-----+-----------+-----+------+-----------+
-	| 3V3 OUT       | 3   | 4    | 3V3 OUT          |     | D M       | 3   | 4    | D M       |
-	+---------------+-----+------+------------------+-----+-----------+-----+------+-----------+
-	| 5V IN         | 5   | 6    | 5V IN            |     | D M       | 5   | 6    | D M       |
-	+---------------+-----+------+------------------+-----+-----------+-----+------+-----------+
-	| 5V OUT        | 7   | 8    | 5V OUT           |     | C2r D     | 7   | 8    | C2t D     |
-	+---------------+-----+------+------------------+-----+-----------+-----+------+-----------+
-	| PWR BUT       | 9   | 10   | RESET            |     | D         | 9   | 10   | D         |
-	+---------------+-----+------+------------------+-----+-----------+-----+------+-----------+
-	| D U4r         | 11  | 12   | D                |     | D P0o     | 11  | 12   | D Q2a P0o |
-	+---------------+-----+------+------------------+-----+-----------+-----+------+-----------+
-	| D U4t         | 13  | 14   | D E1a            |     | D E2b     | 13  | 14   | D         |
-	+---------------+-----+------+------------------+-----+-----------+-----+------+-----------+
-	| D             | 15  | 16   | D E1b            |     | D P0i     | 15  | 16   | D P0i     |
-	+---------------+-----+------+------------------+-----+-----------+-----+------+-----------+
-	| D I1c S00     | 17  | 18   | D I1d S0o        |     | D         | 17  | 18   | D         |
-	+---------------+-----+------+------------------+-----+-----------+-----+------+-----------+
-	| C0r D I2c     | 19  | 20   | C0t D I2d        |     | D E2a     | 19  | 20   | D M P1    |
-	+---------------+-----+------+------------------+-----+-----------+-----+------+-----------+
-	| D E0b S0i U2t | 21  | 22   | D E0a S0c U2r    |     | D M P1    | 21  | 22   | D M Q2b   |
-	+---------------+-----+------+------------------+-----+-----------+-----+------+-----------+
-	| D S01         | 23  | 24   | C1r D I3c U1t    |     | D M       | 23  | 24   | D M       |
-	+---------------+-----+------+------------------+-----+-----------+-----+------+-----------+
-	| D P0          | 25  | 26   | C1t D I3d U1r    |     | D M       | 25  | 26   | D         |
-	+---------------+-----+------+------------------+-----+-----------+-----+------+-----------+
-	| D P0 Q0b      | 27  | 28   | D P0 S10         |     | D L P1    | 27  | 28   | D L P1    |
-	+---------------+-----+------+------------------+-----+-----------+-----+------+-----------+
-	| D E S1i P0    | 29  | 30   | D P0 S1o         |     | D L P1    | 29  | 30   | D L P1    |
-	+---------------+-----+------+------------------+-----+-----------+-----+------+-----------+
-	| D E S1c P0    | 31  | 32   | ADC VDD          |     | D L       | 31  | 32   | D L       |
-	+---------------+-----+------+------------------+-----+-----------+-----+------+-----------+
-	| A4            | 33  | 34   | ADC GND          |     | D L Q1b   | 33  | 34   | D E L     |
-	+---------------+-----+------+------------------+-----+-----------+-----+------+-----------+
-	| A6            | 35  | 36   | A5               |     | D L Q1a   | 35  | 36   | D E L     |
-	+---------------+-----+------+------------------+-----+-----------+-----+------+-----------+
-	| A2            | 37  | 38   | A3               |     | D L U5t   | 37  | 38   | D L U5r   |
-	+---------------+-----+------+------------------+-----+-----------+-----+------+-----------+
-	| A0            | 39  | 40   | A1               |     | D L P1    | 39  | 40   | D L P1    |
-	+---------------+-----+------+------------------+-----+-----------+-----+------+-----------+
-	| D P0          | 41  | 42   | D Q0a S11 U3t P0 |     | D L P1    | 41  | 42   | D L P1    |
-	+---------------+-----+------+------------------+-----+-----------+-----+------+-----------+
-	| GND           | 43  | 44   | GND              |     | D L P1    | 43  | 44   | D L P1    |
-	+---------------+-----+------+------------------+-----+-----------+-----+------+-----------+
-	| GND           | 45  | 46   | GND              |     | D E L P1  | 45  | 46   | D E L P1  |
-	+---------------+-----+------+------------------+-----+-----------+-----+------+-----------+
-
-* A: ADC
-* C: CAN
-* D: Digital GPIO
-* E: EHRPWM
-* I: I2C
-* L: LCD
-* M: MMC/SDIO
-* P: PRU
-* Q: eQEP
-* S: SPI
-* U: UART
-
-LEDs
-------
-
-The compatibility layer comes with simple reference nodes for attaching LEDs to any gpio pin. The format followed for these nodes is **led_P8_## / led_P9_##**. The **gpio-leds** driver is used by these reference nodes internally and allows users to easily create compatible led nodes in overlays for Black, AI and AI-64. For the definitions, you can see `bbai-bone-buses.dtsi#L16 <https://github.com/lorforlinux/BeagleBoard-DeviceTrees/blob/97a6f0daa9eab09633a2064f68a53b107d6e3968/src/arm/bbai-bone-buses.dtsi#L16>`_ & `bbb-bone-buses.dtsi#L16 <https://github.com/lorforlinux/BeagleBoard-DeviceTrees/blob/97a6f0daa9eab09633a2064f68a53b107d6e3968/src/arm/bbb-bone-buses.dtsi#L16>`_.
-
-Example overlays
-*****************
-
-.. table:: Bone LEDs Overlays
-
-	+---------+------+-------------------------------------------------------------------------------------------------------------------------------------------------------+
-	| Header  | Pin  | Overlay                                                                                                                                               |
-	+=========+======+=======================================================================================================================================================+
-	| P8      | 3    | `BONE-LED_P8_03.dts <https://git.beagleboard.org/beagleboard/BeagleBoard-DeviceTrees/blob/v4.19.x-ti-overlays/src/arm/overlays/BONE-LED_P8_03.dts>`_  |
-	+---------+------+-------------------------------------------------------------------------------------------------------------------------------------------------------+
-	| P9      | 11   | `BONE-LED_P9_11.dts <https://git.beagleboard.org/beagleboard/BeagleBoard-DeviceTrees/blob/v4.19.x-ti-overlays/src/arm/overlays/BONE-LED_P9_11.dts>`_  |
-	+---------+------+-------------------------------------------------------------------------------------------------------------------------------------------------------+
-
-Definitions
-************
-
-.. table:: Bone LEDs
-
-	+----------------------------+-------------+----------+-----------+-----------+
-	| LED                        | Header pin  | Black    | AI        | AI-64     |
-	+============================+=============+==========+===========+===========+
-	| /sys/class/leds/led_P8_03  | P8_03       | gpio1_6  | gpio1_24  | gpio0_20  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_04  | P8_04       | gpio1_7  | gpio1_25  | gpio0_48  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_05  | P8_05       | gpio1_2  | gpio7_1   | gpio0_33  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_06  | P8_06       | gpio1_3  | gpio7_2   | gpio0_34  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_07  | P8_07       | gpio2_2  | gpio6_5   | gpio0_15  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_08  | P8_08       | gpio2_3  | gpio6_6   | gpio0_14  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_09  | P8_09       | gpio2_5  | gpio6_18  | gpio0_17  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_10  | P8_10       | gpio2_4  | gpio6_4   | gpio0_16  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_11  | P8_11       | gpio1_13 | gpio3_11  | gpio0_60  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_12  | P8_12       | gpio1_12 | gpio3_10  | gpio0_59  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_13  | P8_13       | gpio0_23 | gpio4_11  | gpio0_89  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_14  | P8_14       | gpio0_26 | gpio4_13  | gpio0_75  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_15  | P8_15       | gpio1_15 | gpio4_3   | gpio0_61  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_16  | P8_16       | gpio1_14 | gpio4_29  | gpio0_62  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_17  | P8_17       | gpio0_27 | gpio8_18  | gpio0_3   |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_18  | P8_18       | gpio2_1  | gpio4_9   | gpio0_4   |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_19  | P8_19       | gpio0_22 | gpio4_10  | gpio0_88  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_20  | P8_20       | gpio1_31 | gpio6_30  | gpio0_76  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_21  | P8_21       | gpio1_30 | gpio6_29  | gpio0_30  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_22  | P8_22       | gpio1_5  | gpio1_23  | gpio0_5   |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_23  | P8_23       | gpio1_4  | gpio1_22  | gpio0_31  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_24  | P8_24       | gpio1_1  | gpio7_0   | gpio0_6   |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_25  | P8_25       | gpio1_0  | gpio6_31  | gpio0_35  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_26  | P8_26       | gpio1_29 | gpio4_28  | gpio0_51  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_27  | P8_27       | gpio2_22 | gpio4_23  | gpio0_71  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_28  | P8_28       | gpio2_24 | gpio4_19  | gpio0_72  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_29  | P8_29       | gpio2_23 | gpio4_22  | gpio0_73  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_30  | P8_30       | gpio2_25 | gpio4_20  | gpio0_74  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_31  | P8_31       | gpio0_10 | gpio8_14  | gpio0_32  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_32  | P8_32       | gpio0_11 | gpio8_15  | gpio0_26  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_33  | P8_33       | gpio0_9  | gpio8_13  | gpio0_25  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_34  | P8_34       | gpio2_17 | gpio8_11  | gpio0_7   |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_35  | P8_35       | gpio0_8  | gpio8_12  | gpio0_24  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_36  | P8_36       | gpio2_16 | gpio8_10  | gpio0_8   |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_37  | P8_37       | gpio2_14 | gpio8_8   | gpio0_106 |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_38  | P8_38       | gpio2_15 | gpio8_9   | gpio0_105 |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_39  | P8_39       | gpio2_12 | gpio8_6   | gpio0_69  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_40  | P8_40       | gpio2_13 | gpio8_7   | gpio0_70  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_41  | P8_41       | gpio2_10 | gpio8_4   | gpio0_67  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_42  | P8_42       | gpio2_11 | gpio8_5   | gpio0_68  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_43  | P8_43       | gpio2_8  | gpio8_2   | gpio0_65  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_44  | P8_44       | gpio2_9  | gpio8_3   | gpio0_66  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_45  | P8_45       | gpio2_6  | gpio8_0   | gpio0_79  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P8_46  | P8_46       | gpio2_7  | gpio8_1   | gpio0_80  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_11  | P9_11       | gpio0_30 | gpio8_17  | gpio0_1   |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_12  | P9_12       | gpio1_28 | gpio5_0   | gpio0_45  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_13  | P9_13       | gpio0_31 | gpio6_12  | gpio0_2   |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_14  | P9_14       | gpio1_18 | gpio4_25  | gpio0_93  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_15  | P9_15       | gpio1_16 | gpio3_12  | gpio0_47  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_16  | P9_16       | gpio1_19 | gpio4_26  | gpio0_94  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_17  | P9_17       | gpio0_5  | gpio7_17  | gpio0_28  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_18  | P9_18       | gpio0_4  | gpio7_16  | gpio0_40  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_19  | P9_19       | gpio0_13 | gpio7_3   | gpio0_78  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_20  | P9_20       | gpio0_12 | gpio7_4   | gpio0_77  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_21  | P9_21       | gpio0_3  | gpio3_3   | gpio0_39  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_22  | P9_22       | gpio0_2  | gpio6_19  | gpio0_38  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_23  | P9_23       | gpio1_17 | gpio7_11  | gpio0_10  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_24  | P9_24       | gpio0_15 | gpio6_15  | gpio0_13  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_25  | P9_25       | gpio3_21 | gpio6_17  | gpio0_127 |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_26  | P9_26       | gpio0_14 | gpio6_14  | gpio0_12  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_27  | P9_27       | gpio3_19 | gpio4_15  | gpio0_46  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_28  | P9_28       | gpio3_17 | gpio4_17  | gpio1_11  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_29  | P9_29       | gpio3_15 | gpio5_11  | gpio0_53  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_30  | P9_30       | gpio3_16 | gpio5_12  | gpio0_44  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_31  | P9_31       | gpio3_14 | gpio5_10  | gpio0_52  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_33  | P9_33       | NA       | NA        | gpio0_50  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_35  | P9_35       | NA       | NA        | gpio0_55  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_36  | P9_36       | NA       | NA        | gpio0_56  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_37  | P9_37       | NA       | NA        | gpio0_57  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_38  | P9_38       | NA       | NA        | gpio0_58  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_39  | P9_39       | NA       | NA        | gpio0_54  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_40  | P9_40       | NA       | NA        | gpio0_81  |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_41  | P9_41       | gpio0_20 | gpio6_20  | gpio1_0   |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_91  | P9_91       | gpio3_20 | NA        | NA        |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_42  | P9_42       | gpio0_7  | gpio4_18  | gpio0_123 |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_P9_92  | P9_92       | gpio3_18 | NA        | NA        |
-	+----------------------------+-------------+----------+-----------+-----------+
-	| /sys/class/leds/led_A15    | A15         | gpio0_19 | NA        | NA        |
-	+----------------------------+-------------+----------+-----------+-----------+
-
-I2C
-----
-
-Compatibility layer provides simple I2C bone bus nodes for creating compatible overlays for Black, AI and AI-64. The format followed for these nodes is '''bone_i2c_#'''. For the definitions, you can see `bbai-bone-buses.dtsi#L388 <https://github.com/lorforlinux/BeagleBoard-DeviceTrees/blob/97a6f0daa9eab09633a2064f68a53b107d6e3968/src/arm/bbai-bone-buses.dtsi#L388>`_ & `bbb-bone-buses.dtsi#L403 <https://github.com/lorforlinux/BeagleBoard-DeviceTrees/blob/97a6f0daa9eab09633a2064f68a53b107d6e3968/src/arm/bbb-bone-buses.dtsi#L403>`_.
-
-.. table:: Bone bus I2C
-
-	+------------------+--------------+--------+-------+------------+-----------------+--------+-----------------------------------------------------------------------------------------------------------+
-	| SYSFS            | DT symbol    | Black  | AI    | AI-64      | SCL             | SDA    | Overlay                                                                                                   |
-	+==================+==============+========+=======+============+=================+========+===========================================================================================================+
-	| /dev/bone/i2c/0  | bone_i2c_0   | I2C0   | I2C1  | TBD        | .. centered:: NA (On-board)                                                                                                          |
-	+------------------+--------------+--------+-------+------------+-----------------+--------+-----------------------------------------------------------------------------------------------------------+
-	| /dev/bone/i2c/1  | bone_i2c_1   | I2C1   | I2C5  | MAIN_I2C6  | P9.17           | P9.18  | `BONE-I2C1.dts <https://github.com/lorforlinux/bb.org-overlays/blob/bone_i2c/src/arm/BONE-I2C1.dts>`_     |
-	+------------------+--------------+--------+-------+------------+-----------------+--------+-----------------------------------------------------------------------------------------------------------+
-	| /dev/bone/i2c/2  | bone_i2c_2   | I2C2   | I2C4  | MAIN_I2C3  | P9.19           | P9.20  | `BONE-I2C2.dts <https://github.com/lorforlinux/bb.org-overlays/blob/bone_i2c/src/arm/BONE-I2C2.dts>`_     |
-	+------------------+--------------+--------+-------+------------+-----------------+--------+-----------------------------------------------------------------------------------------------------------+
-	| /dev/bone/i2c/2a | bone_i2c_2a  | I2C2   | N/A   | TBD        | P9.21           | P9.22  | `BONE-I2C2A.dts <https://github.com/lorforlinux/bb.org-overlays/blob/bone_i2c/src/arm/BONE-I2C2A.dts>`_   |
-	+------------------+--------------+--------+-------+------------+-----------------+--------+-----------------------------------------------------------------------------------------------------------+
-	| /dev/bone/i2c/3  | bone_i2c_3   | I2C1   | I2C3  | MAIN_I2C4  | P9.24           | P9.26  | `BONE-I2C3.dts <https://github.com/lorforlinux/bb.org-overlays/blob/bone_i2c/src/arm/BONE-I2C3.dts>`_     |
-	+------------------+--------------+--------+-------+------------+-----------------+--------+-----------------------------------------------------------------------------------------------------------+
-
+	+------------------------------------------------------+---+-------------------------------------------------+
+	| .. centered:: P9                                     |   |    .. centered:: P8                             |
+	+===================+=====+======+=====================+===+==================+=====+======+=================+
+	|   Functions       | odd | even |    Functions        |   | Functions        | odd | even | Functions       |
+	+-------------------+-----+------+---------------------+---+------------------+-----+------+-----------------+
+	| USB D+            | E1  | E2   | USB D-              |   |                  |     |      |                 |
+	+-------------------+-----+------+---------------------+---+------------------+-----+------+-----------------+
+	| 5V OUT            | E3  | E4   | GND                 |   |                  |     |      |                 |
+	+-------------------+-----+------+---------------------+---+------------------+-----+------+-----------------+
+	| GND               | 1   | 2    | GND                 |   | GND              | 1   | 2    | GND             |
+	+-------------------+-----+------+---------------------+---+------------------+-----+------+-----------------+
+	| 3V3 OUT           | 3   | 4    | 3V3 OUT             |   | |D| |M|          | 3   | 4    | |D| |M|         |
+	+-------------------+-----+------+---------------------+---+------------------+-----+------+-----------------+
+	| 5V IN             | 5   | 6    | 5V IN               |   | |D| |M| |C|      | 5   | 6    | |D| |M| |C|     |
+	+-------------------+-----+------+---------------------+---+------------------+-----+------+-----------------+
+	| 5V OUT            | 7   | 8    | 5V OUT              |   | |D| |C|          | 7   | 8    | |D| |C|         |
+	+-------------------+-----+------+---------------------+---+------------------+-----+------+-----------------+
+	| PWR BUT           | 9   | 10   | RESET               |   | |D| |C|          | 9   | 10   | |D| |C|         |
+	+-------------------+-----+------+---------------------+---+------------------+-----+------+-----------------+
+	| |D| |U|           | 11  | 12   | |D|                 |   | |D| |P|          | 11  | 12   | |D| |Q| |P|     |
+	+-------------------+-----+------+---------------------+---+------------------+-----+------+-----------------+
+	| |D| |U|           | 13  | 14   | |D| |E|             |   | |D| |E|          | 13  | 14   | |D|             |
+	+-------------------+-----+------+---------------------+---+------------------+-----+------+-----------------+
+	| |D|               | 15  | 16   | |D| |E|             |   | |D| |P|          | 15  | 16   | |D| |P|         |
+	+-------------------+-----+------+---------------------+---+------------------+-----+------+-----------------+
+	| |D| |I| |S|       | 17  | 18   | |D| |I| |S|         |   | |D|              | 17  | 18   | |D|             |
+	+-------------------+-----+------+---------------------+---+------------------+-----+------+-----------------+
+	| |D| |I| |C|       | 19  | 20   | |D| |I| |C|         |   | |D| |E|          | 19  | 20   | |D| |M| |P|     |
+	+-------------------+-----+------+---------------------+---+------------------+-----+------+-----------------+
+	| |D| |E| |S| |U|   | 21  | 22   | |D| |E| |S| |U|     |   | |D| |M| |P|      | 21  | 22   | |D| |M| |Q|     |
+	+-------------------+-----+------+---------------------+---+------------------+-----+------+-----------------+
+	| |D| |S|           | 23  | 24   | |D| |I| |U| |C|     |   | |D| |M|          | 23  | 24   | |D| |M|         |
+	+-------------------+-----+------+---------------------+---+------------------+-----+------+-----------------+
+	| |D| |P|           | 25  | 26   | |D| |I| |U| |C|     |   | |D| |M|          | 25  | 26   | |D|             |
+	+-------------------+-----+------+---------------------+---+------------------+-----+------+-----------------+
+	| |D| |P| |Q|       | 27  | 28   | |D| |S| |P|         |   | |D| |L| |P|      | 27  | 28   | |D| |L| |P| |U| |
+	+-------------------+-----+------+---------------------+---+------------------+-----+------+-----------------+
+	| |D| |E| |S| |P|   | 29  | 30   | |D| |S| |P|         |   | |D| |L| |P| |U|  | 29  | 30   | |D| |L| |P|     |
+	+-------------------+-----+------+---------------------+---+------------------+-----+------+-----------------+
+	| |D| |E| |S| |P|   | 31  | 32   | ADC VDD REF OUT     |   | |D| |L|          | 31  | 32   | |D| |L|         |
+	+-------------------+-----+------+---------------------+---+------------------+-----+------+-----------------+
+	| |A|               | 33  | 34   | ADC GND             |   | |D| |L| |Q|      | 33  | 34   | |D| |E| |L|     |
+	+-------------------+-----+------+---------------------+---+------------------+-----+------+-----------------+
+	| |A|               | 35  | 36   | |A|                 |   | |D| |L| |Q|      | 35  | 36   | |D| |E| |L|     |
+	+-------------------+-----+------+---------------------+---+------------------+-----+------+-----------------+
+	| |A|               | 37  | 38   | |A|                 |   | |D| |L| |U|      | 37  | 38   | |D| |L| |U|     |
+	+-------------------+-----+------+---------------------+---+------------------+-----+------+-----------------+
+	| |A|               | 39  | 40   | |A|                 |   | |D| |L| |P|      | 39  | 40   | |D| |L| |P|     |
+	+-------------------+-----+------+---------------------+---+------------------+-----+------+-----------------+
+	| |D| |P|           | 41  | 42   | |D| |Q| |S| |U| |P| |   | |D| |L| |P|      | 41  | 42   | |D| |L| |P|     |
+	+-------------------+-----+------+---------------------+---+------------------+-----+------+-----------------+
+	| GND               | 43  | 44   | GND                 |   | |D| |L| |P|      | 43  | 44   | |D| |L| |P|     |
+	+-------------------+-----+------+---------------------+---+------------------+-----+------+-----------------+
+	| GND               | 45  | 46   | GND                 |   | |D| |E| |L| |P|  | 45  | 46   | |D| |E| |L| |P| |
+	+-------------------+-----+------+---------------------+---+------------------+-----+------+-----------------+
+                                                                                  
+.. _bone-gpio:                                                                    
+                                                                                  
+Digital GPIO                                                                      
+************                                                                      
+                                                                                  
+The compatibility layer comes with simple reference nodes for attaching the Linuuux gpio-leds or gpio-keys to any cape header GPIO pin. This provides simple userspace general purpose input or output with various trigger modes.
+
+The format followed for the gpio-leds nodes is **bone_led_P8_## / bone_led_P9_##**. The **gpio-leds** driver is used by these reference nodes internally and allows users to easily create compatible led nodes in overlays for Black, AI and AI-64.
+
+
+.. code-block:: c
+   :linenos:
+   :caption: Example device tree overlay to enable LED driver on header P8 pin 3
+   :name: bone_cape_spec_led_example
+
+   /dts-v1/;
+   /plugin/;
+
+   &bone_led_P8_03 {
+       status = "okay";
+   }
+
+In :ref:`bone_cape_spec_led_example`, it is possible to redefine the default label
+and other properties defined in the
+`gpio-leds schema <https://elixir.bootlin.com/linux/v5.10/source/Documentation/devicetree/bindings/leds/leds-gpio.yaml>`_.
+
+.. table:: GPIO pins
+
+	+---------------------------------------------------+-----+--------------------------------------+
+	| .. centered:: P9                                  |     |    .. centered:: P8                  |
+	+===================+=====+======+==================+=====+============+=====+======+============+
+	|   Functions       | odd | even |    Functions     |     | Functions  | odd | even | Functions  |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| GND               | 1   | 2    | GND              |     | GND        | 1   | 2    | GND        |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| 3V3 OUT           | 3   | 4    | 3V3 OUT          |     | D M        | 3   | 4    | D M        |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| 5V IN             | 5   | 6    | 5V IN            |     | D M C4t    | 5   | 6    | D M C4r    |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| 5V OUT            | 7   | 8    | 5V OUT           |     | D C2r      | 7   | 8    | D C2t      |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| PWR BUT           | 9   | 10   | RESET            |     | D C3r      | 9   | 10   | D C3t      |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D U4r             | 11  | 12   | D                |     | D P0o      | 11  | 12   | D Q2a P0o  |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D U4t             | 13  | 14   | D E1a            |     | D E2b      | 13  | 14   | D          |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D                 | 15  | 16   | D E1b            |     | D P0i      | 15  | 16   | D P0i      |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D I1c S00         | 17  | 18   | D I1d S0o        |     | D          | 17  | 18   | D          |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| C0r D I2c         | 19  | 20   | C0t D I2d        |     | D E2a      | 19  | 20   | D M P1     |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D E0b S0i U2t     | 21  | 22   | D E0a S0c U2r    |     | D M P1     | 21  | 22   | D M Q2b    |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D S01             | 23  | 24   | C1r D I3c U1t    |     | D M        | 23  | 24   | D M        |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D P0              | 25  | 26   | C1t D I3d U1r    |     | D M        | 25  | 26   | D          |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D P0 Q0b          | 27  | 28   | D P0 S10         |     | D L P1     | 27  | 28   | D L P1 U6r |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D E S1i P0        | 29  | 30   | D P0 S1o         |     | D L P1 U6t | 29  | 30   | D L P1     |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D E S1c P0        | 31  | 32   | ADC VDD          |     | D L        | 31  | 32   | D L        |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| |A| 4             | 33  | 34   | ADC GND          |     | D L Q1b    | 33  | 34   | D E L      |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| |A| 6             | 35  | 36   | |A| 5            |     | D L Q1a    | 35  | 36   | D E L      |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| |A| 2             | 37  | 38   | |A| 3            |     | D L U5t    | 37  | 38   | D L U5r    |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| |A| 0             | 39  | 40   | |A| 1            |     | D L P1     | 39  | 40   | D L P1     |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D P0              | 41  | 42   | D Q0a S11 U3t P0 |     | D L P1     | 41  | 42   | D L P1     |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| GND               | 43  | 44   | GND              |     | D L P1     | 43  | 44   | D L P1     |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| GND               | 45  | 46   | GND              |     | D E L P1   | 45  | 46   | D E L P1   |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+
+.. table:: Bone GPIO LEDs interface
+
+	+------------------------+-------------+----------+-----------+-----------+
+	| LED SYSFS              | Header pin  | Black    | AI        | AI-64     |
+	+========================+=============+==========+===========+===========+
+	| /sys/class/leds/P8_03  | P8_03       | gpio1_6  | gpio1_24  | gpio0_20  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_04  | P8_04       | gpio1_7  | gpio1_25  | gpio0_48  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_05  | P8_05       | gpio1_2  | gpio7_1   | gpio0_33  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_06  | P8_06       | gpio1_3  | gpio7_2   | gpio0_34  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_07  | P8_07       | gpio2_2  | gpio6_5   | gpio0_15  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_08  | P8_08       | gpio2_3  | gpio6_6   | gpio0_14  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_09  | P8_09       | gpio2_5  | gpio6_18  | gpio0_17  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_10  | P8_10       | gpio2_4  | gpio6_4   | gpio0_16  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_11  | P8_11       | gpio1_13 | gpio3_11  | gpio0_60  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_12  | P8_12       | gpio1_12 | gpio3_10  | gpio0_59  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_13  | P8_13       | gpio0_23 | gpio4_11  | gpio0_89  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_14  | P8_14       | gpio0_26 | gpio4_13  | gpio0_75  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_15  | P8_15       | gpio1_15 | gpio4_3   | gpio0_61  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_16  | P8_16       | gpio1_14 | gpio4_29  | gpio0_62  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_17  | P8_17       | gpio0_27 | gpio8_18  | gpio0_3   |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_18  | P8_18       | gpio2_1  | gpio4_9   | gpio0_4   |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_19  | P8_19       | gpio0_22 | gpio4_10  | gpio0_88  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_20  | P8_20       | gpio1_31 | gpio6_30  | gpio0_76  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_21  | P8_21       | gpio1_30 | gpio6_29  | gpio0_30  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_22  | P8_22       | gpio1_5  | gpio1_23  | gpio0_5   |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_23  | P8_23       | gpio1_4  | gpio1_22  | gpio0_31  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_24  | P8_24       | gpio1_1  | gpio7_0   | gpio0_6   |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_25  | P8_25       | gpio1_0  | gpio6_31  | gpio0_35  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_26  | P8_26       | gpio1_29 | gpio4_28  | gpio0_51  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_27  | P8_27       | gpio2_22 | gpio4_23  | gpio0_71  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_28  | P8_28       | gpio2_24 | gpio4_19  | gpio0_72  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_29  | P8_29       | gpio2_23 | gpio4_22  | gpio0_73  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_30  | P8_30       | gpio2_25 | gpio4_20  | gpio0_74  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_31  | P8_31       | gpio0_10 | gpio8_14  | gpio0_32  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_32  | P8_32       | gpio0_11 | gpio8_15  | gpio0_26  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_33  | P8_33       | gpio0_9  | gpio8_13  | gpio0_25  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_34  | P8_34       | gpio2_17 | gpio8_11  | gpio0_7   |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_35  | P8_35       | gpio0_8  | gpio8_12  | gpio0_24  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_36  | P8_36       | gpio2_16 | gpio8_10  | gpio0_8   |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_37  | P8_37       | gpio2_14 | gpio8_8   | gpio0_106 |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_38  | P8_38       | gpio2_15 | gpio8_9   | gpio0_105 |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_39  | P8_39       | gpio2_12 | gpio8_6   | gpio0_69  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_40  | P8_40       | gpio2_13 | gpio8_7   | gpio0_70  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_41  | P8_41       | gpio2_10 | gpio8_4   | gpio0_67  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_42  | P8_42       | gpio2_11 | gpio8_5   | gpio0_68  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_43  | P8_43       | gpio2_8  | gpio8_2   | gpio0_65  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_44  | P8_44       | gpio2_9  | gpio8_3   | gpio0_66  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_45  | P8_45       | gpio2_6  | gpio8_0   | gpio0_79  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P8_46  | P8_46       | gpio2_7  | gpio8_1   | gpio0_80  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_11  | P9_11       | gpio0_30 | gpio8_17  | gpio0_1   |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_12  | P9_12       | gpio1_28 | gpio5_0   | gpio0_45  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_13  | P9_13       | gpio0_31 | gpio6_12  | gpio0_2   |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_14  | P9_14       | gpio1_18 | gpio4_25  | gpio0_93  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_15  | P9_15       | gpio1_16 | gpio3_12  | gpio0_47  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_16  | P9_16       | gpio1_19 | gpio4_26  | gpio0_94  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_17  | P9_17       | gpio0_5  | gpio7_17  | gpio0_28  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_18  | P9_18       | gpio0_4  | gpio7_16  | gpio0_40  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_19  | P9_19       | gpio0_13 | gpio7_3   | gpio0_78  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_20  | P9_20       | gpio0_12 | gpio7_4   | gpio0_77  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_21  | P9_21       | gpio0_3  | gpio3_3   | gpio0_39  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_22  | P9_22       | gpio0_2  | gpio6_19  | gpio0_38  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_23  | P9_23       | gpio1_17 | gpio7_11  | gpio0_10  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_24  | P9_24       | gpio0_15 | gpio6_15  | gpio0_13  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_25  | P9_25       | gpio3_21 | gpio6_17  | gpio0_127 |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_26  | P9_26       | gpio0_14 | gpio6_14  | gpio0_12  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_27  | P9_27       | gpio3_19 | gpio4_15  | gpio0_46  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_28  | P9_28       | gpio3_17 | gpio4_17  | gpio1_11  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_29  | P9_29       | gpio3_15 | gpio5_11  | gpio0_53  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_30  | P9_30       | gpio3_16 | gpio5_12  | gpio0_44  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_31  | P9_31       | gpio3_14 | gpio5_10  | gpio0_52  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_33  | P9_33       | *n/a*    | *n/a*     | gpio0_50  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_35  | P9_35       | *n/a*    | *n/a*     | gpio0_55  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_36  | P9_36       | *n/a*    | *n/a*     | gpio0_56  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_37  | P9_37       | *n/a*    | *n/a*     | gpio0_57  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_38  | P9_38       | *n/a*    | *n/a*     | gpio0_58  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_39  | P9_39       | *n/a*    | *n/a*     | gpio0_54  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_40  | P9_40       | *n/a*    | *n/a*     | gpio0_81  |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_41  | P9_41       | gpio0_20 | gpio6_20  | gpio1_0   |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/P9_42  | P9_42       | gpio0_7  | gpio4_18  | gpio0_123 |
+	+------------------------+-------------+----------+-----------+-----------+
+	| /sys/class/leds/A15    | A15         | gpio0_19 | NA        | NA        |
+	+------------------------+-------------+----------+-----------+-----------+
+
+.. _bone-i2c:
+
+|I2C|
+*****
+
+Compatibility layer provides simple I2C bone bus nodes for creating compatible overlays for Black, AI and AI-64. The format followed for these nodes is **bone_i2c_#**.
+
+.. table:: I2C pins
+
+	+---------------------------------------------------+
+	| .. centered:: P9                                  |
+	+===================+=====+======+==================+
+	|   Functions       | odd | even |    Functions     |
+	+-------------------+-----+------+------------------+
+	| 1 SCL             | 17  | 18   | 1 SDA            |
+	+-------------------+-----+------+------------------+
+	| 2 SCL             | 19  | 20   | 2 SDA            |
+	+-------------------+-----+------+------------------+
+	| 4 SCL [4]_ [5]_   | 21  | 22   | 4 SDA [4]_ [5]_  |
+	+-------------------+-----+------+------------------+
+	|                   | 23  | 24   | 3 SCL [3]_       |
+	+-------------------+-----+------+------------------+
+	|                   | 25  | 26   | 3 SDA [3]_       |
+	+-------------------+-----+------+------------------+
+
+.. [3] Mutually exclusive with port 1 on Black
+
+.. [4] Mutually exclusive with port 2 on Black
+
+.. [5] On Black and AI-64 only
+
+.. table:: I2C port mapping
+
+	+-----------------+--------------+-------+-------+-----------+-------+--------+-----------+
+	| SYSFS           | DT symbol    | Black | AI    | AI-64     | SCL   | SDA    | Overlay   |
+	+=================+==============+=======+=======+===========+=======+========+===========+
+	| /dev/bone/i2c/0 | bone_i2c_0   | I2C0  | I2C1  | TBD       | On-board                   |
+	+-----------------+--------------+-------+-------+-----------+-------+--------+-----------+
+	| /dev/bone/i2c/1 | bone_i2c_1   | I2C1  | I2C5  | MAIN_I2C6 | P9.17 | P9.18  | BONE-I2C1 |
+	+-----------------+--------------+-------+-------+-----------+-------+--------+-----------+
+	| /dev/bone/i2c/2 | bone_i2c_2   | I2C2  | I2C4  | MAIN_I2C3 | P9.19 | P9.20  | BONE-I2C2 |
+	+-----------------+--------------+-------+-------+-----------+-------+--------+-----------+
+	| /dev/bone/i2c/3 | bone_i2c_3   | I2C1  | I2C3  | MAIN_I2C4 | P9.24 | P9.26  | BONE-I2C3 |
+	+-----------------+--------------+-------+-------+-----------+-------+--------+-----------+
+	| /dev/bone/i2c/4 | bone_i2c_4   | I2C2  | *n/a* | MAIN_I2C3 | P9.21 | P9.22  | BONE-I2C4 |
+	+-----------------+--------------+-------+-------+-----------+-------+--------+-----------+
+
+.. important::
+
+   In the case the same controller is used for 2 different bone bus nodes, usage of those nodes is mutually-exclusive.
+
+.. note::
+
+   The provided pre-compiled overlays enable the |I2C| bus driver only, not a specific device driver.  Either a custom
+   overlay is required to load the device driver or usermode device driver loading can be performed, depending on
+   the driver. See :ref:`bone101_i2c` for information on loading |I2C| drivers from userspace.
+
+.. code-block:: c
+   :linenos:
+   :caption: Example device tree overlay to enable I2C driver
+   :name: bone_cape_spec_i2c_example
+
+   /dts-v1/;
+   /plugin/;
+
+   &bone_i2c_1 {
+       status = "okay";
+       accel@1c {
+           compatible = "fsl,mma8453";
+           reg = <0x1c>;
+       };
+   }
+
+In :ref:`bone_cape_spec_i2c_example`, you can specify what driver you want to load and provide any properties it might need.
+
+* https://www.kernel.org/doc/html/v5.10/i2c/summary.html
+* https://www.kernel.org/doc/html/v5.10/i2c/instantiating-devices.html#method-1-declare-the-i2c-devices-statically
+* https://www.kernel.org/doc/Documentation/devicetree/bindings/i2c/
+
+.. _bone-spi:
 
 SPI
------
-
-SPI bone bus nodes allow creating compatible overlays for Black, AI and AI-64. For the definitions, you can see `bbai-bone-buses.dtsi#L406 <https://github.com/lorforlinux/BeagleBoard-DeviceTrees/blob/97a6f0daa9eab09633a2064f68a53b107d6e3968/src/arm/bbai-bone-buses.dtsi#L406>`_ & `bbb-bone-buses.dtsi#L423 <https://github.com/lorforlinux/BeagleBoard-DeviceTrees/blob/97a6f0daa9eab09633a2064f68a53b107d6e3968/src/arm/bbb-bone-buses.dtsi#L423>`_.
-
-.. table:: Bone bus SPI
-
-	+--------------------+------------+--------+-------+------------+--------+--------+--------+---------------------------------------+--------------------------------------------------------------------------------------------------------------+
-	| Bone bus           | DT symbol  | Black  | AI    | AI-64      | SDO    | SDI    | CLK    | CS                                    | Overlay                                                                                                      |
-	+====================+============+========+=======+============+========+========+========+=======================================+==============================================================================================================+
-	| /dev/bone/spi/0.x  | bone_spi_0 | SPI0   | SPI2  | MAIN_SPI6  | P9.18  | P9.21  | P9.22  | - P9.17 (CS0)                         | - `BONE-SPI0_0.dts <https://github.com/lorforlinux/bb.org-overlays/blob/bone_spi/src/arm/BONE-SPI0_0.dts>`_  |
-	|                    |            |        |       |            |        |        |        | - P9.23 (CS1 - BBAI and BBAI64 only)  | - `BONE-SPI0_0.dts <https://github.com/lorforlinux/bb.org-overlays/blob/bone_spi/src/arm/BONE-SPI0_1.dts>`_  |
-	+--------------------+------------+--------+-------+------------+--------+--------+--------+---------------------------------------+--------------------------------------------------------------------------------------------------------------+
-	| /dev/bone/spi/1.x  | bone_spi_1 | SPI1   | SPI3  | MAIN_SPI7  | P9.30  | P9.29  | P9.31  | - P9.28 (CS0)                         | - `BONE-SPI0_0.dts <https://github.com/lorforlinux/bb.org-overlays/blob/bone_spi/src/arm/BONE-SPI1_0.dts>`_  |
-	|                    |            |        |       |            |        |        |        | - P9.42 (CS1)                         | - `BONE-SPI0_0.dts <https://github.com/lorforlinux/bb.org-overlays/blob/bone_spi/src/arm/BONE-SPI1_1.dts>`_  |
-	+--------------------+------------+--------+-------+------------+--------+--------+--------+---------------------------------------+--------------------------------------------------------------------------------------------------------------+
+***
+
+SPI bone bus nodes allow creating compatible overlays for Black, AI and AI-64.
+
+.. table:: SPI pins
+
+	+---------------------------------------------------+
+	| .. centered:: P9                                  |
+	+===================+=====+======+==================+
+	|   Functions       | odd | even |    Functions     |
+	+-------------------+-----+------+------------------+
+	| 0 CS0             | 17  | 18   | 0 SDO            |
+	+-------------------+-----+------+------------------+
+	|                   | 19  | 20   |                  |
+	+-------------------+-----+------+------------------+
+	| 0 SDI             | 21  | 22   | 0 CLK            |
+	+-------------------+-----+------+------------------+
+	| 0 CS1             | 23  | 24   |                  |
+	+-------------------+-----+------+------------------+
+	|                   | 25  | 26   |                  |
+	+-------------------+-----+------+------------------+
+	|                   | 27  | 28   | 1 CS0            |
+	+-------------------+-----+------+------------------+
+	| 1 SDI             | 29  | 30   | 1 SDO            |
+	+-------------------+-----+------+------------------+
+	| 1 CLK             | 31  | 32   |                  |
+	+-------------------+-----+------+------------------+
+	|                   | 33  | 34   |                  |
+	+-------------------+-----+------+------------------+
+	|                   | 35  | 36   |                  |
+	+-------------------+-----+------+------------------+
+	|                   | 37  | 38   |                  |
+	+-------------------+-----+------+------------------+
+	|                   | 39  | 40   |                  |
+	+-------------------+-----+------+------------------+
+	|                   | 41  | 42   | 1 CS1 [2]_       |
+	+-------------------+-----+------+------------------+
+
+.. table:: SPI port mapping
+
+	+--------------------+------------+-------+------+-----------+-------+-------+-------+------------------+-------------+
+	| Bone bus           | DT symbol  | Black | AI   | AI-64     | SDO   | SDI   | CLK   | CS               | Overlay     |
+	+====================+============+=======+======+===========+=======+=======+=======+==================+=============+
+	| /dev/bone/spi/0.0  | bone_spi_0 | SPI0  | SPI2 | MAIN_SPI6 | P9.18 | P9.21 | P9.22 | P9.17 (CS0)      | BONE-SPI0_0 |
+	+--------------------+            +       +      +           +       +       +       +------------------+-------------+
+	| /dev/bone/spi/0.1  |            |       |      |           |       |       |       | P9.23 (CS1) [2]_ | BONE-SPI0_1 |
+	+--------------------+------------+-------+------+-----------+-------+-------+-------+------------------+-------------+
+	| /dev/bone/spi/1.0  | bone_spi_1 | SPI1  | SPI3 | MAIN_SPI7 | P9.30 | P9.29 | P9.31 | P9.28 (CS0)      | BONE-SPI1_0 |
+	+--------------------+            +       +      +           +       +       +       +------------------+-------------+
+	| /dev/bone/spi/1.1  |            |       |      |           |       |       |       | P9.42 (CS1)      | BONE-SPI1_1 |
+	+--------------------+------------+-------+------+-----------+-------+-------+-------+------------------+-------------+
+
+.. [2] Only available on AI and AI-64
+
+.. note::
+
+   The provided pre-compiled overlays enable the "spidev" driver using the "rohm,dh2228fv" compatible string.
+   See https://stackoverflow.com/questions/53634892/linux-spidev-why-it-shouldnt-be-directly-in-devicetree for
+   more background. A custom overlay is required to overload the compatible string to load a non-spidev driver.
+
+.. note:: #TODO# figure out if BONE-SPI0_0 and BONE-SPI0_1 can be loaded at the same time
+
+.. code-block:: c
+   :linenos:
+   :caption: Example device tree overlay to enable SPI driver
+   :name: bone_cape_spec_spi_example
+
+   /dts-v1/;
+   /plugin/;
+
+   &bone_spi_0 {
+       status = "okay";
+        pressure@0 {
+            compatible = "bosch,bmp280";
+            reg = <0>;      /* CS0 */
+            spi-max-frequency = <5000000>;
+        };
+   }
+
+In :ref:`bone_cape_spec_spi_example`, you can specify what driver you want to load and provide any properties it might need.
+
+* https://www.kernel.org/doc/html/v5.10/spi/spi-summary.html
+* https://www.kernel.org/doc/Documentation/devicetree/bindings/spi/
+
+.. _bone-uart:
 
 UART
------
-
-UART bone bus nodes allow creating compatible overlays for Black, AI and AI-64. For the definitions, you can see `bbai-bone-buses.dtsi#L367 <https://github.com/lorforlinux/BeagleBoard-DeviceTrees/blob/97a6f0daa9eab09633a2064f68a53b107d6e3968/src/arm/bbai-bone-buses.dtsi#L367>`_ & `bbb-bone-buses.dtsi#L382 <https://github.com/lorforlinux/BeagleBoard-DeviceTrees/blob/97a6f0daa9eab09633a2064f68a53b107d6e3968/src/arm/bbb-bone-buses.dtsi#L382>`_
-
-.. table:: Bone bus UART
-
-	+-------------------+--------+--------+-----------------------+----------------------------------+--------+---------------------------------------------+---------------------------------------------+-----------------------------------------------------------------------------------------------------------+
-	| Bone bus          | Black  | AI     | AI-64                 | TX                               | RX     | RTSn                                        | CTSn                                        | Overlays                                                                                                  |
-	+===================+========+========+=======================+==================================+========+=============================================+=============================================+===========================================================================================================+
-	| /dev/bone/uart/0  | UART0  | UART1  | MAIN_UART0            | .. centered:: NA (console debug header pins)                                                                                                                                                                                                      |
-	+-------------------+--------+--------+-----------------------+----------------------------------+--------+---------------------------------------------+---------------------------------------------+-----------------------------------------------------------------------------------------------------------+
-	| /dev/bone/uart/1  | UART1  | UART10 | MAIN_UART2            | P9.24                            | P9.26  | P9.19 P8.4 (N/A on AM3358)                  | P9.20 P8.3 (N/A on AM3358)                  | `BONE-UART1.dts <https://github.com/lorforlinux/bb.org-overlays/blob/bone_uart/src/arm/BONE-UART1.dts>`_  |
-	+-------------------+--------+--------+-----------------------+----------------------------------+--------+---------------------------------------------+---------------------------------------------+-----------------------------------------------------------------------------------------------------------+
-	| /dev/bone/uart/2  | UART2  | UART3  | -                     | P9.21                            | P9.22  | P8.38 (N/A on AM5729)                       | P8.37 (N/A on AM5729)                       | `BONE-UART2.dts <https://github.com/lorforlinux/bb.org-overlays/blob/bone_uart/src/arm/BONE-UART2.dts>`_  |
-	+-------------------+--------+--------+-----------------------+----------------------------------+--------+---------------------------------------------+---------------------------------------------+-----------------------------------------------------------------------------------------------------------+
-	| /dev/bone/uart/3  | UART3  | -      | -                     | P9.42                            | NA    | -                                            | -                                           | `BONE-UART3.dts <https://github.com/lorforlinux/bb.org-overlays/blob/bone_uart/src/arm/BONE-UART3.dts>`_  |
-	+-------------------+--------+--------+-----------------------+----------------------------------+--------+---------------------------------------------+---------------------------------------------+-----------------------------------------------------------------------------------------------------------+
-	| /dev/bone/uart/4  | UART4  | UART5  | MAIN_UART0 (console)  | P9.13                            | P9.11  | P8.33 (N/A on AM5729) P8.6 (N/A on AM3358)  | P8.35 (N/A on AM5729) P8.5 (N/A on AM3358)  | `BONE-UART4.dts <https://github.com/lorforlinux/bb.org-overlays/blob/bone_uart/src/arm/BONE-UART4.dts>`_  |
-	+-------------------+--------+--------+-----------------------+----------------------------------+--------+---------------------------------------------+---------------------------------------------+-----------------------------------------------------------------------------------------------------------+
-	| /dev/bone/uart/5  | UART5  | UART8  | MAIN_UART5            | P8.37                            | P8.38  | P8.32                                       | P8.31                                       | `BONE-UART5.dts <https://github.com/lorforlinux/bb.org-overlays/blob/bone_uart/src/arm/BONE-UART5.dts>`_  |
-	+-------------------+--------+--------+-----------------------+----------------------------------+--------+---------------------------------------------+---------------------------------------------+-----------------------------------------------------------------------------------------------------------+
-
+*****
+
+UART bone bus nodes allow creating compatible overlays for Black, AI and AI-64.
+
+.. table:: UART pins
+
+	+---------------------------------------------------+-----+--------------------------------------+
+	| .. centered:: P9                                  |     |    .. centered:: P8                  |
+	+===================+=====+======+==================+=====+============+=====+======+============+
+	|   Functions       | odd | even |    Functions     |     | Functions  | odd | even | Functions  |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| 4 RX [6]_         | 11  | 12   |                  |     |            | 11  | 12   |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| 4 TX [6]_         | 13  | 14   |                  |     |            | 13  | 14   |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	|                   | 15  | 16   |                  |     |            | 15  | 16   |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	|                   | 17  | 18   |                  |     |            | 17  | 18   |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	|                   | 19  | 20   |                  |     |            | 19  | 20   |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| 2 TX              | 21  | 22   | 2 RX             |     |            | 21  | 22   |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	|                   | 23  | 24   | 1 TX             |     |            | 23  | 24   |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	|                   | 25  | 26   | 1 RX             |     |            | 25  | 26   |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	|                   | 27  | 28   |                  |     |            | 27  | 28   | 6 RX       |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	|                   | 29  | 30   |                  |     | 6 TX       | 29  | 30   |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	|                   | 31  | 32   |                  |     |            | 31  | 32   |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	|                   | 33  | 34   |                  |     |            | 33  | 34   | 7 TX       |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	|                   | 35  | 36   |                  |     |            | 35  | 36   |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	|                   | 37  | 38   |                  |     | 5 TX       | 37  | 38   | 5 RX       |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	|                   | 39  | 40   |                  |     |            | 39  | 40   |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	|                   | 41  | 42   | 3 TX             |     |            | 41  | 42   |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+
+.. important::
+
+   RTSn and CTSn mappings are not compatible across boards in the family and are therefore not part of the
+   cape specification.
+
+.. table:: UART port mapping
+
+	+-------------------+--------------+--------+--------+-----------------+--------+--------+------------+
+	| Bone bus          | DT symbol    | Black  | AI     | AI-64           | TX     | RX     | Overlay    |
+	+===================+==============+========+========+=================+========+========+============+
+	| /dev/bone/uart/0  | bone_uart_0  | UART0  | UART1  | MAIN_UART0      | Console debug header pins    |
+	+-------------------+--------------+--------+--------+-----------------+--------+--------+------------+
+	| /dev/bone/uart/1  | bone_uart_1  | UART1  | UART10 | MAIN_UART2      | P9.24  | P9.26  | BONE-UART1 |
+	+-------------------+--------------+--------+--------+-----------------+--------+--------+------------+
+	| /dev/bone/uart/2  | bone_uart_2  | UART2  | UART3  | *n/a*           | P9.21  | P9.22  | BONE-UART2 |
+	+-------------------+--------------+--------+--------+-----------------+--------+--------+------------+
+	| /dev/bone/uart/3  | bone_uart_3  | UART3  | *n/a*  | *n/a*           | P9.42  | *n/a*  | BONE-UART3 |
+	+-------------------+--------------+--------+--------+-----------------+--------+--------+------------+
+	| /dev/bone/uart/4  | bone_uart_4  | UART4  | UART5  | MAIN_UART0 [6]_ | P9.13  | P9.11  | BONE-UART4 |
+	+-------------------+--------------+--------+--------+-----------------+--------+--------+------------+
+	| /dev/bone/uart/5  | bone_uart_5  | UART5  | UART8  | MAIN_UART5      | P8.37  | P8.38  | BONE-UART5 |
+	+-------------------+--------------+--------+--------+-----------------+--------+--------+------------+
+	| /dev/bone/uart/6  | bone_uart_6  | *n/a*  | *n/a*  | MAIN_UART8      | P8.29  | P8.28  | BONE-UART6 |
+	+-------------------+--------------+--------+--------+-----------------+--------+--------+------------+
+	| /dev/bone/uart/7  | bone_uart_7  | *n/a*  | *n/a*  | MAIN_UART2      | P8.34  | P8.22  | BONE-UART7 |
+	+-------------------+--------------+--------+--------+-----------------+--------+--------+------------+
+
+.. [6] This port is shared with the console UART on AI-64
+
+.. important::
+
+   In the case the same controller is used for 2 different bone bus nodes, usage of those nodes is mutually-exclusive.
+
+.. _bone-can:
 
 CAN
------
-
-CAN bone bus nodes allow creating compatible overlays for Black, AI and AI-64. For the definitions, you can see `bbai-bone-buses.dtsi#L440 <https://github.com/lorforlinux/BeagleBoard-DeviceTrees/blob/97a6f0daa9eab09633a2064f68a53b107d6e3968/src/arm/bbai-bone-buses.dtsi#L440>`_ & `bbb-bone-buses.dtsi#L457 <https://github.com/lorforlinux/BeagleBoard-DeviceTrees/blob/97a6f0daa9eab09633a2064f68a53b107d6e3968/src/arm/bbb-bone-buses.dtsi#L457>`_.
-
-.. table:: Bone bus CAN
-
-	+------------------+--------+--------------------------+------------+--------+--------+--------------------------------------------------------------------------------------------------------+
-	| Bone bus         | Black  | AI                       | AI-64      | TX     | RX     | Overlays                                                                                               |
-	+==================+========+==========================+============+========+========+========================================================================================================+
-	| /dev/bone/can/0  | CAN0   | -                        | MAIN_MCAN0 | P9.20  | P9.19  | `BONE-CAN0.dts <https://github.com/lorforlinux/bb.org-overlays/blob/bone_can/src/arm/BONE-CAN0.dts>`_  |
-	+------------------+--------+--------------------------+------------+--------+--------+--------------------------------------------------------------------------------------------------------+
-	| /dev/bone/can/1  | CAN1   | CAN2                     | MAIN_MCAN4 | P9.26  | P9.24  | `BONE-CAN1.dts <https://github.com/lorforlinux/bb.org-overlays/blob/bone_can/src/arm/BONE-CAN1.dts>`_  |
-	+------------------+--------+--------------------------+------------+--------+--------+--------------------------------------------------------------------------------------------------------+
-	| /dev/bone/can/2  | -      | CAN1 (rev A2 and later)  | TBD        | P8.8   | P8.7   |                                                                                                        |
-	+------------------+--------+--------------------------+------------+--------+--------+--------------------------------------------------------------------------------------------------------+
+*****
+
+CAN bone bus nodes allow creating compatible overlays for Black, AI and AI-64.
+
+.. table:: CAN pins
+
+	+---------------------------------------------------+-----+--------------------------------------+
+	| .. centered:: P9                                  |     |    .. centered:: P8                  |
+	+===================+=====+======+==================+=====+============+=====+======+============+
+	|   Functions       | odd | even |    Functions     |     | Functions  | odd | even | Functions  |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	|                   | 5   | 6    |                  |     | 4 TX       | 5   | 6    | 4 RX       |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	|                   | 7   | 8    |                  |     | 2 RX       | 7   | 8    | 2 TX       |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	|                   | 9   | 10   |                  |     | 3 RX       | 9   | 10   | 3 TX       |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	|                   | 11  | 12   |                  |     |            | 11  | 12   |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	|                   | 13  | 14   |                  |     |            | 13  | 14   |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	|                   | 15  | 16   |                  |     |            | 15  | 16   |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	|                   | 17  | 18   |                  |     |            | 17  | 18   |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| 0 RX              | 19  | 20   | 0 TX             |     |            | 19  | 20   |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	|                   | 21  | 22   |                  |     |            | 21  | 22   |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	|                   | 23  | 24   | 1 RX             |     |            | 23  | 24   |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	|                   | 25  | 26   | 1 TX             |     |            | 25  | 26   |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+
+.. table:: CAN port mapping
+
+	+------------------+--------+-----------+------------+--------+--------+-----------+
+	| Bone bus         | Black  | AI        | AI-64      | TX     | RX     | Overlays  |
+	+==================+========+===========+============+========+========+===========+
+	| /dev/bone/can/0  | CAN0   | *n/a*     | MAIN_MCAN0 | P9.20  | P9.19  | BONE-CAN0 |
+	+------------------+--------+-----------+------------+--------+--------+-----------+
+	| /dev/bone/can/1  | CAN1   | CAN2      | MAIN_MCAN4 | P9.26  | P9.24  | BONE-CAN1 |
+	+------------------+--------+-----------+------------+--------+--------+-----------+
+	| /dev/bone/can/2  | *n/a*  | CAN1 [1]_ | MAIN_MCAN5 | P8.08  | P8.07  | BONE-CAN2 |
+	+------------------+--------+-----------+------------+--------+--------+-----------+
+	| /dev/bone/can/3  | *n/a*  | *n/a*     | MAIN_MCAN6 | P8.10  | P8.09  | BONE-CAN3 |
+	+------------------+--------+-----------+------------+--------+--------+-----------+
+	| /dev/bone/can/4  | *n/a*  | *n/a*     | MAIN_MCAN7 | P8.05  | P8.06  | BONE-CAN4 |
+	+------------------+--------+-----------+------------+--------+--------+-----------+
+
+.. [1] BeagleBone AI rev A2 and later only
+
+
+.. _bone-analog:
 
 ADC
--------
+*******
 
 * TODO: We need a udev rule to make sure the ADC shows up at /dev/bone/adc! There's nothing for sure that IIO devices will show up in the same place.
 * TODO: I think we can also create symlinks for each channel based on which device is there, such that we can do /dev/bone/adc/Px_y 
 
+.. table:: ADC pins
+
+	+---------------------------------------------------+-----+--------------------------------------+
+	| .. centered:: P9                                  |     |    .. centered:: P8                  |
+	+===================+=====+======+==================+=====+============+=====+======+============+
+	|   Functions       | odd | even |    Functions     |     | Functions  | odd | even | Functions  |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| USB D+            | E1  | E2   | USB D-           |     |            |     |      |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| 5V OUT            | E3  | E4   | GND              |     |            |     |      |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| GND               | 1   | 2    | GND              |     | GND        | 1   | 2    | GND        |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| 3V3 OUT           | 3   | 4    | 3V3 OUT          |     | D M        | 3   | 4    | D M        |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| 5V IN             | 5   | 6    | 5V IN            |     | D M C4t    | 5   | 6    | D M C4r    |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| 5V OUT            | 7   | 8    | 5V OUT           |     | D C2r      | 7   | 8    | D C2t      |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| PWR BUT           | 9   | 10   | RESET            |     | D C3r      | 9   | 10   | D C3t      |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D U4r             | 11  | 12   | D                |     | D P0o      | 11  | 12   | D Q2a P0o  |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D U4t             | 13  | 14   | D E1a            |     | D E2b      | 13  | 14   | D          |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D                 | 15  | 16   | D E1b            |     | D P0i      | 15  | 16   | D P0i      |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D I1c S00         | 17  | 18   | D I1d S0o        |     | D          | 17  | 18   | D          |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| C0r D I2c         | 19  | 20   | C0t D I2d        |     | D E2a      | 19  | 20   | D M P1     |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D E0b S0i U2t     | 21  | 22   | D E0a S0c U2r    |     | D M P1     | 21  | 22   | D M Q2b    |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D S01             | 23  | 24   | C1r D I3c U1t    |     | D M        | 23  | 24   | D M        |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D P0              | 25  | 26   | C1t D I3d U1r    |     | D M        | 25  | 26   | D          |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D P0 Q0b          | 27  | 28   | D P0 S10         |     | D L P1     | 27  | 28   | D L P1 U6r |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D E S1i P0        | 29  | 30   | D P0 S1o         |     | D L P1 U6t | 29  | 30   | D L P1     |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D E S1c P0        | 31  | 32   | ADC VDD          |     | D L        | 31  | 32   | D L        |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| |A| 4             | 33  | 34   | ADC GND          |     | D L Q1b    | 33  | 34   | D E L      |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| |A| 6             | 35  | 36   | |A| 5            |     | D L Q1a    | 35  | 36   | D E L      |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| |A| 2             | 37  | 38   | |A| 3            |     | D L U5t    | 37  | 38   | D L U5r    |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| |A| 0             | 39  | 40   | |A| 1            |     | D L P1     | 39  | 40   | D L P1     |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D P0              | 41  | 42   | D Q0a S11 U3t P0 |     | D L P1     | 41  | 42   | D L P1     |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| GND               | 43  | 44   | GND              |     | D L P1     | 43  | 44   | D L P1     |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| GND               | 45  | 46   | GND              |     | D E L P1   | 45  | 46   | D E L P1   |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+
 .. table:: Bone ADC
 
 	+--------+-------------+------------------+------------------+
@@ -386,6 +762,64 @@ PWM
 
 PWM bone bus nodes allow creating compatible overlays for Black, AI and AI-64. For the definitions, you can see `bbai-bone-buses.dtsi#L415 <https://github.com/lorforlinux/BeagleBoard-DeviceTrees/blob/97a6f0daa9eab09633a2064f68a53b107d6e3968/src/arm/bbai-bone-buses.dtsi#L415>`_ & `bbb-bone-buses.dtsi#L432 <https://github.com/lorforlinux/BeagleBoard-DeviceTrees/blob/97a6f0daa9eab09633a2064f68a53b107d6e3968/src/arm/bbb-bone-buses.dtsi#L432>`_
 
+.. table:: PWM pins
+
+	+---------------------------------------------------+-----+--------------------------------------+
+	| .. centered:: P9                                  |     |    .. centered:: P8                  |
+	+===================+=====+======+==================+=====+============+=====+======+============+
+	|   Functions       | odd | even |    Functions     |     | Functions  | odd | even | Functions  |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| USB D+            | E1  | E2   | USB D-           |     |            |     |      |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| 5V OUT            | E3  | E4   | GND              |     |            |     |      |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| GND               | 1   | 2    | GND              |     | GND        | 1   | 2    | GND        |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| 3V3 OUT           | 3   | 4    | 3V3 OUT          |     | D M        | 3   | 4    | D M        |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| 5V IN             | 5   | 6    | 5V IN            |     | D M C4t    | 5   | 6    | D M C4r    |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| 5V OUT            | 7   | 8    | 5V OUT           |     | D C2r      | 7   | 8    | D C2t      |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| PWR BUT           | 9   | 10   | RESET            |     | D C3r      | 9   | 10   | D C3t      |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D U4r             | 11  | 12   | D                |     | D P0o      | 11  | 12   | D Q2a P0o  |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D U4t             | 13  | 14   | D E1a            |     | D E2b      | 13  | 14   | D          |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D                 | 15  | 16   | D E1b            |     | D P0i      | 15  | 16   | D P0i      |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D I1c S00         | 17  | 18   | D I1d S0o        |     | D          | 17  | 18   | D          |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| C0r D I2c         | 19  | 20   | C0t D I2d        |     | D E2a      | 19  | 20   | D M P1     |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D E0b S0i U2t     | 21  | 22   | D E0a S0c U2r    |     | D M P1     | 21  | 22   | D M Q2b    |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D S01             | 23  | 24   | C1r D I3c U1t    |     | D M        | 23  | 24   | D M        |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D P0              | 25  | 26   | C1t D I3d U1r    |     | D M        | 25  | 26   | D          |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D P0 Q0b          | 27  | 28   | D P0 S10         |     | D L P1     | 27  | 28   | D L P1 U6r |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D E S1i P0        | 29  | 30   | D P0 S1o         |     | D L P1 U6t | 29  | 30   | D L P1     |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D E S1c P0        | 31  | 32   | ADC VDD          |     | D L        | 31  | 32   | D L        |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| |A| 4             | 33  | 34   | ADC GND          |     | D L Q1b    | 33  | 34   | D E L      |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| |A| 6             | 35  | 36   | |A| 5            |     | D L Q1a    | 35  | 36   | D E L      |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| |A| 2             | 37  | 38   | |A| 3            |     | D L U5t    | 37  | 38   | D L U5r    |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| |A| 0             | 39  | 40   | |A| 1            |     | D L P1     | 39  | 40   | D L P1     |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D P0              | 41  | 42   | D Q0a S11 U3t P0 |     | D L P1     | 41  | 42   | D L P1     |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| GND               | 43  | 44   | GND              |     | D L P1     | 43  | 44   | D L P1     |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| GND               | 45  | 46   | GND              |     | D E L P1   | 45  | 46   | D E L P1   |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+
 .. table:: Bone bus PWM
 
 	+------------------+--------+-------+--------+--------+--------+--------------------------------------------------------------------------------------------------------+
@@ -421,12 +855,151 @@ TIMER PWM bone bus uses ti,omap-dmtimer-pwm driver, and timer nodes that allow c
 	| /sys/bus/platform/devices/bone_timer_pwm_5/  | P9.22       | -      | timer15  | `BONE-TIMER_PWM_5.dts <https://github.com/lorforlinux/bb.org-overlays/blob/bone_timer/src/arm/BONE-TIMER_PWM_5.dts>`_   |
 	+----------------------------------------------+-------------+--------+----------+-------------------------------------------------------------------------------------------------------------------------+
 
+.. _bone-capture:
+
+eQEP
+********
+
+.. table:: eQEP pins
+
+	+---------------------------------------------------+-----+--------------------------------------+
+	| .. centered:: P9                                  |     |    .. centered:: P8                  |
+	+===================+=====+======+==================+=====+============+=====+======+============+
+	|   Functions       | odd | even |    Functions     |     | Functions  | odd | even | Functions  |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| USB D+            | E1  | E2   | USB D-           |     |            |     |      |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| 5V OUT            | E3  | E4   | GND              |     |            |     |      |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| GND               | 1   | 2    | GND              |     | GND        | 1   | 2    | GND        |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| 3V3 OUT           | 3   | 4    | 3V3 OUT          |     | D M        | 3   | 4    | D M        |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| 5V IN             | 5   | 6    | 5V IN            |     | D M C4t    | 5   | 6    | D M C4r    |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| 5V OUT            | 7   | 8    | 5V OUT           |     | D C2r      | 7   | 8    | D C2t      |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| PWR BUT           | 9   | 10   | RESET            |     | D C3r      | 9   | 10   | D C3t      |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D U4r             | 11  | 12   | D                |     | D P0o      | 11  | 12   | D Q2a P0o  |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D U4t             | 13  | 14   | D E1a            |     | D E2b      | 13  | 14   | D          |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D                 | 15  | 16   | D E1b            |     | D P0i      | 15  | 16   | D P0i      |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D I1c S00         | 17  | 18   | D I1d S0o        |     | D          | 17  | 18   | D          |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| C0r D I2c         | 19  | 20   | C0t D I2d        |     | D E2a      | 19  | 20   | D M P1     |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D E0b S0i U2t     | 21  | 22   | D E0a S0c U2r    |     | D M P1     | 21  | 22   | D M Q2b    |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D S01             | 23  | 24   | C1r D I3c U1t    |     | D M        | 23  | 24   | D M        |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D P0              | 25  | 26   | C1t D I3d U1r    |     | D M        | 25  | 26   | D          |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D P0 Q0b          | 27  | 28   | D P0 S10         |     | D L P1     | 27  | 28   | D L P1 U6r |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D E S1i P0        | 29  | 30   | D P0 S1o         |     | D L P1 U6t | 29  | 30   | D L P1     |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D E S1c P0        | 31  | 32   | ADC VDD          |     | D L        | 31  | 32   | D L        |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| |A| 4             | 33  | 34   | ADC GND          |     | D L Q1b    | 33  | 34   | D E L      |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| |A| 6             | 35  | 36   | |A| 5            |     | D L Q1a    | 35  | 36   | D E L      |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| |A| 2             | 37  | 38   | |A| 3            |     | D L U5t    | 37  | 38   | D L U5r    |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| |A| 0             | 39  | 40   | |A| 1            |     | D L P1     | 39  | 40   | D L P1     |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D P0              | 41  | 42   | D Q0a S11 U3t P0 |     | D L P1     | 41  | 42   | D L P1     |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| GND               | 43  | 44   | GND              |     | D L P1     | 43  | 44   | D L P1     |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| GND               | 45  | 46   | GND              |     | D E L P1   | 45  | 46   | D E L P1   |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+
+On BeagleBone's without an eQEP on specific pins, consider using the PRU to perform a software counter function.
+
+.. table:: Bone eQEP
+
+	+----------------------+--------+--------+--------+--------+--------+-------------------------------+-------------------------------+----------+
+	| Bone bus             | Black  | AI     | AI-64  | A      | B      | strobe                        | index                         | overlay  |
+	+======================+========+========+========+========+========+===============================+===============================+==========+
+	| /dev/bone/counter/0  | eQEP0  | eQEP2  | eQEP0  | P9.42  | P9.27  | - Black/AI-64: P9.25          | - Black/AI-64: P9.41          |          |
+	|                      |        |        |        |        |        | - AI: P8.06                   | - AI: P8.05                   |          |
+	+----------------------+--------+--------+--------+--------+--------+-------------------------------+-------------------------------+----------+
+	| /dev/bone/counter/1  | eQEP1  | eQEP0  | eQEP1  | P8.35  | P8.33  | - Black/AI-64: P8.32          | - Black/AI-64: P8.31          |          |
+	|                      |        |        |        |        |        | - AI: P9.21                   | - AI: ‒                       |          |
+	+----------------------+--------+--------+--------+--------+--------+-------------------------------+-------------------------------+----------+
+	| /dev/bone/counter/2  | eQEP2  | eQEP1  | ‒      | P8.12  | P8.22  | - Black: P8.15                | - Black: P8.16                |          |
+	|                      |        |        |        |        |        | - AI: P8.18                   | - AI: P9.15                   |          |
+	+----------------------+--------+--------+--------+--------+--------+-------------------------------+-------------------------------+----------+
+
+
 
 eCAP
 -------
 
 #TODO: This doesn't include any abstraction yet.
 
+.. table:: ECAP pins
+
+	+---------------------------------------------------+-----+--------------------------------------+
+	| .. centered:: P9                                  |     |    .. centered:: P8                  |
+	+===================+=====+======+==================+=====+============+=====+======+============+
+	|   Functions       | odd | even |    Functions     |     | Functions  | odd | even | Functions  |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| USB D+            | E1  | E2   | USB D-           |     |            |     |      |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| 5V OUT            | E3  | E4   | GND              |     |            |     |      |            |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| GND               | 1   | 2    | GND              |     | GND        | 1   | 2    | GND        |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| 3V3 OUT           | 3   | 4    | 3V3 OUT          |     | D M        | 3   | 4    | D M        |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| 5V IN             | 5   | 6    | 5V IN            |     | D M C4t    | 5   | 6    | D M C4r    |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| 5V OUT            | 7   | 8    | 5V OUT           |     | D C2r      | 7   | 8    | D C2t      |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| PWR BUT           | 9   | 10   | RESET            |     | D C3r      | 9   | 10   | D C3t      |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D U4r             | 11  | 12   | D                |     | D P0o      | 11  | 12   | D Q2a P0o  |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D U4t             | 13  | 14   | D E1a            |     | D E2b      | 13  | 14   | D          |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D                 | 15  | 16   | D E1b            |     | D P0i      | 15  | 16   | D P0i      |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D I1c S00         | 17  | 18   | D I1d S0o        |     | D          | 17  | 18   | D          |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| C0r D I2c         | 19  | 20   | C0t D I2d        |     | D E2a      | 19  | 20   | D M P1     |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D E0b S0i U2t     | 21  | 22   | D E0a S0c U2r    |     | D M P1     | 21  | 22   | D M Q2b    |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D S01             | 23  | 24   | C1r D I3c U1t    |     | D M        | 23  | 24   | D M        |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D P0              | 25  | 26   | C1t D I3d U1r    |     | D M        | 25  | 26   | D          |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D P0 Q0b          | 27  | 28   | D P0 S10         |     | D L P1     | 27  | 28   | D L P1 U6r |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D E S1i P0        | 29  | 30   | D P0 S1o         |     | D L P1 U6t | 29  | 30   | D L P1     |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D E S1c P0        | 31  | 32   | ADC VDD          |     | D L        | 31  | 32   | D L        |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| |A| 4             | 33  | 34   | ADC GND          |     | D L Q1b    | 33  | 34   | D E L      |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| |A| 6             | 35  | 36   | |A| 5            |     | D L Q1a    | 35  | 36   | D E L      |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| |A| 2             | 37  | 38   | |A| 3            |     | D L U5t    | 37  | 38   | D L U5r    |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| |A| 0             | 39  | 40   | |A| 1            |     | D L P1     | 39  | 40   | D L P1     |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| D P0              | 41  | 42   | D Q0a S11 U3t P0 |     | D L P1     | 41  | 42   | D L P1     |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| GND               | 43  | 44   | GND              |     | D L P1     | 43  | 44   | D L P1     |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+	| GND               | 45  | 46   | GND              |     | D E L P1   | 45  | 46   | D E L P1   |
+	+-------------------+-----+------+------------------+-----+------------+-----+------+------------+
+
 .. table:: Black eCAP PWMs
 
 	+-----------------------------------------------+-------------+--------------------+---------------------------------------------------------------------------------------------------------------------------------------------+
@@ -550,27 +1123,6 @@ LCD
 	+--------+-----+----------+
 
 
-eQEP
---------
-
-On BeagleBone's without an eQEP on specific pins, consider using the PRU to perform a software counter function.
-
-.. table:: Bone eQEP
-
-	+----------------------+--------+--------+--------+--------+--------+-------------------------------+-------------------------------+----------+
-	| Bone bus             | Black  | AI     | AI-64  | A      | B      | strobe                        | index                         | overlay  |
-	+======================+========+========+========+========+========+===============================+===============================+==========+
-	| /dev/bone/counter/0  | eQEP0  | eQEP2  | eQEP0  | P9.42  | P9.27  | - Black/AI-64: P9.25          | - Black/AI-64: P9.41          |          |
-	|                      |        |        |        |        |        | - AI: P8.06                   | - AI: P8.05                   |          |
-	+----------------------+--------+--------+--------+--------+--------+-------------------------------+-------------------------------+----------+
-	| /dev/bone/counter/1  | eQEP1  | eQEP0  | eQEP1  | P8.35  | P8.33  | - Black/AI-64: P8.32          | - Black/AI-64: P8.31          |          |
-	|                      |        |        |        |        |        | - AI: P9.21                   | - AI: ‒                       |          |
-	+----------------------+--------+--------+--------+--------+--------+-------------------------------+-------------------------------+----------+
-	| /dev/bone/counter/2  | eQEP2  | eQEP1  | ‒      | P8.12  | P8.22  | - Black: P8.15                | - Black: P8.16                |          |
-	|                      |        |        |        |        |        | - AI: P8.18                   | - AI: P9.15                   |          |
-	+----------------------+--------+--------+--------+--------+--------+-------------------------------+-------------------------------+----------+
-
-
 McASP
 ---------
 
@@ -770,19 +1322,22 @@ TODO<br>
 For each of the pins with a GPIO, there should be a symlink that comes from the names 
 *
 
+
+.. _bone-methodology:
+
 Methodology
----------------
+***************
 
 The methodology for applied in the kernel and software images to expose the software interfaces is to be documented here. The most fundamental elements are the device tree entries, including overlays, and udev rules.
 
 Device Trees
--------------
+=============
 
 udev rules
---------------
+=========================
 
 10-of-symlink.rules
-**********************
+------------------------
 
 .. code-block::
 
diff --git a/boards/capes/images/BBB_RoboticsCape-400x368.png b/boards/capes/images/BBB_RoboticsCape-400x368.png
new file mode 100644
index 0000000000000000000000000000000000000000..087d7567747dbe36ba21db2be597830f398ae3f7
Binary files /dev/null and b/boards/capes/images/BBB_RoboticsCape-400x368.png differ
diff --git a/boards/capes/images/BeagleBoneCommsCapeA2-400x279.png b/boards/capes/images/BeagleBoneCommsCapeA2-400x279.png
new file mode 100644
index 0000000000000000000000000000000000000000..dcd33df5378f66e7b26dd690c1684c4d5bcf2ab6
Binary files /dev/null and b/boards/capes/images/BeagleBoneCommsCapeA2-400x279.png differ
diff --git a/boards/capes/images/BeagleBoneLoadCapeA2-400x290.png b/boards/capes/images/BeagleBoneLoadCapeA2-400x290.png
new file mode 100644
index 0000000000000000000000000000000000000000..6bf54eef77fcda045f12a9a8f1361c5e93591772
Binary files /dev/null and b/boards/capes/images/BeagleBoneLoadCapeA2-400x290.png differ
diff --git a/boards/capes/images/BeagleBoneMotorCapeA2-400x281.png b/boards/capes/images/BeagleBoneMotorCapeA2-400x281.png
new file mode 100644
index 0000000000000000000000000000000000000000..5bdae2f4f6cb95e768ddc8f8f72381acb504b738
Binary files /dev/null and b/boards/capes/images/BeagleBoneMotorCapeA2-400x281.png differ
diff --git a/boards/capes/images/BeagleBonePowerCapeA2-400x285.png b/boards/capes/images/BeagleBonePowerCapeA2-400x285.png
new file mode 100644
index 0000000000000000000000000000000000000000..897f22481a2263972ded68ba4b4807b99f55b42b
Binary files /dev/null and b/boards/capes/images/BeagleBonePowerCapeA2-400x285.png differ
diff --git a/boards/capes/images/BeagleBoneProtoCapeA2-e1622405187534.png b/boards/capes/images/BeagleBoneProtoCapeA2-e1622405187534.png
new file mode 100644
index 0000000000000000000000000000000000000000..0a38a966567037518722c01f9456cf5c27de4964
Binary files /dev/null and b/boards/capes/images/BeagleBoneProtoCapeA2-e1622405187534.png differ
diff --git a/boards/capes/images/BeagleBoneRelayCapeA2-400x274.png b/boards/capes/images/BeagleBoneRelayCapeA2-400x274.png
new file mode 100644
index 0000000000000000000000000000000000000000..9ec546cc4476ffe9d757df8277a9c46002332261
Binary files /dev/null and b/boards/capes/images/BeagleBoneRelayCapeA2-400x274.png differ
diff --git a/boards/capes/images/BeagleBoneServoCapeA2_Top_NEW-400x332.png b/boards/capes/images/BeagleBoneServoCapeA2_Top_NEW-400x332.png
new file mode 100644
index 0000000000000000000000000000000000000000..9d678324a2e9d22b161d6c9e5fe342c4e2e40331
Binary files /dev/null and b/boards/capes/images/BeagleBoneServoCapeA2_Top_NEW-400x332.png differ
diff --git a/boards/capes/images/PocketBeagle_GamePup-400x410.png b/boards/capes/images/PocketBeagle_GamePup-400x410.png
new file mode 100644
index 0000000000000000000000000000000000000000..8eeb8995ddcb280e9e25cce50139b50170577e36
Binary files /dev/null and b/boards/capes/images/PocketBeagle_GamePup-400x410.png differ
diff --git a/boards/capes/images/PocketBeagle_TechLab-400x212.png b/boards/capes/images/PocketBeagle_TechLab-400x212.png
new file mode 100644
index 0000000000000000000000000000000000000000..1595c72e1a9d7f1948d4765e0b98e172a3ea4575
Binary files /dev/null and b/boards/capes/images/PocketBeagle_TechLab-400x212.png differ
diff --git a/boards/capes/images/fan-cape-400x299.png b/boards/capes/images/fan-cape-400x299.png
new file mode 100644
index 0000000000000000000000000000000000000000..70e34313470feb206f3c0f300d1bce75ec113e66
Binary files /dev/null and b/boards/capes/images/fan-cape-400x299.png differ
diff --git a/boards/capes/images/pb-grove-kit-400x267.png b/boards/capes/images/pb-grove-kit-400x267.png
new file mode 100644
index 0000000000000000000000000000000000000000..2ebf8d8ce087fe7cd8c2e2ea9df8ea3a6125c766
Binary files /dev/null and b/boards/capes/images/pb-grove-kit-400x267.png differ
diff --git a/boards/capes/index.rst b/boards/capes/index.rst
index d2fba272cabd2f7650d8ea51e8d2eb0dbad58bc5..e675e038ebc7e095fafc012b2fe2e6776875e4f7 100644
--- a/boards/capes/index.rst
+++ b/boards/capes/index.rst
@@ -1,17 +1,38 @@
+.. _capes:
+
 Capes
 #####
 
 .. note::
    This page is under development.
 
-Capes are add-on boards for BeagleBone or PocketBeagle families of boards.
+Capes are add-on boards for BeagleBone or PocketBeagle families of boards.  Using a Cape add-on board, you can easily add
+sensors, communication peripherals, and more.
+
+Please visit `BeagleBoard.org - Cape <https://beagleboard.org/capes>`_ for the list of currently available Cape add-on boards.
+
+In the BeagleBone board family, there are many variants, such as :ref:`beagleboneblack-home`, :ref:`beaglebone-ai-home`,
+:ref:`bbai64-home` and compatibles such as `SeeedStudio BeagleBone Green <https://beagleboard.org/green>`_,
+`SeeedStudio BeagleBone Green Wireless <https://beagleboard.org/green-wireless>`_, `SeeedStudio BeagleBone Green Gateway
+<https://wiki.seeedstudio.com/BeagleBone-Green-Gateway/>`_ and more.
+
+The :ref:`beaglebone-cape-interface-spec` enables a common set of device tree overlays and software to be utilized
+on each of these different BeagleBone boards.
+
+Each hardware has different internal pin assignments 
+and the number of peripherals in the SoC, but the device tree overlay absorbs these differences.
+
+The user of the Cape add-on boards are essentially able to use it 
+across the corresponding Boards without changing any code at all.
 
-* Learn about our compatibility layer on: `BeagleBone Cape Interface Specification </boards/capes/cape-interface-spec.html>`__
+Find the instructions below on using each cape:
 
+* :ref:`bone-cape-relay`
 
 .. toctree::
    :maxdepth: 2
    :hidden:
 
    /boards/capes/cape-interface-spec
+   /boards/capes/relay
 
diff --git a/boards/capes/relay.rst b/boards/capes/relay.rst
new file mode 100644
index 0000000000000000000000000000000000000000..fe9b9b6a9b1426c32190c6ad242db8352699e39c
--- /dev/null
+++ b/boards/capes/relay.rst
@@ -0,0 +1,61 @@
+.. _bone-cape-relay:
+
+BeagleBoard.org BeagleBone Relay Cape
+#####################################
+
+Relay Cape, as the name suggests, is a simple Cape with a relay on it.
+It contains four relays, each of which can be operated independently from the BeagleBone.
+
+.. image:: images/BeagleBoneRelayCapeA2-400x274.png
+   :align: center
+
+* `Order page <https://beagleboard.org/capes#relay>`_
+* `Schematic <https://git.beagleboard.org/beagleboard/capes/-/tree/master/beaglebone/Relay>`_
+
+.. note:: 
+    The following describes how to use the device tree overlay under development.
+    The description may not be suitable for those using older firmware.
+
+Installation
+************
+
+No special configuration is required. When you plug Cape into your BeagleBoard, 
+it is automatically recognized by the Cape Universal function.
+
+You can check to see if Relay Cape is recognized with the following command.
+
+.. code-block::
+
+    ls /proc/device-tree/chosen/overlay
+
+A list of currently loaded device tree overlays is displayed here. 
+If you see `BBORG_RELAY-00A2.kernel` in this list, it has been loaded correctly.
+
+If it is not loaded correctly, you can also load it directly 
+by adding the following to the U-Boot options 
+(which can be reflected by changing /boot/uEnv.txt).
+
+.. code-block::
+
+    uboot_overlay_addr0=BBORG_RELAY-00A2.dtbo
+
+
+Usage
+******
+
+.. code-block::
+
+    ls /sys/class/leds
+
+The directory "relay*" exists in the following directory.
+The LEDs can be controlled by modifying the files in this directory.
+
+.. code-block::
+
+    echo 1 > relay1/brightness
+
+This allows you to adjust the brightness; 
+entering 1 for brightness turns it ON, and entering 0 for OFF.
+
+The four relays can be changed individually 
+by changing the number after "relay.
diff --git a/boards/images/BBwhite.jpg b/boards/images/BBwhite.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..2ca517c0d089f66896a2b4e907d259ede86812a7
Binary files /dev/null and b/boards/images/BBwhite.jpg differ
diff --git a/boards/images/BeagleBoneBlackWireless-Angled-400x268.png b/boards/images/BeagleBoneBlackWireless-Angled-400x268.png
new file mode 100644
index 0000000000000000000000000000000000000000..ffbbac93f83eaeab6a9d247df51fa75ebacdb77c
Binary files /dev/null and b/boards/images/BeagleBoneBlackWireless-Angled-400x268.png differ
diff --git a/boards/images/bb-industrial-400x356.png b/boards/images/bb-industrial-400x356.png
new file mode 100644
index 0000000000000000000000000000000000000000..7012bc84222b1b2b6cd1e9b7f79ff39a5379e908
Binary files /dev/null and b/boards/images/bb-industrial-400x356.png differ
diff --git a/boards/images/beaglebone-ai-400x208.png b/boards/images/beaglebone-ai-400x208.png
new file mode 100644
index 0000000000000000000000000000000000000000..49f9f066e49f8bb55f8b8f16e17abd1919552abd
Binary files /dev/null and b/boards/images/beaglebone-ai-400x208.png differ
diff --git a/boards/images/beaglebone-ai-64-400x.webp b/boards/images/beaglebone-ai-64-400x.webp
new file mode 100644
index 0000000000000000000000000000000000000000..d8b892ca8b97c91249a3540afa285d805d3ba311
Binary files /dev/null and b/boards/images/beaglebone-ai-64-400x.webp differ
diff --git a/boards/images/beaglebone-ai.webp b/boards/images/beaglebone-ai.webp
new file mode 100644
index 0000000000000000000000000000000000000000..00070259a2c6df561c6696a85fa81c75091983c3
Binary files /dev/null and b/boards/images/beaglebone-ai.webp differ
diff --git a/boards/images/beaglebone-black-400x400.png b/boards/images/beaglebone-black-400x400.png
new file mode 100644
index 0000000000000000000000000000000000000000..0616738a5d0c1746a5a82ed33d171baf4c4e2674
Binary files /dev/null and b/boards/images/beaglebone-black-400x400.png differ
diff --git a/boards/images/beaglebone-blue-400x279.png b/boards/images/beaglebone-blue-400x279.png
new file mode 100644
index 0000000000000000000000000000000000000000..6d635ae93fdab061eb78f8e23100fc0db932d830
Binary files /dev/null and b/boards/images/beaglebone-blue-400x279.png differ
diff --git a/boards/images/pocketBeagle-hero-hand-400x222.png b/boards/images/pocketBeagle-hero-hand-400x222.png
new file mode 100644
index 0000000000000000000000000000000000000000..c5c22a6cb0ed12ea07cdf151ebd3414d9117c57d
Binary files /dev/null and b/boards/images/pocketBeagle-hero-hand-400x222.png differ
diff --git a/boards/index.rst b/boards/index.rst
index b465904763b0ef357b22943f581e5fce178e9965..26ab4b70e0db9259e636161fc1817a95d90a98bd 100644
--- a/boards/index.rst
+++ b/boards/index.rst
@@ -1,27 +1,34 @@
+.. _boards:
+
 Boards
 ######
 
-`BeagleBone <beaglebone>`__ is a family of ARM-based, Linux-capable boards intended to be
+:ref:`BeagleBone <beaglebone-all-home>` is a family of ARM-based, Linux-capable boards intended to be
 bare-bones, with a balance of features to enable rapid prototyping and provide a solid
 reference for building end products.
 
-`PocketBeagle <pocketbeagle>`__ boards are ultra-tiny ARM-based, Linux-capable boards intended to be
+:ref:`pocketbeagle-home` boards are ultra-tiny ARM-based, Linux-capable boards intended to be
 very low cost, with minimal features suitable for beginners and attractive to professionals
 looking for a more minimal starting point.
 
-`BeagleBone and PocketBeagle Capes <capes>`__ are add-on boards for BeagleBone and PocketBeagle boards.
+BeagleBone and PocketBeagle :ref:`capes` are add-on boards for BeagleBone and PocketBeagle boards.
 
-`BeagleConnect <beagleconnect>`__ boards are ARM microcontroller-based, Zephyr-capable boards meant
+:ref:`beagleconnect-home` boards are ARM microcontroller-based, Zephyr-capable boards meant
 to act as ultra low cost smart peripherals to their Linux-capable counterparts, with connectivity
 options that enable almost endless sensing and actuation expansion.
 
-`BeagleBoard <beagleboard>`__ is a family of ARM-based, Linux-capable boards where this project
+:ref:`BeagleBoard <beagleboard-boards-home>` is a family of ARM-based, Linux-capable boards where this project
 started.
 
 .. toctree::
    :maxdepth: 1
+   :hidden:
 
    /boards/beaglebone/index
+   /boards/beaglebone/black/index
+   /boards/beaglebone/blue/index
+   /boards/beaglebone/ai/index
+   /boards/beaglebone/ai-64/index
    /boards/pocketbeagle/original/index
    /boards/capes/index
    /boards/beagleconnect/index
diff --git a/boards/pocketbeagle/original/ch02.rst b/boards/pocketbeagle/original/ch02.rst
index 31f60e74fe5deaf9b9c302a06216f1269ecc4ad6..1c7904f961b0310b62d4364f753c77283a048904 100644
--- a/boards/pocketbeagle/original/ch02.rst
+++ b/boards/pocketbeagle/original/ch02.rst
@@ -14,13 +14,13 @@ Document Change History
 
 .. table:: Change History
 
-    ========+======================================+====================+========
-    **Rev** | **Changes**                          | **Date**           | **By**
-    ========+======================================+====================+========
-    A.x     | Production Document                  | *December 7, 2017* | JK
-    --------+--------------------------------------+--------------------+--------
-    0.0.5   | Converted to .rst and gitlab hosting | *July 21, 2022*    | DK
-    ========+======================================+====================+========
+    +--------+--------------------------------------+--------------------+--------+
+    |**Rev** | **Changes**                          | **Date**           | **By** |
+    +========+======================================+====================+========+
+    |A.x     | Production Document                  | *December 7, 2017* | JK     |
+    +--------+--------------------------------------+--------------------+--------+
+    |0.0.5   | Converted to .rst and gitlab hosting | *July 21, 2022*    | DK     |
+    +--------+--------------------------------------+--------------------+--------+
 
 .. _board_changes:
 
diff --git a/books/beaglebone-cookbook/01basics/basics.rst b/books/beaglebone-cookbook/01basics/basics.rst
index b85bd045ab1fe60ba6651a9c310c8c4c960f60e8..892733833516e138e21689c3c4f956cb3082e710 100644
--- a/books/beaglebone-cookbook/01basics/basics.rst
+++ b/books/beaglebone-cookbook/01basics/basics.rst
@@ -3,78 +3,73 @@
 Basics
 #######
 
-Introduction
-=============
-
 When you buy BeagleBone Black, pretty much everything you need to get going comes with it. 
 You can just plug it into the USB of a host computer, and it works. The goal of this 
 chapter is to show what you can do with your Bone, right out of the box. It has enough 
-information to carry through the next three chapters on sensors (:ref:`sensors <beaglebone-cookbook-sensors>`), 
-displays (:ref:`display <beaglebone-cookbook-display>`), and motors (:ref:`motors <beaglebone-cookbook-motors>`).
+information to carry through the next three chapters on sensors (:ref:`beaglebone-cookbook-sensors`), 
+displays (:ref:`beaglebone-cookbook-displays`), and motors (:ref:`beaglebone-cookbook-motors`).
 
 Picking Your Beagle
----------------------
+=====================
 
 Problem
-*********
+--------
 
 There are many different BeagleBoards. How do you pick which one to use?
 
 Solution
-*********
+---------
+
+.. todo
 
-.. todo:: Current list of boards: https://git.beagleboard.org/explore/projects/topics/boards
+Current list of boards: https://git.beagleboard.org/explore/projects/topics/boards
 
 Discussion
-************
+-----------
 
 .. _basics_out_of_the_box:
 
 Getting Started, Out of the Box
----------------------------------
+================================
 
 Problem
-**********
+--------
+
 You just got your Bone, and you want to know what to do with it.
 
 Solution
-**********
+---------
+
 Fortunately, you have all you need to get running: your Bone and a USB cable. 
 Plug the USB cable into your host computer (Mac, Windows, or Linux) and plug the 
 mini-USB connector side into the USB connector near the Ethernet connector on 
-the Bone, as shown in :ref:`figure below <basics_pluggingIn_fig>`.
+the Bone, as shown in :ref:`basics_pluggingIn_fig`.
 
 .. _basics_pluggingIn_fig:
 
 .. figure:: figures/pluggingIn.jpg
    :align: center
    :alt: Plugging BeagleBone Black into a USB port
+   
+   Plugging BeagleBone Black into a USB port
 
-    Plugging BeagleBone Black into a USB port
-
-The four blue +USER+ LEDs will begin to blink, and in 10 or 15 seconds, you'll see 
-a new USB drive appear on your host computer. :ref:`figure below <basics_01gettingStarted_fig>` 
+The four blue **USER LEDs** will begin to blink, and in 10 or 15 seconds, you'll see 
+a new USB drive appear on your host computer. :ref:`basics_01gettingStarted_fig` 
 shows how it will appear on a Windows host, and Linux and Mac hosts will look similar. 
 The Bone acting like a USB drive and the files you see are located on the Bone.
 
-.. todo:: 
-   Update
-
 .. _basics_01gettingStarted_fig:
 
-The Bone appears as a USB drive
-
 .. figure:: figures/01GettingStarted.png
    :align: center
    :alt: A new USB drive
    
-   A new USB drive
-
+   The Bone appears as a USB drive
 
 .. _basics_open_vsc:
 
 Browse to http://192.168.7.2:3000 from your 
-host computer (:ref:`figure below <basics_05gettingStarted_fig>`).
+host computer (:ref:`basics_05gettingStarted_fig`).
 
 .. _basics_05gettingStarted_fig:
 
@@ -85,22 +80,23 @@ host computer (:ref:`figure below <basics_05gettingStarted_fig>`).
    Visual Studio Code
 
 Here, you'll find *Visual Studio Code*, a web-based integrated development environment (IDE) 
-that lets you edit and run code on your Bone!  See :ref: `basics vsc<basics_vsc>`` for more details.
+that lets you edit and run code on your Bone!  See :ref: `basics_vsc` for more details.
 
 .. WARNING:: 
-    Make sure you turn off your Bone properly. It's best to run the +halt+ command:
+    Make sure you turn off your Bone properly. 
+    It's best to run the *halt* command:
 
-.. code-block:: bash
-   
-   bone$ sudo halt
+   .. code-block:: bash
+      
+      bone$ sudo halt
 
-   The system is going down for system halt NOW! (pts/0)
+      The system is going down for system halt NOW! (pts/0)
     
    This will ensure that the Bone shuts down correctly. If you just pull the power, 
    it is possible that open files would not close properly and might become corrupt.
 
 Discussion
-***********
+-----------
 
 The rest of this book goes into the details behind this quick out-of-the-box demo. 
 Explore your Bone and then start exploring the book.
@@ -108,22 +104,24 @@ Explore your Bone and then start exploring the book.
 .. _basics_latest_os:
 
 Verifying You Have the Latest Version of the OS on Your Bone
----------------------------------------------------------------
+=============================================================
 
 Problem
-********
+--------
 
-You just got BeagleBone Black, and you want to know which version of the operating system it's running.
+You just got BeagleBone Black, and you want to 
+know which version of the operating system it's running.
 
 Solution
-*********
+---------
 
-.. todo::  update version
+.. todo 
+   update version
 
-This book uses https://www.debian.org[Debian], the Linux distribution that currently ships on the Bone. 
+This book uses `Debian <https://www.debian.org>`_, the Linux distribution that currently ships on the Bone. 
 However this book is based on a newer version (BeagleBoard.org Debian Bullseye IoT Image 2022-07-01) 
 than what is shipping at the time of this writing. You can see which version your Bone is running by 
-following the instructions in `basics out of the box<basics_out_of_the_box>` to log into the Bone.  Then run:
+following the instructions in :ref:`basics_out_of_the_box` to log into the Bone.  Then run:
 
 .. code-block:: bash
 
@@ -132,153 +130,143 @@ following the instructions in `basics out of the box<basics_out_of_the_box>` to
 
 I'm running the 2022-07-01 version.
 
-Discussion
-***********
-
-.. _basics_repo:
-
-Cloning the Cookbook Repository
-----------------------------------
+Running the Python and JavaScript Examples
+===========================================
 
 Problem
-********
+--------
 
-You want to run the Cookbook examples.
+You'd like to learn Python and JavaScript interact with the Bone to 
+perform physical computing tasks without first learning Linux.
 
 Solution
-**********
+---------
 
-Connect your Bone to the Internet and log into it.  From the command line run:
+Plug your board into the USB of your host computer and browse to 
+http://192.168.7.2:3000 using Google Chrome or Firefox (as shown in 
+:ref:`basics_out_of_the_box`). In the left 
+column, click on *EXAMPLES*, then *BeagleBone* and then *Black*. 
+Several sample scripts will appear.  Go and explore them.
 
-.. code-block::
+.. tip::
 
-    bone$ git clone git@github.com:MarkAYoder/BoneCookbook.git
-    bone$ cd BoneCookbook/docs
-    bone$ ls
+    Explore the various demonstrations of Python and JavaScript. These are what come with the Bone. 
+    In :ref:`basics_repo` you see how to load the examples for the Cookbook.
 
-You can look around from the command line, or explore from Visual Sudio Code. 
-If you ar using VSC, go to the *File* menu and select *Open Folder ...* and 
-select BoneCookbook/docs. Then explore.   You'll find there is a directory 
-for each chapter and most chapters have a *code* directory for the sample 
-scripts and a *figures* directory for the figures.  
+.. _basics_repo:
 
-Running the Python and JavaScript Examples
---------------------------------------------
+Cloning the Cookbook Repository
+================================
 
 Problem
-**********
+-------
 
-You'd like to learn Python and JavaScript interact with the Bone to 
-perform physical computing tasks without first learning Linux.
+You want to run the Cookbook examples.
 
 Solution
-***********
+--------
 
-Plug your board into the USB of your host computer and browse to 
-http://192.168.7.2:3000 using Google Chrome or Firefox (as shown in 
-:ref:`basics of out of the box <basics_out_of_the_box>`). In the left 
-column, click on *EXAMPLES*, then *BeagleBone* and then *Black*. 
-Several sample scripts will appear.  Go and explore them.
+Connect your Bone to the Internet and log into it.  From the command line run:
 
-.. tip::
+.. code-block::
 
-    Explore the various demonstrations of Python and JavaScript. These are what come with the Bone. 
-    In :ref:`basics repo <basics_repo>` you see how to load the examples for the Cookbook.
+    bone$ git clone https://git.beagleboard.org/beagleboard/beaglebone-cookbook-code
+    bone$ cd beaglebone-cookbook-code
+    bone$ ls
 
-Discussion
-************
+You can look around from the command line, or explore from Visual Sudio Code. 
+If you ar using VSC, go to the *File* menu and select *Open Folder ...* and 
+select beaglebone-cookbook-code. Then explore.
 
-.. _basics_wire_breadboard
+.. _basics_wire_breadboard:
 
 Wiring a Breadboard
----------------------
+====================
 
 Problem
-********
+--------
 
 You would like to use a breadboard to wire things to the Bone.
 
 Solution
-*********
+---------
 
 Many of the projects in this book involve interfacing things to the Bone. 
 Some plug in directly, like the USB port.  Others need to be wired. If it's simple, 
-you might be able to plug the wires directly into the +P8+ or +P9+ headers. 
+you might be able to plug the wires directly into the *P8* or *P9* headers. 
 Nevertheless, many require a breadboard for the fastest and simplest wiring. 
 
 To make this recipe, you will need:
 
-- Breadboard and jumper wires (see :ref:`app proto <app_proto>`)
+- Breadboard and jumper wires
 
-:ref:`Basic breadboard template <basics_breadboard_template>` shows a breadboard wired to the Bone. 
-All the diagrams in this book assume that the ground pin (+P9_1+ on the Bone) is wired to the 
-negative rail and 3.3 V (+P9_3+) is wired to the positive rail.
+The :ref:`basics_breadboard_template` shows a breadboard wired to the Bone. 
+All the diagrams in this book assume that the ground pin (*P9_1* on the Bone) is wired to the 
+negative rail and 3.3 V (*P9_3*) is wired to the positive rail.
 
 .. _basics_breadboard_template:
 
+Breadboard wired to BeagleBone Black
+-------------------------------------
+
 .. figure::figures/template_bb.png
    :align: center
-   :alt: Breadboard wired to BeagleBone Black
-
+   :alt: Breadboard
+   
    Breadboard wired to BeagleBone Black
 
-Discussion
-***********
-
 .. _basics_vsc:
 
 Editing Code Using Visual Studio Code
---------------------------------------
+======================================
 
 Problem
-********
+--------
 
 You want to edit and debug files on the Bone.
 
 Solution
-*********
+---------
 
 Plug your Bone into a host computer via the USB cable. Open a browser 
 (either Google Chrome or FireFox will work) on your host computer 
-(as shown in :ref:`basics out of box <basics_out_of_the_box>`). After the Bone has booted up, 
+(as shown in :ref:`basics_out_of_the_box`). After the Bone has booted up, 
 browse to http://192.168.7.2:3000 on your host. You will see something 
-like :ref:`basic getting started <basics_05gettingStarted_fig>`.
+like :ref:`basics_05gettingStarted_fig`.
 
 Click the *EXAMPLES* folder on the left and then click *BeagleBoard* and then *Black*, 
-finally double-click *seqLEDs.py*. You can now edit the file. 
+finally double-click ``seqLEDs.py``. You can now edit the file. 
 
 .. note:: 
 
-   If you edit lines 33 and 37 of the _seqLEDs.py_ file (time.sleep(0.25)), 
-   changing +0.25+ to +0.1+, the LEDs next to the Ethernet port on your 
+   If you edit lines 33 and 37 of the ``seqLEDs.py`` file (time.sleep(0.25)), 
+   changing *0.25* to *0.1*, the LEDs next to the Ethernet port on your 
    Bone will flash roughly twice as fast.
 
-Discussion
-************
-
 .. _basics_vsc_IDE:
 
 Running Python and JavaScript Applications from Visual Studio Code
--------------------------------------------------------------------
+===================================================================
 
 Problem
-*********
+--------
 
 You have a file edited in VS Code, and you want to run it.
 
 Solution
-**********
+---------
 
-VS Code has a +bash+ command window built in at the bottom of the window. 
+VS Code has a *bash* command window built in at the bottom of the window. 
 If it's not there, hit Ctrl-Shift-P and then type *terminal create new* 
 then hit *Enter*.  The terminal will appear at the bottom of the screen.
 You can run your code from this window. To do so, add 
-*#!/usr/bin/env python* at the top of the file that you want to run and save.
+``#!/usr/bin/env python`` at the top of the file that you want to run and save.
 
-.. tip:: If you are running JavaScript, replace the word +python+ in the line with *node*.
+.. tip:: 
+   If you are running JavaScript, replace the word **python** in the line with **node**.
 
-At the bottom of the VS Code window are a series of tabs (:ref:`basic bsc bash <basics_vscBash_fig>`). 
-Click the +TERMINAL+ tab. Here, you have a command prompt.
+At the bottom of the VS Code window are a series of tabs (:ref:`basics_vscBash_fig`). 
+Click the *TERMINAL* tab. Here, you have a command prompt.
 
 .. _basics_vscBash_fig:
 
@@ -300,9 +288,6 @@ The *cd* is the change directory command. After you *cd*,
 you are in a new directory. Finally, *./seqLEDs.py* instructs the 
 python script to run. You will need to press ^C (Ctrl-C) to stop your program.
 
-Discussion
-************
-
 .. _basics_find_image:
 
 Finding the Latest Version of the OS for Your Bone
@@ -317,7 +302,7 @@ Solution
 ************
 
 On your host computer, open a browser and go to https://forum.beagleboard.org/tag/latest-images 
-This shows you a list of dates of the most recent Debian images (:ref:`basic deb <basics_deb1>`).
+This shows you a list of dates of the most recent Debian images (:ref:`basics_deb1`).
 
 .. _basics_deb1:
 
@@ -325,19 +310,21 @@ This shows you a list of dates of the most recent Debian images (:ref:`basic deb
    :align: center
    :alt: Latest Debian images
 
+   Latest Debian images
+
 At the time of writing, we are using the *Bullseye* image.  
-Click on it's link. Scrolling up you'll find :ref:`basic deb<basics_deb2>`. 
+Click on it's link. Scrolling up you'll find :ref:`basics_deb2`. 
 There are three types of snapshots, Minimal, IoT and Xfce Desktop. 
 IoT is the one we are running.
 
 .. _basics_deb2:
 
-.Latest Debian images
-
 .. figure:: figures/deb2.png
    :align: center
    :alt: Latest Debian images
 
+   Latest Debian images
+
 These are the images you want to use if you are flashing a Rev C BeagleBone Black 
 onboard flash, or flashing a 4 GB or bigger miscroSD card. The image beginning 
 with *am335x-debian-11.3-iot-* is used for the non-AI boards. The one beginning 
@@ -351,22 +338,19 @@ with *am57xx-debian-* is for programming the Beagle AI's.
 Click the image you want to use and it will download. 
 The images are some 500M, so it might take a while.
 
-Discussion
-************
-
 .. _basics_install_os:
 
 Running the Latest Version of the OS on Your Bone
---------------------------------------------------
+==================================================
 
 Problem
-************
+--------
 
 You want to run the latest version of the operating system on your 
 Bone without changing the onboard flash.
 
 Solution
-************
+---------
 
 This solution is to flash an external microSD card and run the Bone from it. 
 If you boot the Bone with a microSD card inserted with a valid boot image, 
@@ -374,35 +358,35 @@ it will boot from the microSD card. If you boot without the microSD card
 installed, it will boot from the onboard flash.  
 
 .. tip:: 
-   If you want to reflash the onboard flash memory, 
-   see :ref:`basic onboard flash <basics_onboard_flash>`.
+
+   If you want to reflash the onboard flash memory, see :ref:`basics_onboard_flash`.
 
 .. note:: 
+
    I instruct my students to use the microSD for booting. I suggest they 
    keep an extra microSD flashed with the current OS. If they mess up the 
    one on the Bone, it takes only a moment to swap in the extra microSD, 
    boot up, and continue running. If they are running off the onboard flash, 
    it will take much longer to reflash and boot from it.
 
-Download the image you found in :ref:`basic find image <basics_find_image>`. It's more than 500 MB, 
+Download the image you found in :ref:`basics_find_image`. It's more than 500 MB, 
 so be sure to have a fast Internet connection. Then go to http://beagleboard.org/getting-started#update and 
 follow the instructions there to install the image you downloaded.
 
-Discussion
-************
-
 Updating the OS on Your Bone
------------------------------
+=============================
 
 Problem
-************
+--------
+
 You've installed the latest version of Debian on your Bone 
-(:ref:`basic istall os <basics_install_os>``), and you 
-want to be sure it's up-to-date.
+(:ref:`basics_install_os`), and you want to be sure it's up-to-date.
 
 Solution
-************
-Ensure that your Bone is on the network and then run the following command on the Bone:
+---------
+
+Ensure that your Bone is on the network and then run the 
+following command on the Bone:
 
 .. code-block:: bash
 
@@ -413,70 +397,83 @@ If there are any new updates, they will be installed.
 
 .. note:: 
 
-   If you get the error +The following signatures were invalid: KEYEXPIRED 1418840246+, 
-   see `eLinux support page http://bit.ly/1EXocb6` for advice on how to fix it.
+   If you get the error *The following signatures were invalid: KEYEXPIRED 1418840246*, 
+   see `eLinux support page <http://bit.ly/1EXocb6>`_ for advice on how to fix it.
 
 Discussion
-************
+-----------
 
 After you have a current image running on the Bone, it's not at all difficult to keep it upgraded.
 
 Backing Up the Onboard Flash
------------------------------
+=============================
 
-.. todo:: keep?
+.. todo 
+   keep?
 
 Problem
-************
+--------
 
-You've modified the state of your Bone in a way that you'd like to preserve or share.
+You've modified the state of your Bone 
+in a way that you'd like to preserve or share.
 
 Solution
-************
+---------
 
-The `eLinux wiki <The http://elinux.org/Beagleboard>`_ page on `BeagleBone Black Extracting eMMC contents <http://bit.ly/1C57I0a>`
+The `eLinux wiki <The http://elinux.org/Beagleboard>`_ page on `BeagleBone Black Extracting eMMC contents <http://bit.ly/1C57I0a>`_
 provides some simple steps for copying the contents of the onboard flash to a file on a microSD card:
 
 - Get a 4 GB or larger microSD card that is FAT formatted.
 - If you create a FAT-formatted microSD card, you must edit the partition and ensure that it is a bootable partition.
 - Download `beagleboneblack-save-emmc.zip <http://bit.ly/1wtXwNP>`_ and uncompress and copy the contents onto your microSD card.
 - Eject the microSD card from your computer, insert it into the powered-off BeagleBone Black, and apply power to your board.
-- You'll notice +USER0+ (the LED closest to the S1 button in the corner) will (after about 20 seconds) begin to blink steadily, rather than the double-pulse "heartbeat" pattern that is typical when your BeagleBone Black is running the standard Linux kernel configuration.
-- It will run for a bit under 10 minutes and then +USER0+ will stay on steady. That's your cue to remove power, remove the microSD card, and put it back into your computer.
+- You'll notice *USER0* (the LED closest to the S1 button in the corner) will (after about 20 seconds) begin to blink steadily, rather than the double-pulse "heartbeat" pattern that is typical when your BeagleBone Black is running the standard Linux kernel configuration.
+- It will run for a bit under 10 minutes and then *USER0* will stay on steady. That's your cue to remove power, remove the microSD card, and put it back into your computer.
 - You will see a file called *BeagleBoneBlack-eMMC-image-XXXXX.img*, where *XXXXX* is a set of random numbers. Save this file to use for restoring your image later.
 
-.. note:: Because the date won't be set on your board, you might want to adjust the date on the file to remember when you made it. For storage on your computer, these images will typically compress very well, so use your favorite compression tool.
+.. note:: 
 
-.. tip:: `eLinux wiki <The http://elinux.org/Beagleboard>`_ is the definitive place for the BeagleBoard.org community to share information about the Beagles. Spend some time looking around for other helpful information.
+   Because the date won't be set on your board, you might want to 
+   adjust the date on the file to remember when you made it. For 
+   storage on your computer, these images will typically compress 
+   very well, so use your favorite compression tool.
 
-Discussion
-************
+.. tip:: 
+
+   The `eLinux wiki <The http://elinux.org/Beagleboard>`_ is the 
+   definitive place for the BeagleBoard.org community to 
+   share information about the Beagles. Spend some time 
+   looking around for other helpful information.
 
 .. _basics_onboard_flash:
 
 Updating the Onboard Flash
----------------------------
+===========================
 
 Problem
-************
+--------
+
 You want to copy the microSD card to the onboard flash.
 
 Solution
-************
+--------
 
 If you want to update the onboard flash with the contents of the microSD card, 
 
-- Repeat the steps in :ref:`basics install os<basics_install_os>` to update the OS.
+- Repeat the steps in :ref:`basics_install_os` to update the OS.
 - Attach to an external 5 V source. *you must be powered from an external 5 V source*. The flashing process requires more current than what typically can be pulled from USB.
 - Boot from the microSD card.
-- Log on to the bone and edit +/boot/uEnv.txt+.
-- Uncomment out the last line +cmdline=init=/usr/sbin/init-beagle-flasher+.
+- Log on to the bone and edit */boot/uEnv.txt*.
+- Uncomment out the last line *cmdline=init=/usr/sbin/init-beagle-flasher*.
 - Save the file and reboot.
 - The USR LEDs will flash back and forth for a few minutes.
 - When they stop flashing, remove the SD card and reboot.
 - You are now running from the newly flashed onboard flash.
 
-.. warning:: If you write the onboard flash, _be sure to power the Bone from an external 5 V source_. The USB might not supply enough current. 
+.. warning:: 
+   If you write the onboard flash, **be sure to power the 
+   Bone from an external 5 V source**. The USB might not 
+   supply enough current. 
 
 When you boot from the microSD card, it will copy the image to the onboard flash. 
 When all four *USER* LEDs turn off (in some versions, they all turn on), you can 
diff --git a/books/beaglebone-cookbook/02sensors/code/GPS.js b/books/beaglebone-cookbook/02sensors/code/GPS.js
deleted file mode 100755
index fd81970d017f8f6ce1f6bf7c6943a9f8ce4a02fb..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/GPS.js
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/usr/bin/env node
-// Install with: npm install nmea
-
-// Need to add exports.serialParsers = m.module.parsers;
-// to the end of /usr/local/lib/node_modules/bonescript/serial.js
-
-var b = require('bonescript');
-var nmea = require('nmea');
-
-var port = '/dev/ttyO4';
-var options = {
-    baudrate: 9600,
-    parser: b.serialParsers.readline("\n")
-};
-
-b.serialOpen(port, options, onSerial);
-
-function onSerial(x) {
-    if (x.err) {
-        console.log('***ERROR*** ' + JSON.stringify(x));
-    }
-    if (x.event == 'open') {
-       console.log('***OPENED***');
-    }
-    if (x.event == 'data') {
-        console.log(String(x.data));
-        console.log(nmea.parse(x.data));
-    }
-}
diff --git a/books/beaglebone-cookbook/02sensors/code/analogIn.js b/books/beaglebone-cookbook/02sensors/code/analogIn.js
deleted file mode 100755
index 62136407952ab7a0aab8ec7ad935d62170f18506..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/analogIn.js
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/usr/bin/env node
-//////////////////////////////////////
-//	analogin.js
-// 	Reads the analog value of the light sensor.
-//////////////////////////////////////
-const fs = require("fs");
-const ms = 500;  // Time in milliseconds
-
-const pin = "2";        // light sensor, A2, P9_37
-
-const IIOPATH='/sys/bus/iio/devices/iio:device0/in_voltage'+pin+'_raw';
-
-console.log('Hit ^C to stop');
-
-// Read every 500ms
-setInterval(readPin, ms);
-
-function readPin() {
-    var data = fs.readFileSync(IIOPATH).slice(0, -1);
-    console.log('data = ' + data);
- }
-// Bone  | Pocket | AIN
-// ----- | ------ | --- 
-// P9_39 | P1_19  | 0
-// P9_40 | P1_21  | 1
-// P9_37 | P1_23  | 2
-// P9_38 | P1_25  | 3
-// P9_33 | P1_27  | 4
-// P9_36 | P2_35  | 5
-// P9_35 | P1_02  | 6
diff --git a/books/beaglebone-cookbook/02sensors/code/analogIn.py b/books/beaglebone-cookbook/02sensors/code/analogIn.py
deleted file mode 100644
index c62abd1b71e7f29cc986667382f255d7703a810a..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/analogIn.py
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/usr/bin/env python3
-#//////////////////////////////////////
-#	analogin.py
-# 	Reads the analog value of the light sensor.
-#//////////////////////////////////////
-import time
-import os
-
-pin = "2"        # light sensor, A2, P9_37
-
-IIOPATH='/sys/bus/iio/devices/iio:device0/in_voltage'+pin+'_raw'
-
-print('Hit ^C to stop')
-
-f = open(IIOPATH, "r")
-
-while True:
-    f.seek(0)
-    x = float(f.read())/4096
-    print('{}: {:.1f}%, {:.3f} V'.format(pin, 100*x, 1.8*x), end = '\r')
-    time.sleep(0.1)
-
-# // Bone  | Pocket | AIN
-# // ----- | ------ | --- 
-# // P9_39 | P1_19  | 0
-# // P9_40 | P1_21  | 1
-# // P9_37 | P1_23  | 2
-# // P9_38 | P1_25  | 3
-# // P9_33 | P1_27  | 4
-# // P9_36 | P2_35  | 5
-# // P9_35 | P1_02  | 6
diff --git a/books/beaglebone-cookbook/02sensors/code/audio.asoundrc b/books/beaglebone-cookbook/02sensors/code/audio.asoundrc
deleted file mode 100644
index 8fcc9b97184440ddfa39d75341e1bf4ae7ec80c2..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/audio.asoundrc
+++ /dev/null
@@ -1,10 +0,0 @@
-pcm.!default {
-  type plug
-  slave {
-    pcm "hw:1,0"
-  }
-}
-ctl.!default {
-  type hw
-  card 1
-}
diff --git a/books/beaglebone-cookbook/02sensors/code/audio.js b/books/beaglebone-cookbook/02sensors/code/audio.js
deleted file mode 100755
index eeca6ca30c36dd904a5c0d1742e4fba284646400..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/audio.js
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/usr/bin/node
-// 'childprocess' help at:
-// http://nodejs.org/api/child_process.html\
-//                    #child_process_child_process_spawn_command_args_options
-"use strict";
-
-var b = require('bonescript'),
-    spawn = require('child_process').spawn;
-
-var audioRate = 48000,
-    bufferSize = 4800,
-    format = "S16_LE";  // 16-bit signed, little endian
-    
-var audioIn = spawn(
-           "/usr/bin/arecord",
-           [
-            "-c2", "-r"+audioRate, "-f"+format, "-traw", 
-            "--buffer-size="+bufferSize, "--period-size="+bufferSize, "-N"
-           ]
-        );
-        
- var audioOut = spawn(
-           "/usr/bin/aplay",
-           [
-            "-c2", "-r"+audioRate, "-f"+format, "-traw", 
-            "--buffer-size="+bufferSize, "--period-size="+bufferSize, "-N"
-           ]
-        );     
-    
-    audioIn.stdout.on('data', function(data) {
-        audioOut.stdin.write(data);
-    });
-    
-    audioIn.on('close', function(code) {
-        if(code !== 0) {
-            console.log('arecord process exited with code: ' + code);
-            audioOut.stdin.end();
-        }
-    })
-    
-    audioOut.on('close', function(code) {
-        if(code !== 0) {
-            console.log('aplay process exited with code: ' + code);
-        }
-    })
-    
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/02sensors/code/bone_eqep2b.dts b/books/beaglebone-cookbook/02sensors/code/bone_eqep2b.dts
deleted file mode 100644
index 036cdcd3204cc182309060d40560daae2db2be0f..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/bone_eqep2b.dts
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
- * Copyright (C) 2013 Nathaniel R. Lewis - http://nathanielrlewis.com/
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
- * 
- * Enable eQEP2 on the Beaglebone White and Black
- * These pins don't conflict with the HDMI
- */
-/dts-v1/;
-/plugin/;
-
-/ {
-    compatible = "ti,beaglebone", "ti,beaglebone-black";
-
-    /* identification */
-    part-number = "bone_eqep2";
-    version     = "00A0";
-
-    fragment@0 {
-        target = <&am33xx_pinmux>;
-        __overlay__ {
-            pinctrl_eqep2: pinctrl_eqep2_pins {
-                pinctrl-single,pins = <					 				   
-		          0x038 0x24  /* P8_16 = GPIO2_12 = EQEP2_index, MODE4 */
-		          0x03C 0x24  /* P8_15 = GPIO2_13 = EQEP2_strobe, MODE4 */
-		          0x030 0x34  /* P8_12 = GPIO2_10 = EQEP2A_in, MODE4 */
-		          0x034 0x34  /* P8_11 = GPIO2_11 = EQEP2B_in, MODE4 */
-                >;
-            };
-        };
-    };
-    
-    fragment@1 {
-        target = <&epwmss2>;
-        __overlay__ {
-            status = "okay";
-        };
-    };
-    
-    fragment@2 {
-    	target = <&eqep2>;
-    	__overlay__ {
-        pinctrl-names = "default";
-        pinctrl-0 = <&pinctrl_eqep2>;
-        count_mode = < 0 >;  
-        /* 0 - Quadrature mode, normal 90 phase offset cha & chb.  
-           1 - Direction mode.  cha input = clock, chb input = direction  */
-        swap_inputs = < 0 >; /* Are chan A & chan B swapped? (0-no,1-yes) */
-          invert_qa = < 1 >;   /* Should we invert the channel A input?  */
-          invert_qb = < 1 >;   /* Should we invert the channel B input? 
-                These are inverted because my encoder outputs drive transistors 
-                that pull down the pins */
-          invert_qi = < 0 >;   /* Should we invert the index input? */
-          invert_qs = < 0 >;   /* Should we invert the strobe input? */
-        
-        status = "okay";
-    	};
-    };
-};
diff --git a/books/beaglebone-cookbook/02sensors/code/encoder.js b/books/beaglebone-cookbook/02sensors/code/encoder.js
deleted file mode 100644
index 7ad2f4d4b12beab7812a1e62b6f70c3836226d82..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/encoder.js
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/env node
-// Test this
-var b = require('bonescript');
-var encoder = '';
-
-function printStatus(x) {
-    console.log('x.value = ' + x.value);
-    console.log('x.err = ' + x.err);
-}
-
-function onEncoderReady(e) {
-    if(e.event == 'return') {
-        b.encoderRead(encoder, printStatus);
-    }
-}
-
-b.encoderOpen(encoder, {}, onEncoderReady);
diff --git a/books/beaglebone-cookbook/02sensors/code/gpiod/.gitignore b/books/beaglebone-cookbook/02sensors/code/gpiod/.gitignore
deleted file mode 100644
index fecb0575772aafdbd64d7b707fd034a19a7a56e8..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/gpiod/.gitignore
+++ /dev/null
@@ -1,6 +0,0 @@
-toggle1
-toggle2
-get
-getset
-getsetEvent
-toggleLED
diff --git a/books/beaglebone-cookbook/02sensors/code/gpiod/Makefile b/books/beaglebone-cookbook/02sensors/code/gpiod/Makefile
deleted file mode 100644
index b5267491fc4e67162a3dd81626851c5cd7badf6a..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/gpiod/Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-#
-# Programs
-#
-all:	toggle1 toggle2 get getset getsetEvent toggleLED
-
-toggle1: toggle1.c
-	$(CC) $(LDFLAGS) -o $@ $^ -lgpiod
-
-toggle2: toggle2.c
-	$(CC) $(LDFLAGS) -o $@ $^ -lgpiod
-
-get: get.c
-	$(CC) $(LDFLAGS) -o $@ $^ -lgpiod
-
-getset: getset.c
-	$(CC) $(LDFLAGS) -o $@ $^ -lgpiod
-
-getsetEvent: getsetEvent.c
-	$(CC) $(LDFLAGS) -o $@ $^ -lgpiod
-
-toggleLED: toggleLED.c
-	$(CC) $(LDFLAGS) -o $@ $^ -lgpiod
-
-#
-# Objects
-#
-
-%.o: %.c
-	$(CC) $(CFLAGS) -c $< -o $@
-
-clean:
-	rm toggle1 toggle2 get getset getsetEvent toggleLED
diff --git a/books/beaglebone-cookbook/02sensors/code/gpiod/ReadMe.md b/books/beaglebone-cookbook/02sensors/code/gpiod/ReadMe.md
deleted file mode 100644
index 4a8d2212ebb69178a26786709c41ea4a1cb5c25d..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/gpiod/ReadMe.md
+++ /dev/null
@@ -1,23 +0,0 @@
-libgpiod is a new C library and tools for interacting with the linux GPIO
-character device. 
-Detailed information is 
-[here](https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/tree/README)
-and [Adafruit](https://blog.adafruit.com/2018/11/26/sysfs-is-dead-long-live-libgpiod-libgpiod-for-linux-circuitpython/)
-also has information.
-
-One of the advantages of gpiod is that it can toggle multiple bits on the same
-gpio chip at the same time.  The toggle2 examples show how it's done.
-
-The directory contains examples of using gpiod with **C** and **python** to read/write
-a gpio pin.
-
-File                | Description
-----                | -----------
-[toggle1](toggle1.c)    | Toggles one pin as fast as possible.  (300KHz in C, 57KHz in python)
-[toggle2](toggle2.c)    | Toggles two pins as fast as possible.  (280KHz in C, 55KHz in python)
-[get](get.c)    | Reads an input pin and prints its value.
-[getset](getset.c)    | Reads an input pin and writes its value to an output pin. (5us delay in C, 20 us Delay in python)
-[getsetEvent](getset.c)    | Like **getset**, but uses events. (40 us delay in C, 75 us delay in python)
-[toggleLED](toggleLED.c)    | Toggles the four built in USR LEDs.
-
-> Tip:  Use **gpioinfo** to lookup chip and line numbers for various pins.
diff --git a/books/beaglebone-cookbook/02sensors/code/gpiod/aggregatorSetup.sh b/books/beaglebone-cookbook/02sensors/code/gpiod/aggregatorSetup.sh
deleted file mode 100644
index edc4d387417a72741922ddf2daa48d44fcb25163..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/gpiod/aggregatorSetup.sh
+++ /dev/null
@@ -1,47 +0,0 @@
-# See:  https://elinux.org/EBC_Exercise_51_GPIO_aggregator
-
-# Insert the module
-sudo modprobe gpio-aggregator
-# Go to the aggregator
-cd /sys/bus/platform/drivers/gpio-aggregator
-# Fix the modes
-sudo chgrp gpio *
-sudo chmod g+w *
-# See what's there before adding a new chip
-gpiodetect 
-# gpiochip0 [gpio-0-31] (32 lines)
-# gpiochip1 [gpio-32-63] (32 lines)
-# gpiochip2 [gpio-64-95] (32 lines)
-# gpiochip3 [gpio-96-127] (32 lines)
-
-# Add a new chip mapping P9_14, P9_16, P9_18 and P9_22
-gpioinfo | grep -e chip -e P9_1[468] -e P9_22
-# gpiochip0 - 32 lines:
-# 	line   2: "P9_22 [spi0_sclk]" "gpio-aggregator.0" input active-high [used]
-# 	line   4: "P9_18 [spi0_d1]" "gpio-aggregator.0" output active-high [used]
-# gpiochip1 - 32 lines:
-# 	line  18: "P9_14 [ehrpwm1a]" "gpio-aggregator.0" output active-high [used]
-# 	line  19: "P9_16 [ehrpwm1b]" "gpio-aggregator.0" input active-high [used]
-# gpiochip2 - 32 lines:
-# gpiochip3 - 32 lines:
-
-echo "gpio-32-63 18,19 gpio-0-31 4,2" > new_device
-# Check to see if they are there
-gpiodetect 
-# gpiochip0 [gpio-0-31] (32 lines)
-# gpiochip1 [gpio-32-63] (32 lines)
-# gpiochip2 [gpio-64-95] (32 lines)
-# gpiochip3 [gpio-96-127] (32 lines)
-# gpiochip4 [gpio-aggregator.0] (4 lines)
-
-gpioinfo | tail -6
-# 	line  31:         "NC"       unused   input  active-high 
-# gpiochip4 - 4 lines:
-# 	line   0:      unnamed       unused  output  active-high 
-# 	line   1:      unnamed       unused   input  active-high 
-# 	line   2:      unnamed       unused   input  active-high 
-# 	line   3:      unnamed       unused  output  active-high 
-
-# Turn them all on, then off
-gpioset gpiochip4 0=1 1=1 2=1 3=1
-gpioset gpiochip4 0=0 1=0 2=0 3=0
diff --git a/books/beaglebone-cookbook/02sensors/code/gpiod/bulk_blink.py b/books/beaglebone-cookbook/02sensors/code/gpiod/bulk_blink.py
deleted file mode 100755
index 7599325cf76c02fd1debb7541e4e6e2ecea1fecf..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/gpiod/bulk_blink.py
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/usr/bin/env python3
-# //////////////////////////////////////
-# 	bulk_blink.py
-#  Toggles given pins as fast as it can. 
-# 	Given pins must be on the same gpiochip
-# 	P9_14 is line 18 P9_16 is line 19.
-#   Run gpioinfo to see which pins are where.
-# 	Wiring:	Attach an oscilloscope to P9_14 and P9_16  to see the squarewave or 
-#          uncomment the sleep and attach an LED.
-# 	Setup:	sudo apt update; pip install gpiod
-# 	See:	https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/tree/bindings/python/examples
-# //////////////////////////////////////
-import sys
-import time
-import gpiod
-
-try:
-    if len(sys.argv) > 2:
-        LED_CHIP = sys.argv[1]
-        LED_LINE_OFFSETS = []
-        for i in range(len(sys.argv) - 2):
-            LED_LINE_OFFSETS.append(int(sys.argv[i + 2]))
-    else:
-        raise Exception()
-# pylint: disable=broad-except
-except Exception:
-    print(
-        "Usage:"
-        + "    python3 -m gpiod.test.bulk_blink <chip> <line offset1>"
-        + " [<line offset2> ...]"
-    )
-    sys.exit()
-
-chip = gpiod.Chip(LED_CHIP)
-lines = chip.get_lines(LED_LINE_OFFSETS)
-
-lines.request(consumer='Bulk Blink', type=gpiod.LINE_REQ_DIR_OUT)
-
-off = [0] * len(LED_LINE_OFFSETS)
-on  = [1] * len(LED_LINE_OFFSETS)
-
-while True:
-    lines.set_values(off)
-    time.sleep(0.25)
-    lines.set_values(on)
-    time.sleep(0.25)
diff --git a/books/beaglebone-cookbook/02sensors/code/gpiod/get.c b/books/beaglebone-cookbook/02sensors/code/gpiod/get.c
deleted file mode 100644
index 4aeefe0435631e6c2c863216fef11f1870a69f56..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/gpiod/get.c
+++ /dev/null
@@ -1,52 +0,0 @@
-// //////////////////////////////////////
-// 	get.c
-//  Get the value of P8_13. P8_13 is line 23 on chip 0.
-// 	Wiring:	Attach a switch to P8_13 and 3.3V
-// 	Setup:	sudo apt update; sudo apt install libgpiod-dev
-// 	See:	https://github.com/starnight/libgpiod-example/blob/master/libgpiod-led/main.c
-// //////////////////////////////////////
-#include <gpiod.h>
-#include <stdio.h>
-#include <unistd.h>
-
-#define	CONSUMER	"Consumer"
-
-int main(int argc, char **argv)
-{
-	int chipnumber = 0;
-	unsigned int line_num = 23;	// GPIO Pin P8_13
-	struct gpiod_chip *chip;
-	struct gpiod_line *line;
-	int i, ret;
-
-	chip = gpiod_chip_open_by_number(chipnumber);
-	if (!chip) {
-		perror("Open chip failed\n");
-		goto end;
-	}
-
-	line = gpiod_chip_get_line(chip, line_num);
-	if (!line) {
-		perror("Get line failed\n");
-		goto close_chip;
-	}
-
-	ret = gpiod_line_request_input(line, CONSUMER);
-	if (ret < 0) {
-		perror("Request line as intput failed\n");
-		goto release_line;
-	}
-
-	/* Get */
-	while(1) {
-		printf("%d\r", gpiod_line_get_value(line));
-		usleep(1000);
-	}
-
-release_line:
-	gpiod_line_release(line);
-close_chip:
-	gpiod_chip_close(chip);
-end:
-	return 0;
-}
diff --git a/books/beaglebone-cookbook/02sensors/code/gpiod/get.py b/books/beaglebone-cookbook/02sensors/code/gpiod/get.py
deleted file mode 100755
index 05820068f6cbc9e2cf504063ddf19f0da11fe163..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/gpiod/get.py
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/usr/bin/env python3
-# //////////////////////////////////////
-# 	get.py
-#  Get the value of P8_13. P8_13 is line 23 on chip 0.
-# 	Wiring:	Attach a switch to P8_13 and 3.3V
-# 	Setup:	sudo apt uupdate; sudo apt install libgpiod-dev
-# 	See:	https://github.com/starnight/libgpiod-example/blob/master/libgpiod-led/main.c
-# //////////////////////////////////////
-
-import gpiod
-import sys
-
-if len(sys.argv) < 3:   # Use P8_13 if not given
-    CHIP='0'
-    offsets=[13]
-else:
-    CHIP=sys.argv[1]
-    offsets = []
-    for off in sys.argv[2:]:
-        offsets.append(int(off))
-    
-chip = gpiod.Chip(CHIP)
-
-lines = chip.get_lines(offsets)
-lines.request(consumer=sys.argv[0], type=gpiod.LINE_REQ_DIR_IN)
-
-print("Hit ^C to stop")
-
-while True:
-    vals = lines.get_values()
-    
-    for val in vals:
-        print(val, end=' ')
-    print('\r', end='')
diff --git a/books/beaglebone-cookbook/02sensors/code/gpiod/get.sh b/books/beaglebone-cookbook/02sensors/code/gpiod/get.sh
deleted file mode 100755
index 54cc18ba6de10b802529c8e4ddb9c2f8bb05f573..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/gpiod/get.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/bash
-# Reads P8_13 via gpiod.  P8_13 is chip 0 line 23
-
-echo Hit ^c to stop
-
-while true; do 
-	gpioget 0 23 | tr \\n \\r
-done
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/02sensors/code/gpiod/getset.c b/books/beaglebone-cookbook/02sensors/code/gpiod/getset.c
deleted file mode 100644
index 207c7689db6140c5edab7695daa011f266573ac4..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/gpiod/getset.c
+++ /dev/null
@@ -1,70 +0,0 @@
-// //////////////////////////////////////
-// 	getset.c
-//  Get the value of P8_16 and write it to P9_14. 
-//     P8_16 is line 14 on chip 1.  P9_14 is line 18 of chip 1.
-// 	Wiring:	Attach a switch to P8_16 and 3.3V and an LED to P9_14.
-// 	Setup:	sudo apt uupdate; sudo apt install libgpiod-dev
-// 	See:	https://github.com/starnight/libgpiod-example/blob/master/libgpiod-led/main.c
-// //////////////////////////////////////
-#include <gpiod.h>
-#include <stdio.h>
-#include <unistd.h>
-
-#define	CONSUMER	"Consumer"
-
-int main(int argc, char **argv)
-{
-	int chipnumber = 1;
-	unsigned int getline_num = 14;	// GPIO Pin P8_16
-	unsigned int setline_num = 18;	// GPIO Pin P9_14
-	unsigned int val;
-	struct gpiod_chip *chip;
-	struct gpiod_line *getline, *setline;
-	int i, ret;
-
-	chip = gpiod_chip_open_by_number(chipnumber);
-	if (!chip) {
-		perror("Open chip failed\n");
-		goto end;
-	}
-
-	getline = gpiod_chip_get_line(chip, getline_num);
-	if (!getline) {
-		perror("Get line failed\n");
-		goto close_chip;
-	}
-
-	setline = gpiod_chip_get_line(chip, setline_num);
-	if (!setline) {
-		perror("Set line failed\n");
-		goto close_chip;
-	}
-
-	ret = gpiod_line_request_input(getline, CONSUMER);
-	if (ret < 0) {
-		perror("Request line as input failed\n");
-		goto release_line;
-	}
-
-	ret = gpiod_line_request_output(setline, CONSUMER, 0);
-	if (ret < 0) {
-		perror("Request line as output failed\n");
-		goto release_line;
-	}
-
-	/* Get */
-	while(1) {
-		val = gpiod_line_get_value(getline);
-		gpiod_line_set_value(setline, val);
-		// printf("%d\r", val);
-		// usleep(1000);
-	}
-
-release_line:
-	gpiod_line_release(getline);
-	gpiod_line_release(setline);
-close_chip:
-	gpiod_chip_close(chip);
-end:
-	return 0;
-}
diff --git a/books/beaglebone-cookbook/02sensors/code/gpiod/getset.py b/books/beaglebone-cookbook/02sensors/code/gpiod/getset.py
deleted file mode 100755
index 335807a91aaf8e611254886617834ffb920115e0..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/gpiod/getset.py
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/usr/bin/env python3
-# //////////////////////////////////////
-# 	getset.py
-#  Get the value of P8_16 and write it to P9_14. 
-#     P8_16 is line 14 on chip 1.  P9_14 is line 18 of chip 1.
-# 	Wiring:	Attach a switch to P8_16 and 3.3V and an LED to P9_14.
-# 	Setup:	sudo apt uupdate; sudo apt install libgpiod-dev
-# 	See:	https://github.com/starnight/libgpiod-example/blob/master/libgpiod-led/main.c
-# //////////////////////////////////////
-# Based on https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/tree/bindings/python/examples
-
-import gpiod
-import sys
-
-CONSUMER='getset'
-CHIP='1'
-getoffsets=[14] # P8_16
-setoffests=[18] # P9_14
-
-chip = gpiod.Chip(CHIP)
-
-getlines = chip.get_lines(getoffsets)
-getlines.request(consumer=CONSUMER, type=gpiod.LINE_REQ_DIR_IN)
-
-setlines = chip.get_lines(setoffests)
-setlines.request(consumer=CONSUMER, type=gpiod.LINE_REQ_DIR_OUT)
-
-print("Hit ^C to stop")
-
-while True:
-    vals = getlines.get_values()
-    
-    # for val in vals:
-    #     print(val, end=' ')
-    # print('\r', end='')
-
-    setlines.set_values(vals)
diff --git a/books/beaglebone-cookbook/02sensors/code/gpiod/getsetEvent.c b/books/beaglebone-cookbook/02sensors/code/gpiod/getsetEvent.c
deleted file mode 100644
index b49ab2dfea3e7b723ded6461aa65f22a5ebabcf0..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/gpiod/getsetEvent.c
+++ /dev/null
@@ -1,85 +0,0 @@
-// //////////////////////////////////////
-// 	getsetEvent.c
-//  Like setset.c, but uses events
-//  Get the value of P8_16 and write it to P9_14. 
-//     P8_16 is line 14 on chip 1.  P9_14 is line 18 of chip 1.
-// 	Wiring:	Attach a switch to P8_16 and 3.3V and an LED to P9_14.
-// 	Setup:	sudo apt uupdate; sudo apt install libgpiod-dev
-// 	See:	https://github.com/starnight/libgpiod-example/blob/master/libgpiod-led/main.c
-// //////////////////////////////////////
-#include <gpiod.h>
-#include <stdio.h>
-#include <unistd.h>
-
-#define	CONSUMER	"Consumer"
-
-int main(int argc, char **argv)
-{
-	int chipnumber = 1;
-	struct timespec ts = { 0, 1000000 };	// 1s Timeout for event
-	struct gpiod_line_event event;
-	unsigned int getline_num = 14;	// GPIO Pin P8_16
-	unsigned int setline_num = 18;	// GPIO Pin P9_14
-	unsigned int val;
-	struct gpiod_chip *chip;
-	struct gpiod_line *getline, *setline;
-	int i, ret;
-
-	chip = gpiod_chip_open_by_number(chipnumber);
-	if (!chip) {
-		perror("Open chip failed\n");
-		goto end;
-	}
-
-	getline = gpiod_chip_get_line(chip, getline_num);
-	if (!getline) {
-		perror("Get line failed\n");
-		goto close_chip;
-	}
-
-	setline = gpiod_chip_get_line(chip, setline_num);
-	if (!setline) {
-		perror("Set line failed\n");
-		goto close_chip;
-	}
-
-	ret = gpiod_line_request_both_edges_events(getline, CONSUMER);
-	if (ret < 0) {
-		perror("Request line as input failed\n");
-		goto release_line;
-	}
-
-	ret = gpiod_line_request_output(setline, CONSUMER, 0);
-	if (ret < 0) {
-		perror("Request line as output failed\n");
-		goto release_line;
-	}
-
-	/* Get */
-	while(1) {
-		do {
-			// printf("waiting...\n");
-		    ret = gpiod_line_event_wait(getline, &ts);
-		} while (ret <= 0);
-		
-		// I'm getting a Segment failt.  event isn't correct.
-		// ret = gpiod_line_event_read(getline, &event);
-		// printf("ret: %d, event: %d\n", ret, event);
-		// if (!ret)
-		//     printf("event: %s timestamp: [%8ld.%09ld]\n",
-		//     	event.event_type, event.ts.tv_sec, event.ts.tv_nsec);
-		
-		val = gpiod_line_get_value(getline);
-		gpiod_line_set_value(setline, val);
-		// printf("%d\n", val);
-		// usleep(1000);
-	}
-
-release_line:
-	gpiod_line_release(getline);
-	gpiod_line_release(setline);
-close_chip:
-	gpiod_chip_close(chip);
-end:
-	return 0;
-}
diff --git a/books/beaglebone-cookbook/02sensors/code/gpiod/getsetEvent.py b/books/beaglebone-cookbook/02sensors/code/gpiod/getsetEvent.py
deleted file mode 100755
index 9240220fd5b4ab6bda1cb172c7ad0c6dc6bdc8d0..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/gpiod/getsetEvent.py
+++ /dev/null
@@ -1,55 +0,0 @@
-#!/usr/bin/env python3
-# //////////////////////////////////////
-# 	getsetEvent.py
-#   Like getset.py but uses events.
-#   Get the value of P8_16 and write it to P9_14. 
-#     P8_16 is line 14 on chip 1.  P9_14 is line 18 of chip 1.
-# 	Wiring:	Attach a switch to P8_16 and 3.3V and an LED to P9_14.
-# 	Setup:	sudo apt uupdate; sudo apt install libgpiod-dev
-# 	See:	https://github.com/starnight/libgpiod-example/blob/master/libgpiod-led/main.c
-# //////////////////////////////////////
-# Based on https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/tree/bindings/python/examples
-
-import gpiod
-import sys
-
-CONSUMER='getset'
-CHIP='1'
-getoffsets=[14] # P8_16
-setoffests=[18] # P9_14
-
-def print_event(event):
-    if event.type == gpiod.LineEvent.RISING_EDGE:
-        evstr = ' RISING EDGE'
-    elif event.type == gpiod.LineEvent.FALLING_EDGE:
-        evstr = 'FALLING EDGE'
-    else:
-        raise TypeError('Invalid event type')
-
-    print('event: {} offset: {} timestamp: [{}.{}]'.format(evstr,
-                                                           event.source.offset(),
-                                                           event.sec, event.nsec))
-
-chip = gpiod.Chip(CHIP)
-
-getlines = chip.get_lines(getoffsets)
-getlines.request(consumer=CONSUMER, type=gpiod.LINE_REQ_EV_BOTH_EDGES)
-
-setlines = chip.get_lines(setoffests)
-setlines.request(consumer=CONSUMER, type=gpiod.LINE_REQ_DIR_OUT)
-
-print("Hit ^C to stop")
-
-while True:
-    ev_lines = getlines.event_wait(sec=1)
-    if ev_lines:
-        for line in ev_lines:
-            event = line.event_read()
-            print_event(event)
-    vals = getlines.get_values()
-    
-    # for val in vals:
-    #     print(val, end=' ')
-    # print('\r', end='')
-
-    setlines.set_values(vals)
diff --git a/books/beaglebone-cookbook/02sensors/code/gpiod/toggle1.c b/books/beaglebone-cookbook/02sensors/code/gpiod/toggle1.c
deleted file mode 100644
index 1ff8c1cb7cac717f0f094fa2ae481a0291492fde..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/gpiod/toggle1.c
+++ /dev/null
@@ -1,61 +0,0 @@
-// //////////////////////////////////////
-// 	toggle1.c
-//  Toggles the P9_14 pin as fast as it can. P9_14 is line 18 on chip 1.
-// 	Wiring:	Attach an oscilloscope to P9_14 to see the squarewave or 
-//          uncomment the usleep and attach an LED.
-// 	Setup:	sudo apt update; sudo apt install libgpiod-dev
-// 	See:	https://github.com/starnight/libgpiod-example/blob/master/libgpiod-led/main.c
-// //////////////////////////////////////
-#include <gpiod.h>
-#include <stdio.h>
-#include <unistd.h>
-
-#define	CONSUMER	"Consumer"
-
-int main(int argc, char **argv)
-{
-	int chipnumber = 1;
-	unsigned int line_num = 18;	// GPIO Pin P9_14
-	unsigned int val;
-	struct gpiod_chip *chip;
-	struct gpiod_line *line;
-	int i, ret;
-
-	chip = gpiod_chip_open_by_number(chipnumber);
-	if (!chip) {
-		perror("Open chip failed\n");
-		goto end;
-	}
-
-	line = gpiod_chip_get_line(chip, line_num);
-	if (!line) {
-		perror("Get line failed\n");
-		goto close_chip;
-	}
-
-	ret = gpiod_line_request_output(line, CONSUMER, 0);
-	if (ret < 0) {
-		perror("Request line as output failed\n");
-		goto release_line;
-	}
-
-	/* Blink */
-	val = 0;
-	while(1) {
-		ret = gpiod_line_set_value(line, val);
-		if (ret < 0) {
-			perror("Set line output failed\n");
-			goto release_line;
-		}
-		// printf("Output %u on line #%u\n", val, line_num);
-		usleep(100000);		// Number of microseconds to sleep
-		val = !val;
-	}
-
-release_line:
-	gpiod_line_release(line);
-close_chip:
-	gpiod_chip_close(chip);
-end:
-	return 0;
-}
diff --git a/books/beaglebone-cookbook/02sensors/code/gpiod/toggle1.py b/books/beaglebone-cookbook/02sensors/code/gpiod/toggle1.py
deleted file mode 100755
index d8b6d5d4edef7531771c3ab947a5766fd9c608f0..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/gpiod/toggle1.py
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/usr/bin/env python3
-# //////////////////////////////////////
-# 	toggle1.py
-#  Toggles the P9_14 pin as fast as it can. P9_14 is line 18 on chip 1.
-# 	Wiring:	Attach an oscilloscope to P9_14 to see the squarewave or 
-#          uncomment the sleep and attach an LED.
-# 	Setup:	sudo apt update; pip install gpiod
-# 	See:	https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/tree/bindings/python/examples
-# //////////////////////////////////////
-
-import gpiod
-import time
-
-LED_CHIP = 'gpiochip1'
-LED_LINE_OFFSET = [18]  # P9_14
-
-chip = gpiod.Chip(LED_CHIP)
-
-lines = chip.get_lines(LED_LINE_OFFSET)
-lines.request(consumer='blink', type=gpiod.LINE_REQ_DIR_OUT)
-
-while True:
-    lines.set_values([0])
-    time.sleep(0.1)
-    lines.set_values([1])
-    time.sleep(0.1)
-    
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/02sensors/code/gpiod/toggle1.sh b/books/beaglebone-cookbook/02sensors/code/gpiod/toggle1.sh
deleted file mode 100755
index b27f9824818f1f17446b7a1512b9cd99fb93ddbd..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/gpiod/toggle1.sh
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/bash
-# gpio chip=1  line 18=P9_14  line19=P9_16
-
-while true; do 
-    gpioset 1 18=0 19=0
-    gpioset 1 18=1 19=1
-done
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/02sensors/code/gpiod/toggle2.c b/books/beaglebone-cookbook/02sensors/code/gpiod/toggle2.c
deleted file mode 100644
index ad6b77f05e4a00cea320324465a3dc2c6e944c56..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/gpiod/toggle2.c
+++ /dev/null
@@ -1,66 +0,0 @@
-// //////////////////////////////////////
-// 	toggle2.c
-//  Toggles P9_14 and P9_16 pins as fast as it can. 
-//	P9_14 and P9_16 are both on chip 1 so they can be toggled together.
-//	P9_14 is line 18 P9_16 is line 18.
-// 	Wiring:	Attach an oscilloscope to P9_14 and P9_16  to see the squarewave or 
-//          uncomment the usleep and attach an LED.
-// 	Setup:	sudo apt uupdate; sudo apt install libgpiod-dev
-// 	See:	https://github.com/starnight/libgpiod-example/blob/master/libgpiod-led/main.c
-// //////////////////////////////////////
-#include <gpiod.h>
-#include <stdio.h>
-#include <unistd.h>
-
-#define	CONSUMER	"Consumer"
-#define NUMLINES 2
-
-int main(int argc, char **argv)
-{
-	int chipnumber = 1;
-	unsigned int line_num[NUMLINES] = {18, 19};	// GPIO Pins P9_14 and P9_16
-	unsigned int val;
-	struct gpiod_chip *chip;
-	struct gpiod_line_bulk line[NUMLINES];
-	int i, ret;
-
-	chip = gpiod_chip_open_by_number(chipnumber);
-	if (!chip) {
-		perror("Open chip failed\n");
-		goto end;
-	}
-
-	int err = gpiod_chip_get_lines(chip, line_num, NUMLINES, line);
-	if (err) {
-		perror("Get line failed\n");
-		goto close_chip;
-	}
-
-	int off_values[NUMLINES] = {0, 0};
-	int  on_values[NUMLINES] = {1, 1};
-	ret = gpiod_line_request_bulk_output(line, CONSUMER, off_values);
-	if (ret < 0) {
-		perror("Request line as output failed\n");
-		goto release_line;
-	}
-
-	/* Blink */
-	val = 0;
-	while(1) {
-		ret = gpiod_line_set_value_bulk(line, val ? on_values : off_values);
-		if (ret < 0) {
-			perror("Set line output failed\n");
-			goto release_line;
-		}
-		// printf("Output %u on line #%u\n", val, line_num);
-		usleep(100000);
-		val = !val;
-	}
-
-release_line:
-	gpiod_line_release_bulk(line);
-close_chip:
-	gpiod_chip_close(chip);
-end:
-	return 0;
-}
diff --git a/books/beaglebone-cookbook/02sensors/code/gpiod/toggle2.py b/books/beaglebone-cookbook/02sensors/code/gpiod/toggle2.py
deleted file mode 100755
index 1e7badc26164badc1a2a9c86bfc1dd91e447aa53..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/gpiod/toggle2.py
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/usr/bin/env python3
-# //////////////////////////////////////
-# 	toggle2.py
-#  Toggles P9_14 and P9_16 pins as fast as it can. 
-# 	P9_14 and P9_16 are both on chip 1 so they can be toggled together.
-# 	P9_14 is line 18 P9_16 is line 19.
-# 	Wiring:	Attach an oscilloscope to P9_14 and P9_16  to see the squarewave or 
-#          uncomment the sleep and attach an LED.
-# 	Setup:	sudo apt update; pip install gpiod
-# 	See:	https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/tree/bindings/python/examples
-# //////////////////////////////////////
-
-import gpiod
-import time
-
-LED_CHIP = 'gpiochip1'
-LED_LINE_OFFSET = [18, 19]  # P9_14 and P9_16
-
-chip = gpiod.Chip(LED_CHIP)
-
-lines = chip.get_lines(LED_LINE_OFFSET)
-lines.request(consumer='blink', type=gpiod.LINE_REQ_DIR_OUT)
-
-while True:
-    lines.set_values([0, 0])
-    time.sleep(0.1)
-    lines.set_values([1, 1])
-    time.sleep(0.1)
diff --git a/books/beaglebone-cookbook/02sensors/code/gpiod/toggleLED.c b/books/beaglebone-cookbook/02sensors/code/gpiod/toggleLED.c
deleted file mode 100644
index cc79b49ba5867ef6601bb4ef6775bc0d3dafb532..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/gpiod/toggleLED.c
+++ /dev/null
@@ -1,66 +0,0 @@
-// //////////////////////////////////////
-// 	toggle2.c
-//  Toggles P9_14 and P9_16 pins as fast as it can. 
-//	P9_14 and P9_16 are both on chip 1 so they can be toggled together.
-//	P9_14 is line 18 P9_16 is line 18.
-// 	Wiring:	Attach an oscilloscope to P9_14 and P9_16  to see the squarewave or 
-//          uncomment the usleep and attach an LED.
-// 	Setup:	sudo apt uupdate; sudo apt install libgpiod-dev
-// 	See:	https://github.com/starnight/libgpiod-example/blob/master/libgpiod-led/main.c
-// //////////////////////////////////////
-#include <gpiod.h>
-#include <stdio.h>
-#include <unistd.h>
-
-#define	CONSUMER	"Consumer"
-#define NUMLINES 4
-
-int main(int argc, char **argv)
-{
-	int chipnumber = 1;
-	unsigned int line_num[NUMLINES] = {21, 22, 23, 24};	// USR LEDS 1-4
-	unsigned int val;
-	struct gpiod_chip *chip;
-	struct gpiod_line_bulk line[NUMLINES];
-	int i, ret;
-
-	chip = gpiod_chip_open_by_number(chipnumber);
-	if (!chip) {
-		perror("Open chip failed\n");
-		goto end;
-	}
-
-	int err = gpiod_chip_get_lines(chip, line_num, NUMLINES, line);
-	if (err) {
-		perror("Get line failed\n");
-		goto close_chip;
-	}
-
-	int off_values[NUMLINES] = {0, 0, 0, 0};
-	int  on_values[NUMLINES] = {1, 1, 1 ,1} ;
-	ret = gpiod_line_request_bulk_output(line, CONSUMER, off_values);
-	if (ret < 0) {
-		perror("Request line as output failed\n");
-		goto release_line;
-	}
-
-	/* Blink */
-	val = 0;
-	while(1) {
-		ret = gpiod_line_set_value_bulk(line, val ? on_values : off_values);
-		if (ret < 0) {
-			perror("Set line output failed\n");
-			goto release_line;
-		}
-		// printf("Output %u on line #%u\n", val, line_num);
-		usleep(100000);
-		val = !val;
-	}
-
-release_line:
-	gpiod_line_release_bulk(line);
-close_chip:
-	gpiod_chip_close(chip);
-end:
-	return 0;
-}
diff --git a/books/beaglebone-cookbook/02sensors/code/gpiod/toggleLED.py b/books/beaglebone-cookbook/02sensors/code/gpiod/toggleLED.py
deleted file mode 100755
index ffca05a5d7129633a9a34b9a9b705d4dbb119827..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/gpiod/toggleLED.py
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/env python3
-# //////////////////////////////////////
-# 	toggleLED.py
-#   Toggles the four built in USR LEDs 
-# 	They are all on chip 1 so they can be toggled together.
-# 	Setup:	sudo apt uupdate; pip3 install gpiod
-# 	See:	https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/tree/bindings/python/examples
-# //////////////////////////////////////
-import gpiod
-import time
-
-LED_CHIP = 'gpiochip1'
-LED_LINE_OFFSET = [21, 22, 23, 24]  # USR LEDS 1-4
-
-chip = gpiod.Chip(LED_CHIP)
-
-lines = chip.get_lines(LED_LINE_OFFSET)
-lines.request(consumer='blink LEDs', type=gpiod.LINE_REQ_DIR_OUT)
-
-while True:
-    lines.set_values([0, 0, 0, 0])
-    time.sleep(0.25)
-    lines.set_values([1, 1, 1, 1])
-    time.sleep(0.25)
diff --git a/books/beaglebone-cookbook/02sensors/code/hc-sr04-ultraSonic.js b/books/beaglebone-cookbook/02sensors/code/hc-sr04-ultraSonic.js
deleted file mode 100755
index 8d1592e5a2c7905fa13333d9ad0e3b529e2f3fdd..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/hc-sr04-ultraSonic.js
+++ /dev/null
@@ -1,51 +0,0 @@
-#!/usr/bin/env node
-
-// This is an example of reading HC-SR04 Ultrasonic Range Finder
-// This version measures from the fall of the Trigger pulse 
-//   to the end of the Echo pulse
-
-var b = require('bonescript');
-
-var trigger = 'P9_16',  // Pin to trigger the ultrasonic pulse
-    echo    = 'P9_41',  // Pin to measure to pulse width related to the distance
-    ms = 250;           // Trigger period in ms
-    
-var startTime, pulseTime;
-    
-b.pinMode(echo,   b.INPUT, 7, 'pulldown', 'fast', doAttach);
-function doAttach(x) {
-    if(x.err) {
-        console.log('x.err = ' + x.err);
-        return;
-    }
-    // Call pingEnd when the pulse ends
-    b.attachInterrupt(echo, true, b.FALLING, pingEnd);
-}
-
-b.pinMode(trigger, b.OUTPUT);
-
-b.digitalWrite(trigger, 1);     // Unit triggers on a falling edge.
-                                // Set trigger to high so we call pull it low later
-
-// Pull the trigger low at a regular interval.
-setInterval(ping, ms);
-
-// Pull trigger low and start timing.
-function ping() {
-    // console.log('ping');
-    b.digitalWrite(trigger, 0);
-    startTime = process.hrtime();
-}
-
-// Compute the total time and get ready to trigger again.
-function pingEnd(x) {
-    if(x.attached) {
-        console.log("Interrupt handler attached");
-        return;
-    }
-    if(startTime) {
-        pulseTime = process.hrtime(startTime);
-        b.digitalWrite(trigger, 1);
-        console.log('pulseTime = ' + (pulseTime[1]/1000000-0.8).toFixed(3));
-    }
-}
diff --git a/books/beaglebone-cookbook/02sensors/code/i2c-scan.js b/books/beaglebone-cookbook/02sensors/code/i2c-scan.js
deleted file mode 100755
index 245a8386be63e6714db9c5232d42d69a9f44c88c..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/i2c-scan.js
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/usr/bin/env node
-// Not working as for 28-Mar-2014
-var b = require('bonescript');
-var port = '/dev/i2c-2'
-
-b.i2cOpen(port, null, {}, onI2C);
-
-function onI2C(x) {
-    console.log('onI2C: ' + JSON.stringify(x));
-    if (x.event == 'return') {
-        b.i2cScan(port, onScan);
-    }
-}
-
-function onScan(x) {
-    if (x.event == 'callback') {
-        console.log('scan data: ' + JSON.stringify(x));
-    }
-}
diff --git a/books/beaglebone-cookbook/02sensors/code/i2c-test.js b/books/beaglebone-cookbook/02sensors/code/i2c-test.js
deleted file mode 100755
index 183e1f5a5978cb0908385c629566390c4f0de7f1..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/i2c-test.js
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/usr/bin/env node
-# This uses the i2c method from npm what bonescript builds on
-var i2c = require('i2c');
-var address = 0x49;
-var wire = new i2c(address, {device: '/dev/i2c-1', debug: false}); // point to your i2c address, debug provides REPL interface
-
-wire.scan(function(err, data) {
-  // result contains an array of addresses
-  console.log(data);
-});
-
-// wire.writeByte(byte, function(err) {});
-
-// wire.writeBytes(command, [byte0, byte1], function(err) {});
-
-wire.readByte(function(err, res) { // result is single byte })
-  console.log(err);
-  console.log(res);
-});
-
-// wire.readBytes(command, length, function(err, res) {
-//   // result contains a buffer of bytes
-// });
-
-// wire.on('data', function(data) {
-//   // result for continuous stream contains data buffer, address, length, timestamp
-// });
-
-// wire.stream(command, length, delay); // continuous stream, delay in ms
diff --git a/books/beaglebone-cookbook/02sensors/code/i2cTemp.js b/books/beaglebone-cookbook/02sensors/code/i2cTemp.js
deleted file mode 100755
index 9839340c84fa64b9c7717074b0dc238fb7828163..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/i2cTemp.js
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/env node
-////////////////////////////////////////
-//	i2cTemp.js
-//      Read at TMP101 sensor on i2c bus 2, address 0x49
-//	Wiring:	Attach to i2c as shown in text.
-//	Setup:	echo tmp101 0x49 > /sys/class/i2c-adapter/i2c-2/new_device
-//	See:	
-////////////////////////////////////////
-const fs = require("fs");
-
-const ms = 1000;   // Read time in ms
-const bus = '2';
-const addr = '49';
-I2CPATH='/sys/class/i2c-adapter/i2c-'+bus+'/'+bus+'-00'+addr+'/hwmon/hwmon0';
-
-// Read every ms
-setInterval(readTMP, ms);
-
-function readTMP() {
-    var data = fs.readFileSync(I2CPATH+"/temp1_input").slice(0, -1);
-    console.log('data (C) = ' + data/1000);
- }
diff --git a/books/beaglebone-cookbook/02sensors/code/i2cTemp.py b/books/beaglebone-cookbook/02sensors/code/i2cTemp.py
deleted file mode 100755
index 2649262fbe7fff0942c442dc0bb58798a2015083..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/i2cTemp.py
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/env python
-# ////////////////////////////////////////
-# //	i2cTemp.py
-# //      Read a TMP101 sensor on i2c bus 2, address 0x49
-# //	Wiring:	Attach to i2c as shown in text.
-# //	Setup:	echo tmp101 0x49 > /sys/class/i2c-adapter/i2c-2/new_device
-# //	See:	
-# ////////////////////////////////////////
-import time
-
-ms = 1000   # Read time in ms
-bus = '2'
-addr = '49'
-I2CPATH='/sys/class/i2c-adapter/i2c-'+bus+'/'+bus+'-00'+addr+'/hwmon/hwmon0';
-
-f = open(I2CPATH+"/temp1_input", "r")
-
-while True:
-    f.seek(0)
-    data = f.read()[:-1]    # returns mili-degrees C
-    print("data (C) = " + str(int(data)/1000))
-    time.sleep(ms/1000)
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/02sensors/code/i2ctmp101.py b/books/beaglebone-cookbook/02sensors/code/i2ctmp101.py
deleted file mode 100755
index 21b29fceb6c70f0935b9401376a9f78afa838c48..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/i2ctmp101.py
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/usr/bin/env python
-# ////////////////////////////////////////
-# //	i2ctmp101.py
-# //      Read at TMP101 sensor on i2c bus 2, address 0x49
-# //	Wiring:	Attach to i2c as shown in text.
-# //	Setup:	pip install smbus
-# //	See:	
-# ////////////////////////////////////////
-import smbus
-import time
-
-ms = 1000               # Read time in ms
-bus = smbus.SMBus(2)    # Using i2c bus 2
-addr = 0x49             # TMP101 is at address 0x49
-
-while True:
-    data = bus.read_byte_data(addr, 0)
-    print("temp (C) = " + str(data))
-    time.sleep(ms/1000)
diff --git a/books/beaglebone-cookbook/02sensors/code/pushbutton.js b/books/beaglebone-cookbook/02sensors/code/pushbutton.js
deleted file mode 100755
index 4c852c27680d956c93fe19add576a9ad7321be85..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/pushbutton.js
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/usr/bin/env node
-////////////////////////////////////////
-//	pushbutton.js
-//      Reads P9_42 and prints its value.
-//	Wiring:	Connect a switch between P9_42 and 3.3V
-//	Setup:	
-//	See:	
-////////////////////////////////////////
-const fs = require("fs");
-
-const ms = 500   // Read time in ms
-const pin = '7'; // P9_42 is gpio 7
-const GPIOPATH="/sys/class/gpio/";
-
-// Make sure pin is exported
-if(!fs.existsSync(GPIOPATH+"gpio"+pin)) {
-    fs.writeFileSync(GPIOPATH+"export", pin);
-}
-// Make it an input pin
-fs.writeFileSync(GPIOPATH+"gpio"+pin+"/direction", "in");
-
-// Read every ms
-setInterval(readPin, ms);
-
-function readPin() {
-    var data = fs.readFileSync(GPIOPATH+"gpio"+pin+"/value").slice(0, -1);
-    console.log('data = ' + data);
- }
diff --git a/books/beaglebone-cookbook/02sensors/code/pushbutton.py b/books/beaglebone-cookbook/02sensors/code/pushbutton.py
deleted file mode 100755
index 2bb133858d5ef8d15f58e002048af10b4a154ab1..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/pushbutton.py
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/usr/bin/env python
-# ////////////////////////////////////////
-# //	pushbutton.py
-# //      Reads P9_42 and prints its value.
-# //	Wiring:	Connect a switch between P9_42 and 3.3V
-# //	Setup:	
-# //	See:	
-# ////////////////////////////////////////
-import time
-import os
-
-ms = 500    # Read time in ms
-pin = '7' #  P9_42 is gpio 7
-GPIOPATH="/sys/class/gpio"
-
-# Make sure pin is exported
-if (not os.path.exists(GPIOPATH+"/gpio"+pin)):
-    f = open(GPIOPATH+"/export", "w")
-    f.write(pin)
-    f.close()
-
-# Make it an input pin
-f = open(GPIOPATH+"/gpio"+pin+"/direction", "w")
-f.write("in")
-f.close()
-
-f = open(GPIOPATH+"/gpio"+pin+"/value", "r")
-
-while True:
-    f.seek(0)
-    data = f.read()[:-1]
-    print("data = " + data)
-    time.sleep(ms/1000)
diff --git a/books/beaglebone-cookbook/02sensors/code/pushbutton2.js b/books/beaglebone-cookbook/02sensors/code/pushbutton2.js
deleted file mode 100755
index f54307a594701eb709edaa80581c33ee4380f2f8..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/pushbutton2.js
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/usr/bin/env node
-var b = require('bonescript');
-var button = 'P9_42';
-var state;      // State of pushbutton
-
-b.pinMode(button, b.INPUT, 7, 'pulldown');
-
-state = b.digitalRead(button);
-console.log('button state = ' + state);
-
diff --git a/books/beaglebone-cookbook/02sensors/code/pushbuttonPullup.js b/books/beaglebone-cookbook/02sensors/code/pushbuttonPullup.js
deleted file mode 100755
index bee1ce82391cd73156f19d1122e1245f412b86a6..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/pushbuttonPullup.js
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/usr/bin/env node
-var b = require('bonescript');
-var buttonTop = 'P9_26';
-
-b.pinMode(buttonTop, b.INPUT, 7, 'pullup', 'fast', doAttachTop);
-
-function doAttachTop(x) {
-    if(x.err) {
-        console.log('x.err = ' + x.err);
-        return;
-    }
-    b.attachInterrupt(buttonTop, true, b.CHANGE, printStatus);
-}
-
-var buttonBot = 'P9_42';
-b.pinMode(buttonBot, b.INPUT, 7, 'pulldown', 'fast', doAttachBot);
-
-function doAttachBot(x) {
-    if(x.err) {
-        console.log('x.err = ' + x.err);
-        return;
-    }
-    b.attachInterrupt(buttonBot, true, b.CHANGE, printStatus);
-}
-
-function printStatus(x) {
-    if(x.attached) {
-        console.log("Interrupt handler attached");
-        return;
-    }
-
-    console.log('x.value = ' + x.value);
-    console.log('x.err   = ' + x.err);
-}
diff --git a/books/beaglebone-cookbook/02sensors/code/pushbutton_digitalRead.js b/books/beaglebone-cookbook/02sensors/code/pushbutton_digitalRead.js
deleted file mode 100755
index 59f1f14df2c652f8b62c6721b9ab2b1a6eb2a4c5..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/pushbutton_digitalRead.js
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/usr/bin/env node
-var b = require('bonescript');
-var button = 'P9_42';
-
-b.pinMode(button, b.INPUT, 7, 'pulldown');
-b.digitalRead(button, printStatus);
-
-function printStatus(x) {
-    console.log('x.value = ' + x.value);
-    console.log('x.err   = ' + x.err);
-}
diff --git a/books/beaglebone-cookbook/02sensors/code/rotaryEncoder.js b/books/beaglebone-cookbook/02sensors/code/rotaryEncoder.js
deleted file mode 100755
index 3390a817d41ff4f12a182ca5aaf326f3b11f11fd..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/rotaryEncoder.js
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/usr/bin/env node
-// This uses the eQEP hardware to read a rotary encoder
-// bone$ config-pin P8_11 eqep
-// bone$ config-pin P8_12 eqep
-const fs = require("fs");
-    
-const eQEP = "2";
-const COUNTERPATH = '/dev/bone/counter/counter'+eQEP+'/count0';
-	
-const ms = 100; 	// Time between samples in ms
-const maxCount = '1000000';
-
-// Set the eEQP maximum count
-fs.writeFileSync(COUNTERPATH+'/ceiling', maxCount);
-
-// Enable
-fs.writeFileSync(COUNTERPATH+'/enable', '1');
-
-setInterval(readEncoder, ms);    // Check state every ms
-
-var olddata = -1;
-function readEncoder() {
-	var data = parseInt(fs.readFileSync(COUNTERPATH+'/count'));
-	if(data != olddata) {
-		// Print only if data changes
-		console.log('data = ' + data);
-		olddata = data;
-	} 
-}
-
-// Black OR Pocket
-// eQEP0:	P9.27 and P9.42 OR P1_33 and P2_34
-// eQEP1:	P9.33 and P9.35
-// eQEP2:	P8.11 and P8.12 OR P2_24 and P2_33
-
-// AI
-// eQEP1:	P8.33 and P8.35
-// eQEP2:	P8.11 and P8.12 or P9.19 and P9.41
-// eQEP3:	P8.24 abd P8.25 or P9.27 and P9.42
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/02sensors/code/rotaryEncoder.py b/books/beaglebone-cookbook/02sensors/code/rotaryEncoder.py
deleted file mode 100755
index 04eb3735f2b02769cc526d562bbb725f0dced64a..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/rotaryEncoder.py
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/usr/bin/env python
-# // This uses the eQEP hardware to read a rotary encoder
-# // bone$ config-pin P8_11 eqep
-# // bone$ config-pin P8_12 eqep
-import time
-    
-eQEP = '2'
-COUNTERPATH = '/dev/bone/counter/counter'+eQEP+'/count0'
-	
-ms = 100 	# Time between samples in ms
-maxCount = '1000000'
-
-# Set the eEQP maximum count
-f = open(COUNTERPATH+'/ceiling', 'w')
-f.write(maxCount)
-f.close()
-
-# Enable
-f = open(COUNTERPATH+'/enable', 'w')
-f.write('1')
-f.close()
-
-f = open(COUNTERPATH+'/count', 'r')
-
-olddata = -1
-while True:
-	f.seek(0)
-	data = f.read()[:-1]
-	# Print only if data changes
-	if data != olddata:
-		olddata = data
-		print("data = " + data)
-	time.sleep(ms/1000)
-
-# Black OR Pocket
-# eQEP0:	P9.27 and P9.42 OR P1_33 and P2_34
-# eQEP1:	P9.33 and P9.35
-# eQEP2:	P8.11 and P8.12 OR P2_24 and P2_33
-
-# AI
-# eQEP1:	P8.33 and P8.35
-# eQEP2:	P8.11 and P8.12 or P9.19 and P9.41
-# eQEP3:	P8.24 abd P8.25 or P9.27 and P9.42
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/02sensors/code/sensorTag.js b/books/beaglebone-cookbook/02sensors/code/sensorTag.js
deleted file mode 100755
index 9b3eed155098927949592b29e2852712bc65af03..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/sensorTag.js
+++ /dev/null
@@ -1,103 +0,0 @@
-#!/usr/bin/env node
-// From: https://github.com/sandeepmistry/node-sensortag
-
-// Reads temperature
-
-var util = require('util');             // <1>
-var async = require('async');
-var SensorTag = require('sensortag');
-var fs = require('fs');
-
-console.log("Be sure sensorTag is on");
-
-SensorTag.discover(function(sensorTag) {  // <2>
-  console.log('sensorTag = ' + sensorTag);
-  sensorTag.on('disconnect', function() {   // <3>
-    console.log('disconnected!');
-    process.exit(0);
-  });
-
-  async.series([                            // <4>
-      function(callback) {
-        console.log('connect');             // <5>
-        sensorTag.connect(callback);
-      },
-      function(callback) {                  // <6>
-        console.log('discoverServicesAndCharacteristics');
-        sensorTag.discoverServicesAndCharacteristics(callback);
-      },
-      function(callback) {
-        console.log('enableIrTemperature'); // <7>
-        sensorTag.enableIrTemperature(callback);
-      },
-      function(callback) {
-        setTimeout(callback, 100);          // <8>
-      },
-      function(callback) {
-        console.log('readIrTemperature');   // <9>
-        sensorTag.readIrTemperature(
-          function(objectTemperature, ambientTemperature) {
-            console.log('\tobject  temperature = %d °C', 
-                objectTemperature.toFixed(1));
-            console.log('\tambient temperature = %d °C', 
-                ambientTemperature.toFixed(1));
-            callback();
-        });
-
-        sensorTag.on('irTemperatureChange', // <10>
-          function(objectTemperature, ambientTemperature) {
-            console.log('\tobject  temperature = %d °C', 
-                objectTemperature.toFixed(1));
-            console.log('\tambient temperature = %d °C\n', 
-                ambientTemperature.toFixed(1));
-          });
-
-        sensorTag.notifyIrTemperature(function() {
-          console.log('notifyIrTemperature');
-        });
-      },
-      // function(callback) {
-      //   console.log('disableIrTemperature'); // <11>
-      //   sensorTag.disableIrTemperature(callback);
-      // },
-      
-      function(callback) {
-        console.log('readSimpleRead');          // <12> 
-        sensorTag.on('simpleKeyChange', function(left, right) {
-          console.log('left: ' + left + ' right: ' + right);
-          if (left && right) {
-            sensorTag.notifySimpleKey(callback); // <13>
-          }
-        });
-
-        sensorTag.notifySimpleKey(function() {  // <14>
-        });
-      },
-      function(callback) {
-        console.log('disconnect');
-        sensorTag.disconnect(callback);         // <15>
-      }
-    ]
-  );
-});
-
-// The MIT License (MIT)
-
-// Copyright (c) 2013 Sandeep Mistry
-
-// 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.
diff --git a/books/beaglebone-cookbook/02sensors/code/stop.js b/books/beaglebone-cookbook/02sensors/code/stop.js
deleted file mode 100755
index 0c3ec1b622d17e45abf9aedbd8734ecf70093872..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/stop.js
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/usr/bin/env node
-// Used for turning everything off.
-var b = require('bonescript');
-var gpio = ['P9_11', 'P9_13', 'P9_15', 'P9_16', 'P9_21'];
-var i;
-
-for(i=0; i<gpio.length; i++) {
-    b.pinMode(gpio[i], b.OUTPUT);
-    b.digitalWrite(gpio[i], b.LOW);
-}
diff --git a/books/beaglebone-cookbook/02sensors/code/testHC-SR04.js b/books/beaglebone-cookbook/02sensors/code/testHC-SR04.js
deleted file mode 100755
index 452fd8afb66386b5e817b0517dff710173a201e8..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/testHC-SR04.js
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/usr/bin/env node
-
-// This is an example of reading HC-SR04 Ultrasonic Range Finder
-
-var b = require('bonescript');
-
-var motor = 'P9_16',// Pin to drive transistor
-    range = 'P9_41',
-    min = 0.05,     // Slowest speed (duty cycle)
-    max = 1,        // Fastest (always on)
-    ms = 100,       // How often to change speed, in ms
-    width  = 10,   // Pulse width in us
-    freq   = 100,     // Frequency in Hz
-    step = 0.05;    // Change in speed
-
-b.pinMode(range, b.INPUT);      // Make sure there is on pull-up/down
-b.pinMode(motor, b.ANALOG_OUTPUT);
-var dutyCycle = width/1000000*freq;
-b.analogWrite(motor, dutyCycle, freq);
-
-
-// var timer = setInterval(sweep, ms);
-
-// function sweep() {
-//     speed += step;
-//     if(speed > max || speed < min) {
-//         step *= -1;
-//     }
-//     b.analogWrite(motor, speed);
-//     console.log('speed = ' + speed);
-// }
-
-process.on('SIGINT', function() {
-    console.log('Got SIGINT, turning motor off');
-    clearInterval(timer);       // Stop the timer
-    b.analogWrite(motor, 0);    // Turn motor off
-});
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/02sensors/code/ultrasonicRange.js b/books/beaglebone-cookbook/02sensors/code/ultrasonicRange.js
deleted file mode 100755
index 0d00de89a29e80613085e4a135da7a5b973c7cda..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/ultrasonicRange.js
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/usr/bin/env node
-//////////////////////////////////////
-//	ultrasonicRange.js
-// 	Reads the analog value of the sensor.
-//////////////////////////////////////
-const fs = require("fs");
-const ms = 250;  // Time in milliseconds
-
-const pin = "0";        // sensor, A0, P9_39
-
-const IIOPATH='/sys/bus/iio/devices/iio:device0/in_voltage'+pin+'_raw';
-
-console.log('Hit ^C to stop');
-
-// Read every ms
-setInterval(readPin, ms);
-
-function readPin() {
-    var data = fs.readFileSync(IIOPATH);
-    console.log('data= ' + data);
- }
-// Bone  | Pocket | AIN
-// ----- | ------ | --- 
-// P9_39 | P1_19  | 0
-// P9_40 | P1_21  | 1
-// P9_37 | P1_23  | 2
-// P9_38 | P1_25  | 3
-// P9_33 | P1_27  | 4
-// P9_36 | P2_35  | 5
-// P9_35 | P1_02  | 6
diff --git a/books/beaglebone-cookbook/02sensors/code/ultrasonicRange.py b/books/beaglebone-cookbook/02sensors/code/ultrasonicRange.py
deleted file mode 100755
index d02bf7511d8be90833b7b26c94d176496cfe6685..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/ultrasonicRange.py
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/usr/bin/env python
-# //////////////////////////////////////
-# //	ultrasonicRange.js
-# // 	Reads the analog value of the sensor.
-# //////////////////////////////////////
-import time
-ms = 250;  # Time in milliseconds
-
-pin = "0"        # sensor, A0, P9_39
-
-IIOPATH='/sys/bus/iio/devices/iio:device0/in_voltage'+pin+'_raw'
-
-print('Hit ^C to stop');
-
-f = open(IIOPATH, "r")
-while True:
-    f.seek(0)
-    data = f.read()[:-1]
-    print('data= ' + data)
-    time.sleep(ms/1000)
-
-# // Bone  | Pocket | AIN
-# // ----- | ------ | --- 
-# // P9_39 | P1_19  | 0
-# // P9_40 | P1_21  | 1
-# // P9_37 | P1_23  | 2
-# // P9_38 | P1_25  | 3
-# // P9_33 | P1_27  | 4
-# // P9_36 | P2_35  | 5
-# // P9_35 | P1_02  | 6
diff --git a/books/beaglebone-cookbook/02sensors/code/w1.js b/books/beaglebone-cookbook/02sensors/code/w1.js
deleted file mode 100755
index 187023af3c0430a2d825be6193cfce0fc58f06a7..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/w1.js
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/usr/bin/env node
-////////////////////////////////////////
-//	w1.js
-//      Read a Dallas 1-wire device on P9_12
-//	Wiring:	Attach gnd and 3.3V and data to P9_12
-//	Setup:	Edit /boot/uEnv.txt to include:
-//              uboot_overlay_addr4=BB-W1-P9.12-00A0.dtbo
-//	See:	
-////////////////////////////////////////
-const fs = require("fs");
-
-const ms = 500   // Read time in ms
-// Do ls /sys/bus/w1/devices and find the address of your device
-const addr = '28-00000d459c2c'; // Must be changed for your device.
-const W1PATH ='/sys/bus/w1/devices/' + addr;
-
-// Read every ms
-setInterval(readW1, ms);
-
-function readW1() {
-    var data = fs.readFileSync(W1PATH+'/temperature').slice(0, -1);
-    console.log('temp (C) = ' + data/1000);
- }
diff --git a/books/beaglebone-cookbook/02sensors/code/w1.py b/books/beaglebone-cookbook/02sensors/code/w1.py
deleted file mode 100755
index 8a0a62f6deae22059e26f9770dce3dd6348bb794..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/02sensors/code/w1.py
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/usr/bin/env python
-# ////////////////////////////////////////
-# //	w1.js
-# //      Read a Dallas 1-wire device on P9_12
-# //	Wiring:	Attach gnd and 3.3V and data to P9_12
-# //	Setup:	Edit /boot/uEnv.txt to include:
-# //              uboot_overlay_addr4=BB-W1-P9.12-00A0.dtbo
-# //	See:	
-# ////////////////////////////////////////
-import time
-
-ms = 500   # Read time in ms
-#  Do ls /sys/bus/w1/devices and find the address of your device
-addr = '28-00000d459c2c' # Must be changed for your device.
-W1PATH ='/sys/bus/w1/devices/' + addr
-
-f = open(W1PATH+'/temperature')
-
-while True:
-    f.seek(0)
-    data = f.read()[:-1]
-    print("temp (C) = " + str(int(data)/1000))
-    time.sleep(ms/1000)
diff --git a/books/beaglebone-cookbook/02sensors/sensors.rst b/books/beaglebone-cookbook/02sensors/sensors.rst
index 1a92078cb45a0772206330d45cb921ecff2c2ca5..d5e6400db18980febaa6fb0b9149e99b1ebd56aa 100644
--- a/books/beaglebone-cookbook/02sensors/sensors.rst
+++ b/books/beaglebone-cookbook/02sensors/sensors.rst
@@ -3,28 +3,26 @@
 Sensors
 ########
 
-Introduction
-=============
-
 In this chapter, you will learn how to sense the physical world with BeagleBone Black. 
 Various types of electronic sensors, such as cameras and microphones, can be connected 
 to the Bone using one or more interfaces provided by the standard USB 2.0 host port, 
-as shown in :ref:`sensor host port <sensors_host_port>`.
+as shown in :ref:`sensors_host_port`.
 
 .. note::
+  
    All the examples in the book assume you have cloned the Cookbook 
-   repository on www.github.com. Go here :ref:`basic repo <basics_repo>` for instructions.
+   repository on www.github.com. Go here :ref:`basics_repo` for instructions.
 
 .. _sensors_host_port:
 
-The USB 2.0 host port
-
 .. figure:: figures/black_hardware_details.png
    :align: center
    :alt: USB Host Port
 
-The two 46-pin cape headers (called +P8+ and +P9+) along the long edges of the 
-board (:ref:`sensors P8 & P9 <sensors_P8P9_fig>`) provide connections for 
+   The USB 2.0 host port
+
+The two 46-pin cape headers (called *P8* and *P9*) along the long 
+edges of the board (:ref:`sensors_P8P9_fig`) provide connections for 
 cape add-on boards, digital and analog sensors, and more.
 
 .. _sensors_P8P9_fig:
@@ -38,92 +36,89 @@ cape add-on boards, digital and analog sensors, and more.
 The simplest kind of sensor provides a single digital status, such as off or on, 
 and can be handled by an *input mode* of one of the Bone's 65 general-purpose input/output 
 (GPIO) pins. More complex sensors can be connected by using one of the Bone's seven 
-analog-to-digital converter (ADC) inputs or several I^2^C buses. 
+analog-to-digital converter (ADC) inputs or several |I2C| buses. 
 
-:ref:`display <displays>` discusses some of the *output mode* usages of the GPIO pins.
+:ref:`beaglebone-cookbook-displays` discusses some of the *output mode* usages of the GPIO pins.
 
-All these examples assume that you know how to edit a file (:ref:`basic vsc <basics_vsc>`) and run 
+All these examples assume that you know how to edit a file (:ref:`basics_vsc`) and run 
 it, either within the Visual Studio Code (VSC) integrated development environment (IDE) or from 
-the command line (:ref:`shell tips <tips_shell>`).
+the command line (:ref:`tips_shell`).
 
 Choosing a Method to Connect Your Sensor
-----------------------------------------
+=========================================
 
 Problem
-********
+-------
 
 You want to acquire and attach a sensor and need to understand your basic options.
 
 Solution
-*********
+--------
 
-:ref:`sensor cape headers<sensors_cape_headers>` 
-shows many of the possibilities for connecting a sensor.
+:ref:`sensors_cape_headers` shows many of the possibilities for connecting a sensor.
 
 .. _sensors_cape_headers:
 
 .. figure:: figures/cape-headers.png
    :align: center
-   :alt: Some of the many sensor connection options on the Bone
-
-   Sensor Connection Modes
+   :alt: Sensor Connection Modes
+   
+   Some of the many sensor connection options on the Bone
 
 Choosing the simplest solution available enables you to move on quickly to 
 addressing other system aspects. By exploring each connection type, you can 
 make more informed decisions as you seek to optimize and troubleshoot your design.
 
-Discussion
-***********
-
 .. _sensors_getting_started:
 
 Input and Run a Python or JavaScript Application for Talking to Sensors
-------------------------------------------------------------------------
+=========================================================================
 
 Problem
-*********
+--------
 
 You have your sensors all wired up and your Bone booted up, and you need to know how to enter and run your code.
 
 Solution
-*********
+--------
 
 You are just a few simple steps from running any of the recipes in this book.
 
-- Plug your Bone into a host computer via the USB cable (:ref:`basic out of the box<basics_out_of_the_box>`).
-- Start Visual Studio Code (:ref:`basic vsc <basics_vsc>`).
-- In the +bash+ tab (as shown in :ref:`sensors vsc bash <sensors_vsc_bash>`), run the following commands:
+- Plug your Bone into a host computer via the USB cable (:ref:`basics_out_of_the_box`).
+- Start Visual Studio Code (:ref:`basics_vsc`).
+- In the *bash* tab (as shown in :ref:`sensors_vsc_bash`), run the following commands:
 
 .. code-block:: bash
 
   bone$ cd
-
-  bone$ cd BoneCookbook/docs/02sensors/code
+  bone$ cd beaglebone-cookbook-code/02sensors
 
 .. _sensors_vsc_bash:
 
 .. figure:: figures/vsc-bash-tab.png
    :align: center
-   :alt: Entering commands in the VSC bash tab
+   :alt: VSC bash tab
    
-   VSC bash tab
+   Entering commands in the VSC bash tab
 
-Here, we issued the *change directory* (+cd+) command without specifying a target directory. 
+Here, we issued the *change directory* (*cd*) command without specifying a target directory. 
 By default, it takes you to your home directory. Notice that the prompt has changed to reflect the change. 
 
 .. note:: 
-  If you log in as +debian+, your home is */home/debian*. If you were to create a new user 
+
+  If you log in as *debian*, your home is */home/debian*. If you were to create a new user 
   called *newuser*, that user's home would be */home/newuser*. By default, all non-root 
   (non-superuser) users have their home directories in */home*.
 
 .. note::
+
    All the examples in the book assume you have cloned the 
    Cookbook repository on www.github.com. Go here 
-   :ref:`basic repo <basics_repo>` for instructions.
+   :ref:`basics_repo` for instructions.
 
 - Double-click the *pushbutton.py* file to open it.
 - Press ^S (Ctrl-S) to save the file. (You can also go to the File menu in VSC and select Save to save the file, but Ctrl-S is easier.) Even easier, VSC can be configured to autosave every so many seconds.
-- In the +bash+ tab, enter the following commands:
+- In the *bash* tab, enter the following commands:
 
 .. code-block::
 
@@ -136,63 +131,58 @@ By default, it takes you to your home directory. Notice that the prompt has chan
 
 This process will work for any script in this book.
 
-Discussion
-***********
-
 .. _sensors_pushbutton:
 
 Reading the Status of a Pushbutton or Magnetic Switch (Passive On/Off Sensor)
-------------------------------------------------------------------------------
+==============================================================================
 
 Problem
-********
+--------
 
 You want to read a pushbutton, a magnetic switch, or other sensor that is electrically open or closed.
 
 Solution
-*********
+---------
 
 Connect the switch to a GPIO pin and read from the proper place in */sys/class/gpio*.
 
 To make this recipe, you will need:
 
-* Breadboard and jumper wires (see :ref:`app proto <app_proto>`)
-* Pushbutton switch (see :ref:`app misc <app_misc>`)
-* Magnetic reed switch (optional, see :ref:`<app misc app_misc>`)
+* Breadboard and jumper wires.
+* Pushbutton switch.
+* Magnetic reed switch.
 
 You can wire up either a pushbutton, a magnetic reed switch, 
-or both on the Bone, as shown in :ref:`figure below <js_pushbutton_fig>`.
+or both on the Bone, as shown in :ref:`js_pushbutton_fig`.
 
 .. _js_pushbutton_fig:
 
 .. figure:: figures/pushbutton_bb.png
    :align: center
-   :alt: Diagram for wiring a pushbutton and magnetic reed switch input
+   :alt: Bone with pushbutton
    
-   Bone with pushbutton
+   Diagram for wiring a pushbutton and magnetic reed switch input
 
-The code in :ref:`js pushbutton code<js_pushbutton_code>` 
+The code in :ref:`js_pushbutton_code` 
 reads GPIO port *P9_42*, which is attached to the pushbutton. 
 
 .. _py_pushbutton_code:
 
-Monitoring a pushbutton (pushbutton.py)
-
-.. code-block:: python
-
-  include::code/pushbutton.py
+.. literalinclude:: ../code/02sensors/pushbutton.py
+   :caption: Monitoring a pushbutton (pushbutton.py)
+   :linenos:
 
+:download:`pushbutton.py <../code/02sensors/pushbutton.py>`
 
 .. _js_pushbutton_code:
 
-Monitoring a pushbutton (pushbutton.js)
-
-.. code-block:: javascript
+.. literalinclude:: ../code/02sensors/pushbutton.js
+   :caption: Monitoring a pushbutton (pushbutton.js)
+   :linenos:
 
-  include::code/pushbutton.js
+:download:`pushbutton.js <../code/02sensors/pushbutton.js>`
 
-Put this code in a file called *pushbutton.js* following the steps in 
-:ref:`sensor getting started <sensors_getting_started>`. 
+Put this code in a file called *pushbutton.js* following the steps in :ref:`sensors_getting_started`. 
 In the VSC *bash* tab, run it by using the following commands:
 
 .. code-block:: bash
@@ -208,23 +198,21 @@ The command runs it. Try pushing the button. The code reads the pin and prints i
 
 You will have to press ^C (Ctrl-C) to stop the code.
 
-If you want to use the magnetic reed switch wired as shown in :ref:`javascript pushbutton <js_pushbutton_fig>`, change +P9_42+ to +P9_26+ which is gpio +14+. 
-
-Discussion
-***********
+If you want to use the magnetic reed switch wired as shown in 
+:ref:`js_pushbutton_fig`, change *P9_42* to *P9_26* which is gpio *14*. 
 
 Mapping Header Numbers to gpio Numbers
----------------------------------------
+=======================================
 
 Problem
-********
+--------
 
 You have a sensor attached to the P8 or P9 header and need to know which gpio pin it's using.
 
 Solution
-**********
+---------
 
-The +gpioinfo+ command displays information about all the P8 and P9 header pins.  To see the info for just one pin, use +grep+.
+The *gpioinfo* command displays information about all the P8 and P9 header pins. To see the info for just one pin, use *grep*.
 
 .. code-block:: bash
 
@@ -252,43 +240,43 @@ For P9_26 you get:
 0*32+14=14, so the P9_26 pin is gpio 14.
 
 Reading a Position, Light, or Force Sensor (Variable Resistance Sensor)
--------------------------------------------------------------------------
+========================================================================
 
 Problem
-*********
+--------
 
 You have a variable resistor, force-sensitive resistor, flex sensor, or any of a 
 number of other sensors that output their value as a variable resistance, 
 and you want to read their value with the Bone.
 
 Solution
-*********
+--------
 
 Use the Bone's analog-to-digital converters (ADCs) and a resistor 
 divider circuit to detect the resistance in the sensor.
 
 The Bone has seven built-in analog inputs that can easily read a 
-resistive value. :ref:`cape header analog sensors <sensors_cape_headers_analog>` shows them 
-on the lower part of the +P9+ header.
+resistive value. :ref:`sensors_cape_headers_analog` shows them 
+on the lower part of the *P9* header.
 
 .. _sensors_cape_headers_analog:
 
 .. figure:: figures/cape-headers-analog.png
    :align: center
-   :alt: Seven analog inputs on the +P9+ header
+   :alt: Seven analog inputs on the *P9* header
    
    Seven analog inputs on P9 header
 
 To make this recipe, you will need:
 
-- Breadboard and jumper wires (see :ref:`app proto <app_proto>`)
-- 10 k&#8486; trimpot (see :ref:`app resistor <app_resistor>`) or
-- Flex resistor (optional, see :ref:`app resistor <app_resistor>`)
-- 22 k&#8486; resistor (see :ref:`app resistor<app_resistor>`)
+- Breadboard and jumper wires.
+- 10k trimpot or
+- Flex resistor (optional)
+- 22k resistor
 
 A variable resistor with three terminals
 
-:ref:`sensor analogIn<sensors_analogIn_fig>` shows a simple variable resistor (trimpot) 
+:ref:`sensors_analogIn_fig` shows a simple variable resistor (trimpot) 
 wired to the Bone. One end terminal is wired to the ADC 1.8 V power supply on pin *P9_32*, 
 and the other end terminal is attached to the ADC ground (*P9_34*). The middle terminal 
 is wired to one of the seven analog-in ports (*P9_36*).
@@ -297,78 +285,75 @@ is wired to one of the seven analog-in ports (*P9_36*).
 
 .. figure:: figures/analogIn_bb.png
    :align: center
-   :alt: Wiring a 10k variable resistor (trimpot) to an ADC port
+   :alt: Analog
 
    Wiring a 10k variable resistor (trimpot) to an ADC port
 
-:ref:`sensor analogIn code <sensors_analogIn_code>` shows the BoneScript code used to read the variable resistor.  
+:ref:`sensors_analogIn_code` shows the BoneScript code used to read the variable resistor.  
 Add the code to a file called _analogIn.js_ and run it; then change the resistor and run it again. The voltage read will change.
 
 .. _py_analogIn_code:
 
-Reading an analog voltage (analogIn.py)
+.. literalinclude:: ../code/02sensors/analogIn.py
+   :caption: Reading an analog voltage (analogIn.py)
+   :linenos:
 
-.. code-block:: python
-
-  include::code/analogIn.py
+:download:`analogIn.py <../code/02sensors/analogIn.py>`
 
 .. _sensors_analogIn_code:
 
-Reading an analog voltage (analogIn.js)
-
-.. code-block:: javascript
+.. literalinclude:: ../code/02sensors/analogIn.js
+   :caption: Reading an analog voltage (analogIn.js)
+   :linenos:
 
-  include::code/analogIn.js[]
+:download:`analogIn.js <../code/02sensors/analogIn.js>`
 
 .. note::
-  The code in :ref:`sensor analogIn code<sensors_analogIn_code>` 
+
+  The code in :ref:`sensors_analogIn_code` 
   outputs a value between 0 and 4096.
 
 A variable resistor with two terminals
 
-Some resistive sensors have only two terminals, such as the flex sensor in 
-:ref:`sensor flex resistor<sensors_flexResistor_fig>`
+Some resistive sensors have only two terminals, such as the flex sensor in :ref:`sensors_flexResistor_fig`
 The resistance between its two terminals changes when it is flexed.
-In this case, we need to add a fixed resistor in series with the flex sensor. 
-:ref:`sensor flex resistor <sensors_flexResistor_fig>` 
-shows how to wire in a 22 k&#8486; resistor to give a voltage to measure
+In this case, we need to add a fixed resistor in series with the flex sensor. :ref:`sensors_flexResistor_fig` 
+shows how to wire in a 22k resistor to give a voltage to measure
 across the flex sensor.
 
 .. _sensors_flexResistor_fig:
 
 .. figure:: figures/flexResistor_bb.png
    :align: center
-   :alt: Reading a two-terminal flex resistor
+   :alt: Flex Resistor
    
-   Flex Resistor
-
-The code in :ref:`py analogIn code <py_analogIn_code>` and 
-:ref:`sensors analogIn code <sensors_analogIn_code>` also works for this setup.
+   Reading a two-terminal flex resistor
 
-Discussion
-************
+The code in :ref:`py_analogIn_code` and 
+:ref:`sensors_analogIn_code` also works for this setup.
 
 Reading a Distance Sensor (Analog or Variable Voltage Sensor)
---------------------------------------------------------------
+=============================================================
 
 Problem
-********
+--------
 
 You want to measure distance with a `LV-MaxSonar-EZ1 Sonar Range Finder <http://bit.ly/1Mt5Elr>`_, 
 which outputs a voltage in proportion to the distance.
 
 Solution
-*********
+--------
 
 To make this recipe, you will need:
 
-* Breadboard and jumper wires (see :ref:`app proto <app_proto>`)
-* LV-MaxSonar-EZ1 Sonar Range Finder (see :ref:`app musc <app_misc>`)
+* Breadboard and jumper wires.
+* LV-MaxSonar-EZ1 Sonar Range Finder
 
 All you have to do is wire the EZ1 to one of the Bone's *analog-in* pins, 
-as shown in `this figure<sensors_ultrasonic_fig>`. The device outputs ~6.4 mV/in when powered from 3.3 V.
+as shown in :ref:`sensors_ultrasonic_fig`. The device outputs ~6.4 mV/in when powered from 3.3 V.
+
+.. WARNING::
 
-.. _WARNING: 
    Make sure not to apply more than 1.8 V to the Bone's *analog-in* 
    pins, or you will likely damage them. In practice, this circuit should follow that rule.
 
@@ -376,47 +361,44 @@ as shown in `this figure<sensors_ultrasonic_fig>`. The device outputs ~6.4 mV/in
 
 .. figure:: figures/ultrasonicRange_bb.png
    :align: center
-   :alt: Wiring the LV-MaxSonar-EZ1 Sonar Range Finder to the *P9_33* analog-in port
+   :alt: Analog
 
    Wiring the LV-MaxSonar-EZ1 Sonar Range Finder to the *P9_33* analog-in port
 
-:ref:`Ultrasonic sensor range code <sensors_ultrasonicRange_code>` 
+:ref:`sensors_ultrasonicRange_code` 
 shows the code that reads the sensor at a fixed interval.
 
 .. _py_ultrasonicRange_code:
 
-Reading an analog voltage (ultrasonicRange.py)
+.. literalinclude:: ../code/02sensors/ultrasonicRange.py
+   :caption: Reading an analog voltage (ultrasonicRange.py)
+   :linenos:
 
-.. code-block:: python
-
-   include::code/ultrasonicRange.py[]
+:download:`ultrasonicRange.py <../code/02sensors/ultrasonicRange.py>`
 
 .. _sensors_ultrasonicRange_code:
 
-Reading an analog voltage (ultrasonicRange.js)
-
-.. code-block:: javascript
 
-   include::code/ultrasonicRange.js[]
+.. literalinclude:: ../code/02sensors/ultrasonicRange.js
+   :caption: Reading an analog voltage (ultrasonicRange.js)
+   :linenos:
 
-Discussion
-***********
+:download:`ultrasonicRange.js <../code/02sensors/ultrasonicRange.js>`
 
 .. _sensors_hc-sr04:
 
 Reading a Distance Sensor (Variable Pulse Width Sensor)
---------------------------------------------------------
-
-// TODO
+========================================================
 
 Problem
-**********
+--------
 
 You want to use a HC-SR04 Ultrasonic Range Sensor with BeagleBone Black.
 
 Solution
-**********
-The HC-SR04 Ultrasonic Range Sensor (shown in `hc sr04 sensor image <sensors_hc_sr04_image_fig>`) 
+---------
+
+The HC-SR04 Ultrasonic Range Sensor (shown in :ref:`sensors_hc_sr04_image_fig`) 
 works by sending a trigger pulse to the *Trigger* input and then measuring the 
 pulse width on the *Echo* output. The width of the pulse tells you the distance.
 
@@ -430,11 +412,11 @@ pulse width on the *Echo* output. The width of the pulse tells you the distance.
 
 To make this recipe, you will need:
 
-* Breadboard and jumper wires (see :ref:`app proto <app_proto>`)
-* 10 k&#8486; and 20 k&#8486; resistors (see :ref:`app resistor <app_resistor>`)
-* HC-SR04 Ultrsonic Range Sensor (see :ref:`app misc <app_misc>`)
+* Breadboard and jumper wires.
+* 10 k and 20 k resistors
+* HC-SR04 Ultrsonic Range Sensor.
 
-Wire the sensor as shown in :ref:`hc sr04 sensor<sensors_hc-sr04_fig>`. 
+Wire the sensor as shown in :ref:`sensors_hc-sr04_fig`. 
 Note that the HC-SR04 is a 5 V device, so the *banded* wire (running from 
 *P9_7* on the Bone to VCC on the range finder) attaches the 
 HC-SR04 to the Bone's 5 V power supply. 
@@ -447,37 +429,33 @@ HC-SR04 to the Bone's 5 V power supply.
 
    Wiring an HC-SR04 Ultrasonic Sensor
 
-:ref:`hc sr04 <sensors_hc-sr04_code>` shows 
-BoneScript code used to drive the HC-SR04.  
+:ref:`sensors_hc-sr04_code` shows BoneScript code used to drive the HC-SR04.  
 
 .. _sensors_hc-sr04_code:
 
-Driving a HC-SR04 ultrasound sensor (hc-sr04-ultraSonic.js)
-
-.. code-block:: javascript
+.. literalinclude:: ../code/02sensors/hc-sr04-ultraSonic.js
+   :caption: Driving a HC-SR04 ultrasound sensor (hc-sr04-ultraSonic.js)
+   :linenos:
 
-   include::code/hc-sr04-ultraSonic.js[]
+:download:`hc-sr04-ultraSonic.js <../code/02sensors/hc-sr04-ultraSonic.js>`
 
 This code is more complex than others in this chapter, 
 because we have to tell the device when to start 
 measuring and time the return pulse.
 
-Discussion
-**********
-
 Accurately Reading the Position of a Motor or Dial
-----------------------------------------------------
+===================================================
 
 Problem
-**********
+--------
 
 You have a motor or dial and want to detect rotation using a rotary encoder.
 
 Solution
-**********
+---------
 
 Use a rotary encoder (also called a *quadrature encoder*) connected to one of 
-the Bone's eQEP ports, as shown in :ref:`digital rotary encoder figure<digital_rotaryEncoder_fig>`.
+the Bone's eQEP ports, as shown in :ref:`digital_rotaryEncoder_fig`.
 
 .. _digital_rotaryEncoder_fig:
 
@@ -487,9 +465,7 @@ the Bone's eQEP ports, as shown in :ref:`digital rotary encoder figure<digital_r
 
    Wiring a rotary encoder using eQEP2
 
-On the BeagleBone and PocketBeage the three encoders are:
-
-.. table::
+.. table:: On the BeagleBone and PocketBeage the three encoders are:
 
   +-------------+------------------------------------+
   | eQEP0       | P9.27 and P9.42 OR P1_33 and P2_34 |
@@ -499,9 +475,7 @@ On the BeagleBone and PocketBeage the three encoders are:
   |eQEP2        | P8.11 and P8.12 OR P2_24 and P2_33 |
   +-------------+------------------------------------+
 
-On the AI it's:
-
-.. table::
+.. table:: On the AI it's:
 
   +-------------+------------------------------------+
   |eQEP1        | P8.33 and P8.35                    |
@@ -513,8 +487,8 @@ On the AI it's:
 
 To make this recipe, you will need:
 
-* Breadboard and jumper wires (see :ref:`app proto <app_proto>`)
-* Rotary encoder (see :ref:`app misc <app_misc>`)
+* Breadboard and jumper wires.
+* Rotary encoder.
 
 We are using a quadrature rotary encoder, which has two switches inside 
 that open and close in such a manner that you can tell which way the shaft 
@@ -522,11 +496,10 @@ is turning. In this particular encoder, the two switches have a common lead,
 which is wired to ground. It also has a pushbutton switch wired to the other 
 side of the device, which we aren't using. 
 
-Wire the encoder to +P8_11+ and +P8_12+, as shown in 
-:ref:`digital rotary encoder <digital_rotaryEncoder_fig>`.
+Wire the encoder to *P8_11* and *P8_12*, as shown in :ref:`digital_rotaryEncoder_fig`.
 
 BeagleBone Black has built-in hardware for reading up to three encoders.  
-Here, we'll use the *eQEP2* encoder via the Linux +count+ subsystem.
+Here, we'll use the *eQEP2* encoder via the Linux *count* subsystem.
 
 
 Then run the following commands:
@@ -539,29 +512,30 @@ Then run the following commands:
    P8.12        12 fast rx  up  4 qep 2 in A    ocp/P8_12_pinmux (pinmux_P8_12_qep_pin)
    P8.11        13 fast rx  up  4 qep 2 in B    ocp/P8_11_pinmux (pinmux_P8_11_qep_pin)
 
-This will enable *eQEP2* on pins +P8_11+ and *P8_12*. 
-The *2* after the +qep+ returned by *show-pins* shows it's *eQEP2*.  
+This will enable *eQEP2* on pins *P8_11* and *P8_12*. 
+The *2* after the *qep* returned by *show-pins* shows it's *eQEP2*.  
 
-Finally, add the code in :ref:`digital rotary encoder<digital_rotaryEncoder_js>` 
+Finally, add the code in :ref:`digital_rotaryEncoder_js` 
 to a file named *rotaryEncoder.js* and run it.
 
 .. _digital_rotaryEncoder_py:
 
-Reading a rotary encoder (rotaryEncoder.py)
+.. literalinclude:: ../code/02sensors/rotaryEncoder.py
+   :caption: Reading a rotary encoder (rotaryEncoder.py)
+   :linenos:
 
-.. code-block:: bash
-
-  include::code/rotaryEncoder.py
+:download:`rotaryEncoder.py <../code/02sensors/rotaryEncoder.py>`
 
 .. _digital_rotaryEncoder_js:
 
-Reading a rotary encoder (rotaryEncoder.js)
+.. literalinclude:: ../code/02sensors/rotaryEncoder.js
+   :caption: Reading a rotary encoder (rotaryEncoder.js)
+   :linenos:
 
-.. code-block::javascript
+:download:`rotaryEncoder.js <../code/02sensors/rotaryEncoder.js>`
 
-   include::code/rotaryEncoder.js
-
-Try rotating the encoder clockwise and counter-clockwise. You'll see an output like this:
+Try rotating the encoder clockwise and counter-clockwise. 
+You'll see an output like this:
 
 .. code-block::bash
 
@@ -578,32 +552,28 @@ Try rotating the encoder clockwise and counter-clockwise. You'll see an output l
    ^C
 
 
-The values you get for +data+ will depend on which way you are 
+The values you get for *data* will depend on which way you are 
 turning the device and how quickly. You will need to press ^C (Ctrl-C) to end.
 
-Discussion
-**********
 
 See Also
-**********
+---------
 
-You can also measure rotation by using a variable resistor (see :ref:`sensors analogIn <sensors_analogIn_fig>`).
+You can also measure rotation by using a variable resistor (see :ref:`sensors_analogIn_fig`).
 
 .. _sensors_GPS:
 
 Acquiring Data by Using a Smart Sensor over a Serial Connection
------------------------------------------------------------------
-
-// TODO
+================================================================
 
 Problem
-**********
+--------
 
 You want to connect a smart sensor that uses a built-in microcontroller to stream data, 
 such as a global positioning system (GPS), to the Bone and read the data from it.
 
 Solution
-**********
+--------
 
 The Bone has several serial ports (UARTs) that you can use to read data from an external 
 microcontroller included in smart sensors, such as a GPS. Just wire one up, and you'll 
@@ -611,10 +581,10 @@ soon be gathering useful data, such as your own location.
 
 Here's what you'll need:
 
-* Breadboard and jumper wires (see :ref:`app proto <app_proto>`)
-* GPS receiver (see :ref:`app musc <app_misc>`)
+* Breadboard and jumper wires.
+* GPS receiver
 
-Wire your GPS, as shown in :ref:`digital GPS<digital_GPS_fig>`.
+Wire your GPS, as shown in :ref:`digital_GPS_fig`.
 
 .. _digital_GPS_fig:
 
@@ -633,31 +603,27 @@ human-readable form. For this GPS, run the following command to load a NMEA pars
 
    bone$ npm install -g nmea
 
-Running the code in :ref:`digital GPD code <digital_GPS_code>` 
+Running the code in :ref:`digital_GPS_code` 
 will print the current location every time the GPS outputs it.
 
 .. _digital_GPS_code:
 
-Talking to a GPS with UART 4 (GPS.js)
-
-.. code-block:: javascript
+.. literalinclude:: ../code/02sensors/GPS.js
+   :caption: Talking to a GPS with UART 4 (GPS.js)
+   :linenos:
 
-   include::code/GPS.js[]
+:download:`GPS.js <../code/02sensors/GPS.js>`
 
 If you don't need the NMEA formatting, you can skip the *npm* part and remove the lines in the code that refer to it.
 
-.. note:: If you get an error like this
-
-.. TypeError:: Cannot call method 'readline' of undefined+
+.. note:: 
+  If you get an error like this
+  TypeError: Cannot call method 'readline' of undefined
 
-add this line to the end of file */usr/local/lib/node_modules/bonescript/serial.js*:
+add this line to the end of file ``/usr/local/lib/node_modules/bonescript/serial.js``:
 
 *exports.serialParsers = m.module.parsers;*
 
-Discussion
-**********
-
-
 .. _cape-headers-serial_fig:
 
 .. figure:: figures/cape-headers-serial.png
@@ -669,60 +635,63 @@ Discussion
 .. _sensors_i2c_temp:
 
 Measuring a Temperature
----------------------------
+=======================
 
 Problem
-**********
+-------
 
 You want to measure a temperature using a digital temperature sensor.
 
 Solution
-**********
+---------
 
 The TMP101 sensor is a common digital temperature 
-sensor that uses a standard I^2^C-based serial protocol.
+sensor that uses a standard |I2C|-based serial protocol.
+
+.. |I2C| replace:: I\ :sup:`2`\ C
 
 To make this recipe, you will need:
 
-* Breadboard and jumper wires (see :ref:`app proto <app_proto>`)
-* Two 4.7 k&#8486; resistors (see :ref:`app resistor <app_resistor>`)
-* TMP101 temperature sensor (see :ref:`app ic<app_ic>`)
+* Breadboard and jumper wires.
+* Two 4.7 k resistors.
+* TMP101 temperature sensor.
 
-Wire the TMP101, as shown in :ref:`i2c temprature sensor<sensors_i2cTemp_fig>`.
+Wire the TMP101, as shown in :ref:`sensors_i2cTemp_fig`.
 
 .. _sensors_i2cTemp_fig:
 
 .. figure:: figures/i2cTemp_bb.png
    :align: center
-   :alt: Wiring an I^2^C TMP101 temperature sensor
+   :alt: |I2C| Temp
 
-   Wiring an I^2^C TMP101 temperature sensor
+   Wiring an |I2C| TMP101 temperature sensor
 
-There are two I^2^C buses brought out to the headers. 
-:ref:`sensor cap headers i2c <sensors_cape_headers_i2c>` 
-shows that you have wired your device to I^2^C bus +2+.
+There are two |I2C| buses brought out to the headers. 
+:ref:`sensors_cape_headers_i2c` 
+shows that you have wired your device to |I2C| bus *2*.
 
 .. _sensors_cape_headers_i2c:
 
 .. figure:: figures/cape-headers-i2c.png
    :align: center
-   :alt: Table of I^2^C outputs
+   :alt: Table of |I2C| outputs
 
-   Table of I^2^C outputs
+   Table of |I2C| outputs
 
 
-Once the I^2^C  device is wired up, you can use a couple handy I^2^C 
+Once the |I2C|  device is wired up, you can use a couple handy |I2C| 
 tools to test the device. Because these are Linux command-line tools, 
-you have to use +2+ as the bus number. +i2cdetect+, shown in `javascript I2C tools <js_i2cTools>`, 
-shows which I^2^C  devices are on the bus. The +-r+ flag indicates which bus to use. 
-Our TMP101 is appearing at address *0x498. You can use the +i2cget+ command to read 
+you have to use *2* as the bus number. *i2cdetect*, shown in :ref:`js_i2cTools`, 
+shows which |I2C|  devices are on the bus. The *-r* flag indicates which bus to use. 
+Our TMP101 is appearing at address *0x498*. You can use the *i2cget* command to read 
 the value. It returns the temperature in hexidecimal and degrees C. 
 In this example, 0x18 = 24{deg}C, which is 75.2{deg}F. (Hmmm, the office is a bit warm today.) 
 Try warming up the TMP101 with your finger and running *i2cget* again.
 
 .. _js_i2cTools:
 
-I^2^C tools
+|I2C| tools
+============
 
 .. code-block:: bash
 
@@ -742,7 +711,7 @@ I^2^C tools
 
 
 Reading the temperature via the kernel driver
-**********************************************
+==============================================
 
 The cleanest way to read the temperature from at TMP101 sensor is to use the kernel drive.
 
@@ -750,7 +719,7 @@ Assuming the TMP101 is on bus 2 (the last digit is the bus number)
 
 .. _js_i2cKernel:
 
-I^2^C TMP101 via Kernel
+|I2C| TMP101 via Kernel
 
 .. code-block:: bash
 
@@ -812,26 +781,24 @@ Other i2c devices are supported by the kernel.
 You can try the Linux Kernel Driver Database, 
 https://cateee.net/lkddb/ to see them.
 
-Once the driver is in place, you can read it via code.
-:ref:`i2c temprature python code <py_i2cTemp_code>` 
-shows how to read the TMP101 from BoneScript.
+Once the driver is in place, you can read it via code. 
+:ref:`py_i2cTemp_code` shows how to read the TMP101 from BoneScript.
 
 .. _py_i2cTemp_code:
 
-Reading an I^2^C  device (i2cTemp.py)
-
-.. code-block:: python
-
-  include::code/i2cTemp.py[]
+.. literalinclude:: ../code/02sensors/i2cTemp.py
+   :caption: Reading an |I2C|  device (i2cTemp.py)
+   :linenos:
 
+:download:`i2cTemp.py <../code/02sensors/i2cTemp.py>`
 
 .. _js_i2cTemp_code:
 
-.Reading an I^2^C  device (i2cTemp.js)
+.. literalinclude:: ../code/02sensors/i2cTemp.js
+   :caption: Reading an |I2C|  device (i2cTemp.js)
+   :linenos:
 
-.. code-block:: javascript
-
-   include::code/i2cTemp.js[]
+:download:`i2cTemp.js <../code/02sensors/i2cTemp.js>`
 
 Run the code by using the following command:
 
@@ -848,9 +815,10 @@ Run the code by using the following command:
 Notice using the  kernel interface gets you more digits of accuracy.
 
 Reading i2c device directly
-*******************************
+===========================
 
-The TMP102 sensor can be read directly with i2c commands rather than using the kernel driver.  First you need to install the i2c module.
+The TMP102 sensor can be read directly with i2c commands rather than 
+using the kernel driver.  First you need to install the i2c module.
 
 .. code-block:: bash
 
@@ -859,34 +827,32 @@ The TMP102 sensor can be read directly with i2c commands rather than using the k
 
 .. _js_i2ctmp101_code:
 
-Reading an I^2^C  device (i2cTemp.py)
-.. code-block:: python
-
-  include::code/i2ctmp101.py[]
+.. literalinclude:: ../code/02sensors/i2ctmp101.py
+   :caption: Reading an |I2C|  device (i2cTemp.py)
+   :linenos:
 
-This gets only 8 bits for the temperature.  See the TMP101 datasheet for details on how  to get up to 12 bits.
-
-Discussion
-**********
+:download:`i2ctmp101.py <../code/02sensors/i2ctmp101.py>`
 
+This gets only 8 bits for the temperature. See the TMP101 datasheet 
+for details on how  to get up to 12 bits.
 
 Reading Temperature via a Dallas 1-Wire Device
-----------------------------------------------------
+===============================================
 
 Problem
-**********
+--------
 
 You want to measure a temperature using a Dallas Semiconductor DS18B20 temperature sensor.
 
 Solution
-**********
+---------
 
-I need to double-check how we provide attribution for recipes, but we'll need to have 
-something more than "From" followed by a link. For now, we should at least do 
-something like what I've changed it to. --BS
+.. I need to double-check how we provide attribution for recipes, but we'll need to have 
+.. something more than "From" followed by a link. For now, we should at least do 
+.. something like what I've changed it to. --BS
 
---may A bigger question is, when do we need attribution?  
-I pull bits and pieces from everywhere and try to keep good records of sources.
+.. --may A bigger question is, when do we need attribution?  
+.. I pull bits and pieces from everywhere and try to keep good records of sources.
 
 The DS18B20 is an interesting temperature sensor that uses Dallas 
 Semiconductor's 1-wire interface. The data communication requires only 
@@ -895,23 +861,25 @@ You can wire it to any GPIO port.
 
 To make this recipe, you will need:
 
-* Breadboard and jumper wires (see :ref:`app proto <app_proto>`)
-* 4.7 k&#8486; resistor (see :ref:`app resistor <app_resistor>`)
-* DS18B20 1-wire temperature sensor (see :ref:`app ic<app_ic>`)
+* Breadboard and jumper wires.
+* 4.7 k resistor
+* DS18B20 1-wire temperature sensor.
 
-Wire up as shown in :ref:`1 wire sensor <sensors_1-wire_fig>`.
+Wire up as shown in :ref:`sensors_1-wire_fig`.
 
 .. _sensors_1-wire_fig:
 
-.. note:: This solution, written by Elias Bakken (@AgentBrum), originally appeared on`Hipstercircuits http://bit.ly/1FaRbbK`_.
-
 .. figure:: figures/onewire_bb.png
    :align: center
    :alt: 1-wire
 
    Wiring a Dallas 1-Wire temperature sensor 
 
-Edit the file +/boot/uEnt.txt+. 
+.. note:: 
+  This solution, written by Elias Bakken (@AgentBrum), 
+  originally appeared on`Hipstercircuits <http://bit.ly/1FaRbbK>`_.
+
+Edit the file */boot/uEnt.txt*. 
 Go to about line 19 and edit as shown:
 
 .. code-block:: bash
@@ -921,7 +889,7 @@ Go to about line 19 and edit as shown:
   19 uboot_overlay_addr4=BB-W1-P9.12-00A0.dtbo
   20 #uboot_overlay_addr5=<file5>.dtbo
 
-Be sure to remove the +#+ at the beginning of the line.
+Be sure to remove the *#* at the beginning of the line.
 
 Reboot the bone:
 
@@ -929,7 +897,6 @@ Reboot the bone:
 
   bone$ reboot
 
-
 Now run the following command to discover the serial number on your device:
 
 .. code-block:: bash
@@ -941,27 +908,25 @@ Now run the following command to discover the serial number on your device:
 I have two devices wired in parallel on the same P9_12 input. 
 This shows the serial numbers for all the devices. 
 
-Finally, add the code in 
-:ref:`onewire sensor code <sensors_onewire__code>` in to a 
-file named *w1.py*, edit the path assigned to +w1+ so 
+Finally, add the code in :ref:`sensors_onewire__code` in to a 
+file named *w1.py*, edit the path assigned to *w1* so 
 that the path points to your device, and then run it.
 
 .. _py_onewire__code:
 
-Reading a temperature with a DS18B20 (w1.py)
+.. literalinclude:: ../code/02sensors/w1.py
+   :caption: Reading a temperature with a DS18B20 (w1.py)
+   :linenos:
 
-.. code-block:: python
-
-  include::code/w1.py[]
+:download:`w1.py <../code/02sensors/w1.py>`
 
 .. _sensors_onewire__code:
 
-Reading a temperature with a DS18B20 (w1.js)
-
-.. code-block:: javascript
-
-  include::code/w1.js[]
+.. literalinclude:: ../code/02sensors/w1.js
+   :caption: Reading a temperature with a DS18B20 (w1.js)
+   :linenos:
 
+:download:`w1.js <../code/02sensors/w1.js>`
 
 .. code-block:: bash
 
@@ -972,10 +937,6 @@ Reading a temperature with a DS18B20 (w1.js)
    temp (C) = 31.0
    ^C
 
-
-Discussion
-**********
-
 Each temperature sensor has a unique serial number, so you can have several all sharing the same data line.
 
 .. // .. _sensors_sensortag:
@@ -998,8 +959,8 @@ Each temperature sensor has a unique serial number, so you can have several all
 
 .. // To make this recipe, you will need:
 
-.. // * BLE USB dongle (see :ref:`app musc <app_misc>`)
-.. // * SensorTag (see :ref:`app musc <app_misc>`)
+.. // * BLE USB dongle
+.. // * SensorTag
 .. // * 5 V adapter for the Bone
 
 .. // Power up your Bone using the 5 V adapter. You need the adapter because the BLE dongle needs extra power for the radios it contains. After it is booted up, log in (:ref:`shell tips <tips_shell>`) and run the following commands:
@@ -1022,17 +983,17 @@ Each temperature sensor has a unique serial number, so you can have several all
 .. // [source, js]
 .. // ----
 
-.. // include::code/sensorTag.js[sensorTag.js]
+.. // include::../code/02sensors/sensorTag.js[sensorTag.js]
 
 .. // ----
 .. // ====
 .. // <1> Read in the various packages that are needed.
 
-.. // <2> +SensorTag.discover+ checks what SensorTags are out there. When found, it calls the inline function that follows.
+.. // <2> *SensorTag.discover* checks what SensorTags are out there. When found, it calls the inline function that follows.
 
 .. // <3> pass:[<span id="callout_list_item_3">This</span>] function is called when the SensorTag is disconnected.
 
-.. // <4> Normally JavaScript does everything synchronously. Here, we want to do the following asynchronously--that is, step-by-step, one after the other. We are passing an array to +async.series()+, which contains the functions to run in the order in which they appear in the array.
+.. // <4> Normally JavaScript does everything synchronously. Here, we want to do the following asynchronously--that is, step-by-step, one after the other. We are passing an array to *async.series()*, which contains the functions to run in the order in which they appear in the array.
 
 .. // <5> Connect to the SensorTag.  
 
@@ -1042,17 +1003,17 @@ Each temperature sensor has a unique serial number, so you can have several all
 
 .. // <8> Wait a bit for the first temperatures to be read.
 
-.. // <9> This specifies the function to call every time a temperature is ready. The callback is passed +objectTemperature+ (what's read by the touchless IR sensors) and +ambientTemperature+ (the temperature inside the SensorTag). Try putting your hand in front of the device; the +objectTemperature+ should go up.
+.. // <9> This specifies the function to call every time a temperature is ready. The callback is passed *objectTemperature* (what's read by the touchless IR sensors) and *ambientTemperature* (the temperature inside the SensorTag). Try putting your hand in front of the device; the *objectTemperature* should go up.
 
 .. // <10> Define the callback for when the temperature changes.
 
 .. // <11> This commented-out code is used when you want to turn off the temperature readings.
 
-.. // <12> Assign a callback to respond to the +left+ and +right+ button pushes. 
+.. // <12> Assign a callback to respond to the *left* and *right* button pushes. 
 
-.. // <13> If both buttons are pushed, pass the +callback+ function to +sensorTag.notifySimpleKey()+.
+.. // <13> If both buttons are pushed, pass the *callback* function to *sensorTag.notifySimpleKey()*.
 
-.. // <14> +sensorTag.notifySimpleKey()+ doesn't do anything in this case, but it does evaluate +callback+, allowing it to progress to the next and final state.
+.. // <14> *sensorTag.notifySimpleKey()* doesn't do anything in this case, but it does evaluate *callback*, allowing it to progress to the next and final state.
 
 .. // <15> When we get to here, we disconnect from the SensorTag, which causes the code to exit (see pass:[<a href="#callout_list_item_3"><img src="callouts/3.png" alt="3"/></a>]).
 
@@ -1099,38 +1060,40 @@ Each temperature sensor has a unique serial number, so you can have several all
 .. _sensors_audio:
 
 Playing and Recording Audio
-------------------------------
+============================
 
-.. TODO:: Remove?
+.. TODO
+  Remove?
 
 Problem
-**********
+--------
 
 BeagleBone doesn't have audio built in, but you want to play and record files.
 
 Solution
-**********
+--------
 
-One approach is to buy an audio cape (:ref:`app capes <app_capes>`), but another, possibly cheaper approach is to buy a USB audio adapter, 
-such as the one shown in :ref:`usb audio dongle<usb_audio_dongle>`. Some adapters that I've tested are provided in :ref:`app musc <app_misc>`.
+One approach is to buy an audio cape, but another, possibly cheaper approach is to buy a USB audio adapter, 
+such as the one shown in :ref:`usb_audio_dongle`.
 
 .. _usb_audio_dongle:
 
-A USB audio dongle
-
 .. figure:: figures/audioDongle.jpg
   :align: center
   :alt: Audio Dongle
+  
+  A USB audio dongle
 
-Drivers for the `Advanced Linux Sound Architecture http://bit.ly/1MrAJUR`_ (ALSA) 
+Drivers for the `Advanced Linux Sound Architecture <http://bit.ly/1MrAJUR>`_ (ALSA) 
 are already installed on the Bone. You can list the recording and playing devices on 
-your Bone by using +aplay+ and +arecord+, as shown in :ref:`alsa sensors <sensors_alsa>`. BeagleBone Black 
+your Bone by using *aplay* and *arecord*, as shown in :ref:`sensors_alsa`. BeagleBone Black 
 has audio-out on the HDMI interface. It's listed as *card 0* in 
-:ref:`also sensor <sensors_alsa>`. *card 1* is my USB audio adapter's audio out.
+:ref:`sensors_alsa`. *card 1* is my USB audio adapter's audio out.
 
 .. _sensors_alsa:
 
 Listing the ALSA audio output and input devices on the Bone
+============================================================
 
 .. code-block:: bash
 
@@ -1150,28 +1113,27 @@ Listing the ALSA audio output and input devices on the Bone
     Subdevice #0: subdevice #0
 
 
-In the *aplay* output shown in :ref:`alsa sensor <sensors_alsa>`, you can see the 
+In the *aplay* output shown in :ref:`sensors_alsa`, you can see the 
 USB adapter's audio out. By default, the Bone will send audio to the HDMI. You 
 can change that default by creating a file in your home directory called 
-*~/.asoundrc* and adding the code in :ref:`asoundrc <sensors_asoundrc>` to it.
+*~/.asoundrc* and adding the code in :ref:`sensors_asoundrc` to it.
 
 .. _sensors_asoundrc:
 
-Change the default audio out by putting this in ~/.asoundrc (audio.asoundrc)
-
-.. code-block:: javascript
+.. literalinclude:: ../code/02sensors/audio.asoundrc
+   :caption: Change the default audio out by putting this in ~/.asoundrc (audio.asoundrc)
+   :linenos:
 
-  include::code/audio.asoundrc
+:download:`audio.asoundrc <../code/02sensors/audio.asoundrc>`
 
-
-You can easily play _.wav_ files with +aplay+:
+You can easily play ``.wav`` files with *aplay*:
 
 .. code-block:: bash
 
   bone$ aplay test.wav
 
 
-You can play other files in other formats by installing +mplayer+:
+You can play other files in other formats by installing *mplayer*:
 
 .. code-block:: bash
 
@@ -1179,8 +1141,7 @@ You can play other files in other formats by installing +mplayer+:
   bone$ sudo apt install mplayer
   bone$ mplayer test.mp3
 
-
 Discussion
-**********
+-----------
 
 Adding the simple USB audio adapter opens up a world of audio I/O on the Bone.
diff --git a/books/beaglebone-cookbook/03displays/code/externLED.js b/books/beaglebone-cookbook/03displays/code/externLED.js
deleted file mode 100755
index 40ad5dabb9bd79d2b43c29c29e4c021f06b3e842..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/03displays/code/externLED.js
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/usr/bin/env node
-////////////////////////////////////////
-//	externalLED.js
-//	Blinks the P9_14 pin
-//	Wiring:
-//	Setup:
-//	See:
-////////////////////////////////////////
-const fs = require("fs");
-
-// Look up P9.14 using gpioinfo | grep -e chip -e P9.14.  chip 1, line 18 maps to 50
-pin="50";
-
-GPIOPATH="/sys/class/gpio/";
-// Make sure pin is exported
-if(!fs.existsSync(GPIOPATH+"gpio"+pin)) {
-    fs.writeFileSync(GPIOPATH+"export", pin);
-}
-// Make it an output pin
-fs.writeFileSync(GPIOPATH+"gpio"+pin+"/direction", "out");
-
-// Blink every 500ms
-setInterval(toggle, 500);
-
-state="1";
-function toggle() {
-    fs.writeFileSync(GPIOPATH+"gpio"+pin+"/value", state);
-    if(state == "0") {
-        state = "1";
-    } else {
-        state = "0";
-    }
-}
diff --git a/books/beaglebone-cookbook/03displays/code/externLED.py b/books/beaglebone-cookbook/03displays/code/externLED.py
deleted file mode 100755
index 786d3217dbd0c53dccc668d215c0442a69feb860..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/03displays/code/externLED.py
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/usr/bin/env python
-# ////////////////////////////////////////
-# //	externalLED.py
-# //	Blinks an external LED wired to P9_14.
-# //	Wiring: P9_14 connects to the plus lead of an LED.  The negative lead of the
-#			LED goes to a 220 Ohm resistor.  The other lead of the resistor goes
-#			to ground.
-# //	Setup:
-# //	See:
-# ////////////////////////////////////////
-import time
-import os
-
-ms = 250        # Time to blink in ms
-# Look up P9.14 using gpioinfo | grep -e chip -e P9.14.  chip 1, line 18 maps to 50
-pin = '50'
-
-GPIOPATH='/sys/class/gpio/'
-# Make sure pin is exported
-if (not os.path.exists(GPIOPATH+"gpio"+pin)):
-    f = open(GPIOPATH+"export", "w")
-    f.write(pin)
-    f.close()
-
-# Make it an output pin
-f = open(GPIOPATH+"gpio"+pin+"/direction", "w")
-f.write("out")
-f.close()
- 
-f = open(GPIOPATH+"gpio"+pin+"/value", "w")
-# Blink
-while True:
-    f.seek(0)
-    f.write("1")
-    time.sleep(ms/1000)
-
-    f.seek(0)
-    f.write("0")
-    time.sleep(ms/1000)
-f.close()
diff --git a/books/beaglebone-cookbook/03displays/code/fadeLED.js b/books/beaglebone-cookbook/03displays/code/fadeLED.js
deleted file mode 100755
index 49db7ecd7a6839f3952e9090af1572cf0346b22d..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/03displays/code/fadeLED.js
+++ /dev/null
@@ -1,44 +0,0 @@
-#!/usr/bin/env node
-////////////////////////////////////////
-//	fadeLED.js
-//	Blinks the P9_14 pin
-//	Wiring:
-//	Setup:  config-pin P9_14 pwm
-//	See:
-////////////////////////////////////////
-const fs = require("fs");
-const ms = '20';    // Fade time in ms
-
-const pwmPeriod = '1000000';    // Period in ns
-const pwm     = '1';  // pwm to use
-const channel = 'a';  // channel to use
-const PWMPATH='/dev/bone/pwm/'+pwm+'/'+channel;
-var   step = 0.02;  // Step size
-const min = 0.02,     // dimmest value
-    max = 1;        // brightest value
-var brightness = min; // Current brightness;
-
-
-// Set the period in ns
-fs.writeFileSync(PWMPATH+'/period', pwmPeriod);
-fs.writeFileSync(PWMPATH+'/duty_cycle', pwmPeriod/2);
-fs.writeFileSync(PWMPATH+'/enable', '1');
-
-setInterval(fade, ms);      // Step every  ms
-
-function fade() {
-     fs.writeFileSync(PWMPATH+'/duty_cycle', 
-        parseInt(pwmPeriod*brightness));
-    brightness += step;
-    if(brightness >= max || brightness <= min) {
-        step = -1 * step;
-    }
-}
-
-// | Pin   | pwm | channel
-// | P9_31 | 0   | a
-// | P9_29 | 0   | b
-// | P9_14 | 1   | a
-// | P9_16 | 1   | b
-// | P8_19 | 2   | a
-// | P8_13 | 2   | b
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/03displays/code/fadeLED.py b/books/beaglebone-cookbook/03displays/code/fadeLED.py
deleted file mode 100755
index bd2016d1f80a8fc21f02387909824236fd16a9d7..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/03displays/code/fadeLED.py
+++ /dev/null
@@ -1,44 +0,0 @@
-#!/usr/bin/env python
-# ////////////////////////////////////////
-# //	fadeLED.py
-# //	Blinks the P9_14 pin
-# //	Wiring:
-# //	Setup:  config-pin P9_14 pwm
-# //	See:
-# ////////////////////////////////////////
-import time
-ms = 20;   # Fade time in ms
-
-pwmPeriod = 1000000    # Period in ns
-pwm     = '1'  # pwm to use
-channel = 'a'  # channel to use
-PWMPATH='/dev/bone/pwm/'+pwm+'/'+channel
-step = 0.02    # Step size
-min = 0.02     # dimmest value
-max = 1        # brightest value
-brightness = min # Current brightness
-
-f = open(PWMPATH+'/period', 'w')
-f.write(str(pwmPeriod))
-f.close()
-
-f = open(PWMPATH+'/enable', 'w')
-f.write('1')
-f.close()
-
-f = open(PWMPATH+'/duty_cycle', 'w')
-while True:
-    f.seek(0)
-    f.write(str(round(pwmPeriod*brightness)))
-    brightness  += step
-    if(brightness >= max or brightness <= min):
-        step = -1 * step
-    time.sleep(ms/1000)
-
-# | Pin   | pwm | channel
-# | P9_31 | 0   | a
-# | P9_29 | 0   | b
-# | P9_14 | 1   | a
-# | P9_16 | 1   | b
-# | P8_19 | 2   | a
-# | P8_13 | 2   | b
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/03displays/code/internLED.js b/books/beaglebone-cookbook/03displays/code/internLED.js
deleted file mode 100755
index b6545f219cedf856089757c75cee29675792692f..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/03displays/code/internLED.js
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/usr/bin/env node
-// //////////////////////////////////////
-// 	internalLED.js
-// 	Blinks the USR LEDs.
-// 	Wiring:
-// 	Setup:
-// 	See:
-// //////////////////////////////////////
-const fs = require('fs');
-const ms = 250;     // Blink time in ms
-const LED = 'usr0'; // LED to blink
-const LEDPATH = '/sys/class/leds/beaglebone:green:'+LED+'/brightness';
-
-var state = '1';    // Initial state
-
-setInterval(flash, ms);    // Change state every ms
-
-function flash() {
-    fs.writeFileSync(LEDPATH, state)
-    if(state === '1') {
-        state = '0';
-    } else {
-        state = '1';
-    }
-}
diff --git a/books/beaglebone-cookbook/03displays/code/internLED.py b/books/beaglebone-cookbook/03displays/code/internLED.py
deleted file mode 100755
index 11db5efcfa129cc05a7b8871ce9fc32489dedcb6..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/03displays/code/internLED.py
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/usr/bin/env python
-# //////////////////////////////////////
-# 	internalLED.py
-# 	Blinks A USR LED.
-# 	Wiring:
-# 	Setup:
-# 	See:
-# //////////////////////////////////////
-import time
-
-ms = 250      # Blink time in ms
-LED = 'usr0'; # LED to blink
-LEDPATH = '/sys/class/leds/beaglebone:green:'+LED+'/brightness'
-
-state = '1'    # Initial state
-
-f = open(LEDPATH, "w")
-
-while True:
-    f.seek(0)
-    f.write(state)
-    if (state == '1'):
-        state = '0'
-    else:
-        state = '1'
-    time.sleep(ms/1000)
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/03displays/code/matrixLEDi2c.js b/books/beaglebone-cookbook/03displays/code/matrixLEDi2c.js
deleted file mode 100755
index 405419b7b0d1339af1ebae20b02d3f663677d4cf..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/03displays/code/matrixLEDi2c.js
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/usr/bin/env node
-// npm install -g sleep
-
-var b = require('bonescript');
-var sleep = require('sleep');
-var port = '/dev/i2c-2'				// <1>
-var matrix = 0x70;					// <2>
-var time = 1000000; // Delay between images in us
-
-// The first btye is GREEN, the second is RED.		<3>
-var smile =
-	[0x00, 0x3c, 0x00, 0x42, 0x28, 0x89, 0x04, 0x85, 
-	 0x04, 0x85, 0x28, 0x89, 0x00, 0x42, 0x00, 0x3c];
-var frown =
-	[0x3c, 0x00, 0x42, 0x00, 0x85, 0x20, 0x89, 0x00, 
-	 0x89, 0x00, 0x85, 0x20, 0x42, 0x00, 0x3c, 0x00];
-var neutral =
-	[0x3c, 0x3c, 0x42, 0x42, 0xa9, 0xa9, 0x89, 0x89,
-	 0x89, 0x89, 0xa9, 0xa9, 0x42, 0x42, 0x3c, 0x3c];
-var blank = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
-
-b.i2cOpen(port, matrix);			// <4>
-
-b.i2cWriteByte(port,  0x21); // Start oscillator (p10)		<5>
-b.i2cWriteByte(port,  0x81); // Disp on, blink off (p11)
-b.i2cWriteByte(port,  0xe7); // Full brightness (page 15)
-
-b.i2cWriteBytes(port, 0x00, frown);			// <6>
-sleep.usleep(time);
-
-b.i2cWriteBytes(port, 0x00, neutral);
-sleep.usleep(time);
-
-b.i2cWriteBytes(port, 0x00, smile);
-// Fade the display
-var fade;
-for(fade = 0xef; fade >= 0xe0; fade--) {		// <7>
-    b.i2cWriteByte(port,  fade);
-    sleep.usleep(time/10);
-}
-for(fade = 0xe1; fade <= 0xef; fade++) {
-    b.i2cWriteByte(port,  fade);
-    sleep.usleep(time/10);
-}
-b.i2cWriteBytes(port, 0x04, [0xff]);
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/03displays/code/matrixLEDi2c.py b/books/beaglebone-cookbook/03displays/code/matrixLEDi2c.py
deleted file mode 100755
index 311714c04bcfc5f25ab140d1bd928c1153ae4238..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/03displays/code/matrixLEDi2c.py
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/usr/bin/env python
-# ////////////////////////////////////////
-# //	i2cTemp.py
-# //      Write an 8x8 Red/Green LED matrix.
-# //	Wiring:	Attach to i2c as shown in text.
-# //	Setup:	echo tmp101 0x49 > /sys/class/i2c-adapter/i2c-2/new_device
-# //	See:	https://www.adafruit.com/product/902
-# ////////////////////////////////////////
-import smbus
-import time
-
-bus = smbus.SMBus(2)  # Use i2c bus 2       <1>
-matrix = 0x70         # Use address 0x70    <2>
-ms = 1;               # Delay between images in ms
-
-# The first byte is GREEN, the second is RED.   <3>
-smile = [0x00, 0x3c, 0x00, 0x42, 0x28, 0x89, 0x04, 0x85,
-    0x04, 0x85, 0x28, 0x89, 0x00, 0x42, 0x00, 0x3c
-]
-frown = [0x3c, 0x00, 0x42, 0x00, 0x85, 0x20, 0x89, 0x00,
-    0x89, 0x00, 0x85, 0x20, 0x42, 0x00, 0x3c, 0x00
-]
-neutral = [0x3c, 0x3c, 0x42, 0x42, 0xa9, 0xa9, 0x89, 0x89,
-    0x89, 0x89, 0xa9, 0xa9, 0x42, 0x42, 0x3c, 0x3c
-]
-
-bus.write_byte_data(matrix, 0x21, 0)   # Start oscillator (p10) <4>
-bus.write_byte_data(matrix, 0x81, 0)   # Disp on, blink off (p11)
-bus.write_byte_data(matrix, 0xe7, 0)   # Full brightness (page 15)
-
-bus.write_i2c_block_data(matrix, 0, frown)      # <5>
-for fade in range(0xef, 0xe0, -1):              # <6>
-    bus.write_byte_data(matrix, fade, 0)
-    time.sleep(ms/10)
-
-bus.write_i2c_block_data(matrix, 0, neutral)
-for fade in range(0xe0, 0xef, 1):
-    bus.write_byte_data(matrix, fade, 0)
-    time.sleep(ms/10)
-
-bus.write_i2c_block_data(matrix, 0, smile)
diff --git a/books/beaglebone-cookbook/03displays/code/neoPixel.sh b/books/beaglebone-cookbook/03displays/code/neoPixel.sh
deleted file mode 100755
index 0e213f4b4fc8dddaf5001536e3073513a7b41564..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/03displays/code/neoPixel.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-# Here's what you do to install the neoPixel driver
-# Disable the HDMI to gain access to the PRU pins
-sed -i '/cape_disable=capemgr.disable_partno=BB-BONELT-HDMI,BB-BONELT-HDMIN$/ \
-            s/^#//' /boot/uEnv.txt
-reboot
-# Clone and build the code
-cd
-git clone -b opc-server https://github.com/jadonk/LEDscape.git
-cd LEDscape
-make
-cd
-git clone https://github.com/jadonk/openpixelcontrol.git
-# Load and configure the kernel module, pins and LEDscape daemon
-config-pin overlay BB-OPC-EX
-modprobe uio_pruss
-./LEDscape/run-ledscape &
-# Run an example Python script
-./openpixelcontrol/python_clients/example.py
diff --git a/books/beaglebone-cookbook/03displays/code/nokia5110.js b/books/beaglebone-cookbook/03displays/code/nokia5110.js
deleted file mode 100644
index 9a43c98bd1f8093b00268d84e768b9398a1c9874..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/03displays/code/nokia5110.js
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/env node
-//
-// Copyright (C) 2012 - Cabin Programs, Ken Keller 
-//
-
-var lcd = require('nokia5110');
-var b = require('bonescript');
-var timeout = 0;
-var inverseIndex;
-
-//
-//  Must define the following outputs
-//
-lcd.PIN_SDIN = "P9_17";
-lcd.PIN_SCLK = "P9_21";
-lcd.PIN_SCE  = "P9_11";
-lcd.PIN_DC   = "P9_15";
-lcd.PIN_RESET= "P9_13";
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/03displays/code/nokia5110Test.js b/books/beaglebone-cookbook/03displays/code/nokia5110Test.js
deleted file mode 100755
index a823f8193780b615cb73f9c475a19ef6df74686d..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/03displays/code/nokia5110Test.js
+++ /dev/null
@@ -1,231 +0,0 @@
-#!/usr/bin/env node
-//
-// Copyright (C) 2012 - Cabin Programs, Ken Keller 
-//
-
-var lcd = require('nokia5110');
-var b = require('bonescript');
-var timeout = 0;
-var inverseIndex;
-
-//
-//  Must define the following outputs to use LCD_5110.js
-//
-lcd.PIN_SDIN = "P9_17";
-lcd.PIN_SCLK = "P9_21";
-lcd.PIN_SCE  = "P9_11";
-lcd.PIN_DC   = "P9_15";
-lcd.PIN_RESET= "P9_13";
-
-lcd.setup();
-setTimeout(loop, 0);
-// loop();
-
-function loop() {
-// test bitmap write
-    console.log("test bitmap write");
-//    lcd.clear();
-    lcd.gotoXY(0, 0);
-    lcd.bitmap(beagle);
-
-    inverseIndex = 0;
-    setTimeout(loop0, 1000*timeout);
-}
-
-function loop0() {
-// test inverse video
-    console.log("test inverse video");
-    if(inverseIndex % 2) {
-         lcd.inverse(lcd.LCD_INVERSE);
-    } else {
-         lcd.inverse(lcd.LCD_NORMAL);
-    }
-
-    inverseIndex++;
-
-    if(inverseIndex < 19) {
-        setTimeout(loop0, 50*timeout);
-    } else {
-        setTimeout(loop1, 50*timeout);
-    }
-}
-
-function loop1() {
-// test normal character write
-    console.log("test normal character write");
-    // lcd.clear();
-    lcd.gotoXY(0, 0);
-    for ( index = 0x41 ; index < 0x7b ; index++)
-        lcd.character(String.fromCharCode(index));
-
-    setTimeout(loop2, 2000*timeout);
-}
-
-function loop2() {
-// test bitmap and string write
-    console.log("test bitmap and string write");
-    // lcd.clear();
-    lcd.gotoXY(0, 0);
-    lcd.bitmap(world_map);
-
-    setTimeout(loop3, 1000*timeout);
-}
-
-function loop3() {
-    var index;
-
-    for (index=0; index<5; index++)
-    {
-        lcd.gotoXY(0, 3);
-        lcd.string('HELLO WORLD!');
-        lcd.gotoXY(0, 3);
-        lcd.string('hello world!');
-    }
-
-    setTimeout(loop4, 0);
-}
-
-function loop4() {
-    var index;
-
-// test solid block character 
-    console.log("test solid block character");
-    // lcd.clear();
-    lcd.gotoXY(0, 0);
-    for ( index = 0 ; index < 72 ; index++)
-        lcd.character(String.fromCharCode(0x7f));
-
-// Scrolling text test
-    console.log("Scrolling text test");
-    // lcd.clear();
-    var theTEXT = "Scroll text...";
-    var numScrolls = lcd.scrollLength(theTEXT) * 2;
-    
-    lcd.scrollInit(3);
-    for (index=0; index<numScrolls; index++)
-    {
-        lcd.scroll(3,theTEXT);
-    }
-    lcd.scrollInit(3);  // used to clear row
-
-    setTimeout(loop5, 2000*timeout);
-}
-
-function loop5() {
-    var index;
-
-//  Progress Bar test
-    console.log("Progress Bar test");
-    lcd.gotoXY(0,0);
-    lcd.string("Progress Bar");
-
-    lcd.progressInit(2);
-    for (index=0; index<101; index+=2)
-      lcd.progressBar(2,index);
-
-    for (index=100; index>=0; index-=2)
-      lcd.progressBar(2,index);
-
-    lcd.progressInit(2);
-    for (index=100; index>=0; index-=6)
-      lcd.progressBar(2,index);
-
-    if(timeout) setTimeout(loop, 2000);
-}
-
-var beagle = [
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xC0, 0x60, 0x60, 0x60, 0x60, 0x60, 0x70, 0xF8, 0xFC,
-0x9C, 0x0C, 0x07, 0x07, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x07, 0x06, 0x0C,
-0x1C, 0x18, 0x30, 0xE0, 0xC0, 0xC0, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xE0, 0x70, 0x1E, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00,
-0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xF8, 0xE0, 0x00, 0x00, 0xE0, 0xB0, 0x90, 0xF0, 0xE0, 0xE0,
-0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x6D, 0x6D, 0x77, 0xFF, 0xEE, 0xF8, 0xC0, 0x00,
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xE0, 0x38, 0x1E, 0x0F, 0x01, 0x00, 0x00, 0x00, 0x00,
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x3F, 0xFF, 0xF8, 0x81, 0x02,
-0x02, 0x03, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-0x00, 0x03, 0x03, 0x02, 0x02, 0x06, 0x06, 0x84, 0xCC, 0x9C, 0xF8, 0x70, 0x70, 0x60, 0xC0, 0xC0,
-0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE0, 0xF0, 0xFE, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00,
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-0x00, 0x07, 0x1F, 0xFC, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x1F, 0x7F, 0x78, 0xF8, 0xFC, 0xFC,
-0xFE, 0xFE, 0x7E, 0x7F, 0x7F, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x07, 0x3F, 0xFF, 0xC0,
-0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xC0, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0xC0, 0xC0, 0xE0, 0xE0, 0x60,
-0x20, 0x30, 0x30, 0xD0, 0x98, 0x08, 0x1C, 0x3E, 0x63, 0xC1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-0x00, 0xE0, 0x30, 0x31, 0x33, 0xF7, 0xEF, 0x0E, 0x0C, 0x1C, 0x38, 0xF8, 0xF8, 0x18, 0x18, 0x18,
-0x18, 0x18, 0x18, 0x18, 0x1C, 0x1C, 0x0E, 0x0E, 0x07, 0x03, 0x01, 0x00, 0x00, 0x00, 0x10, 0x10,
-0x30, 0x30, 0x60, 0x60, 0x60, 0x60, 0x40, 0x45, 0x43, 0x43, 0x47, 0x47, 0x7F, 0x7F, 0xFF, 0xFF,
-0x0F, 0x0F, 0x0F, 0x0E, 0x1D, 0x38, 0x30, 0x30, 0x21, 0x23, 0x24, 0x24, 0x38, 0x0F, 0x00, 0x00,
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFA, 0xF0, 0xE0, 0x8F, 0x3F, 0x7E, 0xD8, 0x30, 0xF0, 0xFF,
-0xFF, 0x00, 0x00, 0x00, 0xC0, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE0, 0xC0, 0x00,
-0x00, 0x02, 0x06, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x03, 0x0F, 0x3F, 0xFC, 0xF0,
-0xE0, 0x01, 0x03, 0x03, 0x01, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0,
-0xF0, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xF0, 0x00, 0x00, 0x00, 0x00,
-0x70, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-0x00, 0x00, 0x00, 0x01, 0x03, 0x87, 0xFE, 0x7C, 0x60, 0x00, 0x00, 0x00, 0xC0, 0xFF, 0x3F, 0x00,
-0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0xFF, 0x0F,
-0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x3F, 0xFE, 0x00, 0x00, 0x3C, 0x7F, 0xFF, 0xE0, 0xC0, 0x80,
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x3F, 0xFF, 0xE1, 0xC0, 0xC0, 0x80, 0xE0, 0x78, 0x0E,
-0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDF, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-0x70, 0xF1, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x0D, 0x30, 0xE0, 0x80, 0x80,
-0x80, 0x81, 0xFF, 0xFF, 0x1C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
-0x20, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0xC0, 0x20, 0x20, 0x00,
-0xF7, 0x5E, 0x5E, 0x0C, 0xEC, 0x8C, 0x84, 0x0E, 0xBE, 0x9E, 0x9F, 0x0F, 0x87, 0x91, 0x80, 0x00,
-0x90, 0x90 ];
-
-var world_map = [
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x80, 0x00, 0x60, 0xC0, 0xF0, 0xDC, 0x7C, 0X3C, 0x1C, 0xF0, 0xF8, 0xF0, 0xF0,
- 0xF8, 0xF8, 0xFE, 0xFE, 0xE6, 0xD4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80,
- 0x40, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
- 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x00, 0x00, 0x00, 0xB0, 0x70,
- 0xC0, 0x60, 0x00, 0xB0, 0x90, 0x28, 0xE3, 0x41, 0xC0, 0x81, 0x01, 0x03, 0x0F, 0x3F, 0xFF,
- 0xFF, 0xFF, 0xFF, 0xBF, 0x0F, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x81, 0x81,
- 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x70, 0x08, 0x84, 0x40, 0x00, 0xE0, 0x80, 0xF0, 0xF8,
- 0xF8, 0xFC, 0xFC, 0xEC, 0xE0, 0xE0, 0xE0, 0xE0, 0xC0, 0xC0, 0xE0, 0xC0, 0xC0, 0x80, 0x00,
- 0x80, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
- 0x00, 0x00, 0x00, 0x00, 0x0B, 0x3F, 0x0F, 0x0F, 0x0F, 0x0F, 0x1F, 0x3F, 0xFF, 0xFF, 0xFF,
- 0xFE, 0xFF, 0xFE, 0xFE, 0xE7, 0xC1, 0xC1, 0x00, 0xF8, 0xF7, 0xE5, 0xC0, 0x00, 0x03, 0x0F,
- 0x07, 0x01, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x80, 0x00, 0x98, 0xBC, 0xD7, 0xE9,
- 0xEF, 0xFF, 0xFD, 0xFC, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0xFE, 0xFF, 0xFF, 0xFF,
- 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xBF, 0x0F, 0x0F, 0x0F, 0x0F, 0x3F,
- 0x0F, 0x0F, 0x07, 0x03, 0x02, 0x00, 0x00, 0x00, 0x00, 
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x1F,
- 0x3F, 0x7F, 0xFF, 0x7F, 0x3F, 0x3E, 0x3D, 0x1B, 0x07, 0x03, 0x01, 0x00, 0x01, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xC0, 0xEC, 0xED, 0xF3, 0xF3, 0xE5, 0xC3, 0xEF,
- 0xE7, 0xE9, 0x29, 0xFB, 0xFF, 0xB1, 0xBD, 0x7F, 0x7F, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0x7F,
- 0xFF, 0xFF, 0xFF, 0xFF, 0x7F, 0x67, 0x07, 0x07, 0x13, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x02, 0x30, 0xFC, 0xFC, 0xFC, 0xF8, 0xF8, 0xE0, 0xE0,
- 0xE0, 0x40, 0x00, 0x00, 0x00, 0x00, 0x03, 0x07, 0x07, 0x07, 0x07, 0x07, 0xBF, 0xFF, 0xFF,
- 0xFF, 0xFF, 0xFF, 0x1E, 0x0F, 0x05, 0x01, 0x00, 0x00, 0x00, 0x00, 0x07, 0x01, 0x00, 0x00,
- 0x01, 0x11, 0x23, 0x10, 0x10, 0x00, 0x00, 0x00, 0x80, 0x20, 0xA0, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFC, 0x7F, 0x3F, 0x0F, 0x0F, 0x03,
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x07, 0x0F,
- 0x0F, 0x07, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x06, 0x0E, 0x0F, 0x0F, 0x0F, 0x0F, 0x1F, 0x5E, 0x0C, 0x00, 0x00,
- 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 ]; 
-
diff --git a/books/beaglebone-cookbook/03displays/code/pwmTest.sh b/books/beaglebone-cookbook/03displays/code/pwmTest.sh
deleted file mode 100755
index 188ef6ffc665d6f2561667af8ce9bbcc57277bc3..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/03displays/code/pwmTest.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/env bash
-
-# config-pin P9_14 pwm
-
-PWMPATH=/sys/class/pwm
-
-echo Testing pwmchip$1 pwm$2 in
-echo $PWMPATH/pwmchip$1
-
-
-cd $PWMPATH/pwmchip$1
-sudo chgrp gpio *
-sudo chmod g+w *
-echo $2 > export
-
-cd pwm$2
-sudo chgrp gpio *
-sudo chmod g+w *
-ls -ls
-echo 1000000000 > period
-echo  500000000 > duty_cycle
-echo  1 > enable
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/03displays/code/speak.js b/books/beaglebone-cookbook/03displays/code/speak.js
deleted file mode 100755
index 9ee797de6499cd8495a8f1ac33bd621e6ba1598d..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/03displays/code/speak.js
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/usr/bin/env node
-
-var exec = require('child_process').exec;
-
-function speakForSelf(phrase) {
-{
-	exec('flite -t "' + phrase + '"', function (error, stdout, stderr) {
-        console.log(stdout);
-        if(error) { 
-            console.log('error: ' + error); 
-        }
-        if(stderr) {
-            console.log('stderr: ' + stderr); 
-        }
-        });
-}
-
-speakForSelf("Hello, My name is Borris. " +
-    "I am a BeagleBone Black, " +
-    "a true open hardware, " +
-    "community-supported embedded computer for developers and hobbyists. " +
-    "I am powered by a 1 Giga Hertz Sitara™ ARM® Cortex-A8 processor. " +
-    "I boot Linux in under 10 seconds. " +
-    "You can get started on development in " +
-    "less than 5 minutes with just a single USB cable." +
-    "Bark, bark!"
-    );
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/03displays/displays.rst b/books/beaglebone-cookbook/03displays/displays.rst
index c796ba35bbdd089bf0de0f0f125d2ac637d35321..dcd7c689e60c1af0f47748dd2a4e88f3aeda78bf 100644
--- a/books/beaglebone-cookbook/03displays/displays.rst
+++ b/books/beaglebone-cookbook/03displays/displays.rst
@@ -3,18 +3,14 @@
 Displays and Other Outputs
 ###########################
 
-Introduction
---------------------------
-
 In this chapter, you will learn how to control physical hardware via 
 BeagleBone Black's general-purpose input/output (GPIO) pins. The Bone has 
 65 GPIO pins that are brought out on two 46-pin headers, called 
-+P8+ and +P9+, as shown in :ref:`<js_P8P9_fig>>.
+*P8* and *P9*, as shown in :ref:`js_P8P9_fig`.
 
 .. note:: 
-     All the examples in the book assume you have cloned the 
-     Cookbook repository on www.github.com. Go here :ref:`<basics_repo>` for instructions.
-
+     All the examples in the book assume you have cloned the Cookbook 
+     repository on www.github.com. Go here :ref:`basics_repo` for instructions.
 
 .. _js_P8P9_fig:
 
@@ -27,228 +23,213 @@ BeagleBone Black's general-purpose input/output (GPIO) pins. The Bone has
 The purpose of this chapter is to give simple examples that show how to use 
 various methods of output. Most solutions require a breadboard and some jumper wires.
 
-All these examples assume that you know how to edit a file (:ref:`basic vsc<basics_vsc>`) and 
+All these examples assume that you know how to edit a file (:ref:`basics_vsc`) and 
 run it, either within Visual Studio Code (VSC) integrated development 
-environment (IDE) or from the command line (:ref:`<tips_shell>>).
+environment (IDE) or from the command line (:ref:`tips_shell`).
 
 .. _displays_onboardLED:
 
 Toggling an Onboard LED
---------------------------
+========================
 
 Problem
-*************
+--------
 
 You want to know how to flash the four LEDs that are next to the Ethernet port on the Bone.
 
 Solution
-*************
+---------
 
-Locate the four onboard LEDs shown in :ref:`<js_internLED_fig>>. 
-They are labeled +USR0+ through +USR3+, but we'll refer to them as the +USER+ LEDs.
+Locate the four onboard LEDs shown in :ref:`js_internLED_fig`. They are labeled *USR0* 
+through *USR3*, but we'll refer to them as the *USER* LEDs.
 
 .. _js_internLED_fig:
 
-The four +USER+ LEDs
-
 .. figure:: figures/internLED.png
      :align: center
      :alt: USER LEDs
 
-Place the code shown in :ref:`<js_internLED_code>` in a file called _internLED.js_. 
-You can do this using VSC to edit files (as shown in :ref:`basic vsc<basics_vsc>`) or with 
-a more traditional editor (as shown in :ref:`<tips_editing_files>>).
+     The four *USER* LEDs
 
-.. _py_internLED_code:
+Place the code shown in :ref:`js_internLED_code` in a file called ``internLED.js``. 
+You can do this using VSC to edit files (as shown in :ref:`basics_vsc`) or with 
+a more traditional editor (as shown in :ref:`tips_editing_files`).
 
-Using an internal LED (internLED.py)
-
-.. code-block:: python
-
-     include::code/internLED.py
+.. _py_internLED_code:
 
+.. literalinclude:: ../code/03displays/internLED.py
+   :caption: Using an internal LED (internLED.py)
+   :linenos:
 
+:download:`internLED.py <../code/03displays/internLED.py>`
 
 .. _js_internLED_code:
 
-Using an internal LED (internLED.js)
+.. literalinclude:: ../code/03displays/internLED.js
+   :caption: Using an internal LED (internLED.js)
+   :linenos:
 
-.. code-block:: JavaScript
+:download:`internLED.js <../code/03displays/internLED.js>`
 
-     include::code/internLED.js
-
-
-
-In the +bash+ command window, enter the following commands:
+In the *bash* command window, enter the following commands:
 
 .. code-block:: bash
 
-     bone$ cd ~/BoneCookbook/docs/03displays/code
+     bone$ cd ~/beaglebone-cookbook-code/03displays
      bone$ ./internLED.js
 
 
-The +USER0+ LED should now be flashing.
-
-Discussion
-*************
-
+The *USER0* LED should now be flashing.
 
 .. _displays_externalLED:
 
 Toggling an External LED
---------------------------
+========================
 
 Problem
-*************
+--------
 
 You want to connect your own external LED to the Bone.
 
 Solution
-*************
-Connect an LED to one of the GPIO pins using a series resistor to limit the current.  To make this recipe, you will need:
+---------
+
+Connect an LED to one of the GPIO pins using a series resistor 
+to limit the current. To make this recipe, you will need:
 
-* Breadboard and jumper wires (see :ref:`app proto <app_proto>`)
-* 220 &#8486; to 470 &#8486; resistor (see :ref:`app resistor <app_resistor>`)
-* LED (see :ref:`app opto <app_opto>`)
+* Breadboard and jumper wires.
+* 220R to 470R resistor.
+* LED
 
 .. WARNING:: 
+
      The value of the current limiting resistor depends on the LED you are using. 
      The Bone can drive only 4 to 6 mA, so you might need a larger resistor to keep 
-     from pulling too much current. A 330 &#8486; or 470 &#8486; resistor might be better.
-
+     from pulling too much current. A 330R or 470R resistor might be better.
 
-:ref:`<displays_externLED_fig>` shows how you can wire the LED to pin 14 of 
-the +P9+ header (+P9_14+). Every circuit in this book (:ref:`<basics_wire_breadboard>>) 
-assumes you have already wired the rightmost bus to ground (+P9_1+) and the next bus to 
-the left to the 3.3 V (+P9_3+) pins on the header. Be sure to get the polarity right on 
+:ref:`displays_externLED_fig` shows how you can wire the LED to pin 14 of 
+the *P9* header (*P9_14*). Every circuit in this book (:ref:`basics_wire_breadboard`) 
+assumes you have already wired the rightmost bus to ground (*P9_1*) and the next bus to 
+the left to the 3.3 V (*P9_3*) pins on the header. Be sure to get the polarity right on 
 the LED. The _short_ lead always goes to ground.
 
 .. _displays_externLED_fig:
 
-Diagram for using an external LED
-
 .. figure:: figures/externLED_bb.png
      :align: center
      :alt: External LED
 
-After you've wired it, start VSC (see :ref:`basic vsc<basics_vsc>`) 
-and find the code shown in :ref:`<py_externLED_code>>.
+     Diagram for using an external LED
 
-.. _py_externLED_code:
+After you've wired it, start VSC (see :ref:`basics_vsc`) 
+and find the code shown in :ref:`py_externLED_code`.
 
-Code for using an external LED (externLED.py)
-
-.. code-block:: python
+.. _py_externLED_code:
 
-     include::code/externLED.py
+.. literalinclude:: ../code/03displays/externLED.py
+   :caption: Code for using an external LED (externLED.py)
+   :linenos:
 
+:download:`externLED.py <../code/03displays/externLED.py>`
 
 .. _js_externLED_code:
 
-Code for using an external LED (externLED.js)
-
-.. code-block:: JavaScript
+.. literalinclude:: ../code/03displays/externLED.js
+   :caption: Code for using an external LED (externLED.js)
+   :linenos:
 
-     include::code/externLED.js
+:download:`externLED.js <../code/03displays/externLED.js>`
 
-
-Save your file and run the code as before (:ref:`<displays_onboardLED>>).
-
-Discussion
-*************
+Save your file and run the code as before (:ref:`displays_onboardLED`).
 
 .. _displays_powerSwitch:
 
 Toggling a High-Voltage External Device
------------------------------------------
+========================================
 
 Problem
-*************
+-------
 
 You want to control a device that runs at 120 V.
 
 Solution
-*************
+---------
 
-Working with 120 V can be tricky--even dangerous--if 
-you aren't careful.  Here's a safe way to do it.
+Working with 120 V can be tricky --even dangerous-- if 
+you aren't careful. Here's a safe way to do it.
 
 To make this recipe, you will need:
 
-* PowerSwitch Tail II (see :ref:`<app_misc>>)
+* PowerSwitch Tail II
 
-:ref:`<displays_powerSwitch_fig>` shows how you can wire 
-the PowerSwitch Tail II to pin +P9_14+.
+:ref:`displays_powerSwitch_fig` shows how you can wire 
+the PowerSwitch Tail II to pin *P9_14*.
 
 .. _displays_powerSwitch_fig:
 
-Diagram for wiring PowerSwitch Tail II
-
 .. figure:: figures/powerSwitch_bb.png
      :align: center
      :alt: Power Switch Tail II
 
-After you've wired it, because this uses the same output pin as 
-:ref:`<displays_externalLED>>, you can run the same code (:ref:`<py_externLED_code>>).
+     Diagram for wiring PowerSwitch Tail II
 
-Discussion
-*************
+After you've wired it, because this uses the same output pin as 
+:ref:`displays_externalLED`, you can run the same code (:ref:`py_externLED_code`).
 
 .. _displays_PWMdiscussion:
 
 Fading an External LED
---------------------------
+=======================
 
 Problem
-*************
+--------
+
 You want to change the brightness of an LED from the Bone.
 
 Solution
-*************
+---------
 
 Use the Bone's pulse width modulation (PWM) hardware to fade an LED. We'll use 
-the same circuit as before (:ref:`<displays_externLED_fig>>). Find the code in 
-:ref:`<py_fadeLED_code>>Next configure the pins.  We are using P9_14 so run:
+the same circuit as before (:ref:`displays_externLED_fig`). Find the code in 
+:ref:`py_fadeLED_code` Next configure the pins.  We are using P9_14 so run:
 
 .. code-block:: bash
-     bone$ config-pin P9_14 pwm
 
+     bone$ config-pin P9_14 pwm
 
 Then run it as before.
 
 .. _py_fadeLED_code:
 
-Code for using an external LED (fadeLED.py)
+.. literalinclude:: ../code/03displays/fadeLED.py
+   :caption: Code for using an external LED (fadeLED.py)
+   :linenos:
 
-.. code-block:: python
-
-     include::code/fadeLED.py
+:download:`fadeLED.py <../code/03displays/fadeLED.py>`
 
 .. _js_fadeLED_code:
 
-Code for using an external LED (fadeLED.js)
-
-.. code-block:: JavaScript
+.. literalinclude:: ../code/03displays/fadeLED.js
+   :caption: Code for using an external LED (fadeLED.js)
+   :linenos:
 
-     include::code/fadeLED.js
+:download:`fadeLED.js <../code/03displays/fadeLED.js>`
 
-Discussion
-*************
-
-The Bone has several outputs that can be use as pwm's as shown in :ref:`<cape-headers-pwm_fig>>.  
-There are three +EHRPWM+'s which each has a pair  of pwm channels.  Each pair must have the same period.  
+The Bone has several outputs that can be use as pwm's as shown in :ref:`cape-headers-pwm_fig`.  
+There are three *EHRPWM's* which each has a pair  of pwm channels. Each pair must have the same period.  
 
 .. _cape-headers-pwm_fig:
 
-Table of PWM outputs
-
 .. figure:: figures/cape-headers-pwm.png
      :align: center
      :alt: PWM outputs
 
-The pwm's are accessed through +/dev/bone/pwm+
+     Table of PWM outputs
+
+The pwm's are accessed through */dev/bone/pwm*
 
-.. todo::  Should this be /dev/bone/pwm?
+.. todo
+     Should this be /dev/bone/pwm?
 
 .. code-block:: bash
 
@@ -256,7 +237,7 @@ The pwm's are accessed through +/dev/bone/pwm+
      bone$ ls
      0  1  2
 
-Here we see six pwmchips that can be used, each has two channels.  Explore one.
+Here we see six pwmchips that can be used, each has two channels. Explore one.
 
 .. code-block:: bash
 
@@ -278,14 +259,12 @@ Here we see six pwmchips that can be used, each has two channels.  Explore one.
 
 Your LED should now be flashing.
 
-:ref:`<display_pwm_mapping>` are the mapping I've figured out 
+:ref:`display_pwm_mapping` are the mapping I've figured out 
 so far. I don't know how to get to the timers.
 
 .. _display_pwm_mapping:
 
-Headers to pwm channel mapping.
-
-.. table::
+.. table:: Headers to pwm channel mapping
      
      +-------+-----+-----------+
      | Pin   | pwm | channel   |
@@ -305,42 +284,45 @@ Headers to pwm channel mapping.
 
 
 Writing to an LED Matrix
---------------------------
+=========================
 
 Problem
-*************
+--------
 
-You have an I^2^C-based LED matrix to interface.
+You have an |I2C|-based LED matrix to interface.
 
 Solution
-*************
+--------
 
 There are a number of nice LED matrices that allow you to control several LEDs via one interface. 
-This solution uses an `Adafruit Bicolor 8x8 LED Square Pixel Matrix w/I^2^C Backpack <http://www.adafruit.com/products/902>`_.
+This solution uses an `Adafruit Bicolor 8x8 LED Square Pixel Matrix w/|I2C| Backpack <http://www.adafruit.com/products/902>`_.
 
 To make this recipe, you will need:
 
-* Breadboard and jumper wires (see :ref:`app proto <app_proto>`)
-* Two 4.7 k&#8486; resistors (see :ref:`app resistor <app_resistor>`)
-* I^2^C LED matrix (see :ref:`app opto <app_opto>`)
+* Breadboard and jumper wires
+* Two 4.7 R resistors.
+* |I2C| LED matrix
 
-The LED matrix is a 5 V device, but you can drive it from 3.3 V. Wire, as shown in :ref:`<displays_i2cMatrix_fig>>.
+The LED matrix is a 5 V device, but you can drive it from 3.3 V. Wire, as shown in :ref:`displays_i2cMatrix_fig`.
 
 .. _displays_i2cMatrix_fig:
 
-Wiring an I^2^C LED matrix
-
 .. figure:: figures/i2cMatrix_bb.png
      :align: center
-     :alt: I^2^C LED matrix
+     :alt: |I2C| LED matrix
+
+     Wiring an |I2C| LED matrix
 
-:ref:`<sensors_i2c_temp>` shows how to use +i2cdetect+ to discover the address of an I^2^C device.
+:ref:`sensors_i2c_temp` shows how to use *i2cdetect* to discover the address of an |I2C| device.
 
-Run the +i2cdetect -y -r 2+ command to discover the address of the display on I^2^C bus 2, as shown in :ref:`<displays_i2cdetect>>.
+.. |I2C| replace:: I\ :sup:`2`\ C
+
+Run the *i2cdetect -y -r 2* command to discover the address of the display on |I2C| bus 2, as shown in :ref:`displays_i2cdetect`.
 
 .. _displays_i2cdetect:
 
-Using I^2^C command-line tools to discover the address of the display
+Using |I2C| command-line tools to discover the address of the display
+======================================================================
 
 .. code-block:: bash
 
@@ -355,10 +337,10 @@ Using I^2^C command-line tools to discover the address of the display
      60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 
      70: 70 -- -- -- -- -- -- -- 
 
-Here, you can see a device at +0x49+ and +0x70+. I know I have a temperature 
-sensor at +0x49+, so the LED matrix must be at +0.70+. 
+Here, you can see a device at *0x49* and *0x70*. I know I have a temperature 
+sensor at *0x49*, so the LED matrix must be at *0.70*. 
 
-Find the code in :ref:`<displays_matrix_i2c>` and run it by using the following command:
+Find the code in :ref:`displays_matrix_i2c` and run it by using the following command:
 
 .. code-block:: bash
 
@@ -368,91 +350,90 @@ Find the code in :ref:`<displays_matrix_i2c>` and run it by using the following
 .. _displays_matrix_i2c:
 
 LED matrix display (matrixLEDi2c.py)
+=====================================
 
 .. code-block:: C
 
-     include::code/matrixLEDi2c.py
-
+     include::../code/03displays/matrixLEDi2c.py
 
-<1> This line states which bus to use. The last digit gives the BoneScript bus number.
 
-<2> This specifies the address of the LED matrix, +0x70+ in our case.
+1. This line states which bus to use. The last digit gives the BoneScript bus number.
 
-<3> This indicates which LEDs to turn on. The first byte is for the first column of _green_ LEDs. In this case, all are turned off. The next byte is for the first column of _red_ LEDs. The hex +0x3c+ number is +0b00111100+ in binary. This means the first two red LEDs are off, the next four are on, and the last two are off. The next byte (+0x00+) says the second column of _green_ LEDs are all off, the fourth byte (+0x42+ = +0b01000010+) says just two +red+ LEDs are on, and so on. Declarations define four different patterns to display on the LED matrix, the last being all turned off.
+2. This specifies the address of the LED matrix, *0x70* in our case.
 
-<4> Send three commands to the matrix to get it ready to display.
+3. This indicates which LEDs to turn on. The first byte is for the first column of ``green`` LEDs. In this case, all are turned off. The next byte is for the first column of ``red`` LEDs. The hex *0x3c* number is *0b00111100* in binary. This means the first two red LEDs are off, the next four are on, and the last two are off. The next byte (*0x00*) says the second column of *green* LEDs are all off, the fourth byte (*0x42* = *0b01000010*) says just two *red* LEDs are on, and so on. Declarations define four different patterns to display on the LED matrix, the last being all turned off.
 
-<5> Now, we are ready to display the various patterns. After each pattern is displayed, we sleep a certain amount of time so that the pattern can be seen.
+4. Send three commands to the matrix to get it ready to display.
 
-<6> Finally, send commands to the LED matrix to set the brightness. This makes the disply fade out and back in again.
+5. Now, we are ready to display the various patterns. After each pattern is displayed, we sleep a certain amount of time so that the pattern can be seen.
 
-Discussion
-*************
+6. Finally, send commands to the LED matrix to set the brightness. This makes the disply fade out and back in again.
 
 .. _displays_drive5V:
 
 Driving a 5 V Device
---------------------------
+=====================
 
 Problem
-*************
+--------
+
 You have a 5 V device to drive, and the Bone has 3.3 V outputs.
 
 Solution
-*************
+---------
+
 If you are lucky, you might be able to drive a 5 V device from the Bone's 3.3 V output. 
 Try it and see if it works. If not, you need a level translator.  
 
 What you will need for this recipe:
 
-* A PCA9306 level translator (see :ref:`app ic<app_ic>`)
+* A PCA9306 level translator
 * A 5 V power supply (if the Bone's 5 V power supply isn't enough)
 
 The PCA9306  translates signals at 3.3 V to 5 V in both directions. It's meant to work with 
-I^2^C devices that have a pull-up resistor, but it can work with anything needing translation.
+|I2C| devices that have a pull-up resistor, but it can work with anything needing translation.
 
-:ref:`<displays_i2cMatrixLevelTrans_fig>` shows how to wire a PCA9306 to an LED matrix. 
-The left is the 3.3 V side and the right is the 5 V side. Notice that we are using the Bone's built-in 5 V power supply.
+:ref:`displays_i2cMatrixLevelTrans_fig` shows how to wire a PCA9306 to an LED matrix. 
+The left is the 3.3 V side and the right is the 5 V side. Notice that we are using 
+the Bone's built-in 5 V power supply.
 
 .. _displays_i2cMatrixLevelTrans_fig:
 
-Wiring a PCA9306 level translator to an LED matrix
-
 .. figure:: figures/i2cMatrixLevelTrans_bb.png
      :align: center
      :alt: PCA9306 level translator
 
-.. note:: If your device needs more current than the Bone's 5 V power supply provides, you can wire in an external power supply.
+     Wiring a PCA9306 level translator to an LED matrix
 
-
-Discussion
-*************
+.. note:: 
+     If your device needs more current than the Bone's 5 V power 
+     supply provides, you can wire in an external power supply.
 
 Writing to a NeoPixel LED String Using the PRUs
---------------------------
+================================================
 
 Problem
-*************
+--------
 
-You have an :ref:`Adafruit NeoPixel LED string <http://www.adafruit.com/products/1138>`_ or 
+You have an `Adafruit NeoPixel LED string <http://www.adafruit.com/products/1138>`_ or 
 `Adafruit NeoPixel LED matrix <http://www.adafruit.com/products/1487>`_ and want to light it up.
 
 Solution
-*************
+---------
 
 The PRU Cookbook has a nice discussion 
-(https://markayoder.github.io/PRUCookbook/05blocks/blocks.html#blocks_ws2812[WS2812 (NeoPixel) driver]) on driving NeoPixels.
+(`WS2812 (NeoPixel) driver <https://markayoder.github.io/PRUCookbook/05blocks/blocks.html#blocks_ws2812>`_) on driving NeoPixels.
 
 .. _py_neoPixelMatrix_fig:
 
-Wiring an Adafruit NeoPixel LED matrix to +P9_29+
-
 .. figure:: figures/neo_bb.png
      :align: center
      :alt: NeoPixel Ring
 
+     Wiring an Adafruit NeoPixel LED matrix to *P9_29*
+
 Writing to a NeoPixel LED String Using LEDscape
-------------------------------------------------
+================================================
 
 .. // .. todo:: Remove?
 .. // Problem
@@ -462,7 +443,7 @@ Writing to a NeoPixel LED String Using LEDscape
 .. // Solution
 .. *************
 
-.. // Wire up an Adafruit NeoPixel LED 8-by-8 matrix as shown in :ref:`<js_neoPixelMatrix_fig>>.
+.. // Wire up an Adafruit NeoPixel LED 8-by-8 matrix as shown in :ref:`js_neoPixelMatrix_fig`.
 
 .. // .. _js_neoPixelMatrix_fig:
 
@@ -471,7 +452,7 @@ Writing to a NeoPixel LED String Using LEDscape
 ..      :align: center
 ..      :alt: NeoPixel Matrix
 
-.. // :ref:`<js_neoPixel_code>` shows how to install LEDscape and run the LEDs.
+.. // :ref:`js_neoPixel_code` shows how to install LEDscape and run the LEDs.
 
 .. // .. _js_neoPixel_code:
 
@@ -480,7 +461,7 @@ Writing to a NeoPixel LED String Using LEDscape
 .. // [source, bash]
 .. // ----
 
-.. // include::code/neoPixel.sh
+.. // include::../code/03displays/neoPixel.sh
 
 .. // ----
 .. // ====
@@ -489,34 +470,30 @@ Writing to a NeoPixel LED String Using LEDscape
 .. *************
 
 Making Your Bone Speak
---------------------------
+=======================
 
 Problem
-*************
+--------
+
 Your Bone wants to talk.
 
 Solution
-*************
-Just install the _flite_ text-to-speech program:
+---------
+
+Just install the ``flite`` text-to-speech program:
 
 .. code-block:: bash
      
      bone$ sudo apt install flite
 
-
-Then add the code from :ref:`<speak_code>` in a file called _speak.js_ and run.
+Then add the code from :ref:`speak_code` in a file called ``speak.js`` and run.
 
 .. _speak_code:
 
-A program that talks (speak.js)
-
-.. code-block:: JavaScript
-
-     include::code/speak.js
-
-
+.. literalinclude:: ../code/03displays/speak.js
+   :caption: A program that talks (speak.js)
+   :linenos:
 
-See :ref:`<sensors_audio>` to see how to use a USB audio dongle and set your default audio out.
+:download:`speak.js <../code/03displays/speak.js>`
 
-Discussion
-*************
+See :ref:`sensors_audio` to see how to use a USB audio dongle and set your default audio out.
diff --git a/books/beaglebone-cookbook/04motors/code/bipolarStepperMotor.py b/books/beaglebone-cookbook/04motors/code/bipolarStepperMotor.py
deleted file mode 100755
index 2b0b2cafd00d3621f67f52a67902d1fb02093bf7..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/04motors/code/bipolarStepperMotor.py
+++ /dev/null
@@ -1,91 +0,0 @@
-#!/usr/bin/env python
-import time
-import os
-import signal
-import sys
-
-# Motor is attached here
-# controller = ["P9_11", "P9_13", "P9_15", "P9_17"]; 
-# controller = ["30", "31", "48", "5"]
-# controller = ["P9_14", "P9_16", "P9_18", "P9_22"]; 
-controller = ["50", "51", "4", "2"]
-states = [[1,0,0,0], [0,1,0,0], [0,0,1,0], [0,0,0,1]]
-statesHiTorque = [[1,1,0,0], [0,1,1,0], [0,0,1,1], [1,0,0,1]]
-statesHalfStep = [[1,0,0,0], [1,1,0,0], [0,1,0,0], [0,1,1,0],
-                      [0,0,1,0], [0,0,1,1], [0,0,0,1], [1,0,0,1]]
-
-curState = 0    # Current state
-ms = 100        # Time between steps, in ms
-maxStep = 22    # Number of steps to turn before turning around
-minStep = 0     # minimum step to turn back around on
-
-CW  =  1       # Clockwise
-CCW = -1
-pos =  0       # current position and direction
-direction = CW
-GPIOPATH="/sys/class/gpio"
-
-def signal_handler(sig, frame):
-    print('Got SIGINT, turning motor off')
-    for i in range(len(controller)) :
-        f = open(GPIOPATH+"/gpio"+controller[i]+"/value", "w")
-        f.write('0')
-        f.close()
-    sys.exit(0)
-signal.signal(signal.SIGINT, signal_handler)
-print('Hit ^C to stop')
-
-def move():
-    global pos
-    global direction
-    global minStep
-    global maxStep
-    pos += direction
-    print("pos: " + str(pos))
-    # Switch directions if at end.
-    if (pos >= maxStep or pos <= minStep) :
-        direction *= -1
-    rotate(direction)
-
-# This is the general rotate
-def rotate(direction) :
-    global curState
-    global states
-	# print("rotate(%d)", direction);
-    # Rotate the state acording to the direction of rotation
-    curState +=  direction
-    if(curState >= len(states)) :
-        curState = 0;
-    elif(curState<0) :
-        curState = len(states)-1
-    updateState(states[curState])
-
-# Write the current input state to the controller
-def updateState(state) :
-    global controller
-    print(state)
-    for i in range(len(controller)) :
-        f = open(GPIOPATH+"/gpio"+controller[i]+"/value", "w")
-        f.write(str(state[i]))
-        f.close()
-
-# Initialize motor control pins to be OUTPUTs
-for i in range(len(controller)) :
-    # Make sure pin is exported
-    if (not os.path.exists(GPIOPATH+"/gpio"+controller[i])):
-        f = open(GPIOPATH+"/export", "w")
-        f.write(pin)
-        f.close()
-    # Make it an output pin
-    f = open(GPIOPATH+"/gpio"+controller[i]+"/direction", "w")
-    f.write("out")
-    f.close()
-
-# Put the motor into a known state
-updateState(states[0])
-rotate(direction)
-
-# Rotate
-while True:
-    move()
-    time.sleep(ms/1000)
diff --git a/books/beaglebone-cookbook/04motors/code/dcMotor.js b/books/beaglebone-cookbook/04motors/code/dcMotor.js
deleted file mode 100755
index 09c798c94a8a6d497373db17f34201b9125c44bf..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/04motors/code/dcMotor.js
+++ /dev/null
@@ -1,44 +0,0 @@
-#!/usr/bin/env node
-////////////////////////////////////////
-//	dcMotor.js
-//	This is an example of driving a DC motor
-//	Wiring:
-//	Setup:  config-pin P9_16 pwm
-//	See:
-////////////////////////////////////////
-const fs = require("fs");
-
-const pwmPeriod = '1000000';    // Period in ns
-const pwm     = '1';  // pwm to use
-const channel = 'b';  // channel to use
-const PWMPATH='/dev/bone/pwm/'+pwm+'/'+channel;
-
-const low = 0.05,     // Slowest speed (duty cycle)
-      hi  = 1,        // Fastest (always on)
-      ms = 100;       // How often to change speed, in ms
-var   speed = 0.5,    // Current speed;
-      step = 0.05;    // Change in speed
-
-// fs.writeFileSync(PWMPATH+'/export', pwm);   // Export the pwm channel
-// Set the period in ns, first 0 duty_cycle, 
-fs.writeFileSync(PWMPATH+'/duty_cycle', '0');
-fs.writeFileSync(PWMPATH+'/period', pwmPeriod);
-fs.writeFileSync(PWMPATH+'/duty_cycle', pwmPeriod/2);
-fs.writeFileSync(PWMPATH+'/enable', '1');
-
-timer = setInterval(sweep, ms);
-
-function sweep() {
-    speed += step;
-    if(speed > hi || speed < low) {
-        step *= -1;
-    }
-    fs.writeFileSync(PWMPATH+'/duty_cycle', parseInt(pwmPeriod*speed));
-    // console.log('speed = ' + speed);
-}
-
-process.on('SIGINT', function() {
-    console.log('Got SIGINT, turning motor off');
-    clearInterval(timer);       // Stop the timer
-    fs.writeFileSync(PWMPATH+'/enable', '0');
-});
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/04motors/code/dcMotor.py b/books/beaglebone-cookbook/04motors/code/dcMotor.py
deleted file mode 100755
index 755eaf8481c6d35a523ed5ecd20ec40ceed16a10..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/04motors/code/dcMotor.py
+++ /dev/null
@@ -1,50 +0,0 @@
-#!/usr/bin/env python
-# ////////////////////////////////////////
-# //	dcMotor.js
-# //	This is an example of driving a DC motor
-# //	Wiring:
-# //	Setup:  config-pin P9_16 pwm
-# //	See:
-# ////////////////////////////////////////
-import time
-import signal
-import sys
-
-def signal_handler(sig, frame):
-    print('Got SIGINT, turning motor off')
-    f = open(PWMPATH+'/enable', 'w')
-    f.write('0')
-    f.close()
-    sys.exit(0)
-signal.signal(signal.SIGINT, signal_handler)
-
-pwmPeriod = '1000000'    # Period in ns
-pwm     = '1'  # pwm to use
-channel = 'b'  # channel to use
-PWMPATH='/dev/bone/pwm/'+pwm+'/'+channel
-
-low = 0.05     # Slowest speed (duty cycle)
-hi  = 1        # Fastest (always on)
-ms = 100       # How often to change speed, in ms
-speed = 0.5    # Current speed
-step = 0.05    # Change in speed
-
-f = open(PWMPATH+'/duty_cycle', 'w')
-f.write('0')
-f.close()
-f = open(PWMPATH+'/period', 'w')
-f.write(pwmPeriod)
-f.close()
-f = open(PWMPATH+'/enable', 'w')
-f.write('1')
-f.close()
-
-f = open(PWMPATH+'/duty_cycle', 'w')
-while True:
-    speed += step
-    if(speed > hi or speed < low):
-        step *= -1
-    duty_cycle = str(round(speed*1000000))    # Convert ms to ns
-    f.seek(0)
-    f.write(duty_cycle)
-    time.sleep(ms/1000)
diff --git a/books/beaglebone-cookbook/04motors/code/h-bridgeMotor.js b/books/beaglebone-cookbook/04motors/code/h-bridgeMotor.js
deleted file mode 100755
index 239418dd7237b6483231fd5944f237bc5f38e1da..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/04motors/code/h-bridgeMotor.js
+++ /dev/null
@@ -1,54 +0,0 @@
-#!/usr/bin/env node
-
-// This example uses an H-bridge to drive a DC motor in two directions
-
-var b = require('bonescript');
-
-var enable = 'P9_21';    // Pin to use for PWM speed control
-    in1    = 'P9_15',
-    in2    = 'P9_16',
-    step = 0.05,    // Change in speed
-    min  = 0.05,    // Min duty cycle
-    max  = 1.0,     // Max duty cycle
-    ms   = 100,     // Update time, in ms
-    speed = min;    // Current speed;
-
-b.pinMode(enable, b.ANALOG_OUTPUT, 6, 0, 0, doInterval);
-b.pinMode(in1, b.OUTPUT);
-b.pinMode(in2, b.OUTPUT);
-
-function doInterval(x) {
-    if(x.err) {
-        console.log('x.err = ' + x.err);
-        return;
-    }
-    timer = setInterval(sweep, ms);
-}
-
-clockwise();        // Start by going clockwise
-
-function sweep() {
-    speed += step;
-    if(speed > max || speed < min) {
-        step *= -1;
-        step>0 ? clockwise() : counterClockwise();
-    }
-    b.analogWrite(enable, speed);
-    console.log('speed = ' + speed);
-}
-
-function clockwise() {
-    b.digitalWrite(in1, b.HIGH);
-    b.digitalWrite(in2, b.LOW);
-}
-
-function counterClockwise() {
-    b.digitalWrite(in1, b.LOW);
-    b.digitalWrite(in2, b.HIGH);
-}
-
-process.on('SIGINT', function() {
-    console.log('Got SIGINT, turning motor off');
-    clearInterval(timer);         // Stop the timer
-    b.analogWrite(enable, 0);     // Turn motor off
-});
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/04motors/code/ring.js b/books/beaglebone-cookbook/04motors/code/ring.js
deleted file mode 100755
index a383eae4dc7d5639da22ea7623fb5f0927ae1c38..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/04motors/code/ring.js
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/usr/bin/env node
-
-// Drive a simple servo motor back and forth
-
-var b = require('bonescript');
-
-var motor = 'P9_21', // Pin to control servo
-    freq = 50,  // Servo frequency (20 ms)
-    min  = 0.8, // Smallest angle (in ms)
-    max  = 2.5, // Largest angle (in ms)
-    ms  = 500,  // How often to change position, in ms
-    pos = 1.5,  // Current position, about middle
-    step = 0.1; // Step size to next position
-var timer;
-
-console.log('Hit ^C to stop');
-b.pinMode(motor, b.ANALOG_OUTPUT);
-
-pos1();
-
-function pos1() {
-    move(0.9);
-    timer = setTimeout(pos2, ms);
-}
-function pos2() {
-    move(2.1);      // Start in the middle
-    timer = setTimeout(pos1, ms);
-}
-
-function move(pos) {
-    var dutyCycle = pos/1000*freq;
-    b.analogWrite(motor, dutyCycle, freq);
-    console.log('pos = ' + pos.toFixed(3) + ' duty cycle = ' + dutyCycle.toFixed(3));
-}
-
-process.on('SIGINT', function() {
-    console.log('Got SIGINT, turning motor off');
-    clearTimeout(timer);             // Stop the timer
-    b.analogWrite(motor, 0, 0);    // Turn motor off
-});
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/04motors/code/servoBird.js b/books/beaglebone-cookbook/04motors/code/servoBird.js
deleted file mode 100755
index 29466b949aac459f027b5466a8a9cc4700d6f23e..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/04motors/code/servoBird.js
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/env node
-var b = require('bonescript');
-var motor = 'P9_14';    // Pin to use
-var freq = 80;          // Servo frequency
-var dir = 0.001, // Direction
-    min = 0.05,
-    max = 0.15,
-    ms = 50,
-    pos = min; // Current position;
-
-b.pinMode(motor, b.ANALOG_OUTPUT);
-
-setInterval(move, ms);
-
-function move() {
-    pos += dir;
-    if(pos > max || pos < min) {
-        dir = -1 * dir;
-    }
-    b.analogWrite(motor, pos, freq);
-    console.log('pos = ' + pos);
-}
diff --git a/books/beaglebone-cookbook/04motors/code/servoEncoder.py b/books/beaglebone-cookbook/04motors/code/servoEncoder.py
deleted file mode 100755
index 70724954dbd51f50483a5a225834ebe84f3f6d1f..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/04motors/code/servoEncoder.py
+++ /dev/null
@@ -1,98 +0,0 @@
-#!/usr/bin/env python
-# ////////////////////////////////////////
-# //	servoEncoder.py
-# //	Drive a simple servo motor using rotary encoder viq eQEP 
-# //	Wiring: Servo on P9_16, rotary encoder on P8_11 and P8_12
-# //	Setup:  config-pin P9_16 pwm
-# //			config-pin P8_11 eqep
-# //			config-pin P8_12 eqep
-# //	See:
-# ////////////////////////////////////////
-import time
-import signal
-import sys
-
-# Set up encoder
-eQEP = '2'
-COUNTERPATH = '/dev/bone/counter/counter'+eQEP+'/count0'
-maxCount = '180'
-
-ms = 100 	# Time between samples in ms
-
-# Set the eEQP maximum count
-fQEP = open(COUNTERPATH+'/ceiling', 'w')
-fQEP.write(maxCount)
-fQEP.close()
-
-# Enable
-fQEP = open(COUNTERPATH+'/enable', 'w')
-fQEP.write('1')
-fQEP.close()
-
-fQEP = open(COUNTERPATH+'/count', 'r')
-
-# Set up servo
-pwmPeriod = '20000000'    # Period in ns, (20 ms)
-pwm     = '1'  # pwm to use
-channel = 'b'  # channel to use
-PWMPATH='/dev/bone/pwm/'+pwm+'/'+channel
-low  = 0.6 # Smallest angle (in ms)
-hi   = 2.5 # Largest angle (in ms)
-ms   = 250 # How often to change position, in ms
-pos  = 1.5 # Current position, about middle ms)
-step = 0.1 # Step size to next position
-
-def signal_handler(sig, frame):
-    print('Got SIGINT, turning motor off')
-    f = open(PWMPATH+'/enable', 'w')
-    f.write('0')
-    f.close()
-    sys.exit(0)
-signal.signal(signal.SIGINT, signal_handler)
-
-f = open(PWMPATH+'/period', 'w')
-f.write(pwmPeriod)
-f.close()
-f = open(PWMPATH+'/duty_cycle', 'w')
-f.write(str(round(int(pwmPeriod)/2)))
-f.close()
-f = open(PWMPATH+'/enable', 'w')
-f.write('1')
-f.close()
-
-print('Hit ^C to stop')
-
-olddata = -1
-while True:
-	fQEP.seek(0)
-	data = fQEP.read()[:-1]
-	# Print only if data changes
-	if data != olddata:
-		olddata = data
-		# print("data = " + data)
-		# # map 0-180  to low-hi
-		duty_cycle = -1*int(data)*(hi-low)/180.0 + hi
-		duty_cycle = str(int(duty_cycle*1000000))	# Convert from ms to ns
-		# print('duty_cycle = ' + duty_cycle)
-		f = open(PWMPATH+'/duty_cycle', 'w')
-		f.write(duty_cycle)
-		f.close()
-	time.sleep(ms/1000)
-
-# Black OR Pocket
-# eQEP0:	P9.27 and P9.42 OR P1_33 and P2_34
-# eQEP1:	P9.33 and P9.35
-# eQEP2:	P8.11 and P8.12 OR P2_24 and P2_33
-
-# AI
-# eQEP1:	P8.33 and P8.35
-# eQEP2:	P8.11 and P8.12 or P9.19 and P9.41
-# eQEP3:	P8.24 abd P8.25 or P9.27 and P9.42
-
-# | Pin   | pwm | channel
-# | P9_31 | 0   | a
-# | P9_29 | 0   | b
-# | P9_14 | 1   | a
-# | P9_16 | 1   | b
-# | P8_19 | 2   | a
-# | P8_13 | 2   | b
diff --git a/books/beaglebone-cookbook/04motors/code/servoMotor.js b/books/beaglebone-cookbook/04motors/code/servoMotor.js
deleted file mode 100755
index efe028801d442bd273f65fddf04d14daa4ab6c2d..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/04motors/code/servoMotor.js
+++ /dev/null
@@ -1,50 +0,0 @@
-#!/usr/bin/env node
-////////////////////////////////////////
-//	servoMotor.js
-//	Drive a simple servo motor back and forth on P9_16 pin
-//	Wiring:
-//	Setup:  config-pin P9_16 pwm
-//	See:
-////////////////////////////////////////
-const fs = require("fs");
-
-const pwmPeriod = '20000000';    // Period in ns, (20 ms)
-const pwm     = '1';  // pwm to use
-const channel = 'b';  // channel to use
-const PWMPATH='/dev/bone/pwm/'+pwm+'/'+channel;
-const low  = 0.8, // Smallest angle (in ms)
-      hi   = 2.4, // Largest angle (in ms)
-      ms  = 250;  // How often to change position, in ms
-var   pos = 1.5,  // Current position, about middle ms)
-      step = 0.1; // Step size to next position
-
-console.log('Hit ^C to stop');
-fs.writeFileSync(PWMPATH+'/period', pwmPeriod);
-fs.writeFileSync(PWMPATH+'/enable', '1');
-
-var timer = setInterval(sweep, ms);
-
-// Sweep from low to hi position and back again
-function sweep() {
-    pos += step;    // Take a step
-    if(pos > hi || pos < low) {
-        step *= -1;
-    }
-    var dutyCycle = parseInt(pos*1000000);    // Convert ms to ns
-    // console.log('pos = ' + pos + ' duty cycle = ' + dutyCycle);
-    fs.writeFileSync(PWMPATH+'/duty_cycle', dutyCycle);
-}
-
-process.on('SIGINT', function() {
-    console.log('Got SIGINT, turning motor off');
-    clearInterval(timer);             // Stop the timer
-    fs.writeFileSync(PWMPATH+'/enable', '0');
-});
-
-// | Pin   | pwm | channel
-// | P9_31 | 0   | a
-// | P9_29 | 0   | b
-// | P9_14 | 1   | a
-// | P9_16 | 1   | b
-// | P8_19 | 2   | a
-// | P8_13 | 2   | b
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/04motors/code/servoMotor.py b/books/beaglebone-cookbook/04motors/code/servoMotor.py
deleted file mode 100755
index 324bc7be5570eb30b29592cd3813f5cd270889c3..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/04motors/code/servoMotor.py
+++ /dev/null
@@ -1,56 +0,0 @@
-#!/usr/bin/env python
-# ////////////////////////////////////////
-# //	servoMotor.py
-# //	Drive a simple servo motor back and forth on P9_16 pin
-# //	Wiring:
-# //	Setup:  config-pin P9_16 pwm
-# //	See:
-# ////////////////////////////////////////
-import time
-import signal
-import sys
-
-pwmPeriod = '20000000'    # Period in ns, (20 ms)
-pwm =     '1' # pwm to use
-channel = 'b' # channel to use
-PWMPATH='/dev/bone/pwm/'+pwm+'/'+channel
-low  = 0.8 # Smallest angle (in ms)
-hi   = 2.4 # Largest angle (in ms)
-ms   = 250 # How often to change position, in ms
-pos  = 1.5 # Current position, about middle ms)
-step = 0.1 # Step size to next position
-
-def signal_handler(sig, frame):
-    print('Got SIGINT, turning motor off')
-    f = open(PWMPATH+'/enable', 'w')
-    f.write('0')
-    f.close()
-    sys.exit(0)
-signal.signal(signal.SIGINT, signal_handler)
-print('Hit ^C to stop')
-
-f = open(PWMPATH+'/period', 'w')
-f.write(pwmPeriod)
-f.close()
-f = open(PWMPATH+'/enable', 'w')
-f.write('1')
-f.close()
-
-f = open(PWMPATH+'/duty_cycle', 'w')
-while True:
-    pos += step    # Take a step
-    if(pos > hi or pos < low):
-        step *= -1
-    duty_cycle = str(round(pos*1000000))    # Convert ms to ns
-    # print('pos = ' + str(pos) + ' duty_cycle = ' + duty_cycle)
-    f.seek(0)
-    f.write(duty_cycle)
-    time.sleep(ms/1000)
-
-# | Pin   | pwm | channel
-# | P9_31 | 0   | a
-# | P9_29 | 0   | b
-# | P9_14 | 1   | a
-# | P9_16 | 1   | b
-# | P8_19 | 2   | a
-# | P8_13 | 2   | b
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/04motors/code/servoSense.js b/books/beaglebone-cookbook/04motors/code/servoSense.js
deleted file mode 100755
index 3dfe2f1fbdf8195bc5929616e430c7a3a5b31bbf..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/04motors/code/servoSense.js
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/usr/bin/env node
-
-// Bird will bow when there is a change in the sersor distance.
-
-var b = require('bonescript');
-var motor = 'P9_14';    // Pin to use
-var freq = 50;   // Servo frequency (20 ms)
-var up = 0.6,   // Smallest angle (in ms)
-    down = 2.0,   // Largest angle (in ms)
-    dutyCycle,
-    ms  = 250,   // How often to change position, in ms
-    oldPos = 0;
-
-b.pinMode(motor, b.ANALOG_OUTPUT, 6, 0, 0, doInterval);
-
-function doInterval(x) {
-    if(x.err) {
-        console.log('x.err = ' + x.err);
-        return;
-    }
-    setInterval(readRange, ms);
-}
-
-move(2.0);
-
-function readRange() {
-    b.analogRead('P9_37', printStatus);
-}
-function printStatus(x) {
-    var pos = x.value;
-    console.log('pos = ' + pos);
-    if (pos-oldPos>0.5) {
-        move(up);
-    }
-    if (oldPos-pos>0.5) {
-        move(down);
-    }
-    oldPos = pos;
-}
-
-function move(pos) {
-
-    dutyCycle = pos/1000*freq
-    b.analogWrite(motor, dutyCycle, freq);
-    console.log('pos = ' + pos + ' duty cycle = ' + dutyCycle);
-}
diff --git a/books/beaglebone-cookbook/04motors/code/stop.js b/books/beaglebone-cookbook/04motors/code/stop.js
deleted file mode 100755
index ff06655adfa9123a032b114742cbd5ad280b6314..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/04motors/code/stop.js
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/usr/bin/env node
-// Used for turning everything off.
-var b = require('bonescript');
-var gpio = ['P9_11', 'P9_13', 'P9_14', 'P9_15', 'P9_16'];
-var i;
-
-for(i=0; i<gpio.length; i++) {
-    b.pinMode(gpio[i], b.OUTPUT);
-    b.digitalWrite(gpio[i], b.LOW);
-}
diff --git a/books/beaglebone-cookbook/04motors/code/unipolarStepperMotor.js b/books/beaglebone-cookbook/04motors/code/unipolarStepperMotor.js
deleted file mode 100755
index 26032442241ed60c973a6e126a78df2078c42a68..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/04motors/code/unipolarStepperMotor.js
+++ /dev/null
@@ -1,72 +0,0 @@
-#!/usr/bin/env node
-var fs = require('fs');
-
-// Motor is attached here
-// var controller = ["P9_11", "P9_13", "P9_15", "P9_17"]; 
-// var controller = ["P9_14", "P9_16", "P9_18", "P9_22"]; 
-var controller = ["50", "51", "4", "2"]; 
-var states = [[1,1,0,0], [0,1,1,0], [0,0,1,1], [1,0,0,1]];
-
-var curState = 0;   // Current state
-var ms = 100,       // Time between steps, in ms
-    max = 22,       // Number of steps to turn before turning around
-    min = 0;        // Minimum step to turn back around on
-
-var CW  =  1,       // Clockwise
-    CCW = -1,
-    pos = 0,        // current position and direction
-    direction = CW;
-const GPIOPATH="/sys/class/gpio";
-
-// Initialize motor control pins to be OUTPUTs
-var i;
-for(i=0; i<controller.length; i++) {
-    // Make sure pins are exported
-    if(!fs.existsSync(GPIOPATH+"/gpio"+controller[i])) {
-        fs.writeFileSync(GPIOPATH+"/export", controller[i]);
-    // Make it an output pin
-    fs.writeFileSync(GPIOPATH+"/gpio"+controller[i]+"/direction", "in");
-    }
-}
-
-// Put the motor into a known state
-updateState(states[0]);
-rotate(direction);
-
-var timer = setInterval(move, ms);
-
-// Rotate back and forth once
-function move() {
-    pos += direction;
-    console.log("pos: " + pos);
-    // Switch directions if at end.
-    if (pos >= max || pos <= min) {
-        direction *= -1;
-    }
-    rotate(direction);
-}
-
-// This is the general rotate
-function rotate(direction) {
-	// console.log("rotate(%d)", direction);
-    // Rotate the state acording to the direction of rotation
-	curState +=  direction;
-	if(curState >= states.length) {
-	    curState = 0;
-	} else if(curState<0) {
-		    curState = states.length-1;
-	}
-	updateState(states[curState]);
-}
-
-// Write the current input state to the controller
-function updateState(state) {
-    console.log("state: " + state);
-	for (i=0; i<controller.length; i++) {
-        fs.writeFileSync(GPIOPATH+"/gpio"+controller[i]+"/value", state[i])
-	}
-}
-
-process.on('exit', function() {
-    updateState([0,0,0,0]);    // Turn motor off
-});
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/04motors/code/unipolarStepperMotor.js.diff b/books/beaglebone-cookbook/04motors/code/unipolarStepperMotor.js.diff
deleted file mode 100644
index 4a34a7768fec3f608bd6cfe0ee6bd6a77118a90e..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/04motors/code/unipolarStepperMotor.js.diff
+++ /dev/null
@@ -1,6 +0,0 @@
-# var controller = ["P9_11", "P9_13", "P9_15", "P9_17"];
-controller = ["30", "31", "48", "5"]
-var states = [[1,1,0,0], [0,1,1,0], [0,0,1,1], [1,0,0,1]];
-var curState = 0;   // Current state
-var ms = 100,       // Time between steps, in ms
-    max = 200,      // Number of steps to turn before turning around
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/04motors/code/unipolarStepperMotor.py b/books/beaglebone-cookbook/04motors/code/unipolarStepperMotor.py
deleted file mode 100755
index 1d13e416a39279865195067ada3840a887854373..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/04motors/code/unipolarStepperMotor.py
+++ /dev/null
@@ -1,91 +0,0 @@
-#!/usr/bin/env python
-import time
-import os
-import signal
-import sys
-
-# Motor is attached here
-# controller = ["P9_11", "P9_13", "P9_15", "P9_17"]; 
-# controller = ["30", "31", "48", "5"]
-# controller = ["P9_14", "P9_16", "P9_18", "P9_22"]; 
-controller = ["50", "51", "4", "2"]
-states = [[1,1,0,0], [0,1,1,0], [0,0,1,1], [1,0,0,1]]
-statesHiTorque = [[1,1,0,0], [0,1,1,0], [0,0,1,1], [1,0,0,1]]
-statesHalfStep = [[1,0,0,0], [1,1,0,0], [0,1,0,0], [0,1,1,0],
-                      [0,0,1,0], [0,0,1,1], [0,0,0,1], [1,0,0,1]]
-
-curState = 0    # Current state
-ms = 250        # Time between steps, in ms
-maxStep = 22    # Number of steps to turn before turning around
-minStep = 0     # minimum step to turn back around on
-
-CW  =  1       # Clockwise
-CCW = -1
-pos =  0       # current position and direction
-direction = CW
-GPIOPATH="/sys/class/gpio"
-
-def signal_handler(sig, frame):
-    print('Got SIGINT, turning motor off')
-    for i in range(len(controller)) :
-        f = open(GPIOPATH+"/gpio"+controller[i]+"/value", "w")
-        f.write('0')
-        f.close()
-    sys.exit(0)
-signal.signal(signal.SIGINT, signal_handler)
-print('Hit ^C to stop')
-
-def move():
-    global pos
-    global direction
-    global minStep
-    global maxStep
-    pos += direction
-    print("pos: " + str(pos))
-    # Switch directions if at end.
-    if (pos >= maxStep or pos <= minStep) :
-        direction *= -1
-    rotate(direction)
-
-# This is the general rotate
-def rotate(direction) :
-    global curState
-    global states
-	# print("rotate(%d)", direction);
-    # Rotate the state acording to the direction of rotation
-    curState +=  direction
-    if(curState >= len(states)) :
-        curState = 0;
-    elif(curState<0) :
-        curState = len(states)-1
-    updateState(states[curState])
-
-# Write the current input state to the controller
-def updateState(state) :
-    global controller
-    print(state)
-    for i in range(len(controller)) :
-        f = open(GPIOPATH+"/gpio"+controller[i]+"/value", "w")
-        f.write(str(state[i]))
-        f.close()
-
-# Initialize motor control pins to be OUTPUTs
-for i in range(len(controller)) :
-    # Make sure pin is exported
-    if (not os.path.exists(GPIOPATH+"/gpio"+controller[i])):
-        f = open(GPIOPATH+"/export", "w")
-        f.write(pin)
-        f.close()
-    # Make it an output pin
-    f = open(GPIOPATH+"/gpio"+controller[i]+"/direction", "w")
-    f.write("out")
-    f.close()
-
-# Put the motor into a known state
-updateState(states[0])
-rotate(direction)
-
-# Rotate
-while True:
-    move()
-    time.sleep(ms/1000)
diff --git a/books/beaglebone-cookbook/04motors/code/unipolarStepperMotor.py.diff b/books/beaglebone-cookbook/04motors/code/unipolarStepperMotor.py.diff
deleted file mode 100644
index af91b7cd35747a466a872de88c04b32ea78c03fd..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/04motors/code/unipolarStepperMotor.py.diff
+++ /dev/null
@@ -1,6 +0,0 @@
-# controller = ["P9_11", "P9_13", "P9_15", "P9_17"]
-controller = ["30", "31", "48", "5"]
-states = [[1,1,0,0], [0,1,1,0], [0,0,1,1], [1,0,0,1]]
-curState = 0   // Current state
-ms = 100       // Time between steps, in ms
-max = 200      // Number of steps to turn before turning around
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/04motors/motors.rst b/books/beaglebone-cookbook/04motors/motors.rst
index b5fb69abef7b0a2711b1a49776e4882dcb269ee3..a159a8db3024e4195e52d0369c646539b67a4f9d 100644
--- a/books/beaglebone-cookbook/04motors/motors.rst
+++ b/books/beaglebone-cookbook/04motors/motors.rst
@@ -3,11 +3,12 @@
 Motors
 ########
 
-Introduction
---------------
+.. |kohm| replace:: kΩ
+
+.. |ohm| replace:: Ω
 
 One of the many fun things about embedded computers is that you can move physical things with motors.
-But there are so many different kinds of motors (_servo_, _stepper_, _DC_), so how do you select the right one?
+But there are so many different kinds of motors (``servo``, ``stepper``, ``DC``), so how do you select the right one?
 
 The type of motor you use depends on the type of motion you want:
 
@@ -15,7 +16,7 @@ The type of motor you use depends on the type of motion you want:
     Can be quickly positioned at various absolute angles, but some don't spin. In fact, many can turn only about 180{deg}.
 
     - Stepper motor
-        Spins and can also rotate in precise relative angles, such as turning 45{deg}. Stepper motors come in two types: _bipolar_ (which has four wires) and _unipolar_ (which has five or six wires).
+        Spins and can also rotate in precise relative angles, such as turning 45{deg}. Stepper motors come in two types: ``bipolar`` (which has four wires) and ``unipolar`` (which has five or six wires).
     - DC motor
         Spins either clockwise or counter-clockwise and can have the greatest speed of the three. But a DC motor can't easily be made to turn to a given angle.
         
@@ -24,7 +25,7 @@ When you know which type of motor to use, interfacing is easy. This chapter show
 .. note:: 
     Motors come in many sizes and types. This chapter presents some of the more popular 
     types and shows how they can interface easily to the Bone. If you need to turn on and 
-    off a 120 V motor, consider using something like the PowerSwitch presented in :ref:`<displays_powerSwitch>`.
+    off a 120 V motor, consider using something like the PowerSwitch presented in :ref:`displays_powerSwitch`.
 
 .. note:: 
     The Bone has built-in 3.3 V and 5 V supplies, which can supply enough current to drive 
@@ -33,39 +34,39 @@ When you know which type of motor to use, interfacing is easy. This chapter show
 
 .. note:: 
     All the examples in the book assume you have cloned the Cookbook repository on 
-    www.github.com. Go here :ref:`<basics_repo>` for instructions.
+    www.github.com. Go here :ref:`basics_repo` for instructions.
 
 .. _motors_servo:
 
 Controlling a Servo Motor
-----------------------------
+==========================
 
 Problem
-**************
+--------
 
 You want to use BeagleBone to control the absolute position of a servo motor.
 
 Solution
-**************
+--------
 
-We'll use the pulse width modulation (PWM) hardware of the Bone to control a 
-servo motor.
+We'll use the pulse width modulation (PWM) 
+hardware of the Bone to control a servo motor.
 
 To make the recipe, you will need:
 
-* Servo motor (see :ref:`<app_misc>`)
-* Breadboard and jumper wires (see :ref:`<app_proto>`)
-* 1 k&#8486; resistor (optional, see :ref:`<app_resistor>`)
-* 5 V power supply (optional, see :ref:`<app_misc>`)
+* Servo motor.
+* Breadboard and jumper wires.
+* 1 |kohm| resistor (optional)
+* 5 V power supply (optional)
 
-The 1 k&#8486; resistor isn't required, but it provides some protection to the general-purpose 
+The 1 |kohm| resistor isn't required, but it provides some protection to the general-purpose 
 input/output (GPIO) pin in case the servo fails and draws a large current. 
 
-Wire up your servo, as shown in :ref:`<motors_servoMotor>`.  
+Wire up your servo, as shown in :ref:`motors_servoMotor`.  
 
 .. note:: 
     There is no standard for how servo motor wires are colored. One of my servos is wired 
-    like :ref:`<motors_servoMotor>`: red is 3.3 V, black is ground, and yellow is the control line. 
+    like :ref:`motors_servoMotor` red is 3.3 V, black is ground, and yellow is the control line. 
     I have another servo that has red as 3.3 V and ground is brown, with the control line being orange. 
     Generally, though, the 3.3 V is in the middle. Check the datasheet for your servo before wiring.
 
@@ -75,55 +76,49 @@ Wire up your servo, as shown in :ref:`<motors_servoMotor>`.
     :align: center
     :alt: Servo Motor
 
-Driving a servo motor with the 3.3 V power supply
+    Driving a servo motor with the 3.3 V power supply
 
-The code for controlling the servo motor is in _servoMotor.py_, shown 
-in :ref:`<py_servoMotor_code>`. You need to configure the pin for PWM.
+The code for controlling the servo motor is in ``servoMotor.py``, shown 
+in :ref:`py_servoMotor_code`. You need to configure the pin for PWM.
 
 .. code-block:: bash
 
-    bone$ <strong>cd ~/BoneCookbook/docs/04motors/code</strong>
+    bone$ <strong>cd ~/beaglebone-cookbook-code/04motors</strong>
     bone$ <strong>config-pin P9_16 pwm</strong>
     bone$ <strong>./servoMotor.py</strong>
 
-
-
 .. _py_servoMotor_code:
 
-Code for driving a servo motor (servoMotor.py)
-
-.. code-block:: python
-
-    include::code/servoMotor.py[]
+.. literalinclude:: ../code/04motors/servoMotor.py
+   :caption: Code for driving a servo motor (servoMotor.py)
+   :linenos:
 
+:download:`servoMotor.py <../code/04motors/servoMotor.py>`
 
 .. _motors_servoMotor_code:
 
-Code for driving a servo motor (servoMotor.js)
-
-.. code-block:: JavaScript
+.. literalinclude:: ../code/04motors/servoMotor.js
+   :caption: Code for driving a servo motor (servoMotor.js)
+   :linenos:
 
-    include::code/servoMotor.js[]
+:download:`servoMotor.js <../code/04motors/servoMotor.js>`
 
 
 Running the code causes the motor to move back and forth, progressing to successive  
 positions between the two extremes.  You will need to press ^C (Ctrl-C) to stop the script.
 
-Discussion
-**************
-
 Controlling a Servo with an Rotary Encoder
---------------------------------------------
+==========================================
 
 Problem
-**************
+--------
 
-You have a rotary encoder from :ref:`<digital_rotaryEncoder_js>` that you want to control a servo motor.
+You have a rotary encoder from :ref:`digital_rotaryEncoder_js` that you want to control a servo motor.
 
 Solution
-**************
+---------
 
-Combine the code from :ref:`<digital_rotaryEncoder_js>` and :ref:`<motors_servo>`.
+Combine the code from :ref:`digital_rotaryEncoder_js` and :ref:`motors_servo`.
 
 
 .. code-block:: bash
@@ -135,47 +130,47 @@ Combine the code from :ref:`<digital_rotaryEncoder_js>` and :ref:`<motors_servo>
 
 .. _py_servoEncoder_code:
 
-Code for driving a servo motor with a rotary encorder(servoEncoder.py)
-
-.. code-block:: python
+.. literalinclude:: ../code/04motors/servoEncoder.py
+   :caption: Code for driving a servo motor with a rotary encorder(servoEncoder.py)
+   :linenos:
 
-    include::code/servoEncoder.py[]
+:download:`servoEncoder.py <../code/04motors/servoEncoder.py>`
 
 .. _motors_dcSpeed:
 
 Controlling the Speed of a DC Motor
--------------------------------------
+===================================
 
 Problem
-**************
+--------
 
 You have a DC motor (or a solenoid) and want a simple way to control its speed, but not the direction.
 
 Solution
-**********
+---------
 
 It would be nice if you could just wire the DC motor to BeagleBone Black and have it work, 
 but it won't.  Most motors require more current than the GPIO ports on the Bone can supply. 
 Our solution is to use a transistor to control the current to the bone. 
 
 Here we configure the encoder to returns value between 0 and 180 inclusive. This value is then 
-mapped to a value between +min+ (0.6 ma) and +max+ (2.5 ms).  This number is converted from 
+mapped to a value between *min* (0.6 ma) and *max* (2.5 ms).  This number is converted from 
 milliseconds and nanoseconds (time 1000000) and sent to the servo motor via the pwm.
 
 
 Here's what you will need:
 
 * 3 V to 5 V DC motor
-* Breadboard and jumper wires (see :ref:`<app_proto>`)
-* 1 k&#8486; resistor (see :ref:`<app_resistor>`)
-* Transistor 2N3904 (see :ref:`<app_transistor>`)
-* Diode 1N4001 (see :ref:`<app_transistor>`)
+* Breadboard and jumper wires.
+* 1 |kohm| resistor.
+* Transistor 2N3904.
+* Diode 1N4001.
 * Power supply for the motor (optional)
 
 If you are using a larger motor (more current), 
 you will need to use a larger transistor.
 
-Wire your breadboard as shown in :ref:`<motors_dcMotor_fig>`.
+Wire your breadboard as shown in :ref:`motors_dcMotor_fig`.
 
 .. _motors_dcMotor_fig:
 
@@ -183,63 +178,55 @@ Wire your breadboard as shown in :ref:`<motors_dcMotor_fig>`.
     :align: center
     :alt: DC Motor
 
-Wiring a DC motor to spin one direction
-
-Use the code in :ref:`<motors_dcMotor_code>` 
-(_dcMotor.js_) to run the motor.
+    Wiring a DC motor to spin one direction
 
+Use the code in :ref:`motors_dcMotor_code` (``dcMotor.js``) to run the motor.
 
 .. _py_dcMotor_code:
 
-Driving a DC motor in one direction (dcMotor.py)
-
-.. code-block:: python
+.. literalinclude:: ../code/04motors/dcMotor.py
+   :caption: Driving a DC motor in one direction (dcMotor.py)
+   :linenos:
 
-    include::code/dcMotor.py[]
+:download:`dcMotor.py <../code/04motors/dcMotor.py>`
 
 .. _motors_dcMotor_code:
 
-Driving a DC motor in one direction (dcMotor.js)
-
-.. code-block:: JavaScript
-
-    include::code/dcMotor.js[]
-
-Discussion
-**************
+.. literalinclude:: ../code/04motors/dcMotor.js
+   :caption: Driving a DC motor in one direction (dcMotor.js)
+   :linenos:
 
+:download:`dcMotor.js <../code/04motors/dcMotor.js>`
 
 See Also
-**************
+=========
 
-How do you change the direction of the motor? See :ref:`<motors_dcDirection>`.
+How do you change the direction of the motor? See :ref:`motors_dcDirection`.
 
 .. _motors_dcDirection:
 
 Controlling the Speed and Direction of a DC Motor
---------------------------------------------------
-
-// TODO
+==================================================
 
 Problem
-**************
+--------
 
 You would like your DC motor to go forward and backward.
 
 Solution
-**************
+---------
 
 Use an H-bridge to switch the terminals on the motor so that it will run both backward 
-and forward. We'll use the _L293D_: a common, single-chip H-bridge.
+and forward. We'll use the ``L293D`` a common, single-chip H-bridge.
 
 Here's what you will need:
 
-* 3 V to 5 V motor (see :ref:`<app_misc>`)
-* Breadboard and jumper wires (see :ref:`<app_proto>`)
-* L293D H-Bridge IC (see :ref:`<app_ic>`)
+* 3 V to 5 V motor.
+* Breadboard and jumper wires.
+* L293D H-Bridge IC.
 * Power supply for the motor (optional)
 
-Lay out your breadboard as shown in :ref:`<motors_h-bridge_fig>`. Ensure that the L293D is positioned correctly. 
+Lay out your breadboard as shown in :ref:`motors_h-bridge_fig`. Ensure that the L293D is positioned correctly. 
 There is a notch on one end that should be pointed up.
 
 .. _motors_h-bridge_fig:
@@ -248,45 +235,40 @@ There is a notch on one end that should be pointed up.
     :align: center
     :alt: H-bridge Motor
 
-Driving a DC motor with an H-bridge
+    Driving a DC motor with an H-bridge
 
-The code in :ref:`<motors_h-bridge_code>` (_h-bridgeMotor.js_) looks much like the code for driving the DC 
-motor with a transistor (:ref:`<motors_dcMotor_code>`). 
-The additional code specifies which direction to spin the motor.
+The code in :ref:`motors_h-bridge_code` (``h-bridgeMotor.js``) looks much like the code for driving the DC 
+motor with a transistor (:ref:`motors_dcMotor_code`). The additional code specifies which direction to spin the motor.
 
 .. _motors_h-bridge_code:
 
-Code for driving a DC motor with an H-bridge (h-bridgeMotor.js)
-
-.. code-block:: JavaScript
+.. literalinclude:: ../code/04motors/h-bridgeMotor.js
+   :caption: Code for driving a DC motor with an H-bridge (h-bridgeMotor.js)
+   :linenos:
 
-    include::code/h-bridgeMotor.js[]
-
-
-Discussion
-**************
+:download:`h-bridgeMotor.js <../code/04motors/h-bridgeMotor.js>`
 
 Driving a Bipolar Stepper Motor
----------------------------------
+===============================
 
 Problem
-**************
+--------
 
 You want to drive a stepper motor that has four wires.
 
 Solution
-**************
+---------
 
 Use an L293D H-bridge. The bipolar stepper motor requires 
 us to reverse the coils, so we need to use an H-bridge.
 
 Here's what you will need:
 
-* Breadboard and jumper wires (see :ref:`<app_proto>`)
-* 3 V to 5 V bipolar stepper motor (see :ref:`<app_misc>`)
-* L293D H-Bridge IC (see :ref:`<app_ic>`)
+* Breadboard and jumper wires.
+* 3 V to 5 V bipolar stepper motor.
+* L293D H-Bridge IC.
 
-Wire as shown in :ref:`<motors_bipolar_fig>`.
+Wire as shown in :ref:`motors_bipolar_fig`.
 
 .. _motors_bipolar_fig:
 
@@ -294,62 +276,52 @@ Wire as shown in :ref:`<motors_bipolar_fig>`.
     :align: center
     :alt: Bipolar Stepper Motor
 
-Bipolar stepper motor wiring
+    Bipolar stepper motor wiring
 
-Use the code in :ref:`<motors_stepperMotor_code>` to drive the motor.
+Use the code in :ref:`motors_stepperMotor_code_py` to drive the motor.
 
 .. _motors_stepperMotor_code_py:
 
-Driving a bipolar stepper motor (bipolarStepperMotor.py)
-
-.. code-block:: python
-
-    include::code/bipolarStepperMotor.py[]
-
-.. _motors_stepperMotor_code:
-
-Driving a bipolar stepper motor (bipolarStepperMotor.js)
-
-.. code-block:: JavaScript
-
-    include::code/bipolarStepperMotor.js[]
-
+.. literalinclude:: ../code/04motors/bipolarStepperMotor.py
+   :caption: Driving a bipolar stepper motor (bipolarStepperMotor.py)
+   :linenos:
 
+:download:`bipolarStepperMotor.py <../code/04motors/bipolarStepperMotor.py>`
 
 When you run the code, the stepper motor will rotate back and forth.
 
-Discussion
-**************
-
 
 Driving a Unipolar Stepper Motor
------------------------------------
+=================================
 
 Problem
-**************
+--------
 
 You want to drive a stepper motor that has five or six wires.
 
 Solution
-**************
+---------
 
-If your stepper motor has five or six wires, it's a _unipolar_ stepper and 
+If your stepper motor has five or six wires, it's a ``unipolar`` stepper and 
 is wired differently than the bipolar. Here, we'll use 
-a _ULN2003 Darlington Transistor Array IC_ to drive the motor.
+a ``ULN2003 Darlington Transistor Array IC`` to drive the motor.
 
 Here's what you will need:
 
-* Breadboard and jumper wires (see :ref:`<app_proto>`)
-* 3 V to 5 V unipolar stepper motor (see :ref:`<app_misc>`)
-* ULN2003 Darlington Transistor Array IC (see :ref:`<app_ic>`)
+* Breadboard and jumper wires.
+* 3 V to 5 V unipolar stepper motor.
+* ULN2003 Darlington Transistor Array IC.
 
-Wire, as shown in :ref:`<motors_unipolar_fig>`. 
+Wire, as shown in :ref:`motors_unipolar_fig`. 
 
-.. note:: The IC in :ref:`<motors_unipolar_fig>` is illustrated upside down from the way it is usually displayed. 
+.. note:: 
+
+    The IC in :ref:`motors_unipolar_fig` is illustrated 
+    upside down from the way it is usually displayed. 
 
 That is, the notch for pin 1 is on the bottom. This made drawing the diagram much cleaner.
 
-Also, notice the _banded_ wire running the +P9_7+ (5 V) to the UL2003A. 
+Also, notice the ``banded`` wire running the *P9_7* (5 V) to the UL2003A. 
 The stepper motor I'm using runs better at 5 V, so I'm using the Bone's 5 V power supply. 
 The signal coming from the GPIO pins is 3.3 V, but the U2003A will step them up to 5 V to drive the motor.
 
@@ -361,29 +333,31 @@ The signal coming from the GPIO pins is 3.3 V, but the U2003A will step them up
 
     Unipolar stepper motor wiring
 
-The code for driving the motor is in _unipolarStepperMotor.js_; however, it is almost identical to the bipolar stepper code (:ref:`<motors_stepperMotor_code>`), so :ref:`<motors_unistepperMotor_code>` shows only the lines that you need to change.
+The code for driving the motor is in ``unipolarStepperMotor.js`` however, it is 
+almost identical to the bipolar stepper code (:ref:`motors_stepperMotor_code_py`), 
+so :ref:`motors_unistepperMotor_code` shows only the lines that you need to change.
 
 .. _motors_unistepperMotor_js_code:
 
-Changes to bipolar code to drive a unipolar stepper motor (unipolarStepperMotor.py.diff)
-
-.. code-block:: python
+.. literalinclude:: ../code/04motors/unipolarStepperMotor.py.diff
+   :caption: Changes to bipolar code to drive a unipolar stepper motor (unipolarStepperMotor.py.diff)
+   :linenos:
 
-    include::code/unipolarStepperMotor.py.diff[]
+:download:`unipolarStepperMotor.py.diff <../code/04motors/unipolarStepperMotor.py.diff>`
 
 .. _motors_unistepperMotor_code:
 
-Changes to bipolar code to drive a unipolar stepper motor (unipolarStepperMotor.js.diff)
-
-.. code-block:: JavaScript
+.. literalinclude:: ../code/04motors/unipolarStepperMotor.js.diff
+   :caption: Changes to bipolar code to drive a unipolar stepper motor (unipolarStepperMotor.js.diff)
+   :linenos:
 
-    include::code/unipolarStepperMotor.js.diff[]
+:download:`unipolarStepperMotor.js.diff <../code/04motors/unipolarStepperMotor.js.diff>`
 
 
 The code in this example makes the following changes:
 
-* The +states+ are different. Here, we have two pins high at a time.
-* The time between steps (+ms+) is shorter, and the number of steps per direction (+max+) is bigger. The unipolar stepper I'm using has many more steps per rotation, so I need more steps to make it go around.
+* The *states* are different. Here, we have two pins high at a time.
+* The time between steps (*ms*) is shorter, and the number of steps per 
 
-Discussion
-**************
+direction (*max*) is bigger. The unipolar stepper I'm using has many 
+more steps per rotation, so I need more steps to make it go around.
diff --git a/books/beaglebone-cookbook/05tips/code/blinkLED.c b/books/beaglebone-cookbook/05tips/code/blinkLED.c
deleted file mode 100755
index 1863c1ef9a8637f1e46d06fafcaf848324ef1e26..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/05tips/code/blinkLED.c
+++ /dev/null
@@ -1,48 +0,0 @@
-////////////////////////////////////////
-//	blinkLED.c
-//	Blinks the P9_14 pin
-//	Wiring:
-//	Setup:
-//	See:
-////////////////////////////////////////
-#include <stdio.h>
-#include <string.h>
-#include <unistd.h>
-#define MAXSTR 100
-// Look up P9.14 using gpioinfo | grep -e chip -e P9.14.  chip 1, line 18 maps to 50
-int main() {
-  FILE *fp;
-  char pin[] = "50";
-  char GPIOPATH[] = "/sys/class/gpio";
-  char path[MAXSTR] = "";
-
-  // Make sure pin is exported
-  snprintf(path, MAXSTR, "%s%s%s", GPIOPATH, "/gpio", pin);
-  if (!access(path, F_OK) == 0) {
-    snprintf(path, MAXSTR, "%s%s", GPIOPATH, "/export");
-    fp = fopen(path, "w");
-    fprintf(fp, "%s", pin);
-    fclose(fp);
-  }
- 
-  // Make it an output pin
-  snprintf(path, MAXSTR, "%s%s%s%s", GPIOPATH, "/gpio", pin, "/direction");
-  fp = fopen(path, "w");
-  fprintf(fp, "out");
-  fclose(fp);
-
-  // Blink every .25 sec
-  int state = 0;
-  snprintf(path, MAXSTR, "%s%s%s%s", GPIOPATH, "/gpio", pin, "/value");
-  fp = fopen(path, "w");
-  while (1) {
-    fseek(fp, 0, SEEK_SET);
-    if (state) {
-      fprintf(fp, "1");
-    } else {
-      fprintf(fp, "0");
-    }
-    state = ~state;
-    usleep(250000);   // sleep time in microseconds
-  }
-}
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/05tips/code/blinkLED.py b/books/beaglebone-cookbook/05tips/code/blinkLED.py
deleted file mode 100755
index 2b15ebd35f2dfcaffdf06c50791961dac06e5d03..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/05tips/code/blinkLED.py
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/usr/bin/env python
-import Adafruit_BBIO.GPIO as GPIO
-import time
-
-pin = "P9_14"
-
-GPIO.setup(pin, GPIO.OUT)
-
-while True:
-    GPIO.output(pin, GPIO.HIGH)
-    time.sleep(0.5)
-    GPIO.output(pin, GPIO.LOW)
-    time.sleep(0.5)
diff --git a/books/beaglebone-cookbook/05tips/code/ipMasquerade.sh b/books/beaglebone-cookbook/05tips/code/ipMasquerade.sh
deleted file mode 100755
index 524fb338a895212bcace7d5e116bab90b9ef1d11..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/05tips/code/ipMasquerade.sh
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/bash
-# These are the commands to run on the host to set up IP 
-#  masquerading so the Bone can access the Internet through 
-#  the USB connection.
-# This configures the host, run ./setDNS.sh to configure the Bone.
-# Inspired by http://thoughtshubham.blogspot.com/2010/03/
-#  internet-over-usb-otg-on-beagleboard.html
-
-if [ $# -eq 0 ] ; then
-echo "Usage: $0 interface (such as eth0 or wlan0)"
-exit 1
-fi
-
-interface=$1
-hostAddr=192.168.7.1
-beagleAddr=192.168.7.2
-ip_forward=/proc/sys/net/ipv4/ip_forward
-
-if [ `cat $ip_forward` == 0 ]
-  then
-    echo "You need to set IP forwarding. Edit /etc/sysctl.conf using:"
-    echo "$ sudo nano /etc/sysctl.conf"
-    echo "and uncomment the line   \"net.ipv4.ip_forward=1\""
-    echo "to enable forwarding of packets. Then run the following:"
-    echo "$ sudo sysctl -p"
-    exit 1
-  else
-    echo "IP forwarding is set on host."
-fi
-# Set up IP masquerading on the host so the bone can reach the outside world
-sudo iptables -t nat -A POSTROUTING -s $beagleAddr -o $interface -j MASQUERADE
diff --git a/books/beaglebone-cookbook/05tips/code/setDNS.sh b/books/beaglebone-cookbook/05tips/code/setDNS.sh
deleted file mode 100755
index a73f1b51b881f3753c5b15af290a322ea49e5a26..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/05tips/code/setDNS.sh
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/bash
-# These are the commands to run on the host so the Bone
-#  can access the Internet through the USB connection.
-# Run ./ipMasquerade.sh the first time. It will set up the host.
-# Run this script if the host is already set up.
-# Inspired by http://thoughtshubham.blogspot.com/2010/03/internet-over-usb-otg-on-beagleboard.html
-
-hostAddr=192.168.7.1
-beagleAddr=${1:-192.168.7.2}
-
-# Save the /etc/resolv.conf on the Beagle in case we mess things up.
-ssh root@$beagleAddr "mv -n /etc/resolv.conf /etc/resolv.conf.orig"
-# Create our own resolv.conf
-cat - << EOF > /tmp/resolv.conf
-# This is installed by ./setDNS.sh on the host
-
-EOF
-
-TMP=/tmp/nmcli
-# Look up the nameserver of the host and add it to our resolv.conf
-# From: http://askubuntu.com/questions/197036/how-to-know-what-dns-am-i-using-in-ubuntu-12-04
-# Use nmcli dev list for older version nmcli
-# Use nmcli dev show for newer version nmcli
-nmcli dev show > $TMP
-if [ $? -ne 0 ]; then   # $? is the return code, if not 0 something bad happened.
-    echo "nmcli failed, trying older 'list' instead of 'show'"
-    nmcli dev list > $TMP
-    if [ $? -ne 0 ]; then
-        echo "nmcli failed again, giving up..."
-        exit 1
-    fi
-fi
-
-grep IP4.DNS $TMP | sed 's/IP4.DNS\[.\]:/nameserver/' >> /tmp/resolv.conf
-
-scp /tmp/resolv.conf root@$beagleAddr:/etc
-
-# Tell the beagle to use the host as the gateway.
-ssh root@$beagleAddr "/sbin/route add default gw $hostAddr" || true
-
diff --git a/books/beaglebone-cookbook/05tips/tips.rst b/books/beaglebone-cookbook/05tips/tips.rst
index 89ff503d37fa6dc721d9c96e1284a56b6f5569a1..24d03aaee03bcba50be4473d92be2cca6977c05b 100644
--- a/books/beaglebone-cookbook/05tips/tips.rst
+++ b/books/beaglebone-cookbook/05tips/tips.rst
@@ -3,64 +3,65 @@
 Beyond the Basics
 ##################
 
-Introduction
----------------
-
-In :ref:`<basics>`, you learned how to set up BeagleBone Black, and 
-:ref:`<sensors>`, :ref:`<displays>`, and :ref:`<motors>` showed how to 
+In :ref:`beaglebone-cookbook-basics`, you learned how to set up BeagleBone Black, and 
+:ref:`beaglebone-cookbook-sensors`, :ref:`beaglebone-cookbook-displays`, 
+and :ref:`beaglebone-cookbook-motors` showed how to 
 interface to the physical world. The remainder of the book moves into some 
 more exciting advanced topics, and this chapter gets you ready for them.  
 
 The recipes in this chapter assume that you are running Linux on your host 
-computer (:ref:`<tips_pick_os>`) and are comfortable with using Linux. We 
-continue to assume that you are logged in as +debian+ on your Bone.
+computer (:ref:`tips_pick_os`) and are comfortable with using Linux. We 
+continue to assume that you are logged in as *debian* on your Bone.
 
 .. _tips_hdmi:
 
 Running Your Bone Standalone
------------------------------
+=============================
 
 Problem
-*********
+--------
 
 You want to use BeagleBone Black as a desktop computer with keyboard, mouse, and an HDMI display.
 
 Solution
-*************
+---------
 
 The Bone comes with USB and a microHDMI output. All you need to do is connect your keyboard, mouse, and HDMI display to it. 
 
 To make this recipe, you will need:
 
-* Standard HDMI cable and female HDMI-to-male microHDMI adapter (see :ref:`<app_misc>`), or
-* MicroHDMI-to-HDMI adapter cable (see :ref:`<app_misc>`)
-* HDMI monitor (see :ref:`<app_misc>`)
+* Standard HDMI cable and female HDMI-to-male microHDMI adapter, or
+* MicroHDMI-to-HDMI adapter cable
+* HDMI monitor
 * USB keyboard and mouse
-* Powered USB hub (see :ref:`<app_misc>`)
+* Powered USB hub
+
+.. note::
 
-.. note:: 
    The microHDMI adapter is nice because it allows you to use a regular HDMI cable 
    with the Bone. However, it will block other ports and can damage the Bone if you 
    aren't careful. The microHDMI-to-HDMI cable won't have these problems.  
 
 .. tip:: 
-   You can also use an HDMI-to-DVI cable (:ref:`<app_misc>`) 
+
+   You can also use an HDMI-to-DVI cable 
    and use your Bone with a DVI-D display.
 
-The adapter looks something like :ref:`<tips_HDMI_adaptor_fig>`.
+The adapter looks something like :ref:`tips_HDMI_adaptor_fig`.
 
 .. _tips_HDMI_adaptor_fig:
 
-
 .. figure:: figures/hdmiConverter.jpg
    :align: center
    :alt: HDMI Adaptor
 
    Female HDMI-to-male microHDMI adapter
 
-Plug the small end into the microHDMI input on the Bone and plug your HDMI cable into the other end of the adapter and your monitor. If nothing displays on your Bone, reboot.
+Plug the small end into the microHDMI input on the Bone and plug your HDMI cable into the other end of the 
+adapter and your monitor. If nothing displays on your Bone, reboot.
 
-If nothing appears after the reboot, edit the _/boot/uEnv.txt_ file. Search for the line containing +disable_uboot_overlay_video=1 and make sure it's commented out:
+If nothing appears after the reboot, edit the ``/boot/uEnv.txt`` file. Search for the line containing 
+``disable_uboot_overlay_video=1`` and make sure it's commented out:
 
 .. code-block:: bash
 
@@ -71,74 +72,79 @@ If nothing appears after the reboot, edit the _/boot/uEnv.txt_ file. Search for
 
 Then reboot.
 
-.. PRODUCTION: in the following tip, we're trying to display the hash symbol (#), all by itself, in constant width. Using +#+ produces an empty space in the build, and I don't know how to escape special characters within what should be literal strings.
+.. PRODUCTION: in the following tip, we're trying to display the hash symbol (#), all by itself, in constant width. Using *#* produces an empty space in the build, and I don't know how to escape special characters within what should be literal strings.
 
 .. Adding to my confusion, the # signs are dropped in the first paragraph of the tip, but not in the second, which is formatted in the same exact way.
 
 .. Also, using ## in the code italicizes the second # and everything after it in the line, which should not happen.
 
 
-The _/boot/uEnv.txt_ file contains a number of configuration commands that are executed at boot time. The +#+ character is used to add comments; that is, everything to the right of a +# is ignored by the Bone and is assumed to be for humans to read. In the previous example, +###Disable auto loading+ is a comment that informs us the next line(s) are for disabling things. Two +disable_uboot_overlay+ commands follow. Both should be commented-out and won't be executed by the Bon
-Why not just remove the line?  Later, you might decide you need more general-purpose input/output (GPIO) pins and don't need the HDMI display. If so, just remove the +#+ from the +disable_uboot_overlay_video=1+ command. If you had completely removed the line earlier, you would have to look up the details somewhere to re-create it.  
+The ``/boot/uEnv.txt`` file contains a number of configuration commands that are executed at boot time. 
+The *#* character is used to add comments; that is, everything to the right of a +# is ignored by the 
+Bone and is assumed to be for humans to read. In the previous example, *###Disable auto loading* is 
+a comment that informs us the next line(s) are for disabling things. Two *disable_uboot_overlay* 
+commands follow. Both should be commented-out and won't be executed by the Bon
 
-When in doubt, comment-out; don't delete.
+Why not just remove the line?  Later, you might decide you need more general-purpose input/output 
+(GPIO) pins and don't need the HDMI display. If so, just remove the *#* from the ``disable_uboot_overlay_video=1`` 
+command. If you had completely removed the line earlier, you would have to look up the details somewhere to re-create it.  
+
+When in doubt, comment-out don't delete.
 
 .. note:: 
+
    If you want to re-enable the HDMI audio, just comment-out the line you added.
 
-The Bone has only one USB port, so you will need to get either a keyboard with a USB hub (see :ref:`<app_misc>`) or a USB hub. Plug the USB hub into the Bone and then plug your keyboard and mouse in to the hub. You now have a Beagle workstation; no host computer is needed.
+The Bone has only one USB port, so you will need to get either a keyboard with a USB hub or a USB hub. 
+Plug the USB hub into the Bone and then plug your keyboard and mouse in to the hub. 
+You now have a Beagle workstation no host computer is needed.
 
 .. tip:: 
-   A powered hub is recommended because USB can supply only 500 mA, and you'll want to plug many things into the Bone.
-
-Discussion
-*************
+   A powered hub is recommended because USB can supply only 
+   500 mA, and you'll want to plug many things into the Bone.
 
 This recipe disables the HDMI audio, which allows the Bone to try other resolutions. 
-If this fails, see http://bit.ly/1GEPcOH[BeagleBoneBlack HDMI] for how to force the 
+If this fails, see `BeagleBoneBlack HDMI <http://bit.ly/1GEPcOH>`_ for how to force the 
 Bone's resolution to match your monitor.
 
 .. _tips_pick_os:
 
 Selecting an OS for Your Development Host Computer
----------------------------------------------------
+===================================================
 
 Problem
-*************
+--------
 
 Your project needs a host computer, and you need to select an operating system (OS) for it.
 
 Solution
-*************
+--------
 
 For projects that require a host computer, we assume that you are running 
-http://bit.ly/1wXOwkw[Linux Ubuntu 20.04 LTS]. You can be running either a native installation, 
-through https://docs.microsoft.com/en-us/windows/wsl/[Windows Subsystem for Linux], via a virtual 
-machine such as https://www.virtualbox.org/[VirtualBox], or in the cloud (https://portal.azure.com/[Microsoft Azure] 
-or http://aws.amazon.com/ec2/[Amazon Elastic Compute Cloud] [EC2], for example).
-
-Recently I've been prefering https://docs.microsoft.com/en-us/windows/wsl/[Windows Subsystem for Linux].
+`Linux Ubuntu 20.04 LTS <http://bit.ly/1wXOwkw>`_. You can be running either a native installation, 
+through `Windows Subsystem for Linux <https://docs.microsoft.com/en-us/windows/wsl/>`_, via a virtual 
+machine such as `VirtualBox <https://www.virtualbox.org/>`_, or in the cloud (`Microsoft Azure <https://portal.azure.com/>`_ 
+or `Amazon Elastic Compute Cloud <http://aws.amazon.com/ec2/>`_, EC2, for example).
 
-Discussion
-*************
+Recently I've been prefering `Windows Subsystem for Linux <https://docs.microsoft.com/en-us/windows/wsl/>`_.
 
 .. _tips_shell:
 
 Getting to the Command Shell via SSH
-------------------------
+=====================================
 
 Problem
-*************
+--------
 
 You want to connect to the command shell of a remote Bone from your host pass:[<span class="keep-together">computer</span>].
 
 Solution
-*************
+---------
 
 
-:ref:`<basics_vsc_IDE>` shows how to run shell commands in the Visual Studio Code +bash+ tab. 
+:ref:`basics_vsc_IDE` shows how to run shell commands in the Visual Studio Code *bash* tab. 
 However, the Bone has Secure Shell (SSH) enabled right out of the box, so you can easily 
-connect by using the following command to log in as user +debian+, (note the +$+ at the end of the prompt):
+connect by using the following command to log in as user *debian*, (note the *$* at the end of the prompt):
 
 .. code-block:: bash
 
@@ -147,8 +153,10 @@ connect by using the following command to log in as user +debian+, (note the +$+
    Last login: Mon Dec 22 07:53:06 2014 from yoder-linux.local
    bone$ 
 
+.. _tips_passwords:
 
-+debian+ has the default password +tempped+ It's best to change the password:
+*debian* has the default password *tempped* It's best to change the password:
+==============================================================================
 
 .. code-block:: bash
 
@@ -160,23 +168,22 @@ connect by using the following command to log in as user +debian+, (note the +$+
    passwd: password updated successfully
 
 
-Discussion
-*************
-
 .. _tips_serial:
 
 Getting to the Command Shell via the Virtual Serial Port
-------------------------
+==========================================================
 
 Problem
-*************
+--------
 
 You want to connect to the command shell of a remote Bone from your host computer without using SSH.
 
 Solution
-*************
+---------
 
-Sometimes, you can't connect to the Bone via SSH, but you have a network working over USB to the Bone. There is a way to access the command line to fix things without requiring extra hardware. (:ref:`<tips_FTDI>` shows a way that works even if you don't have a network working over USB, but it requires a special serial-to-USB cable.)
+Sometimes, you can't connect to the Bone via SSH, but you have a network working over USB to the Bone. 
+There is a way to access the command line to fix things without requiring extra hardware. (:ref:`tips_FTDI` 
+shows a way that works even if you don't have a network working over USB, but it requires a special serial-to-USB cable.)
 
 First, check to ensure that the serial port is there. On the host computer, run the following command:
 
@@ -186,8 +193,9 @@ First, check to ensure that the serial port is there. On the host computer, run
    0 crw-rw---- 1 root dialout 166, 0 Jun 19 11:47 /dev/ttyACM0
 
 
-_/dev/ttyACM0_ is a serial port on your host computer that the Bone creates when it boots up. 
-The letters +crw-rw----+ show that you can't access it as a normal user. However, you _can_ access it if you are part of +dialout+ group. See if you are in the +dialout+ group:
+``/dev/ttyACM0`` is a serial port on your host computer that the Bone creates when it boots up. 
+The letters *crw-rw----* show that you can't access it as a normal user. However, you ``can`` 
+access it if you are part of *dialout* group. See if you are in the *dialout* group:
 
 .. code-block:: bash
 
@@ -201,7 +209,8 @@ Looks like I'm already in the group, but if you aren't, just add yourself to the
    host$ sudo adduser $USER dialout
 
 
-You have to run +adduser+ only once. Your host computer will remember the next time you boot up. Now, install and run the +screen+ command:
+You have to run *adduser* only once. Your host computer will remember the next 
+time you boot up. Now, install and run the *screen* command:
 
 .. code-block:: bash
 
@@ -217,33 +226,31 @@ You have to run +adduser+ only once. Your host computer will remember the next t
    beaglebone login:
 
 
-The +/dev/ttyACM0+ parameter specifies which serial port to connect to, and +115200+ 
+The ``/dev/ttyACM0`` parameter specifies which serial port to connect to, and *115200* 
 tells the speed of the connection. In this case, it's 115,200 bits per second.
 
-Discussion
-*************
-
 .. _tips_FTDI:
 
 Viewing and Debugging the Kernel and u-boot Messages at Boot Time
-------------------------
+==================================================================
 
 Problem
-*************
+--------
 
 You want to see the messages that are logged by BeagleBone Black as it comes to life.
 
 Solution
-*************
+---------
 
-There is no network in place when the Bone first boots up, so :ref:`<tips_shell>` and :ref:`<tips_serial>` won't work. This recipe uses some extra hardware (FTDI cable) to attach to the Bone's console serial port.
+There is no network in place when the Bone first boots up, so :ref:`tips_shell` and :ref:`tips_serial` 
+won't work. This recipe uses some extra hardware (FTDI cable) to attach to the Bone's console serial port.
 
 To make this recipe, you will need:
 
-* 3.3 V FTDI cable (see :ref:`<app_misc>`)
+* 3.3 V FTDI cable
 
 .. warning:: 
-   Be sure to get a 3.3 V FTDI cable (shown in :ref:`<tips_FTDIcable_fig>`), 
+   Be sure to get a 3.3 V FTDI cable (shown in :ref:`tips_FTDIcable_fig`), 
    because the 5 V cables won't work.
 
 .. tip:: 
@@ -259,25 +266,23 @@ To make this recipe, you will need:
 
    FTDI cable
 
-Look for a small triangle at the end of the FTDI cable (:ref:`<tips_FTDIconnector_fig>`). 
+Look for a small triangle at the end of the FTDI cable (:ref:`tips_FTDIconnector_fig`). 
 It's often connected to the black wire. 
 
 .. _tips_FTDIconnector_fig:
 
-
 .. figure:: figures/FTDIconnector.jpg
    :align: center
    :alt: FTDI Connector
 
    FTDI connector
 
-Next, look for the FTDI pins of the Bone (labeled +J1+ on the Bone), shown in 
-:ref:`<tips_black_hardware_details_fig>`. They are next to the P9 header 
+Next, look for the FTDI pins of the Bone (labeled *J1* on the Bone), shown in 
+:ref:`tips_black_hardware_details_fig`. They are next to the P9 header 
 and begin near pin 20. There is a white dot near P9_20. 
 
 .. _tips_black_hardware_details_fig:
 
-
 .. figure:: figures/FTDIPins.png
    :align: center
    :alt: Serial Debug Pins
@@ -285,7 +290,7 @@ and begin near pin 20. There is a white dot near P9_20.
    FTDI pins for the FTDI connector 
 
 Plug the FTDI connector into the FTDI pins, being sure to connect 
-the _triangle_ pin on the connector to the _white dot_ pin of the +FTDI+ connector.
+the ``triangle`` pin on the connector to the ``white dot`` pin of the *FTDI* connector.
 
 Now, run the following commands on your host computer:
 
@@ -309,19 +314,16 @@ Now, run the following commands on your host computer:
    Your screen might initially be blank. Press Enter 
    a couple times to see the login prompt.
 
-Discussion
-*************
-
 Verifying You Have the Latest Version of the OS on Your Bone from the Shell
------------------------------------------------------------------------------
+============================================================================
 
 Problem
-*************
+--------
 
 You are logged in to your Bone with a command prompt and want to know what version of the OS you are running.
 
 Solution
-*************
+--------
 
 Log in to your Bone and enter the following command:
 
@@ -331,25 +333,20 @@ Log in to your Bone and enter the following command:
    BeagleBoard.org Debian Bullseye IoT Image 2022-07-01
 
 
-Discussion
-*************
-
-:ref:`<basics_latest_os>` shows how to open the _ID.txt_ file to see the OS version. 
-The _/etc/dogtag_ file has the same contents and is easier to find if you already 
-have a command prompt. See :ref:`<basics_install_os>` if you need to update your OS.
+:ref:`basics_latest_os` shows how to open the ``ID.txt`` file to see the OS version. 
+The ``/etc/dogtag`` file has the same contents and is easier to find if you already 
+have a command prompt. See :ref:`basics_install_os` if you need to update your OS.
 
 Controlling the Bone Remotely with a VNC
-------------------------
-
-// TODO  check this
+=========================================
 
 Problem
-*************
+--------
 
 You want to access the BeagleBone's graphical desktop from your host computer.
 
 Solution
-*************
+---------
 
 Run the installed Virtual Network Computing (VNC) server:
 
@@ -371,31 +368,29 @@ Run the installed Virtual Network Computing (VNC) server:
    Log file is /home/debian/.vnc/beagleboard:1.log
 
 
-To connect to the Bone, you will need to run a VNC client. There are many to choose from. Remmina Remote Desktop Client is already installed on Ubuntu. Start and select the new remote desktop file button (:ref:`<tips_vnc1_fig>`).
+To connect to the Bone, you will need to run a VNC client. There are many to choose from. Remmina Remote 
+Desktop Client is already installed on Ubuntu. Start and select the new remote desktop file button (:ref:`tips_vnc1_fig`).
 
 .. _tips_vnc1_fig:
 
-
 .. figure:: figures/vnc1.png
    :align: center
    :alt: Create a new remote desktop
 
    Creating a new remote desktop file in Remmina Remote Desktop Client
 
-Give your connection a name, being sure to select "Remmina VNC Plugin" Also, be sure to add +:1+ after the server address, as shown in :ref:`<tips_vnc2_fig>`. This should match the +:1+ that was displayed when you started +vncserver+.
+Give your connection a name, being sure to select "Remmina VNC Plugin" Also, be sure to add *:1* after the 
+server address, as shown in :ref:`tips_vnc2_fig`. This should match the *:1* that was displayed when you started *vncserver*.
 
 .. _tips_vnc2_fig:
 
-
 .. figure:: figures/vnc2.png
    :align: center
    :alt: Configuring
 
    Configuring the Remmina Remote Desktop Client
 
-Click Connect to start graphical access to your Bone, as shown in :ref:`<tips_vnc3_fig>`.
-
-// TODO update this
+Click Connect to start graphical access to your Bone, as shown in :ref:`tips_vnc3_fig`.
 
 .. _tips_vnc3_fig:
 
@@ -406,10 +401,12 @@ Click Connect to start graphical access to your Bone, as shown in :ref:`<tips_vn
    The Remmina Remote Desktop Client showing the BeagleBone desktop
 
 .. tip:: 
+
    You might need to resize the VNC screen on your 
    host to see the bottom menu bar on your Bone. 
 
 .. note:: 
+
    You need to have X Windows installed and running for the VNC to work. 
    Here's how to install it. This needs some 250M of disk space and 19 minutes to install.
 
@@ -422,27 +419,22 @@ Click Connect to start graphical access to your Bone, as shown in :ref:`<tips_vn
    /usr/bin/startxfce4: 122: exec: xinit: not found
 
 
-Discussion
-*************
-
 Learning Typical GNU/Linux Commands
-------------------------
+====================================
 
 Problem
-*************
+--------
 
 There are many powerful commands to use in Linux. How do you learn about them?
 
 Solution
-*************
+---------
 
-:ref:`<tips_linux_commands>` lists many common Linux commands.
+:ref:`tips_linux_commands` lists many common Linux commands.
 
 .. _tips_linux_commands:
 
-Common Linux commands
-
-.. table::
+.. table:: Common Linux commands
 
    +--------+--------------------------------+
    |Command |Action                          |
@@ -494,7 +486,7 @@ Common Linux commands
    |apropos |show list of man pages          |
    +--------+--------------------------------+
    |find    |search for files                |
-   +--------+--------------------------------+    
+   +--------+--------------------------------+
    |tar     |create/extract file archives    |
    +--------+--------------------------------+
    |gzip    |compress a file                 |
@@ -514,39 +506,33 @@ Common Linux commands
    |whereis |locates binary and source files |
    +--------+--------------------------------+
 
-Discussion
-*************
-
-
 .. _tips_editing_files:
 
 Editing a Text File from the GNU/Linux Command Shell
------------------------------------------------------
+=====================================================
 
 Problem
-*************
+--------
 
 You want to run an editor to change a file.
 
 Solution
-*************
+---------
 
-The Bone comes with a number of editors. The simplest to learn is +nano+. 
+The Bone comes with a number of editors. The simplest to learn is *nano*. 
 Just enter the following command:
 
 .. code-block:: bash
 
    bone$ nano file
 
-
-You are now in nano (:ref:`<tips_nano_fig>`). You can't move around the screen 
+You are now in nano (:ref:`tips_nano_fig`). You can't move around the screen 
 using the mouse, so use the arrow keys. The bottom two lines of the screen 
-list some useful commands. Pressing &#708;G (Ctrl-G) will display more useful 
-commands. &#708;X (Ctrl-X) exits nano and gives you the option of saving the file.
+list some useful commands. Pressing ^G (Ctrl-G) will display more useful 
+commands. ^X (Ctrl-X) exits nano and gives you the option of saving the file.
 
 .. _tips_nano_fig:
 
-
 .. figure:: figures/nano.png
    :align: center
    :alt: nano
@@ -555,35 +541,30 @@ commands. &#708;X (Ctrl-X) exits nano and gives you the option of saving the fil
 
 .. tip:: 
    By default, the file you create will be saved 
-   in the directory from which you opened +nano+.
-
-Discussion
-*************
-
+   in the directory from which you opened *nano*.
 
-Many other text editors will run on the Bone. +vi+, +vim+, +emacs+, and  even +eclipse+ are all supported. 
-See :ref:`<tips_apt>` to learn if your favorite is one of them.
 
+Many other text editors will run on the Bone. *vi*, *vim*, *emacs*, and  even *eclipse* are all supported. 
+See :ref:`tips_apt` to learn if your favorite is one of them.
 
 .. _networking_wired:
 
 Establishing an Ethernet-Based Internet Connection
-------------------------
+===================================================
 
 Problem
-*************
+--------
 
 You want to connect your Bone to the Internet using the wired network connection.
 
 Solution
-*************
+---------
 
-Plug one end of an Ethernet patch cable into the RJ45 connector on the Bone (see :ref:`<networking_rj45>`) 
+Plug one end of an Ethernet patch cable into the RJ45 connector on the Bone (see :ref:`networking_rj45`) 
 and the other end into your home hub/router. The yellow and green link lights on both ends should begin to flash.
 
 .. _networking_rj45:
 
-
 .. figure:: figures/internLED.png
    :align: center
    :alt: RJ45
@@ -593,9 +574,10 @@ and the other end into your home hub/router. The yellow and green link lights on
 If your router is already configured to run DHCP (Dynamical Host Configuration Protocol), 
 it will automatically assign an IP address to the Bone. 
 
-.. warning:: It might take a minute or two for your router to detect the Bone and assign the IP address.
+.. warning:: 
+   It might take a minute or two for your router to detect the Bone and assign the IP address.
 
-To find the IP address, open a terminal window and run the +ip+ command:
+To find the IP address, open a terminal window and run the *ip* command:
 
 .. code-block:: bash
 
@@ -630,46 +612,43 @@ To find the IP address, open a terminal window and run the +ip+ command:
       link/can
 
 
-My Bone is connected to the Internet in two ways: via the RJ45 connection (+eth0+) and via the USB cable (+usb0+). 
-The +inet+ field shows that my Internet address is +10.0.5.144+ for the RJ45 connector.
+My Bone is connected to the Internet in two ways: via the RJ45 connection (*eth0*) and via the USB cable (*usb0*). 
+The *inet* field shows that my Internet address is *10.0.5.144* for the RJ45 connector.
 
 On my university campus, you must register your MAC address before any device will work on the network. 
-The +HWaddr+ field gives the MAC address. For +eth0+, it's +c8:a0:30:a6:26:e8+.  
+The *HWaddr* field gives the MAC address. For *eth0*, it's *c8:a0:30:a6:26:e8*.  
 
 The IP address of your Bone can change. If it's been assigned by DHCP, it can change at any time. 
 The MAC address, however, never changes;  it is assigned to your ethernet device when it's manufactured.
 
 .. warning:: 
-   When a Bone is connected to some networks it becomes visible to the _world_. If you don't secure your Bone, 
-   the world will soon find it. See :ref:`<tips_passwords>` and :ref:`<tips_firewall
 
-On many home networks, you will be behind a firewall and won't be as visible.
+   When a Bone is connected to some networks it becomes visible to the ``world``. If you don't secure your Bone, 
+   the world will soon find it. See :ref:`tips_passwords` and :ref:`tips_firewall`
 
-Discussion
-*************
+On many home networks, you will be behind a firewall and won't be as visible.
 
 .. _networking_wireless:
 
 Establishing a WiFi-Based Internet Connection
-------------------------
+==============================================
 
 Problem
-*************
+--------
 
 You want BeagleBone Black to talk to the Internet using a USB wireless adapter.
 
 Solution
-*************
+---------
 
-
-.. tip:: For the correct instructions for the image you are using, go to
-httporum.beagleboard.org/tag/latest-images[latest-images] and click on the image you are using.  
+.. tip:: 
+   For the correct instructions for the image you are using, go to
+   `latest-images <http://forum.beagleboard.org/tag/latest-images>`_ and click on the image you are using.  
 
 I'm running Debian 11.x (Bullseye), the middle one.
 
 .. _tips_latest-images_fig:
 
-
 .. figure:: figures/latest-images.png
    :align: center
    :alt: Latest Image Page
@@ -680,28 +659,30 @@ Scroll to the top of the page and you'll see instructions on setting up Wifi. Th
 
 .. _tips_networkfig:
 
-
 .. figure:: figures/network.png
    :align: center
    :alt: Network Setup Instructions
 
    Instructions for setting up your network.
 
-// TODO is this up to date?
-Several WiFi adapters work with the Bone. Check http://bit.ly/1EbEwUo[WiFi Adapters] for the latest list.
+.. TODO 
+   is this up to date?
+
+Several WiFi adapters work with the Bone. Check `WiFi Adapters <http://bit.ly/1EbEwUo>`_ for the latest list.
 
 To make this recipe, you will need:
 
-* USB Wifi adapter (see :ref:`<app_misc>`)
-* 5 V external power supply (see :ref:`<app_misc>`)
+* USB Wifi adapter
+* 5 V external power supply
 
 .. warning:: 
+
    Most adapters need at least 1 A of current to run, and USB supplies only 0.5 A, so be sure to use an 
    external power supply. Otherwise, you will experience erratic behavior and random crashes.
 
 First, plug in the WiFi adapter and the 5 V external power supply and reboot.
 
-Then run +lsusb+ to ensure that your Bone found the adapter:
+Then run *lsusb* to ensure that your Bone found the adapter:
 
 .. code-block:: bash
 
@@ -712,12 +693,16 @@ Then run +lsusb+ to ensure that your Bone found the adapter:
    Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 
 
-.. note:: There is a well-known bug in the Bone's 3.8 kernel series that prevents USB devices from being discovered when hot-plugged, which is why you should reboot. Newer kernels should address this issue.
+.. note:: 
+   There is a well-known bug in the Bone's 3.8 kernel series that prevents USB devices from 
+   being discovered when hot-plugged, which is why you should reboot. Newer kernels should address this issue.
 
 
-// TODO  update
+.. TODO
+   update
 
-Next, run +networkctl+ to find your adapter's name.  Mine is called +wlan0+, but you might see other names, such as +ra0+.
+Next, run *networkctl* to find your adapter's name. Mine is 
+called *wlan0*, but you might see other names, such as *ra0*.
 
 .. code-block:: bash
 
@@ -735,7 +720,7 @@ Next, run +networkctl+ to find your adapter's name.  Mine is called +wlan0+, but
    8 links listed.
 
 
-If no name appears, try +ip a+:
+If no name appears, try *ip a*:
 
 .. code-block:: bash
 
@@ -758,7 +743,7 @@ If no name appears, try +ip a+:
          valid_lft forever preferred_lft forever
 
 
-   Next edit the configuration file +/etc/wpa_supplicant/wpa_supplicant-wlan0.conf+.
+   Next edit the configuration file */etc/wpa_supplicant/wpa_supplicant-wlan0.conf*.
 
 .. code-block:: bash
 
@@ -779,7 +764,7 @@ In the file you'll see:
    }
 
 
-Change the +ssid+ and +psk+ enteries for your network. Save your file, then run:
+Change the *ssid* and *psk* enteries for your network. Save your file, then run:
 
 .. code-block:: bash
 
@@ -795,50 +780,45 @@ Change the +ssid+ and +psk+ enteries for your network. Save your file, then run:
    rtt min/avg/max/mdev = 19.387/19.450/19.513/0.063 ms
 
 
-+wlan0+ should now have an ip address and you should be on the network. If not, try rebooting.
-
-Discussion
-*************
-
-
+*wlan0* should now have an ip address and you should be on the network. If not, try rebooting.
 
 .. _networking_usb:
 
 Sharing the Host's Internet Connection over USB
-------------------------
+=================================================
 
-// TODO  Test this
+.. TODO
+   Test this
 
 Problem
-*************
+-------
 
 Your host computer is connected to the Bone via the USB cable, and you want to run the network between the two.
 
 Solution
-*************
+---------
 
-:ref:`<networking_wired>` shows how to connect BeagleBone Black to the Internet via the RJ45 Ethernet connector. 
-This recipe shows a way to connect without using the RJ45 pass:[<span class="keep-together">connector</span>].
+:ref:`networking_wired` shows how to connect BeagleBone Black to the Internet via the RJ45 Ethernet connector. 
+This recipe shows a way to connect without using the RJ45 connector.
 
 A network is automatically running between the Bone and the host computer at boot time using the USB. The host's 
-IP address is +192.168.7.1+ and the Bone's is +192.168.7.2+.  Although your Bone is talking to your host, it can't 
+IP address is *192.168.7.1* and the Bone's is *192.168.7.2*.  Although your Bone is talking to your host, it can't 
 reach the Internet in general, nor can the Internet reach it. On one hand, this is good, because those who are up to 
 no good can't access your Bone. On the other hand, your Bone can't reach the rest of the world.
 
 Letting your bone see the world: setting up IP masquerading
 
 You need to set up IP masquerading on your host and configure your Bone to use it. Here is a solution that works 
-with a host computer running Linux. Add the code in :ref:`<tips_ipmasq_code>` to a 
-file called _ipMasquerade.sh_ on your host computer.
+with a host computer running Linux. Add the code in :ref:`tips_ipmasq_code` to a 
+file called ``ipMasquerade.sh`` on your host computer.
 
 .. _tips_ipmasq_code:
 
-Code for IP Masquerading (ipMasquerade.sh)
-
-.. code-block:: JavaScript
-
-   include::code/ipMasquerade.sh[IP masquerade]
+.. literalinclude:: ../code/05tips/ipMasquerade.sh
+   :caption: Code for IP Masquerading (ipMasquerade.sh)
+   :linenos:
 
+:download:`ipMasquerade.sh <../code/05tips/ipMasquerade.sh>`
 
 Then, on your host, run the following commands:
 
@@ -848,20 +828,19 @@ Then, on your host, run the following commands:
    host$ ./ipMasquerade.sh eth0
 
 
-This will direct your host to take requests from the Bone and send them to +eth0+. 
-If your host is using a wireless connection, change +eth0+ to +wlan0+.
+This will direct your host to take requests from the Bone and send them to *eth0*. 
+If your host is using a wireless connection, change *eth0* to *wlan0*.
 
 Now let's set up your host to instruct the Bone what to do. Add the code 
-in :ref:`<tips_setDNS>` to _setDNS.sh_ on your host computer.
+in :ref:`tips_setDNS` to ``setDNS.sh`` on your host computer.
 
 .. _tips_setDNS:
 
-Code for setting the DNS on the Bone (setDNS.sh)
-
-.. code-block:: JavaScript
-
-   include::code/setDNS.sh[Set DNS]
+.. literalinclude:: ../code/05tips/setDNS.sh
+   :caption: Code for setting the DNS on the Bone (setDNS.sh)
+   :linenos:
 
+:download:`setDNS.sh <../code/05tips/setDNS.sh>`
 
 Then, on your host, run the following commands:
 
@@ -881,15 +860,17 @@ Then, on your host, run the following commands:
 
 
 This will look up what Domain Name System (DNS) servers your host is using and copy 
-them to the right place on the Bone.  The +ping+ command is a quick way to verify your connection.
+them to the right place on the Bone.  The *ping* command is a quick way to verify your connection.
 
 Letting the world see your bone: setting up port forwarding
 
 Now your Bone can access the world via the USB port and your host computer, but
 what if you have a web server on your Bone that you want to access from the world?
-The solution is to use _port forwarding_ from your host. 
-Web servers typically listen to port +80+. First, look up the IP address of your host:
-// TODO  switch to ip address
+The solution is to use port forwarding from your host. 
+Web servers typically listen to port *80*. First, look up the IP address of your host:
+
+.. TODO
+   switch to ip address
 
 .. code-block:: bash
 
@@ -907,14 +888,16 @@ Web servers typically listen to port +80+. First, look up the IP address of your
    ...
 
 
-It's the number following +inet addr:+, which in my case is +137.112.41.35+. 
+It's the number following *inet addr:*, which in my case is *137.112.41.35*. 
 
-.. tip:: 
-   If you are on a wireless network, find the IP address associated with +wlan0+.
+.. tip::
+
+   If you are on a wireless network, find the IP address associated with *wlan0*.
 
 Then run the following, using your host's IP address:
 
-//  TODO check this iptables, convert to ufw
+.. TODO 
+   check this iptables, convert to ufw
 
 .. code-block:: bash
 
@@ -922,30 +905,26 @@ Then run the following, using your host's IP address:
         -d 137.112.41.35 --dport 1080 -j DNAT --to 192.168.7.2:80
 
 
-Now browse to your host computer at port +1080+. That is, if your host's IP address 
-is +123.456.789.0+, enter +123.456.789.0:1080+. The +:1080+ specifies what port number to 
-use. The request will be forwarded to the server on your Bone listening to port +80+. 
-(I used +1080+ here, in case your host is running a web server of its own on port +80+.)
-
-Discussion
-*************
-
+Now browse to your host computer at port *1080*. That is, if your host's IP address 
+is *123.456.789.0*, enter *123.456.789.0:1080*. The *:1080* specifies what port number to 
+use. The request will be forwarded to the server on your Bone listening to port *80*. 
+(I used *1080* here, in case your host is running a web server of its own on port *80*.)
 
 .. _tips_firewall:
 
 Setting Up a Firewall
-------------------------
+======================
 
 Problem
-*************
+--------
 
 You have put your Bone on the network and want to limit which IP addresses can access it.
 
 Solution
-*************
+---------
 
-https://www.howtogeek.com/[How-To Geek] has a great posting on how do use +ufw+, the "uncomplicated firewall". 
-Check out https://www.howtogeek.com/devops/how-to-secure-your-linux-server-with-a-ufw-firewall/[How to Secure Your Linux Server with a UFW Firewall]. 
+`How-To Geek <https://www.howtogeek.com/>`_ has a great posting on how do use *ufw*, the "uncomplicated firewall". 
+Check out `How to Secure Your Linux Server with a UFW Firewall <https://www.howtogeek.com/devops/how-to-secure-your-linux-server-with-a-ufw-firewall/>`_. 
 I'll summarize the initial setup here.
 
 First install and check the status:
@@ -957,7 +936,8 @@ First install and check the status:
    Status: inactive
 
 
-Now turn off everything coming in and leave on all outgoing.  Note, this won't take effect until +ufw+ is enabled.
+Now turn off everything coming in and leave on all outgoing. 
+Note, this won't take effect until *ufw* is enabled.
 
 .. code-block:: bash
 
@@ -965,14 +945,14 @@ Now turn off everything coming in and leave on all outgoing.  Note, this won't t
    bone$ sudo ufw default allow outgoing
 
 
-Don't enable yet, make sure +ssh+ still has access
+Don't enable yet, make sure *ssh* still has access
 
 .. code-block:: bash
 
    bone$ sudo ufw allow 22
 
 
-Just to be sure, you can install +nmap+ on your host computer to see what ports are currently open.
+Just to be sure, you can install *nmap* on your host computer to see what ports are currently open.
 
 .. code-block:: bash
 
@@ -990,7 +970,7 @@ Just to be sure, you can install +nmap+ on your host computer to see what ports
 
 Nmap done: 1 IP address (1 host up) scanned in 0.19 seconds
 
-Currently there are three ports visible:  22, 80 and 3000(visual studio code) Now turn on the firewal and see what happends.
+Currently there are three ports visible:  22, 80 and 3000 (visual studio code) Now turn on the firewal and see what happends.
 
 .. code-block:: bash
 
@@ -1022,25 +1002,22 @@ The firewall will remain on, even after a reboot. Disable it now if you don't wa
 
 See the How-To Geek article for more examples.
 
-Discussion
-*************
-
 .. _tips_apt:
 
 Installing Additional Packages from the Debian Package Feed
--------------------------------------------------------------
+============================================================
 
 Problem
-*************
+--------
 
 You want to do more cool things with your BeagleBone by installing more programs.
 
 Solution
-*************
+----------
 
 .. warning:: 
-   Your Bone needs to be on the network for this to work. See :ref:`<networking_wired>`, 
-   :ref:`<networking_wireless>`, or :ref:`<networking_usb>`.
+   Your Bone needs to be on the network for this to work. See :ref:`networking_wired`, 
+   :ref:`networking_wireless`, or :ref:`networking_usb`.
 
 The easiest way to install more software is to use +apt+:
 
@@ -1050,7 +1027,7 @@ The easiest way to install more software is to use +apt+:
    bone$ sudo apt install "name of software"
 
 
-A +sudo+ is necessary since you aren't running as +root+. The first command downloads 
+A *sudo* is necessary since you aren't running as *root*. The first command downloads 
 package lists from various repositories and updates them to get information on the 
 newest versions of packages and their dependencies. (You need to run it only once a week or so.) 
 The second command fetches the software and installs it and all packages it depends on. 
@@ -1065,38 +1042,36 @@ How do you find out what software you can install?  Try running this:
    bone$ less /tmp/list
 
 
-The first command lists all the packages that +apt+ knows about and sorts them and stores 
-them in _/tmp/list_. The second command shows why you want to put the list in a file. 
-The +wc+ command counts the number of lines, words, and characters in a file. In our case, 
-there are over 67,000 packages from which we can choose! The +less+ command displays the sorted 
+The first command lists all the packages that *apt* knows about and sorts them and stores 
+them in ``/tmp/list``. The second command shows why you want to put the list in a file. 
+The *wc* command counts the number of lines, words, and characters in a file. In our case, 
+there are over 67,000 packages from which we can choose! The *less* command displays the sorted 
 list, one page at a time. Press the space bar to go to the next page. Press Q to quit.  
 
-Suppose that you would like to install an online dictionary (+dict+). Just run the following command:
+Suppose that you would like to install an online dictionary (*dict*). Just run the following command:
 
 .. code-block:: bash
 
    bone$ sudo apt install dict
 
 
-Now you can run +dict+. 
-
-Discussion
-*************
+Now you can run *dict*. 
 
 .. _tips_apt_remove:
 
 Removing Packages Installed with apt
--------------------------------------
+======================================
 
 Problem
-*************
+--------
 
-You've been playing around and installing all sorts of things with +apt+ and now you want to clean things up a bit.
+You've been playing around and installing all sorts of 
+things with *apt* and now you want to clean things up a bit.
 
 Solution
-*************
+--------
 
-+apt+ has a +remove+ option, so you can run the following command:
+*apt* has a *remove* option, so you can run the following command:
 
 .. code-block:: bash
 
@@ -1113,21 +1088,16 @@ Solution
    After this operation, 164 kB disk space will be freed.
    Do you want to continue [Y/n]? y
 
-
-Discussion
-*************
-
-
 Copying Files Between the Onboard Flash and the MicroSD Card
----------------------------------------------------------------
+=============================================================
 
 Problem
-*************
+--------
 
 You want to move files between the onboard flash and the microSD card.
 
 Solution
-*************
+---------
 
 If you booted from the microSD card, run the following command:
 
@@ -1148,16 +1118,17 @@ If you booted from the microSD card, run the following command:
    /dev/mmcblk0p1  /dev/mmcblk1    /dev/mmcblk1boot1
 
 
-The +df+ command shows what partitions are already mounted. 
-The line +/dev/mmcblk0p2  7.2G  2.0G  4.9G  29% /+ shows that +mmcblk0+ partition +p2+ 
-is mounted as +/+, the root file system. The general rule is that the media you're booted from 
-(either the onboard flash or the microSD card) will appear as +mmcblk0+. 
-The second partition (+p2+) is the root of the file system. 
+The *df* command shows what partitions are already mounted. 
+The line */dev/mmcblk0p2  7.2G  2.0G  4.9G  29% /* shows that *mmcblk0* partition *p2* 
+is mounted as */*, the root file system. The general rule is that the media you're booted from 
+(either the onboard flash or the microSD card) will appear as *mmcblk0*. 
+The second partition (*p2*) is the root of the file system. 
 
-The +ls+ command shows what devices are available to mount. Because +mmcblk0+ is already mounted, 
-+/dev/mmcblk1p1+ must be the other media that we need to mount. Run the following commands to mount it:
+The *ls* command shows what devices are available to mount. Because *mmcblk0* is already mounted, 
+*/dev/mmcblk1p1* must be the other media that we need to mount. Run the following commands to mount it:
 
-// TODO update
+.. TODO 
+   update
 
 .. code-block:: bash
 
@@ -1171,16 +1142,14 @@ The +ls+ command shows what devices are available to mount. Because +mmcblk0+ is
    dev   ID.txt  media       opt           run   srv      usr
 
 
-The +cd+ command takes us to a place in the file system where files are commonly mounted. 
-The +mkdir+ command creates a new directory (_onboard_) to be a mount point. The +ls+ 
-command shows there is nothing in _onboard_. The +mount+ command makes the contents of 
-the onboard flash accessible. The next +ls+ shows there now are files in _onboard_. 
+The *cd* command takes us to a place in the file system where files are commonly mounted. 
+The *mkdir* command creates a new directory (``onboard``) to be a mount point. The *ls* 
+command shows there is nothing in ``onboard``. The *mount* command makes the contents of 
+the onboard flash accessible. The next *ls* shows there now are files in ``onboard``. 
 These are the contents of the onboard flash, which can be copied to and from like any other file.
 
-Discussion
-*************
-
-This same process should also work if you have booted from the onboard flash. When you are done with the onboard flash, you can unmount it by using this command:
+This same process should also work if you have booted from the onboard flash. When you are done 
+with the onboard flash, you can unmount it by using this command:
 
 .. code-block:: bash
 
@@ -1188,27 +1157,28 @@ This same process should also work if you have booted from the onboard flash. Wh
 
 
 Freeing Space on the Onboard Flash or MicroSD Card
-----------------------------------------------------
+===================================================
 
 Problem
-*************
+--------
 
 You are starting to run out of room on your microSD card (or onboard flash) and 
-have removed several packages you had previously installed (:ref:`<tips_apt_remove>`), 
+have removed several packages you had previously installed (:ref:`tips_apt_remove`), 
 ut you still need to free up more space.
 
 Solution 
-*************
-
+--------
 
 To free up space, you can remove preinstalled packages or discover big files to remove.
 
 Removing preinstalled packages
 
 
-You might not need a few things that come preinstalled in the Debian image, including such things as OpenCV, the Chromium web browser, and some documentation. 
+You might not need a few things that come preinstalled in the Debian image, including such 
+things as OpenCV, the Chromium web browser, and some documentation. 
 
 .. note:: 
+
    The Chromium web browser is the open source version of Google's Chrome web browser. 
    Unless you are using the Bone as a desktop computer, you can probably remove it.
 
@@ -1226,7 +1196,7 @@ Here's how you can remove these:
 Discovering big files
 
 
-The +du+ (disk usage) command offers a quick way to discover big files:
+The *du* (disk usage) command offers a quick way to discover big files:
 
 .. code-block:: bash
 
@@ -1257,18 +1227,19 @@ The +du+ (disk usage) command offers a quick way to discover big files:
    1.9G	/var
 
 
-If you booted from the microSD card, +du+ lists the usage of the microSD. 
+If you booted from the microSD card, *du* lists the usage of the microSD. 
 If you booted from the onboard flash, it lists the onboard flash usage.
 
-The +-s+ option summarizes the results rather than displaying every file. +-h+ prints 
-it in _human_ form--that is, using +M+ and +K+ postfixes rather than showing lots of digits. 
-The +/*+ specifies to run it on everything in the top-level directory. It looks like a couple 
+The *-s* option summarizes the results rather than displaying every file. *-h* prints 
+it in _human_ form--that is, using *M* and *K* postfixes rather than showing lots of digits. 
+The */** specifies to run it on everything in the top-level directory. It looks like a couple 
 of things disappeared while the command was running and thus produced some error messages.
 
-.. tip:: For more help, try +du --help+.
+.. tip:: 
+   For more help, try *du --help*.
 
-The _/var_ directory appears to be the biggest user of space at 1.9 GB. You can then run the 
-following command to see what's taking up the space in _/var_:
+The ``/var`` directory appears to be the biggest user of space at 1.9 GB. You can then run the 
+following command to see what's taking up the space in ``/var``:
 
 .. code-block:: bash
 
@@ -1288,7 +1259,7 @@ following command to see what's taking up the space in _/var_:
    16K	/var/www
 
 
-A more interactive way to explore your disk usage is by installing +ncdu+ (ncurses disk usage):
+A more interactive way to explore your disk usage is by installing *ncdu* (ncurses disk usage):
 
 .. code-block:: bash
 
@@ -1325,40 +1296,38 @@ After a moment, you'll see the following:
 
    Total disk usage:   5.6 GiB  Apparent size:   5.5 GiB  Items: 206148
 
-+ncdu+ is a character-based graphics interface to +du+.  You can now use your arrow 
+*ncdu* is a character-based graphics interface to *du*.  You can now use your arrow 
 keys to navigate the file structure to discover where the big unused files are. Press ? for help.
 
-.. warning:: Be careful not to press the D key, because it's used to delete a file or directory.
-
-Discussion
-*************
+.. warning:: 
+   Be careful not to press the D key, because it's used to delete a file or directory.
 
 .. _misc_libsoc:
 
 Using C to Interact with the Physical World
---------------------------------------------
+=============================================
 
 Problem
-*************
+--------
 
 You want to use C on the Bone to talk to the world.
 
 Solution
-*************
+---------
 
 The C solution isn't as simple as the JavaScript or Python solution, but it does work 
-and is much faster.  The approach is the same, write to the +/sys/class/gpio+ files.
+and is much faster.  The approach is the same, write to the */sys/class/gpio* files.
 
 .. _misc_c_blink:
 
-Use C to blink an LED (blinkLED.c)
+.. literalinclude:: ../code/05tips/blinkLED.c
+   :caption: Use C to blink an LED (blinkLED.c)
+   :linenos:
 
-.. code-block:: bash
-
-   include::code/blinkLED.c[]
+:download:`blinkLED.c <../code/05tips/blinkLED.c>`
 
 Here, as with JavaScript and Python, the gpio pins are refered to by the Linux gpio number. 
-:ref:`<tips_cape_headers_digital>` shows how the P8 and P9 Headers numbers map to the gpio number. 
+:ref:`tips_cape_headers_digital` shows how the P8 and P9 Headers numbers map to the gpio number. 
 For this example P9_14 is used, which the table shows in gpio 50.
 
 .. _tips_cape_headers_digital:
@@ -1379,7 +1348,3 @@ Compile and run the code:
 
 
 Hit ^C to stop the blinking.
-
-Discussion
-*************
-
diff --git a/books/beaglebone-cookbook/06iot/code/GPIOserver.js b/books/beaglebone-cookbook/06iot/code/GPIOserver.js
deleted file mode 100755
index 00c28d9b2fc9f04739d03c213aa29ba44d18c1cc..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/GPIOserver.js
+++ /dev/null
@@ -1,59 +0,0 @@
-#!/usr/bin/env node
-// Initial idea from Getting Started With node.js and socket.io 
-// http://codehenge.net/blog/2011/12/getting-started-with-node-js-and-socket-io-
-//   v0-7-part-2/
-// This is a simple server for the various web frontends
-// Display status of P9_42
-"use strict";
-
-var port = 9090,            // Port on which to listen
-    http = require('http'),
-    url = require('url'),
-    fs = require('fs'),
-    b = require('bonescript'),
-    gpio = 'P9_42';         // gpio port to read
-
-            // <1>
-var htmlStart = "\
-<!DOCTYPE html>\
-<html>\
-<body>\
-\
-<h1>" + gpio + "</h1>\
-data = ";
-
-            // <2>
-var htmlEnd = "\
-</body>\
-</html>";
-
-var server = http.createServer(servePage);
-
-b.pinMode(gpio, b.INPUT, 7, 'pulldown');
-
-server.listen(port);
-console.log("Listening on " + port);
-
-function servePage(req, res) {
-    var path = url.parse(req.url).pathname;
-    console.log("path: " + path);
-    if (path === '/gpio') {                             // <3>
-        var data = b.digitalRead(gpio);                 // <4>
-        res.write(htmlStart + data + htmlEnd, 'utf8');  // <5>
-        res.end();
-    } else {
-        fs.readFile(__dirname + path, function (err, data) {
-            if (err) {
-                return send404(res); 
-            }
-            res.write(data, 'utf8');
-            res.end();
-        });   
-    }
-}
-
-function send404(res) {
-    res.writeHead(404);
-    res.write('404 - page not found');
-    res.end();
-}
diff --git a/books/beaglebone-cookbook/06iot/code/analogInContinuous.py b/books/beaglebone-cookbook/06iot/code/analogInContinuous.py
deleted file mode 100755
index f026aa92c085aeebfdb662c623bdfdb8244de2fa..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/analogInContinuous.py
+++ /dev/null
@@ -1,91 +0,0 @@
-#!/usr/bin/python
-#//////////////////////////////////////
-#	analogInContinuous.py
-# 	Read analog data via IIO continous mode and plots it.
-#//////////////////////////////////////
-# From: https://stackoverflow.com/questions/20295646/python-ascii-plots-in-terminal
-# https://github.com/dkogan/gnuplotlib
-# https://github.com/dkogan/gnuplotlib/blob/master/guide/guide.org
-# sudo apt install gnuplot  (10 minute to install)
-# sudo apt install libatlas-base-dev
-# pip3 install gnuplotlib
-# This uses X11, so when connecting to the bone from the host use:  ssh -X bone
-
-# See https://elinux.org/index.php?title=EBC_Exercise_10a_Analog_In#Analog_in_-_Continuous.2C_Change_the_sample_rate
-# for instructions on changing the sampling rate.  Can go up to 200KHz.
-
-fd = open(IIODEV, "r")
-import numpy      as np
-import gnuplotlib as gp
-import time
-# import struct
-
-IIOPATH='/sys/bus/iio/devices/iio:device0'
-IIODEV='/dev/iio:device0'
-LEN = 100
-SAMPLERATE=8000
-AIN='2'
-
-# Setup IIO for Continous reading
-# Enable AIN
-try:
-    file1 = open(IIOPATH+'/scan_elements/in_voltage'+AIN+'_en', 'w')
-    file1.write('1') 
-    file1.close()
-except:     # carry on if it's already enabled
-    pass
-# Set buffer length
-file1 = open(IIOPATH+'/buffer/length', 'w')
-file1.write(str(2*LEN))     # I think LEN is in 16-bit values, but here we pass bytes
-file1.close()
-# Enable continous
-file1 = open(IIOPATH+'/buffer/enable', 'w')
-file1.write('1')
-file1.close()
-
-x = np.linspace(0, 1000*LEN/SAMPLERATE, LEN)
-# Do a dummy plot to give time of the fonts to load.
-gp.plot(x, x)
-print("Waiting for fonts to load")
-time.sleep(10)
-
-print('Hit ^C to stop')
-
-fd = open(IIODEV, "r")
-
-try:
-    while True:
-        y = np.fromfile(fd, dtype='uint16', count=LEN)*1.8/4096
-        # print(y)
-        gp.plot(x, y,
-            xlabel = 't (ms)',
-            ylabel = 'volts',
-            _yrange = [0, 2],
-            title  = 'analogInContinuous',
-            legend = np.array( ("P9.39", ), ),
-            # ascii=1,
-            # terminal="xterm",
-            # legend = np.array( ("P9.40", "P9.38"), ),
-            # _with  = 'lines'
-            )
-
-except KeyboardInterrupt:
-    print("Turning off input.")
-    # Disable continous
-    file1 = open(IIOPATH+'/buffer/enable', 'w')
-    file1.write('0')
-    file1.close()
-    
-    file1 = open(IIOPATH+'/scan_elements/in_voltage'+AIN+'_en', 'w')
-    file1.write('0') 
-    file1.close()
-
-# // Bone  | Pocket | AIN
-# // ----- | ------ | --- 
-# // P9_39 | P1_19  | 0
-# // P9_40 | P1_21  | 1
-# // P9_37 | P1_23  | 2
-# // P9_38 | P1_25  | 3
-# // P9_33 | P1_27  | 4
-# // P9_36 | P2_35  | 5
-# // P9_35 | P1_02  | 6
diff --git a/books/beaglebone-cookbook/06iot/code/emailTest.py b/books/beaglebone-cookbook/06iot/code/emailTest.py
deleted file mode 100755
index 4c696b7c0553193d9fc8bb6321f5a864d989c8f7..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/emailTest.py
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/env python
-# From: https://realpython.com/python-send-email/
-import smtplib, ssl
-
-port = 587  # For starttls
-smtp_server  = "smtp.gmail.com"
-sender_email = "from_account@gmail.com"
-receiver_email = "to_account@gmail.com"
-# Go to: https://myaccount.google.com/security
-# Select App password
-# Generate your own 16 char password, copy here
-# Delete password when done
-password = "cftqhcejjdjfdwjh"
-message = """\
-Subject: Testing email
-
-This message is sent from Python.
-
-"""
-context = ssl.create_default_context()
-with smtplib.SMTP(smtp_server, port) as server:
-    server.starttls(context=context)
-    server.login(sender_email, password)
-    server.sendmail(sender_email, receiver_email, message)
diff --git a/books/beaglebone-cookbook/06iot/code/flask/app1.py b/books/beaglebone-cookbook/06iot/code/flask/app1.py
deleted file mode 100755
index 7a0597c5a2b83598f4722faf1eae6a0945d4f149..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/flask/app1.py
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/env python
-# From: https://towardsdatascience.com/python-webserver-with-flask-and-raspberry-pi-398423cc6f5d
-
-'''
-Code created by Matt Richardson 
-for details, visit:  http://mattrichardson.com/Raspberry-Pi-Flask/inde...
-'''
-from flask import Flask, render_template
-import datetime
-app = Flask(__name__)
-@app.route("/")
-def hello():
-   now = datetime.datetime.now()
-   timeString = now.strftime("%Y-%m-%d %H:%M")
-   templateData = {
-      'title' : 'HELLO!',
-      'time': timeString
-      }
-   return render_template('index1.html', **templateData)
-if __name__ == "__main__":
-   app.run(host='0.0.0.0', port=8080, debug=True)
-  
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/06iot/code/flask/app2.py b/books/beaglebone-cookbook/06iot/code/flask/app2.py
deleted file mode 100755
index a6f026cdcd327e63e9d8ea7586cf612fa142854e..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/flask/app2.py
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/usr/bin/env python
-# From: https://towardsdatascience.com/python-webserver-with-flask-and-raspberry-pi-398423cc6f5d
-import os
-from flask import Flask, render_template
-app = Flask(__name__)
-
-pin = '30' #  P9_11 is gpio 30
-GPIOPATH="/sys/class/gpio"
-buttonSts = 0
-
-# Make sure pin is exported
-if (not os.path.exists(GPIOPATH+"/gpio"+pin)):
-    f = open(GPIOPATH+"/export", "w")
-    f.write(pin)
-    f.close()
-
-# Make it an input pin
-f = open(GPIOPATH+"/gpio"+pin+"/direction", "w")
-f.write("in")
-f.close()
-
-@app.route("/")
-def index():
-	# Read Button Status
-	f = open(GPIOPATH+"/gpio"+pin+"/value", "r")
-	buttonSts = f.read()[:-1]
-	f.close()
-
-	# buttonSts = GPIO.input(button)
-	templateData = {
-      'title' : 'GPIO input Status!',
-      'button'  : buttonSts,
-      }
-	return render_template('index2.html', **templateData)
-if __name__ == "__main__":
-   app.run(host='0.0.0.0', port=8080, debug=True)
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/06iot/code/flask/app3.py b/books/beaglebone-cookbook/06iot/code/flask/app3.py
deleted file mode 100755
index 388206d5dab5d0d5e0bfb035c04e860991208ffd..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/flask/app3.py
+++ /dev/null
@@ -1,60 +0,0 @@
-#!/usr/bin/env python
-# From: https://towardsdatascience.com/python-webserver-with-flask-and-raspberry-pi-398423cc6f5d
-# import Adafruit_BBIO.GPIO as GPIO
-import os
-from flask import Flask, render_template, request
-app = Flask(__name__)
-#define LED GPIO
-ledRed = "P9_14"
-pin = '50' #  P9_14 is gpio 50
-GPIOPATH="/sys/class/gpio"
-
-#initialize GPIO status variable
-ledRedSts = 0
-# Make sure pin is exported
-if (not os.path.exists(GPIOPATH+"/gpio"+pin)):
-    f = open(GPIOPATH+"/export", "w")
-    f.write(pin)
-    f.close()
-# Define led pin as output
-f = open(GPIOPATH+"/gpio"+pin+"/direction", "w")
-f.write("out")
-f.close()
-# turn led OFF 
-f = open(GPIOPATH+"/gpio"+pin+"/value", "w")
-f.write("0")
-f.close()
-
-@app.route("/")
-def index():
-	# Read Sensors Status
-	f = open(GPIOPATH+"/gpio"+pin+"/value", "r")
-	ledRedSts = f.read()
-	f.close()
-	templateData = {
-              'title' : 'GPIO output Status!',
-              'ledRed'  : ledRedSts,
-        }
-	return render_template('index3.html', **templateData)
-	
-@app.route("/<deviceName>/<action>")
-def action(deviceName, action):
-	if deviceName == 'ledRed':
-		actuator = ledRed
-	f = open(GPIOPATH+"/gpio"+pin+"/value", "w")
-	if action == "on":
-		f.write("1")
-	if action == "off":
-		f.write("0")
-	f.close()
-		     
-	f = open(GPIOPATH+"/gpio"+pin+"/value", "r")
-	ledRedSts = f.read()
-	f.close()
-
-	templateData = {
-              'ledRed'  : ledRedSts,
-	}
-	return render_template('index3.html', **templateData)
-if __name__ == "__main__":
-   app.run(host='0.0.0.0', port=8080, debug=True)
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/06iot/code/flask/app4.py b/books/beaglebone-cookbook/06iot/code/flask/app4.py
deleted file mode 100755
index 9799ff3d50c6158d237721473b5e0e754a0227b9..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/flask/app4.py
+++ /dev/null
@@ -1,79 +0,0 @@
-#!/usr/bin/env python
-# From: https://towardsdatascience.com/python-webserver-with-flask-and-raspberry-pi-398423cc6f5d
-import os
-# import Adafruit_BBIO.GPIO as GPIO
-from flask import Flask, render_template, request
-app = Flask(__name__)
-GPIOPATH="/sys/class/gpio"
-#define sensors GPIOs
-button = "30"  # "P9_11"
-#define actuators GPIOs
-ledRed = "50"  # "P9_14"
-
-# Make sure pin is exported
-if (not os.path.exists(GPIOPATH+"/gpio"+button)):
-    f = open(GPIOPATH+"/export", "w")
-    f.write(pin)
-    f.close()
-if (not os.path.exists(GPIOPATH+"/gpio"+ledRed)):
-    f = open(GPIOPATH+"/export", "w")
-    f.write(pin)
-    f.close()
-#initialize GPIO status variables
-buttonSts = 0
-ledRedSts = 0
-# Define button and PIR sensor pins as an input
-f = open(GPIOPATH+"/gpio"+button+"/direction", "w")
-f.write("in")
-f.close() 
-# Define led pins as output
-f = open(GPIOPATH+"/gpio"+ledRed+"/direction", "w")
-f.write("out")
-f.close()  
-# turn leds OFF 
-f = open(GPIOPATH+"/gpio"+ledRed+"/value", "w")
-f.write("0")
-f.close()
-
-@app.route("/")
-def index():
-	# Read GPIO Status
-	f = open(GPIOPATH+"/gpio"+button+"/value", "r")
-	buttonSts = f.read()[:-1]
-	f.close()
-	f = open(GPIOPATH+"/gpio"+ledRed+"/value", "r")
-	ledRedSts = f.read()[:-1]
-	f.close()
-
-	templateData = {
-      		'button'  : buttonSts,
-      		'ledRed'  : ledRedSts,
-      	}
-	return render_template('index4.html', **templateData)
-	
-@app.route("/<deviceName>/<action>")
-def action(deviceName, action):
-	if deviceName == 'ledRed':
-		actuator = ledRed
-
-	f = open(GPIOPATH+"/gpio"+ledRed+"/value", "w")
-	if action == "on":
-		f.write("1")
-	if action == "off":
-		f.write("0")
-	f.close()
-		     
-	f = open(GPIOPATH+"/gpio"+button+"/value", "r")
-	buttonSts = f.read()[:-1]
-	f.close()
-	f = open(GPIOPATH+"/gpio"+ledRed+"/value", "r")
-	ledRedSts = int(f.read()[:-1])
-	f.close()
-
-	templateData = {
-	 	'button'  : buttonSts,
-  		'ledRed'  : ledRedSts,
-	}
-	return render_template('index4.html', **templateData)
-if __name__ == "__main__":
-   app.run(host='0.0.0.0', port=8080, debug=True)
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/06iot/code/flask/app5.py b/books/beaglebone-cookbook/06iot/code/flask/app5.py
deleted file mode 100755
index d92a2583af3eb4d9a6438fb8eaa4d051197b38e2..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/flask/app5.py
+++ /dev/null
@@ -1,87 +0,0 @@
-#!/usr/bin/env python
-# From: https://towardsdatascience.com/python-webserver-with-flask-and-raspberry-pi-398423cc6f5d
-import os
-# import Adafruit_BBIO.GPIO as GPIO
-from flask import Flask, render_template, request
-app = Flask(__name__)
-GPIOPATH="/sys/class/gpio"
-#define sensors GPIOs
-button = "30"  # "P9_11"
-#define actuators GPIOs
-ledRed = "50"  # "P9_14"
-
-# Make sure pin is exported
-if (not os.path.exists(GPIOPATH+"/gpio"+button)):
-    f = open(GPIOPATH+"/export", "w")
-    f.write(pin)
-    f.close()
-if (not os.path.exists(GPIOPATH+"/gpio"+ledRed)):
-    f = open(GPIOPATH+"/export", "w")
-    f.write(pin)
-    f.close()
-#initialize GPIO status variables
-buttonSts = 0
-ledRedSts = 0
-# Define button and PIR sensor pins as an input
-f = open(GPIOPATH+"/gpio"+button+"/direction", "w")
-f.write("in")
-f.close() 
-# Define led pins as output
-f = open(GPIOPATH+"/gpio"+ledRed+"/direction", "w")
-f.write("out")
-f.close()  
-# turn leds OFF 
-f = open(GPIOPATH+"/gpio"+ledRed+"/value", "w")
-f.write("0")
-f.close()
-
-@app.route("/")
-def index():
-	# Read GPIO Status
-	f = open(GPIOPATH+"/gpio"+button+"/value", "r")
-	buttonSts = f.read()[:-1]
-	f.close()
-	f = open(GPIOPATH+"/gpio"+ledRed+"/value", "r")
-	ledRedSts = f.read()[:-1]
-	f.close()
-
-	templateData = {
-      		'button'  : buttonSts,
-      		'ledRed'  : ledRedSts,
-      	}
-	return render_template('index5.html', **templateData)
-	
-@app.route("/<deviceName>/<action>")
-def action(deviceName, action):
-	if deviceName == 'ledRed':
-		actuator = ledRed
-
-	f = open(GPIOPATH+"/gpio"+ledRed+"/value", "w")
-	if action == "on":
-		f.write("1")
-	if action == "off":
-		f.write("0")
-	if action == "toggle":
-		f.close()
-		f = open(GPIOPATH+"/gpio"+ledRed+"/value", "r")
-		ledRedSts = int(f.read()[:-1])
-		ledRedSts = str(int(not ledRedSts))
-		f.close()
-		f = open(GPIOPATH+"/gpio"+ledRed+"/value", "w")
-		f.write(ledRedSts)
-	f.close()
-		     
-	f = open(GPIOPATH+"/gpio"+button+"/value", "r")
-	buttonSts = f.read()[:-1]
-	f.close()
-	f = open(GPIOPATH+"/gpio"+ledRed+"/value", "r")
-	ledRedSts = int(f.read()[:-1])
-	f.close()
-
-	templateData = {
-	 	'button'  : buttonSts,
-  		'ledRed'  : ledRedSts,
-	}
-	return render_template('index5.html', **templateData)
-if __name__ == "__main__":
-   app.run(host='0.0.0.0', port=8080, debug=True)
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/06iot/code/flask/flask.service b/books/beaglebone-cookbook/06iot/code/flask/flask.service
deleted file mode 100644
index 1b577785a2314fc7b4d559cd89283630dfb7eba7..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/flask/flask.service
+++ /dev/null
@@ -1,10 +0,0 @@
-[Unit]
-Description=flask server
-
-[Service]
-WorkingDirectory=/home/debian/exercises/flask/server
-ExecStart=/home/debian/exercises/flask/server/app5.py
-SyslogIdentifier=flask
-
-[Install]
-WantedBy=multi-user.target
diff --git a/books/beaglebone-cookbook/06iot/code/flask/helloWorld.py b/books/beaglebone-cookbook/06iot/code/flask/helloWorld.py
deleted file mode 100755
index 176350b065475774e1ff6ba56d8043498a49a6e0..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/flask/helloWorld.py
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/usr/bin/env python
-# From: https://towardsdatascience.com/python-webserver-with-flask-and-raspberry-pi-398423cc6f5d
-
-from flask import Flask
-app = Flask(__name__)
-@app.route('/')
-def index():
-    return 'hello, world'
-if __name__ == '__main__':
-    app.run(debug=True, port=8080, host='0.0.0.0')
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/06iot/code/flask/install.sh b/books/beaglebone-cookbook/06iot/code/flask/install.sh
deleted file mode 100644
index 332244695a5fed8aaa447c60b5364b3120271c86..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/flask/install.sh
+++ /dev/null
@@ -1,7 +0,0 @@
-# From: https://www.cloudsavvyit.com/903/debug-your-local-applications-over-the-internet-with-ngrok-tunnels/
-wget https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-arm.zip
-unzip ngrok-stable-linux-arm.zip
-sudo mv ngrok ~/.local/bin
-
-mkdir -p ~/.ngrok2
-cp ngrok.yml ~/.ngrok2
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/06iot/code/flask/ngrok.yml b/books/beaglebone-cookbook/06iot/code/flask/ngrok.yml
deleted file mode 100644
index 5074663e9d79da704834075c14e009103945e992..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/flask/ngrok.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-tunnels:
- flask:
-  proto: http
-  addr: 8081
diff --git a/books/beaglebone-cookbook/06iot/code/flask/setup.sh b/books/beaglebone-cookbook/06iot/code/flask/setup.sh
deleted file mode 100644
index 410868a7afbc15e04da4a51738065a9b1e38128c..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/flask/setup.sh
+++ /dev/null
@@ -1,2 +0,0 @@
-# Start ngrok 
-ngrok start flask
diff --git a/books/beaglebone-cookbook/06iot/code/flask/static/favicon.ico b/books/beaglebone-cookbook/06iot/code/flask/static/favicon.ico
deleted file mode 100644
index e96154d507400f4d1ad0c844a47f9d3455af3917..0000000000000000000000000000000000000000
Binary files a/books/beaglebone-cookbook/06iot/code/flask/static/favicon.ico and /dev/null differ
diff --git a/books/beaglebone-cookbook/06iot/code/flask/static/style.css b/books/beaglebone-cookbook/06iot/code/flask/static/style.css
deleted file mode 100644
index f05f2cc82abb471035a46bf8b6e37a638f6a6bb5..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/flask/static/style.css
+++ /dev/null
@@ -1,15 +0,0 @@
-/*body {*/
-/*	background: blue;*/
-/*	color: yellow;*/
-/*}*/
-.button {
-  font: bold 15px Arial;
-  text-decoration: none;
-  background-color: #EEEEEE;
-  color: #333333;
-  padding: 2px 6px 2px 6px;
-  border-top: 1px solid #CCCCCC;
-  border-right: 1px solid #333333;
-  border-bottom: 1px solid #333333;
-  border-left: 1px solid #CCCCCC;
-}
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/06iot/code/flask/templates/index1.html b/books/beaglebone-cookbook/06iot/code/flask/templates/index1.html
deleted file mode 100644
index 067d7eff0a86544a2b81846f8c9cedf856e24167..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/flask/templates/index1.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<!DOCTYPE html>
-   <head>
-      <title>{{ title }}</title>
-   </head>
-   <body>
-      <h1>Hello, World!</h1>
-      <h2>The date and time on the server is: {{ time }}</h2>
-   </body>
-</html>
diff --git a/books/beaglebone-cookbook/06iot/code/flask/templates/index2.html b/books/beaglebone-cookbook/06iot/code/flask/templates/index2.html
deleted file mode 100644
index be37dfc44c5f1e6f4a647ad8f2d1378bb7ab9bbc..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/flask/templates/index2.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<!DOCTYPE html>
-   <head>
-      <title>{{ title }}</title>
-      <link rel="stylesheet" href='../static/style.css'/>
-   </head>
-   <body>
-	  <h1>{{ title }}</h1>
-      <h2>Button pressed:  {{ button }}</h1>
-   </body>
-</html>
diff --git a/books/beaglebone-cookbook/06iot/code/flask/templates/index3.html b/books/beaglebone-cookbook/06iot/code/flask/templates/index3.html
deleted file mode 100644
index ef95fca7d25f8e8cfc2287773149dd301c57e580..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/flask/templates/index3.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<!DOCTYPE html>
-   <head>
-      <title>GPIO Control</title>
-      <link rel="stylesheet" href='../static/style.css'/>
-   </head>
-   <body>
-		<h2>Actuators</h2>
-		<h3> Status </h3>
-		     RED LED ==>  {{ ledRed  }}
-		<br>
-		<h3> Commands </h3>
-			RED LED Ctrl ==> 
-			<a href="/ledRed/on" class="button">TURN ON</a>  
-			<a href="/ledRed/off"class="button">TURN OFF</a>
-   </body>
-</html>
-
diff --git a/books/beaglebone-cookbook/06iot/code/flask/templates/index4.html b/books/beaglebone-cookbook/06iot/code/flask/templates/index4.html
deleted file mode 100644
index ea85a3f3af71baf7003d1d51e2b4ef92900522ad..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/flask/templates/index4.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<!DOCTYPE html> 
-  <head> 
-     <title>GPIO Control</title> 
-     <link rel="stylesheet" href='../static/style.css'/> 
-  </head> 
-  <body> 
-		<h1>GPIO Control</h1> 
-		<h2> Sensor Status </h2> 
-		<h3> BUTTON ==>  {{ button  }}</h3> 
-		<h2> Actuator Status & Control </h2> 
-		<h3> RED LED ==>  {{ ledRed  }}  ==>   
-			{% if  ledRed   == 1 %} 
-				<a href="/ledRed/off"class="button">TURN OFF</a> 
-			{% else %} 
-				<a href="/ledRed/on" class="button">TURN ON</a>  
-			{% endif %}	 
-		</h3> 
-		</h3> 
-  </body> 
-</html>
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/06iot/code/flask/templates/index5.html b/books/beaglebone-cookbook/06iot/code/flask/templates/index5.html
deleted file mode 100644
index cff4bffb06a8b08702b13a9b7fbafc75d93ba611..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/flask/templates/index5.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html> 
-  <head> 
-     <title>GPIO Control</title> 
-     <link rel="stylesheet" href='../static/style.css'/> 
-  </head> 
-  <body> 
-		<h1>GPIO Control</h1> 
-		<h2> Sensor Status </h2> 
-		<h3> BUTTON ==>  {{ button  }}</h3> 
-		<h2> Actuator Status & Control </h2> 
-		<h3> RED LED ==>  {{ ledRed  }}  ==> 
-			<a href="/ledRed/toggle" class="button">TOGGLE</a>  
-			{% if  ledRed   == 1 %} 
-				<a href="/ledRed/off"class="button">TURN OFF</a> 
-			{% else %} 
-				<a href="/ledRed/on" class="button">TURN ON</a>  
-			{% endif %}	 
-		</h3> 
-		</h3> 
-  </body> 
-</html>
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/06iot/code/flotDemo.html b/books/beaglebone-cookbook/06iot/code/flotDemo.html
deleted file mode 100644
index 8bf03881537f86c2b48f5e4e72cd0ff23cedb05e..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/flotDemo.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<html>
-    <head>
-        <title>BoneScript Flot Demo</title>
-        <script src="/static/flot/jquery.min.js"></script>
-        <script src="/static/flot/jquery.flot.min.js"></script>
-        <script src="/static/bonescript.js"></script>
-        <script src="flotDemo.js"></script>
-    </head>
-<body>
-
-<h1>BoneScript Flot Demo</h1> 
-<div id="myplot" style="width:500px;height:300px;"></div>
-
-</body>
-</html>
diff --git a/books/beaglebone-cookbook/06iot/code/flotDemo.js b/books/beaglebone-cookbook/06iot/code/flotDemo.js
deleted file mode 100644
index 5bf690c27287c42db2f5ea395908bda85e83f0a6..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/flotDemo.js
+++ /dev/null
@@ -1,66 +0,0 @@
-setTargetAddress('192.168.7.2', {                           // <1>
-    initialized: run
-});
-
-function run() {
-    var b = require('bonescript');                          // <2>
-    var POT = 'P9_36';                                      // <3>
-
-    var container = $("#myplot");                           // <4>
-    var totalPoints = container.outerWidth() / 2 || 250;    // <5>
-    var data = [];
-    var plotOptions = {                                     // <6>
-        series: {
-            shadowSize: 0
-        },
-        yaxis: {
-            min: 0,
-            max: 1
-        },
-        xaxis: {
-            min: 0,
-            max: totalPoints,
-            show: false
-        }
-    };
-    var plot = $.plot(container, getData(), plotOptions);   // <7>
-
-    drawGraph();                                            // <8>
-
-    function drawGraph() {                                  // <9>
-        plot.setData(getData());
-        plot.draw();
-        b.analogRead(POT, onAnalogRead);
-    }
-
-    // Handle data back from potentiometer
-    function onAnalogRead(x) {                              
-        if (!x.err && typeof x.value == 'number') {
-            pushData(x.value);                              // <10>
-        }
-        setTimeout(drawGraph, 20);                          // <11>
-    }
-
-    function pushData(y) {
-        if (data.length && (data.length + 1) > totalPoints) {
-            data = data.slice(1);
-        }
-        if (data.length < totalPoints) {
-            data.push(y);
-        }
-    }
-
-    function getData() {
-        var res = [];
-        for (var i = 0; i < data.length; ++i) {
-            res.push([i, data[i]]);
-        }
-        var series = [{
-            data: res,
-            lines: {
-                fill: true
-            }
-        }];
-        return series;
-    }
-}
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/06iot/code/jQueryDemo.js b/books/beaglebone-cookbook/06iot/code/jQueryDemo.js
deleted file mode 100644
index 9581030e2857ce5210071c88f883b1169cf95add..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/jQueryDemo.js
+++ /dev/null
@@ -1,34 +0,0 @@
-setTargetAddress('192.168.7.2', {               // <1>
-    initialized: run
-});
-
-function run() {
-    var b = require('bonescript');              // <2>
-    var SLIDER = 'P9_36';                       // <3>
-    var BUTTON = 'P8_19';
-    b.pinMode(BUTTON, b.INPUT);
-
-    getSliderStatus();                          // <4>
-
-    function getSliderStatus() {
-        b.analogRead(SLIDER, onSliderRead);     // <5>
-    }
-
-    function onSliderRead(x) {
-        if (!x.err) {                           // <6>
-            $('#sliderStatus').html(x.value.toFixed(3));
-        }
-        getButtonStatus()                       // <7>
-    }
-
-    function getButtonStatus() {
-        b.digitalRead(BUTTON, onButtonRead);    // <8>
-    }
-
-    function onButtonRead(x) {
-        if (!x.err) {                           // <9>
-            $('#buttonStatus').html(x.value);
-        }
-        setTimeout(getSliderStatus, 20);        // <10>
-    }
-}
diff --git a/books/beaglebone-cookbook/06iot/code/jQueryInstall.sh b/books/beaglebone-cookbook/06iot/code/jQueryInstall.sh
deleted file mode 100644
index 8f5e8b1eac152607257b583e90d12ab781f2ac7d..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/jQueryInstall.sh
+++ /dev/null
@@ -1,2 +0,0 @@
-# This gives easy acces to the bonscript and jquery libraries
-ln -s /var/lib/cloud9/static/ .
diff --git a/books/beaglebone-cookbook/06iot/code/launchPad.js b/books/beaglebone-cookbook/06iot/code/launchPad.js
deleted file mode 100755
index f81591dd336e39a66fc083cd2471ef273acec95b..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/launchPad.js
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/usr/bin/env node
-// Need to add exports.serialParsers = m.module.parsers;
-// to /usr/local/lib/node_modules/bonescript/serial.js
-var b = require('bonescript');
-
-var port = '/dev/ttyO1';                    // <1>
-var options = {
-    baudrate: 9600,                         // <2>
-    parser: b.serialParsers.readline("\n")  // <3>
-};
-
-b.serialOpen(port, options, onSerial);      // <4>
-
-function onSerial(x) {                      // <5>
-    console.log(x.event);
-    if (x.err) {
-        console.log('***ERROR*** ' + JSON.stringify(x));
-    }
-    if (x.event == 'open') {
-        console.log('***OPENED***');
-        setInterval(sendCommand, 1000);     // <6>
-    }
-    if (x.event == 'data') {
-        console.log(String(x.data));
-    }
-}
-
-var command = ['r', 'g'];                   // <7>
-var commIdx = 1;
-
-function sendCommand() {
-    // console.log('Command: ' + command[commIdx]);
-    b.serialWrite(port, command[commIdx++]); // <8>
-    if(commIdx >= command.length) {         // <9>
-        commIdx = 0;
-    }
-}
diff --git a/books/beaglebone-cookbook/06iot/code/launchPad/launchPad.ino b/books/beaglebone-cookbook/06iot/code/launchPad/launchPad.ino
deleted file mode 100644
index 12e3cd7dd7b759feda60e852e0882e88cc80d3de..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/launchPad/launchPad.ino
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
-  Tests connection to a BeagleBone
-  Mark A. Yoder
-  Waits for input on Serial Port
-  g - Green toggle
-  r - Red toggle
-*/
-char inChar = 0; // incoming serial byte
-int red = 0;
-int green = 0;
-
-void setup()
-{
-  // initialize the digital pin as an output.
-  pinMode(RED_LED, OUTPUT);           // <1>
-  pinMode(GREEN_LED, OUTPUT);  
-  // start serial port at 9600 bps:
-  Serial.begin(9600);                 // <2>
-  Serial.print("Command (r, g): ");   // <3>
-  
-  digitalWrite(GREEN_LED, green);     // <4>
-  digitalWrite(  RED_LED, red);
-}
-
-void loop()
-{
-  if(Serial.available() > 0 ) {       // <5>
-    inChar = Serial.read();
-    switch(inChar) {                  // <6>
-      case 'g':
-        green = ~green;
-        digitalWrite(GREEN_LED, green);
-        Serial.println("Green");
-        break;
-      case 'r':
-        red = ~red;
-        digitalWrite(RED_LED, red);
-        Serial.println("Red");
-        break;
-    }
-    Serial.print("Command (r, g): ");
-  }
-}
-
diff --git a/books/beaglebone-cookbook/06iot/code/nodemailer-install.sh b/books/beaglebone-cookbook/06iot/code/nodemailer-install.sh
deleted file mode 100755
index 856fc7c3c0a1e0703b4351b4dc6c574c0cd0ddb9..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/nodemailer-install.sh
+++ /dev/null
@@ -1 +0,0 @@
-npm install -g nodemailer
diff --git a/books/beaglebone-cookbook/06iot/code/nodemailer-test.js b/books/beaglebone-cookbook/06iot/code/nodemailer-test.js
deleted file mode 100755
index e5b99f6db79cca22f933ba0d5ba9af1cee09538e..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/nodemailer-test.js
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/usr/bin/env node
-// From: https://github.com/andris9/Nodemailer
-
-var nodemailer = require('nodemailer');
-
-// create reusable transporter object using SMTP transport
-var transporter = nodemailer.createTransport({
-    service: 'gmail',
-    auth: {
-        user: 'yourUser@gmail.com',
-        pass: 'yourPass'
-    }
-});
-
-// NB! No need to re-create the transporter object. You can use
-// the same transporter object for all e-mails
-
-// set up e-mail data with unicode symbols
-var mailOptions = {
-    from: 'Your User <yourUser@gmail.edu>', // sender address
-    to: 'anotherUser@gmail.edu', // list of receivers
-    subject: 'Test of nodemail', // Subject line
-    text: 'Hello world from modemailer', // plaintext body
-    html: '<b>Hello world</b><p>Way to go!</p>' // html body
-};
-
-// send mail with defined transport object
-transporter.sendMail(mailOptions, function(error, info){
-    if(error){
-        console.log(error);
-    }else{
-        console.log('Message sent: ' + info.response);
-    }
-});
-
-// Nodemailer is licensed under MIT license 
-// (https://github.com/andris9/Nodemailer/blob/master/LICENSE). 
-// Basically you can do whatever you want to with it
diff --git a/books/beaglebone-cookbook/06iot/code/noderedExample.json b/books/beaglebone-cookbook/06iot/code/noderedExample.json
deleted file mode 100644
index 06b306df51787ae3096298bd08b289436045bcd1..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/noderedExample.json
+++ /dev/null
@@ -1,164 +0,0 @@
-[
-    {
-        "id": "70fd05e2.f03d0c",
-        "type": "tab",
-        "label": "Flow 1",
-        "disabled": false,
-        "info": ""
-    },
-    {
-        "id": "b1dc9221.09e41",
-        "type": "gpio out",
-        "z": "70fd05e2.f03d0c",
-        "name": "",
-        "state": "OUTPUT",
-        "pin": "P9_14",
-        "i2cDelay": "0",
-        "i2cAddress": "",
-        "i2cRegister": "",
-        "outputs": 0,
-        "board": "14fb0dec.376712",
-        "x": 610,
-        "y": 180,
-        "wires": []
-    },
-    {
-        "id": "acb4df30.72216",
-        "type": "inject",
-        "z": "70fd05e2.f03d0c",
-        "name": "",
-        "props": [
-            {
-                "p": "payload"
-            }
-        ],
-        "repeat": "",
-        "crontab": "",
-        "once": false,
-        "onceDelay": 0.1,
-        "topic": "",
-        "payload": "1",
-        "payloadType": "num",
-        "x": 370,
-        "y": 180,
-        "wires": [
-            [
-                "b1dc9221.09e41"
-            ]
-        ]
-    },
-    {
-        "id": "35e9479e.0e2428",
-        "type": "inject",
-        "z": "70fd05e2.f03d0c",
-        "name": "",
-        "props": [
-            {
-                "p": "payload"
-            }
-        ],
-        "repeat": "",
-        "crontab": "",
-        "once": false,
-        "onceDelay": 0.1,
-        "topic": "",
-        "payload": "0",
-        "payloadType": "str",
-        "x": 370,
-        "y": 220,
-        "wires": [
-            [
-                "b1dc9221.09e41"
-            ]
-        ]
-    },
-    {
-        "id": "cca6a964.c0e978",
-        "type": "gpio out",
-        "z": "70fd05e2.f03d0c",
-        "name": "",
-        "state": "OUTPUT",
-        "pin": "USR3",
-        "i2cDelay": "0",
-        "i2cAddress": "",
-        "i2cRegister": "",
-        "outputs": 0,
-        "board": "14fb0dec.376712",
-        "x": 610,
-        "y": 280,
-        "wires": []
-    },
-    {
-        "id": "b9def222.f9a97",
-        "type": "inject",
-        "z": "70fd05e2.f03d0c",
-        "name": "",
-        "props": [
-            {
-                "p": "payload"
-            }
-        ],
-        "repeat": "",
-        "crontab": "",
-        "once": false,
-        "onceDelay": 0.1,
-        "topic": "",
-        "payload": "1",
-        "payloadType": "num",
-        "x": 370,
-        "y": 280,
-        "wires": [
-            [
-                "cca6a964.c0e978"
-            ]
-        ]
-    },
-    {
-        "id": "230706ad.dbc7ea",
-        "type": "inject",
-        "z": "70fd05e2.f03d0c",
-        "name": "",
-        "props": [
-            {
-                "p": "payload"
-            }
-        ],
-        "repeat": "",
-        "crontab": "",
-        "once": false,
-        "onceDelay": 0.1,
-        "topic": "",
-        "payload": "0",
-        "payloadType": "str",
-        "x": 370,
-        "y": 320,
-        "wires": [
-            [
-                "cca6a964.c0e978"
-            ]
-        ]
-    },
-    {
-        "id": "14fb0dec.376712",
-        "type": "ioplugin",
-        "name": "",
-        "username": "",
-        "password": "",
-        "boardType": "beaglebone-io",
-        "serialportName": "",
-        "connectionType": "local",
-        "mqttServer": "",
-        "pubTopic": "",
-        "subTopic": "",
-        "tcpHost": "",
-        "tcpPort": "",
-        "sparkId": "",
-        "sparkToken": "",
-        "beanId": "",
-        "impId": "",
-        "uuid": "",
-        "token": "",
-        "sendUuid": "",
-        "samplingInterval": "500"
-    }
-]
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/06iot/code/processingDemo.js b/books/beaglebone-cookbook/06iot/code/processingDemo.js
deleted file mode 100644
index 3356cc00ef9cad6ca1900f488cc3210f41304224..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/processingDemo.js
+++ /dev/null
@@ -1,89 +0,0 @@
-var canvas = document.getElementById("mysketch");
-var p = new Processing(canvas, sketchProc);
-
-function sketchProc(pjs) {
-    // Sketch global variables
-    var radius = 50.0;
-    var X, Y;
-    var nX, nY;
-    var delay = 16;
-    var brightness = 0;
-    var buttonStatus = 0;
-    var sliderStatus = 0;
-    var lastSliderValue = 0;
-    var BUTTON = 'P8_19';
-    var POT = 'P9_36';
-
-    // Get the BoneScript library and begin updating the canvas
-    setTargetAddress('beaglebone.local', {
-        initialized: run
-    });
-    setTargetAddress('192.168.7.2', {
-        initialized: run
-    });
-
-    function run() {
-        var b = require('bonescript');
-        b.pinMode(BUTTON, b.INPUT);
-
-        // Setup the Processing Canvas
-        pjs.setup = function () {
-            pjs.size(256, 256);
-            pjs.strokeWeight(10);
-            pjs.frameRate(15);
-            X = pjs.width / 2;
-            Y = pjs.height / 2;
-            nX = X;
-            nY = Y;
-        }
-
-        // Main draw loop
-        pjs.draw = function () {
-            // Calculate some fading values based on the frame count
-            radius = 50.0 + (15 - sliderStatus) * pjs.sin(pjs.frameCount / 4);
-            brightness = (radius - 40.0) / 20.0;
-
-            // Track circle to new destination
-            X += (nX - X) / delay;
-            Y += (nY - Y) / delay;
-
-            // Fill canvas grey
-            pjs.background(100);
-
-            // Set fill-color to blue or red, based on button status
-            if (buttonStatus) pjs.fill(200, 30, 20)
-            else pjs.fill(0, 121, 184);
-
-            // Set stroke-color white
-            pjs.stroke(255);
-
-            // Draw circle
-            pjs.ellipse(X, Y, radius, radius);
-
-            // Fetch slider location for next time
-            b.analogRead(POT, onAnalogRead);
-
-            // Fetch button status
-            b.digitalRead(BUTTON, onDigitalRead);
-        }
-
-        // Get things started
-        pjs.setup();
-
-        // Handle data back from potentiometer
-        function onAnalogRead(x) {
-            if (!x.err && (x.value >= 0) && (x.value <= 1)) {
-                if (Math.abs(x.value - lastSliderValue) > 0.05) {
-                    lastSliderValue = x.value;
-                    nY = x.value * 255;
-                    sliderStatus = parseInt(x.value * 10, 10);
-                }
-            }
-        }
-
-        // Handle data back from button
-        function onDigitalRead(x) {
-            buttonStatus = (x.value == b.LOW) ? 1 : 0;
-        }
-    }
-}
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/06iot/code/server.js b/books/beaglebone-cookbook/06iot/code/server.js
deleted file mode 100755
index c827116c40ee32b679786f7aa0cb316d2e37d1ba..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/server.js
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/usr/bin/env node
-// Initial idea from Getting Started With node.js and socket.io
-// by Constantine Aaron Cois, Ph.D. (www.codehenge.net)
-// http://codehenge.net/blog/2011/12/getting-started-with-node-js-and-socket-io-
-//   v0-7-part-2/
-// This is a simple server for the various web frontends
-"use strict";
-
-var port = 9090,            // Port on which to listen
-    http = require('http'),
-    url = require('url'),
-    fs = require('fs'),
-    b = require('bonescript');
-
-var server = http.createServer(servePage);  // <1>
-
-server.listen(port);                        // <2>
-console.log("Listening on " + port);
-
-function servePage(req, res) {
-    var path = url.parse(req.url).pathname;             // <3>
-    console.log("path: " + path);
-
-    fs.readFile(__dirname + path, function (err, data) {// <4>
-        if (err) {                                      // <5>
-            return send404(res); 
-        }
-        res.write(data, 'utf8');                        // <6>
-        res.end();
-    });   
-}
-
-function send404(res) {
-    res.writeHead(404);
-    res.write('404 - page not found');
-    res.end();
-}
diff --git a/books/beaglebone-cookbook/06iot/code/test.html b/books/beaglebone-cookbook/06iot/code/test.html
deleted file mode 100644
index ddb20a32d654f50858e09c38e8ed33ee6b8162a2..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/test.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<!DOCTYPE html>
-<html>
-<body>
-
-<h1>My First Heading</h1>
-
-<p>My first paragraph.</p>
-
-</body>
-</html>
diff --git a/books/beaglebone-cookbook/06iot/code/twilio-test.js b/books/beaglebone-cookbook/06iot/code/twilio-test.js
deleted file mode 100755
index 49ef9b585955256450bb7407d5517e8d706aed25..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/twilio-test.js
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/usr/bin/env node
-// From: http://twilio.github.io/twilio-node/
-// Twilio Credentials 
-var accountSid = ''; 
-var authToken = ''; 
- 
-//require the Twilio module and create a REST client 
-var client = require('twilio')(accountSid, authToken); 
- 
-client.messages.create({ 
-	to: "812555121", 
-	from: "+2605551212", 
-	body: "This is a test",   
-}, function(err, message) { 
-	console.log(message.sid); 
-});
-
-// https://github.com/twilio/twilio-node/blob/master/LICENSE
-// The MIT License (MIT)
-// Copyright (c) 2010 Stephen Walters
-// Copyright (c) 2012 Twilio Inc.
-
-// 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.
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/06iot/code/twilioSetup.sh b/books/beaglebone-cookbook/06iot/code/twilioSetup.sh
deleted file mode 100755
index c9a033885ba0344f752b27f0e119ae58c2129d8a..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/twilioSetup.sh
+++ /dev/null
@@ -1,2 +0,0 @@
-export TWILIO_ACCOUNT_SID="AC407ab27aab63fa995dbc24c43a18d204"
-export TWILIO_AUTH_TOKEN="71fe036081445dd693ed80c3ebf0f9b1"
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/06iot/code/twilioTest.py b/books/beaglebone-cookbook/06iot/code/twilioTest.py
deleted file mode 100755
index 356cb03b6ac60e6ed2d632897f0bd879717084b6..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/twilioTest.py
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/env python
-# Download the helper library from https://www.twilio.com/docs/python/install
-import os
-from twilio.rest import Client
-
-
-# Find your Account SID and Auth Token at twilio.com/console
-# and set the environment variables. See http://twil.io/secure
-account_sid = os.environ['TWILIO_ACCOUNT_SID']
-auth_token = os.environ['TWILIO_AUTH_TOKEN']
-client = Client(account_sid, auth_token)
-
-message = client.messages \
-                .create(
-                     body="Join Earth's mightiest heroes. Like Kevin Bacon.",
-                     from_='+18122333219',
-                     to='+18122333219'
-                 )
-
-print(message.sid)
diff --git a/books/beaglebone-cookbook/06iot/code/twitterInstall.sh b/books/beaglebone-cookbook/06iot/code/twitterInstall.sh
deleted file mode 100644
index 6cb7b7c0adf99821894da38fc781c9721d733196..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/twitterInstall.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-npm install -g node-twitter
-# Go to https://apps.twitter.com/
-# "Create New App"
-# Copy API and TOKEN to twitterKeys.js
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/06iot/code/twitterKeys.sh b/books/beaglebone-cookbook/06iot/code/twitterKeys.sh
deleted file mode 100755
index 9e5e9db37b3876e4744124b4e344cbc1dcb5c18c..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/twitterKeys.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-# My Twitter keys
-# From https://apps.twitter.com/app/5771872/keys
-export API_KEY='RKH9Bi6QDo8LIUydJN5ubBH7r'
-export API_SECRET_KEY='DwyL7V4Q7O5ochI0PNlDsd00tA2lcSnEaxQSavSW4Jy86GKoxd'
-export TOKEN='48435578-W5fX8R7k93gbwptwpmnp5FgRbsG2Hos8M20iV6140'
-export TOKEN_SECRET='SOFLoyuBBkEsdvBKXh4CLBfQTiO2OiNtx3FQqnjYsHlRM'
-export BEARER_TOKEN='AAAAAAAAAAAAAAAAAAAAAGASWAAAAAAAx3tNEacg9qMqvGRJsmc5ivTuuO0%3Dyu1wzpaLMQDsTgGrh21jAacNRNsnEYKLIuePlJy4kX7DnBeHNj'
-
-# Client ID dmNxcDVPencxT2l3Ry12OWFSdEc6MTpjaQ
-# Client Secret     16tjW8lITIMH0ETUcmCvT1bpUvebCzsWQF3yVLv329rjynRSvT
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/06iot/code/twitterPushbutton.js b/books/beaglebone-cookbook/06iot/code/twitterPushbutton.js
deleted file mode 100755
index e3fe0c376885391b3657725df1d6b252474d48d5..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/twitterPushbutton.js
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/usr/bin/env node
-// From: https://www.npmjs.org/package/node-twitter
-// Tweets with attached image media (JPG, PNG or GIF) can be posted 
-// using the upload API endpoint.
-var Twitter = require('node-twitter');
-var b = require('bonescript');
-var key = require('./twitterKeys');
-var gpio = "P9_42";
-var count = 0;
-
-b.pinMode(gpio, b.INPUT);
-b.attachInterrupt(gpio, sendTweet, b.FALLING);
-
-var twitterRestClient = new Twitter.RestClient(
-    key.API_KEY, key.API_SECRET,
-    key.TOKEN,   key.TOKEN_SECRET
-);
-
-function sendTweet() {
-    console.log("Sending...");
-    count++;
-
-    twitterRestClient.statusesUpdate(
-        {'status': 'Posting tweet ' + count + ' via my BeagleBone Black', },
-        function(error, result) {
-            if (error) {
-                console.log('Error: ' + 
-                    (error.code ? error.code + ' ' + error.message : error.message));
-            }
-    
-            if (result) {
-                console.log(result);
-            }
-        }
-    );
-}
-
-// node-twitter is made available under terms of the BSD 3-Clause License.
-// http://www.opensource.org/licenses/BSD-3-Clause
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/06iot/code/twitterSearch.js b/books/beaglebone-cookbook/06iot/code/twitterSearch.js
deleted file mode 100755
index bb1d3edcc64b92407495397f692ad3fc89217566..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/twitterSearch.js
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/env node
-// From: https://www.npmjs.org/package/node-twitter
-// The Twitter Search API can be accessed using Twitter.SearchClient. The following 
-// code example shows how to search for tweets containing the keyword "node.js".var Twitter = require('node-twitter');
-var key = require('./twitterKeys');
-
-var twitterSearchClient = new Twitter.SearchClient(
-    key.API_KEY, key.API_SECRET,
-    key.TOKEN,   key.TOKEN_SECRET
-);
-
-twitterSearchClient.search({'q': 'rosehulman'}, function(error, result) {
-    if (error) {
-        console.log('Error: ' + (error.code ? error.code + ' ' + error.message : error.message));
-    }
-
-    if (result)  {
-        console.log(result);
-    }
-});
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/06iot/code/twitterStream.js b/books/beaglebone-cookbook/06iot/code/twitterStream.js
deleted file mode 100755
index 35e2068a3c6cdff5a41b1f5c04b02b958d161d28..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/twitterStream.js
+++ /dev/null
@@ -1,44 +0,0 @@
-#!/usr/bin/env node
-// From: https://www.npmjs.org/package/node-twitter
-// The Twitter Streaming API can be accessed using Twitter.StreamClient. 
-// The following code example shows how to catch all tweets containing keywords.
-var Twitter = require('node-twitter');
-var b = require('bonescript');
-var key = require('./twitterKeys');
-var gpio = "P9_14";
-var count = 0;
-var timeOn = 5000;  // Turn LED off after this amount of time (in ms)
-
-b.pinMode(gpio, b.OUTPUT);
-
-b.digitalWrite(gpio, 1);        // Toggle LED
-setTimeout(ledOff, timeOn);
-
-var twitterStreamClient = new Twitter.StreamClient(
-    key.API_KEY, key.API_SECRET,
-    key.TOKEN,   key.TOKEN_SECRET
-);
-
-twitterStreamClient.on('close', function() {
-    console.log('Connection closed.');
-});
-twitterStreamClient.on('end', function() {
-    console.log('End of Line.');
-});
-twitterStreamClient.on('error', function(error) {
-    console.log('Error: ' + (error.code ? error.code + ' ' + error.message : error.message));
-});
-twitterStreamClient.on('tweet', function(tweet) {
-    console.log(tweet);
-    b.digitalWrite(gpio, 1);    // Turn LED on
-    console.log(count++ + " =====\
-    tweet\
-    =====");
-    setTimeout(ledOff, timeOn);
-});
-
-twitterStreamClient.start(['beagleboard', 'beaglebone', 'cookbook', 'rosehulman']);
-
-function ledOff() {
-    b.digitalWrite(gpio, 0);
-}
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/06iot/code/twitterTimeLine.js b/books/beaglebone-cookbook/06iot/code/twitterTimeLine.js
deleted file mode 100755
index dca85d32b93b60b7b82e967ebacca14cb4cfe266..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/twitterTimeLine.js
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/usr/bin/env node
-// From: https://www.npmjs.org/package/node-twitter
-// The Twitter REST API can be accessed using Twitter.RestClient. The following 
-// code example shows how to retrieve tweets from the authenticated user's timeline.
-var Twitter = require('node-twitter');
-var key = require('./twitterKeys');
-
-var twitterRestClient = new Twitter.RestClient(
-    key.API_KEY, key.API_SECRET,
-    key.TOKEN,   key.TOKEN_SECRET
-);
-
-twitterRestClient.statusesHomeTimeline({}, function(error, result) {
-    if (error) {
-        console.log('Error: ' + 
-            (error.code ? error.code + ' ' + error.message : error.message));
-    }
-
-    if (result) {
-        console.log(result);
-    }
-});
-
-// node-twitter is made available under terms of the BSD 3-Clause License.
-// http://www.opensource.org/licenses/BSD-3-Clause
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/06iot/code/twitterUpload.js b/books/beaglebone-cookbook/06iot/code/twitterUpload.js
deleted file mode 100755
index e09a900a09b80abbe0fa734663549572630ebb96..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/twitterUpload.js
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/usr/bin/env node
-// From: https://www.npmjs.org/package/node-twitter
-// Tweets with attached image media (JPG, PNG or GIF) can be posted 
-// using the upload API endpoint.
-var Twitter = require('node-twitter');
-var b = require('bonescript');
-var key = require('./twitterKeys');
-
-var twitterRestClient = new Twitter.RestClient(
-    key.API_KEY, key.API_SECRET,
-    key.TOKEN,   key.TOKEN_SECRET
-);
-
-twitterRestClient.statusesUpdateWithMedia(
-    {
-        'status': 'Posting a tweet w/ attached media.',
-        'media[]': '/root/cookbook-atlas/images/cover.png'
-    },
-    function(error, result) {
-        if (error)  {
-            console.log('Error: ' + 
-                (error.code ? error.code + ' ' + error.message : error.message));
-        }
-
-        if (result)  {
-            console.log(result);
-        }
-    }
-);
-
-// node-twitter is made available under terms of the BSD 3-Clause License.
-// http://www.opensource.org/licenses/BSD-3-Clause
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/06iot/code/twitter_create_tweet.py b/books/beaglebone-cookbook/06iot/code/twitter_create_tweet.py
deleted file mode 100755
index fc7829bc8d4963ca55253a2e7d43631dc5358b53..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/twitter_create_tweet.py
+++ /dev/null
@@ -1,75 +0,0 @@
-#!/usr/bin/env python
-# From: https://github.com/twitterdev/Twitter-API-v2-sample-code/blob/main/Manage-Tweets/create_tweet.py
-from requests_oauthlib import OAuth1Session
-import os
-import json
-
-# In your terminal please set your environment variables by running the following lines of code.
-# export 'API_KEY'='<your_consumer_key>'
-# export 'API_SECRET_KEY'='<your_consumer_secret>'
-
-consumer_key = os.environ.get("API_KEY")
-consumer_secret = os.environ.get("API_SECRET_KEY")
-
-# Be sure to add replace the text of the with the text you wish to Tweet. You can also add parameters to post polls, quote Tweets, Tweet with reply settings, and Tweet to Super Followers in addition to other features.
-payload = {"text": "Hello world!"}
-
-# Get request token
-request_token_url = "https://api.twitter.com/oauth/request_token?oauth_callback=oob&x_auth_access_type=write"
-oauth = OAuth1Session(consumer_key, client_secret=consumer_secret)
-
-try:
-    fetch_response = oauth.fetch_request_token(request_token_url)
-except ValueError:
-    print(
-        "There may have been an issue with the consumer_key or consumer_secret you entered."
-    )
-
-resource_owner_key = fetch_response.get("oauth_token")
-resource_owner_secret = fetch_response.get("oauth_token_secret")
-print("Got OAuth token: %s" % resource_owner_key)
-
-# Get authorization
-base_authorization_url = "https://api.twitter.com/oauth/authorize"
-authorization_url = oauth.authorization_url(base_authorization_url)
-print("Please go here and authorize: %s" % authorization_url)
-verifier = input("Paste the PIN here: ")
-
-# Get the access token
-access_token_url = "https://api.twitter.com/oauth/access_token"
-oauth = OAuth1Session(
-    consumer_key,
-    client_secret=consumer_secret,
-    resource_owner_key=resource_owner_key,
-    resource_owner_secret=resource_owner_secret,
-    verifier=verifier,
-)
-oauth_tokens = oauth.fetch_access_token(access_token_url)
-
-access_token = oauth_tokens["oauth_token"]
-access_token_secret = oauth_tokens["oauth_token_secret"]
-
-# Make the request
-oauth = OAuth1Session(
-    consumer_key,
-    client_secret=consumer_secret,
-    resource_owner_key=access_token,
-    resource_owner_secret=access_token_secret,
-)
-
-# Making the request
-response = oauth.post(
-    "https://api.twitter.com/2/tweets",
-    json=payload,
-)
-
-if response.status_code != 201:
-    raise Exception(
-        "Request returned an error: {} {}".format(response.status_code, response.text)
-    )
-
-print("Response code: {}".format(response.status_code))
-
-# Saving the response as JSON
-json_response = response.json()
-print(json.dumps(json_response, indent=4, sort_keys=True))
diff --git a/books/beaglebone-cookbook/06iot/code/twitter_delete_tweet.py b/books/beaglebone-cookbook/06iot/code/twitter_delete_tweet.py
deleted file mode 100755
index d35a11928d153f3f58f3d92d3034df5fd39cb27e..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/twitter_delete_tweet.py
+++ /dev/null
@@ -1,72 +0,0 @@
-#!/usr/bin/env python
-# From: https://github.com/twitterdev/Twitter-API-v2-sample-code/blob/main/Manage-Tweets/delete_tweet.py
-from requests_oauthlib import OAuth1Session
-import os
-import json
-
-# In your terminal please set your environment variables by running the following lines of code.
-# export 'API_KEY'='<your_consumer_key>'
-# export 'API_SECRET_KEY'='<your_consumer_secret>'
-
-consumer_key = os.environ.get("API_KEY")
-consumer_secret = os.environ.get("API_SECRET_KEY")
-
-# Be sure to replace tweet-id-to-delete with the id of the Tweet you wish to delete. The authenticated user must own the list in order to delete
-id = "1547963178700533760"
-
-# Get request token
-request_token_url = "https://api.twitter.com/oauth/request_token?oauth_callback=oob&x_auth_access_type=write"
-oauth = OAuth1Session(consumer_key, client_secret=consumer_secret)
-
-try:
-    fetch_response = oauth.fetch_request_token(request_token_url)
-except ValueError:
-    print(
-        "There may have been an issue with the consumer_key or consumer_secret you entered."
-    )
-
-resource_owner_key = fetch_response.get("oauth_token")
-resource_owner_secret = fetch_response.get("oauth_token_secret")
-print("Got OAuth token: %s" % resource_owner_key)
-
-# Get authorization
-base_authorization_url = "https://api.twitter.com/oauth/authorize"
-authorization_url = oauth.authorization_url(base_authorization_url)
-print("Please go here and authorize: %s" % authorization_url)
-verifier = input("Paste the PIN here: ")
-
-# Get the access token
-access_token_url = "https://api.twitter.com/oauth/access_token"
-oauth = OAuth1Session(
-    consumer_key,
-    client_secret=consumer_secret,
-    resource_owner_key=resource_owner_key,
-    resource_owner_secret=resource_owner_secret,
-    verifier=verifier,
-)
-oauth_tokens = oauth.fetch_access_token(access_token_url)
-
-access_token = oauth_tokens["oauth_token"]
-access_token_secret = oauth_tokens["oauth_token_secret"]
-
-# Make the request
-oauth = OAuth1Session(
-    consumer_key,
-    client_secret=consumer_secret,
-    resource_owner_key=access_token,
-    resource_owner_secret=access_token_secret,
-)
-
-# Making the request
-response = oauth.delete("https://api.twitter.com/2/tweets/{}".format(id))
-
-if response.status_code != 200:
-    raise Exception(
-        "Request returned an error: {} {}".format(response.status_code, response.text)
-    )
-
-print("Response code: {}".format(response.status_code))
-
-# Saving the response as JSON
-json_response = response.json()
-print(json_response)
diff --git a/books/beaglebone-cookbook/06iot/code/twitter_recent_search.py b/books/beaglebone-cookbook/06iot/code/twitter_recent_search.py
deleted file mode 100755
index 0569385763c904059cf3155d8a10e385ccaeea37..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/twitter_recent_search.py
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/usr/bin/env python
-# From: https://github.com/twitterdev/Twitter-API-v2-sample-code/blob/main/Recent-Search/recent_search.py
-import requests
-import os
-import json
-
-# To set your environment variables in your terminal run the following line:
-# export 'BEARER_TOKEN'='<your_bearer_token>'
-bearer_token = os.environ.get("BEARER_TOKEN")
-
-search_url = "https://api.twitter.com/2/tweets/search/recent"
-
-# Optional params: start_time,end_time,since_id,until_id,max_results,next_token,
-# expansions,tweet.fields,media.fields,poll.fields,place.fields,user.fields
-query_params = {'query': '(from:MarkAYoder) OR #MarkAYoder','tweet.fields': 'author_id'}
-# query_params = {'query': '(from:twitterdev -is:retweet) OR #twitterdev','tweet.fields': 'author_id'}
-
-
-def bearer_oauth(r):
-    """
-    Method required by bearer token authentication.
-    """
-
-    r.headers["Authorization"] = f"Bearer {bearer_token}"
-    r.headers["User-Agent"] = "v2RecentSearchPython"
-    return r
-
-def connect_to_endpoint(url, params):
-    response = requests.get(url, auth=bearer_oauth, params=params)
-    print(response.status_code)
-    if response.status_code != 200:
-        raise Exception(response.status_code, response.text)
-    return response.json()
-
-
-def main():
-    json_response = connect_to_endpoint(search_url, query_params)
-    print(json.dumps(json_response, indent=4, sort_keys=True))
-
-
-if __name__ == "__main__":
-    main()
diff --git a/books/beaglebone-cookbook/06iot/code/twitter_user_tweets.py b/books/beaglebone-cookbook/06iot/code/twitter_user_tweets.py
deleted file mode 100755
index 19dac531a57a239b87b08705a81178038f50754d..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/twitter_user_tweets.py
+++ /dev/null
@@ -1,60 +0,0 @@
-#!/usr/bin/env python
-# From: https://github.com/twitterdev/Twitter-API-v2-sample-code/blob/main/User-Tweet-Timeline/user_tweets.py
-import requests
-import os
-import json
-
-# To set your environment variables in your terminal run the following line:
-# export 'BEARER_TOKEN'='<your_bearer_token>'
-bearer_token = os.environ.get("BEARER_TOKEN")
-
-def create_url():
-    # Replace with user ID below
-    user_id = 48435578
-    # return "https://api.twitter.com/2/users/{}/followers".format(user_id)
-    return "https://api.twitter.com/2/users/{}/tweets".format(user_id)
-
-
-def get_params():
-    # Tweet fields are adjustable.
-    # Options include:
-    # attachments, author_id, context_annotations,
-    # conversation_id, created_at, entities, geo, id,
-    # in_reply_to_user_id, lang, non_ai_64_lic_metrics, organic_metrics,
-    # possibly_sensitive, promoted_metrics, public_metrics, referenced_tweets,
-    # source, text, and withheld
-    return {"tweet.fields": "created_at"}
-    # return {}
-
-
-def bearer_oauth(r):
-    """
-    Method required by bearer token authentication.
-    """
-
-    r.headers["Authorization"] = f"Bearer {bearer_token}"
-    r.headers["User-Agent"] = "v2UserTweetsPython"
-    return r
-
-
-def connect_to_endpoint(url, params):
-    response = requests.request("GET", url, auth=bearer_oauth, params=params)
-    print(response.status_code)
-    if response.status_code != 200:
-        raise Exception(
-            "Request returned an error: {} {}".format(
-                response.status_code, response.text
-            )
-        )
-    return response.json()
-
-
-def main():
-    url = create_url()
-    params = get_params()
-    json_response = connect_to_endpoint(url, params)
-    print(json.dumps(json_response, indent=4, sort_keys=True))
-
-
-if __name__ == "__main__":
-    main()
diff --git a/books/beaglebone-cookbook/06iot/code/weather.py b/books/beaglebone-cookbook/06iot/code/weather.py
deleted file mode 100755
index 1b165eb3284b0c87c653539a46985d047d03e641..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/weather.py
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/usr/bin/env python3
-# Displays current weather and forcast
-import os
-import sys
-from datetime import datetime
-import requests     # For getting weather
-                
-# http://api.openweathermap.org/data/2.5/onecall
-params = {
-    'appid': os.environ['APPID'],
-    # 'city': 'brazil,indiana',
-    'exclude': "minutely,hourly",
-    'lat':  '39.52',
-    'lon': '-87.12',
-    'units': 'imperial'
-    }
-urlWeather = "http://api.openweathermap.org/data/2.5/onecall"
-
-print("Getting weather")
-
-try:
-    r = requests.get(urlWeather, params=params)
-    if(r.status_code==200):
-        # print("headers: ", r.headers)
-        # print("text: ", r.text)
-        # print("json: ", r.json())
-        weather = r.json()
-        print("Temp: ", weather['current']['temp'])         # <1>
-        print("Humid:", weather['current']['humidity'])
-        print("Low:  ", weather['daily'][1]['temp']['min'])
-        print("High: ", weather['daily'][0]['temp']['max'])
-        day = weather['daily'][0]['sunrise']-weather['timezone_offset']
-        print("sunrise: " + datetime.utcfromtimestamp(day).strftime('%Y-%m-%d %H:%M:%S'))
-        # print("Day: " + datetime.utcfromtimestamp(day).strftime('%a'))
-        # print("weather: ", weather['daily'][1])           # <2>
-        # print("weather: ", weather)                       # <3>
-        # print("icon: ", weather['current']['weather'][0]['icon'])
-        # print()
-
-    else:
-        print("status_code: ", r.status_code)
-except IOError:
-    print("File not found: " + tmp101)
-    print("Have you run setup.sh?")
-except:
-    print("Unexpected error:", sys.exc_info())
diff --git a/books/beaglebone-cookbook/06iot/code/weatherSetup.sh b/books/beaglebone-cookbook/06iot/code/weatherSetup.sh
deleted file mode 100755
index e2840d08ab0cc26640edf5df40da9f99c21d261f..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/weatherSetup.sh
+++ /dev/null
@@ -1,2 +0,0 @@
-# From:https://home.openweathermap.org/api_keys
-export APPID="6a2db5c8171494bce131dc69af6f34b9"
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/06iot/code/xbee.js b/books/beaglebone-cookbook/06iot/code/xbee.js
deleted file mode 100644
index 40b184d21f1dfa38d018cfed18c9a507c18a4d3f..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/06iot/code/xbee.js
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/usr/bin/env node
-// This isn't working yet
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/06iot/iot.rst b/books/beaglebone-cookbook/06iot/iot.rst
index 22df18ea064dab4b23928be7100ee4f893b18c71..427682621c0b3be720e4615cfa46ff0f258bf4fc 100644
--- a/books/beaglebone-cookbook/06iot/iot.rst
+++ b/books/beaglebone-cookbook/06iot/iot.rst
@@ -3,37 +3,35 @@
 Internet of Things
 ####################
 
-Introduction
--------------
-
-You can easily connect BeagleBone Black to the Internet via a wire (:ref:`<networking_wired>`), 
-wirelessly (:ref:`<networking_wireless>`), or through the USB to a host and then to the Internet 
-(:ref:`<networking_usb>`). Either way, it opens up a world of possibilities for the "Internet of Things" (IoT). 
+You can easily connect BeagleBone Black to the Internet via a wire (:ref:`networking_wired`), wirelessly 
+(:ref:`networking_wireless`), or through the USB to a host and then to the Internet (:ref:`networking_usb`). 
+Either way, it opens up a world of possibilities for the "Internet of Things" (IoT). 
 
 Now that you're online, this chapter offers various things to do with your connection.
 
 Accessing Your Host Computer's Files on the Bone
--------------------------------------------------
+=================================================
 
 Problem
-*********
+--------
 
 You want to access a file on a Linux host computer that's attached to the Bone.
 
 Solution
-*********
+--------
 
 If you are running Linux on a host computer attached to BeagleBone Black, 
 it's not hard to mount the Bone's files on the host or the host's files on the 
-Bone by using +sshfs+. Suppose that you want to access files on the host from 
-the Bone. First, install +sshfs+:
+Bone by using *sshfs*. Suppose that you want to access files on the host from 
+the Bone. First, install *sshfs*:
 
 .. code-block:: bash
 
   bone$ sudo apt install sshfs
 
 
-Now, mount the files to an empty directory (substitute your username on the host computer for +username+ and the IP address of the host for +192.168.7.1+):
+Now, mount the files to an empty directory (substitute your username on the host 
+computer for *username* and the IP address of the host for *192.168.7.1*):
 
 .. code-block:: bash
 
@@ -43,9 +41,12 @@ Now, mount the files to an empty directory (substitute your username on the host
   bone$ ls
 
 
-The +ls+ command will now list the files in your home directory on your host computer.  You can edit them as if they were local to the Bone.  You can access all the files by substituting +:/+ for the +:.+ following the IP address.
+The *ls* command will now list the files in your home directory on your host computer. 
+You can edit them as if they were local to the Bone. You can access all the 
+files by substituting *:/* for the *:.* following the IP address.
 
-You can go the other way, too. Suppose that you are on your Linux host computer and want to access files on your Bone. Install +sshfs+:
+You can go the other way, too. Suppose that you are on your 
+Linux host computer and want to access files on your Bone. Install *sshfs*:
 
 .. code-block:: bash
 
@@ -62,79 +63,72 @@ and then access:
   host$ ls
 
 
-Here, we are accessing the files on the Bone as +debian+. We’ve mounted the entire file system, starting with +/+, so you can access any file. Of course, with great power comes great responsibility, so be careful.
-
-Discussion
-************
+Here, we are accessing the files on the Bone as *debian*. We’ve mounted the entire file system, 
+starting with */*, so you can access any file. Of course, with great power comes great responsibility, so be careful.
 
-The +sshfs+ command gives you easy access from one computer to another. When you are done, you can unmount the files by using the following commands:
+The *sshfs* command gives you easy access from one computer to another. 
+When you are done, you can unmount the files by using the following commands:
 
 .. code-block:: bash
 
   host$ umount /mnt/bone
   bone$ umount home
 
-
 .. _networking_builtin_server:
 
 Serving Web Pages from the Bone
-----------------------------------
+================================
 
 Problem
-*********
+--------
 
 You want to use BeagleBone Black as a web server.
 
 Solution
-*********
+---------
 
-BeagleBone Black already has the +nginx+ web server running.
+BeagleBone Black already has the *nginx* web server running.
 
-When you point your browser to _192.168.7.2_, you are using the +nginx+ web server. 
-The web pages are served from _/var/www/html/. Add the HTML in :ref:`<networking_index_html>` 
-to a file called _/var/www/html/test.html_, and then point your browser to _192.168.7.2://test.html_. 
+When you point your browser to *192.168.7.2*, you are using the *nginx* web server. 
+The web pages are served from */var/www/html/*. Add the HTML in :ref:`networking_index_html` 
+to a file called */var/www/html/test.html*, and then point your browser to *192.168.7.2://test.html*.
 
 .. _networking_index_html:
 
-A sample web page (test.html)
-
-.. code-block:: html
+.. literalinclude:: ../code/06iot/test.html
+   :caption: A sample web page (test.html)
+   :linenos:
 
-  include::code/test.html[Sample html]
+:download:`test.html <../code/06iot/test.html>`
 
-
-
-You will see the web page shown in :ref:`<networking_node_page>`.
+You will see the web page shown in :ref:`networking_node_page`.
 
 .. _networking_node_page:
 
-test.html as served by nginx
-
 .. figure:: figures/nginxTest.png
   :align: center
   :alt: test.html served by nginx
 
-Discussion
-*********
+  test.html as served by nginx
 
 .. _networking_nodejs:
 
 Interacting with the Bone via a Web Browser
----------------------------------------------
+============================================
 
 Problem
-*********
+--------
 
 BeagleBone Black is interacting with the physical world nicely and you want to display that information on a web browser.
 
 Solution
-*********
+---------
 
-https://www.fullstackpython.com/flask.html[Flask] is a Python web framework built 
-with a small core and easy-to-extend philosophy. :ref:`<networking_builtin_server>` 
+`Flask <https://www.fullstackpython.com/flask.html>`_ is a Python web framework built 
+with a small core and easy-to-extend philosophy. :ref:`networking_builtin_server` 
 shows how to use nginx, the web server that's already running. This recipe shows how 
 easy it is to build your own server. This is an adaptation of 
-`Python WebServer With Flask and Raspberry Pi <https://towardsdatascience.com/python-webserver-with-flask-and-raspberry-pi-398423cc6f5d>`_.
+`Python WebServer With Flask and Raspberry Pi <https://towardsdatascience.com/python-webserver-with-flask-and-raspberry-pi-398423cc6f5>`_.
 
 First, install flask:
 
@@ -148,44 +142,42 @@ All the code in is the Cookbook repo:
 
 .. code-block:: bash
 
-  bone$ git clone https://github.com/MarkAYoder/BoneCookbook
-  bone$ cd BoneCookbook/doc/06iod/code/flash
-
+  bone$ git clone https://git.beagleboard.org/beagleboard/beaglebone-cookbook-code
+  bone$ cd beaglebone-cookbook-code/06iot/flask
 
 First Flask - hello, world
-****************************
+============================
 
 Our first example is *helloWorld.py*
 
 .. _flask_hello_world:
 
-Python code for flask hello world (helloWorld.py)
+.. literalinclude:: ../code/06iot/flask/helloWorld.py
+   :caption: Python code for flask hello world (helloWorld.py)
+   :linenos:
 
-.. code-block:: python
+:download:`helloWorld.py <../code/06iot/flask/helloWorld.py>`
 
-  include::code/flask/helloWorld.py[simple flask-based web server]
+1. The first line loads the Flask module into your Python script. 
 
+2. The second line creates a Flask object called ``app``. 
 
-<1> The first line loads the Flask module into your Python script. 
+3. The third line is where the action is, it says to run the index() function when someone accesses the root URL (‘/’) of the server. In this case, send the text “hello, world” to the client’s web browser via return.
 
-<2> The second line creates a Flask object called _app_. 
+4. The last line says to “listen” on port 8080, reporting any errors.
 
-<3> The third line is where the action is, it says to run the index() function when someone accesses the root URL (‘/’) of the server. In this case, send the text “hello, world” to the client’s web browser via return.
-
-<4> The last line says to “listen” on port 8080, reporting any errors.
-
-Now on your host computer, browse to 192.168.7.2:8080flask an you should see.
+Now on your host computer, browse to 192.168.7.2:8080 flask an you should see.
 
 .. _flask_flaskServer:
 
-Test page served by our custom flask server
-
 .. figure:: figures/flaskServer.png
   :align: center
   :alt: Test page
 
+  Test page served by our custom flask server
+
 Adding a template
-*******************
+==================
 
 Let’s improve our “hello, world” application, by using an HTML template and a 
 CSS file for styling our page.  Note: these have been created for you in the 
@@ -196,11 +188,11 @@ Here's what's in *templates/index1.html*:
 
 .. _flask_index1:
 
-Python code for flask hello world (helloWorld.py)
-
-.. code-block:: html
+.. literalinclude:: ../code/06iot/flask/templates/index1.html
+   :caption: index1.html
+   :linenos:
 
-  include::code/flask/templates/index1.html
+:download:`index1.html <../code/06iot/flask/templates/index1.html>`
 
 Note: a style sheet (style.css) is also included. This will be populated later.
 
@@ -211,13 +203,11 @@ function. Now, let’s create a new Python script. We will name it app1.py:
 
 .. _flask_app1:
 
-Python code for flask index1.html (app1.py)
-
-.. code-block:: html
-
-  include::code/flask/app1.py[app1]
-
+.. literalinclude:: ../code/06iot/flask/app1.py
+   :caption: app1.py
+   :linenos:
 
+:download:`app1.py <../code/06iot/flask/app1.py>`
 
 Note that we create a formatted string("timeString") using the date and time from the "now" object, that has the current time stored on it.
 
@@ -234,35 +224,35 @@ Open any web browser and browse to 192.168.7.2:8080. You should see:
 
 .. _flask_app1_fig:
 
-Test page served by app1.py
-
 .. figure:: figures/flaskapp1.png
   :align: center
   :alt: app1.py
 
+  Test page served by app1.py
+
 Note that the page’s content changes dynamically any time that you refresh 
 it with the actual variable data passed by Python script. In our case, 
 “title” is a fixed value, but “time” change it every second.
 
 Displaying GPIO Status in a Web Browser - reading a button
------------------------------------------------------------
+===========================================================
 
 Problem
-*********
+--------
 
 You want a web page to display the status of a GPIO pin.
 
 Solution
-*********
+---------
 
-This solution builds on the Flask-based web server solution in :ref:`<networking_nodejs>`.  
+This solution builds on the Flask-based web server solution in :ref:`networking_nodejs`.  
 
 To make this recipe, you will need:
 
-* Breadboard and jumper wires (see :ref:`<app_proto>`)
-* Pushbutton switch (see :ref:`<app_misc>`)
+* Breadboard and jumper wires.
+* Pushbutton switch.
 
-Wire your pushbutton as shown in :ref:`<js_pushbutton_fig>`. 
+Wire your pushbutton as shown in :ref:`js_pushbutton_fig`. 
 
 Wire a button to *P9_11* and have the web page display the value of the button.
 
@@ -270,12 +260,11 @@ Let’s use a new Python script named *app2.py*.
 
 .. _flask_app2:
 
-A simple Flask-based web server to read a GPIO (app2.py)
-
-.. code-block:: python
-
-  include::code/flask/app2.py
+.. literalinclude:: ../code/06iot/flask/app2.py
+   :caption: A simple Flask-based web server to read a GPIO (app2.py)
+   :linenos:
 
+:download:`app2.py <../code/06iot/flask/app2.py>`
 
 Look that what we are doing is defining the button on *P9_11* as input, reading its value and 
 storing it in *buttonSts*. Inside the function *index()*, we will pass that value to our web 
@@ -285,11 +274,11 @@ Let’s also see the new *index2.html* to show the GPIO status:
 
 .. _flask_index2:
 
-A simple Flask-based web server to read a GPIO (index2.html)
-
-.. code-block:: html
+.. literalinclude:: ../code/06iot/flask/templates/index2.html
+   :caption: A simple Flask-based web server to read a GPIO (index2.html)
+   :linenos:
 
-  include::code/flask/templates/index2.html[]
+:download:`index2.html <../code/06iot/flask/templates/index2.html>`
 
 Now, run the following command:
 
@@ -298,35 +287,32 @@ Now, run the following command:
   bone$ ./app2.py
 
 
-Point your browser to _http://192.168.7.2:8080_, and the 
-page will look like :ref:`<networking_GPIOserver_fig>`.
+Point your browser to `http://192.168.7.2:8080`, and the 
+page will look like :ref:`flask_app2_fig`.
 
 .. _flask_app2_fig:
 
-Status of a GPIO pin on a web page
-
 .. figure:: figures/flaskapp2.png
   :align: center
   :alt: GPIO status
 
-Currently, the +0+ shows that the button isn't pressed. 
-Try refreshing the page while pushing the button, and you will see +1+ displayed.
+  Status of a GPIO pin on a web page
 
-Discussion
-***********
+Currently, the *0* shows that the button isn't pressed. 
+Try refreshing the page while pushing the button, and you will see *1* displayed.
 
 It's not hard to assemble your own HTML with the GPIO data. It's an easy extension to write a program to display the status of all the GPIO pins.
 
 Controlling GPIOs
-------------------
+===================
 
 Problem
-*********
+--------
 
 You want to control an LED attached to a GPIO pin.
 
 Solution
-*********
+---------
 
 Now that we know how to “read” GPIO Status, let’s change them. What we will do will control the LED via 
 the web page. We have an LED connected to *P9_14*. Controlling remotely we will change 
@@ -340,7 +326,7 @@ A simple Flask-based web server to read a GPIO (app3.py)
 
 .. code-block:: python
 
-  include::code/flask/app3.py
+  include::../code/06iot/flask/app3.py
 
 
 
@@ -361,26 +347,23 @@ http://192.168.7.2:8081/ledRed/off
 For the above example, *ledRed* is the “deviceName” and *on* or *off* are examples of 
 possible “action”. Those routes will be identified and properly “worked”. The main steps are:
 
-* Convert the string “ledRED”, for example, on its equivalent GPIO pin.
-
-The integer variable ledRed is equivalent to P9_14. We store this value on variable “actuator”
-
-* For each actuator, we will analyze the “action”, or “command” and act properly.
-If “action = on” for example, we must use the command: GPIO.output(actuator, GPIO.HIGH)
-
+* Convert the string “ledRED”, for example, on its equivalent GPIO pin. The integer variable ledRed is equivalent to P9_14. We store this value on variable “actuator”
+* For each actuator, we will analyze the “action”, or “command” and act properly. If “action = on” for example, we must use the command: GPIO.output(actuator, GPIO.HIGH)
 * Update the status of each actuator
 * Update the variable library
 * Return the data to index.html
 
-Let’s now create an index.html to show the GPIO status of each actuator and more important, create “buttons” to send the commands:
 
-.. _flask_index3:
+Let’s now create an index.html to show the GPIO status of each 
+actuator and more important, create “buttons” to send the commands:
 
-A simple Flask-based web server to write a GPIO (index3.html)
+.. _flask_index3:
 
-.. code-block:: html
+.. literalinclude:: ../code/06iot/flask/templates/index3.html
+   :caption: A simple Flask-based web server to write a GPIO (index3.html)
+   :linenos:
 
-  include::code/flask/templates/index3.html
+:download:`index3.html <../code/06iot/flask/templates/index3.html>`
 
 .. code-block:: bash
 
@@ -402,18 +385,17 @@ Try clicking the "TURN ON" and "TURN OFF" buttons and your LED will respond.
 *app4.py* and *app5.py* combine the previous apps.  Try them out.
 
 Plotting Data
----------------
+==============
 
 Problem
-*********
+--------
 
 You have live, continuous,  data coming into your Bone via one of the Analog Ins, and you want to plot it.
 
 Solution
-*********
+---------
 
-Analog in - Continuous
-(This is based on information at: http://software-dl.ti.com/processor-sdk-linux/esd/docs/latest/linux/Foundational_Components/Kernel/Kernel_Drivers/ADC.html#Continuous%20Mode)
+Analog in - Continuous (This is based on information at: http://software-dl.ti.com/processor-sdk-linux/esd/docs/latest/linux/Foundational_Components/Kernel/Kernel_Drivers/ADC.html#Continuous%20Mode)
 
 Reading a continuous analog signal requires some set up. First go to the iio devices directory.
 
@@ -425,7 +407,7 @@ Reading a continuous analog signal requires some set up. First go to the iio dev
   dev      in_voltage1_raw  in_voltage3_raw  in_voltage5_raw  in_voltage7_raw  of_node@  scan_elements/  uevent
 
 
-Here you see the files used to read the one shot values. Look in +scan_elements+ to see how to enable continuous input.
+Here you see the files used to read the one shot values. Look in *scan_elements* to see how to enable continuous input.
 
 .. code-block:: bash
 
@@ -460,30 +442,29 @@ Let's use a 512 sample buffer. You might need to experiment with this.
 
   bone$ echo 1 > buffer/enable
 
-  Now, just read from +/dev/iio:device0+.
+  Now, just read from */dev/iio:device0*.
 
 .. _analog_sine_fig:
 
-1KHz sine wave sampled at 8KHz
-
 .. figure:: figures/Sine1k.png
   :align: center
   :alt: 1KHz sine wave sampled at 8KHz
 
+  1KHz sine wave sampled at 8KHz
+
 An example Python program that does the above and the reads and 
 plot the buffer is here: analogInContinuous.py 
 
 .. _analog_code:
 
-Code to read and plot a continuous analog input(analogInContinuous.py)
-
-.. code-block:: python
-
-  include::code/analogInContinuous.py[]
+.. literalinclude:: ../code/06iot/analogInContinuous.py
+   :caption: Code to read and plot a continuous analog input(analogInContinuous.py)
+   :linenos:
 
+:download:`analogInContinuous.py <../code/06iot/analogInContinuous.py>`
 
 Be sure to read the instillation instructions in the comments. Also note this uses X 
-windows and you need to +ssh -X 192.168.7.2+ for X to know where the display is.
+windows and you need to *ssh -X 192.168.7.2* for X to know where the display is.
 
 Run it:
 
@@ -491,13 +472,14 @@ Run it:
 
   host$ ssh -X bone
 
-  bone$ cd <Cookbook repo>/doc/06iot/code>/strong>
+  bone$ cd beaglebone-cookbook-code/06iot
   bone$ ./analogInContinuous.py
   Hit ^C to stop
 
-// TODO verify this works. fonts are taking too long to load
+.. TODO 
+  verify this works. fonts are taking too long to load
 
-:ref:`<analog_sine_fig>` is the output of a 1KHz sine wave.
+:ref:`analog_sine_fig` is the output of a 1KHz sine wave.
 
 It's a good idea to disable the buffer when done.
 
@@ -508,7 +490,7 @@ It's a good idea to disable the buffer when done.
 
 
 Analog in - Continuous, Change the sample rate
-***********************************************
+===============================================
 
 The built in ADCs sample at 8k samples/second by default. 
 They can run as fast as 200k samples/second by editing a device tree.
@@ -580,22 +562,23 @@ A number of files get installed, including the ADC file. Now try rerunning.
 
 .. code-block:: bash
 
-  bone$ cd <Cookbook repo>/docs/06iot/code>
+  bone$ cd beaglebone-cookbook-code/06iot
   bone$ ./analogInContinuous.py
   Hit ^C to stop
 
 Here's the output of a 10KHz sine wave. 
 
-// TODO  Is this trun: (The plot is wrong, but eLinux won't let me fix it.)
+.. TODO  
+  Is this trun: (The plot is wrong, but eLinux won't let me fix it.)
 
 .. _analog_tri_fig:
 
-10KHz triangle wave sampled at 200KHz
-
 .. figure:: figures/Tri10k.png
   :align: center
   :alt: 10KHz triangle wave sampled at 200KHz
 
+  10KHz triangle wave sampled at 200KHz
+
 It's still a good idea to disable the buffer when done.
 
 
@@ -605,67 +588,71 @@ It's still a good idea to disable the buffer when done.
 
 
 Sending an Email
----------------------
+=================
 
 Problem
-*********
+---------
 
 You want to send an email via Gmail from the Bone.
 
 Solution
-*********
+---------
 
 This example came from https://realpython.com/python-send-email/.
-First, you need to `set up a Gmail account <https://mail.google.com>`_, if you don't already have one. 
-Then add the code in :ref:`<networking_nodemailer_code>` to a file named _emailTest.py_. Substitute your own Gmail username.  For the password:
+First, you need to `set up a Gmail account <https://mail.google.co>`_, if you don't already have one. 
+Then add the code in :ref:`networking_nodemailer_code` to a file named ``emailTest.py``. Substitute your own Gmail username.  For the password:
 
 * Go to: https://myaccount.google.com/security
 * Select App password.
-* Generate your own 16 char password and copy it into _emailTest.py_.
+* Generate your own 16 char password and copy it into ``emailTest.py``.
 * Be sure to delete password when done https://myaccount.google.com/apppasswords .
 
 .. _networking_nodemailer_code:
 
-Sending email using nodemailer (emailtTest.py)
-
-.. code-block:: python
-
-  include::code/emailTest.py
+.. literalinclude:: ../code/06iot/emailTest.py
+   :caption: Sending email using nodemailer (emailtTest.py)
+   :linenos:
 
+:download:`emailTest.py <../code/06iot/emailTest.py>`
 
 Then run the script to send the email:
 
 .. code-block:: bash
 
-  bone$ chmod +x emailTest.py
+  bone$ chmod *x emailTest.py
   bone$ .\emailTest.py
 
 
-.. warning:: This solution requires your Gmail password to be in plain text in a file, which is a security problem. Make sure you know who has access to your Bone. Also, if you remove the microSD card, make sure you know who has access to it. Anyone with your microSD card can read your Gmail password.
+.. warning:: 
 
+  This solution requires your Gmail password to be in plain text in a file, which is a security problem. 
+  Make sure you know who has access to your Bone. Also, if you remove the microSD card, make sure you know 
+  who has access to it. Anyone with your microSD card can read your Gmail password.
 
-Discussion
-*********
 
 Be careful about putting this into a loop.  Gmail presently limits you to 
-`500 emails per day and 10 MB per message <http://group-mail.com/email-marketing/how-to-send-bulk-emails-using-gmail/>`_.
+`500 emails per day and 10 MB per message <http://group-mail.com/email-marketing/how-to-send-bulk-emails-using-gmail>`_.
 
 See https://realpython.com/python-send-email/ for an example that sends an attached file.
 
 Sending an SMS Message
--------------------------
+=======================
 
-// TODO  My twilio account is suspended.
+.. TODO  
+  My twilio account is suspended.
 
 Problem
-*********
+--------
 
 You want to send a text message from BeagleBone Black.
 
 Solution
-*********
+---------
 
-There are a number of SMS services out there. This recipe uses Twilio because you can use it for free, but you will need to http://bit.ly/1MrHBBF[verify the number] to which you are texting. First, go to https://www.twilio.com/[Twilio's home page] and set up an account. Note your account SID and authorization token. If you are using the free version, be sure to http://bit.ly/19c7GZ7[verify your numbers].
+There are a number of SMS services out there. This recipe uses Twilio because you can use it for free, 
+but you will need to `verify the number <http://bit.ly/1MrHBBF>`_ to which you are texting. First, go 
+to `Twilio's home page <https://www.twilio.com/>`_ and set up an account. Note your account SID and 
+authorization token. If you are using the free version, be sure to `verify your numbers <http://bit.ly/19c7GZ7>`_.
 
 Next, install Trilio by using the following command:
 
@@ -674,65 +661,61 @@ Next, install Trilio by using the following command:
   bone$ npm install -g twilio
 
 
-Finally, add the code in :ref:`<networking_twilio_code>` to a file named _twilio-test.js_ and run it. Your text will be sent.
+Finally, add the code in :ref:`networking_twilio_code` to a file named ``twilio-test.js`` and run it. Your text will be sent.
 
 .. _networking_twilio_code:
 
-Sending SMS messages using Twilio (_twilio-test.js_)
-
-.. code-block:: JavaScript
-
-  include::code/twilio-test.js[nodemailer-test.js]
+.. literalinclude:: ../code/06iot/twilio-test.js
+   :caption: Sending SMS messages using Twilio (``twilio-test.js``)
+   :linenos:
 
-
-
-Discussion
-*********
+:download:`twilio-test.js <../code/06iot/twilio-test.js>`
+:download:`nodemailer-test.js <../code/06iot/nodemailer-test.js>`
 
 Twilio allows a small number of free text messages, enough to test your code and to play around some.
 
 Displaying the Current Weather Conditions
--------------------------------------------
+==========================================
 
 Problem
-*********
+--------
 
 You want to display the current weather conditions.
 
 Solution
-*********
+---------
 
 Because your Bone is on the network, it's not hard to access the current weather conditions from a weather API. 
 
 * Go to https://openweathermap.org/ and create an account.
 * Go to https://home.openweathermap.org/api_keys and get your API key.
-* Store your key in the +bash+ variable +APPID+.
+* Store your key in the *bash* variable *APPID*.
 
 .. code-block:: bash
 
   bash$ export APPID="Your key"
 
-* Then add the code in :ref:`<networking_weather_code>` to a file named _weather.js_.
+* Then add the code in :ref:`networking_weather_code` to a file named ``weather.js``.
 * Run the pyhon script.
 
 
 .. _networking_weather_code:
 
-Code for getting current weather conditions (_weather.py_)
+.. literalinclude:: ../code/06iot/weather.py
+   :caption: Code for getting current weather conditions (``weather.py``)
+   :linenos:
 
-.. code-block:: python
-
-  include::code/weather.py
+:download:`weather.py <../code/06iot/weather.py>`
 
-<1> Prints current conditions.
-<2> Prints the forecast for the next day.
-<3> Prints everything returned by the weather site.
+1. Prints current conditions.
+2. Prints the forecast for the next day.
+3. Prints everything returned by the weather site.
 
 Run this by using the following commands:
 
 .. code-block:: bash
 
-  bone$ chmod +x weather.py
+  bone$ chmod *x weather.py
   bone$ ./weather.js
   Getting weather
   Temp:  85.1
@@ -741,37 +724,33 @@ Run this by using the following commands:
   High:  85.1
   sunrise: 2022-07-14 14:32:46
 
-
-Discussion
-*********
-
 The weather API returns lots of information. Use Python to extract the information you want.
 
 Sending and Receiving Tweets
--------------------------------
+=============================
 
 Problem
-*********
+--------
 
 You want to send and receive tweets (Twitter posts) with your Bone.
 
 Solution
-*********
+---------
 
-`Twitter <https://twitter.com/>`_ has a whole `git repo <https://github.com/twitterdev/Twitter-API-v2-sample-code>`_ 
+`Twitter <https://twitter.com>`_ has a whole `git repo <https://github.com/twitterdev/Twitter-API-v2-sample-code>`_ 
 of sample code for interacting with Twitter.  Here I'll show how to create a tweet and then how to delete it.
 
 Creating a Project and App
-****************************
+===========================
 
-* Follow the https://developer.twitter.com/en/docs/apps/overview[directions here] to create a project and and app. 
+* Follow the `directions here <https://developer.twitter.com/en/docs/apps/overview>`_ to create a project and and app. 
 * Be sure to giv eyour app Read and Write permission.
-* Then go to the https://developer.twitter.com/en/portal/projects-and-apps[developer portal] and select you app by clicking on the gear icon to the right of the app name.  
+* Then go to the `developer portal <https://developer.twitter.com/en/portal/projects-and-apps>`_ and select you app by clicking on the gear icon to the right of the app name.  
 * Click on the *Keys and tokens* tab. Here you can get to all your keys and tokens.  
 
 .. tip:: Be sure to record them, you can't get them later.
 
-* Open the file +twitterKeys.sh+ and record your keys in it.
+* Open the file *twitterKeys.sh* and record your keys in it.
 
 .. code-block:: bash
 
@@ -787,19 +766,21 @@ Creating a Project and App
 
   bash$ source twitterKeys.sh
 
-You'll need to do this every time you open a new +bash+ window.
+You'll need to do this every time you open a new *bash* window.
 
 Creating a tweet
-****************************
-Add the code in :ref:`<twitter_create_code>` to a file called _twitter_create_tweet_.py_ and run it to see your timeline.
+=================
 
-.. _twitter_create_code:
+Add the code in :ref:`twitter_create_code` to a file called 
+``twitter_create_tweet_.py`` and run it to see your timeline.
 
-Create a Tweet (_twitter_create_tweet.py_)
+.. _twitter_create_code:
 
-.. code-block:: python
+.. literalinclude:: ../code/06iot/twitter_create_tweet.py
+   :caption: Create a Tweet (``twitter_create_tweet.py``)
+   :linenos:
 
-  include::code/twitter_create_tweet.py[]
+:download:`twitter_create_tweet.py <../code/06iot/twitter_create_tweet.py>`
 
 Run the code and you'll have to authorize.
 
@@ -821,35 +802,33 @@ Check your twitter account and you'll see the new tweet.
 Record the *id* number and we'll use it next to delete the tweet.
 
 Deleting a tweet
-****************************
+=================
 
-Use the code in :ref:`<twitter_delete_code>` to delete a tweet.  Around line 15 is the *id* number.  Paste in the value returned above.
+Use the code in :ref:`twitter_delete_code` to delete a tweet. 
+Around line 15 is the *id* number.  Paste in the value returned above.
 
 .. _twitter_delete_code:
 
-.Code to delete a tweet  (twitter_delete_tweet.py_)
-
-.. code-block:: python
+.. literalinclude:: ../code/06iot/twitter_delete_tweet.py
+   :caption: Code to delete a tweet  (``twitter_delete_tweet.py``)
+   :linenos:
 
-  include::code/twitter_delete_tweet.py
+:download:`twitter_delete_tweet.py <../code/06iot/twitter_delete_tweet.py>`
 
+.. TODO
+  Start Here
 
-// TODO  Start Here
-The code in :ref:`<networking_pushbutton_code>` sends a tweet whenever a button is pushed.
+The code in :ref:`networking_pushbutton_code` snds a tweet whenever a button is pushed.
 
 .. _networking_pushbutton_code:
-.Tweet when a button is pushed (twitterPushbutton.js)
-
-.. code-block:: JavaScript
-
-  include::code/twitterPushbutton.js
 
+.. literalinclude:: ../code/06iot/twitterPushbutton.js
+   :caption: Tweet when a button is pushed (twitterPushbutton.js)
+   :linenos:
 
+:download:`twitterPushbutton.js <../code/06iot/twitterPushbutton.js>`
 
-To see many other examples, go to `iStrategyLabs' node-twitter GitHub page <http://bit.ly/18AvSTW>`_.
-
-Discussion
-*********
+To see many other examples, go to `iStrategyLabs node-twitter GitHub page <http://bit.ly/18AvST>`_.
 
 This opens up many new possibilities. You can read a temperature sensor and tweet its 
 value whenever it changes, or you can turn on an LED whenever a certain hashtag 
@@ -858,23 +837,23 @@ is used. What are you going to tweet?
 .. _networking_node_red:
 
 Wiring the IoT with Node-RED
------------------------------
+=============================
 
 Problem
-*********
+--------
 
 You want BeagleBone to interact with the Internet, 
 but you want to program it graphically.
 
 Solution
-*********
+---------
 
-http://nodered.org/[Node-RED] is a visual tool for wiring the IoT. 
+`Node-RED <http://nodered.org/>`_ is a visual tool for wiring the IoT. 
 It makes it easy to turn on a light when a certain hashtag is tweeted, 
 or spin a motor if the forecast is for hot weather.
 
 Installing Node-RED
-*********************
+====================
 
 To install Node-RED, run the following commands:
 
@@ -900,8 +879,7 @@ To run Node-RED, use the following commands:
 
 - 18 Aug 16:31:43 - [red] Version: 0.8.1.git
 - 18 Aug 16:31:43 - [red] Loading palette nodes
-- 18 Aug 16:31:49 - [26-rawserial.js] Info : only really needed for 
-  Windows boxes without serialport npm module installed.
+- 18 Aug 16:31:49 - [26-rawserial.js] Info : only really needed for Windows boxes without serialport npm module installed.
 - 18 Aug 16:31:56 - ------------------------------------------
 - 18 Aug 16:31:56 - [red] Failed to register 44 node types
 - 18 Aug 16:31:56 - [red] Run with -v for details
@@ -910,179 +888,165 @@ To run Node-RED, use the following commands:
 - 18 Aug 16:31:56 - [red] Loading flows : flows_yoder-debian-bone.json
 
 
-The second-to-last line informs you that Node-RED is listening on part +1880+. Point your browser to http://192.168.7.2:1880, and you will see the screen shown in :ref:`<networking_node_red_fig>`.
+The second-to-last line informs you that Node-RED is listening on part *1880*. Point your browser to 
+http://192.168.7.2:1880, and you will see the screen shown in :ref:`networking_node_red_fig`.
 
 .. _networking_node_red_fig:
 
-The Node-RED web page
-
 .. figure:: figures/node-red.png
   :align: center
   :alt: node-red
 
+  The Node-RED web page
+
 Building a Node-RED Flow
-****************************
-The example in this recipe builds a Node-RED flow that will toggle an LED whenever a certain hashtag is tweeted. But first, you need to set up the Node-RED flow with the +twitter+ node:
+=========================
 
-- On the Node-RED web page, scroll down until you see the +social+ nodes on the left side of the page.
-- Drag the +twitter+ node to the canvas, as shown in :ref:`<networking_node_twitter_fig>`.
+The example in this recipe builds a Node-RED flow that will toggle an LED whenever a certain hashtag 
+is tweeted. But first, you need to set up the Node-RED flow with the *twitter* node:
 
-.. _networking_node_twitter_fig:
+- On the Node-RED web page, scroll down until you see the *social* nodes on the left side of the page.
+- Drag the *twitter* node to the canvas, as shown in :ref:`networking_node_twitter_fig`.
 
-Node-RED twitter node
+.. _networking_node_twitter_fig:
 
 .. figure:: figures/node-twitter.png
   :align: center
   :alt: node-red
 
-.. [start=3]
-. Authorize Twitter by double-clicking the +twitter+ node. You'll see the screen shown in :ref:`<networking_node_twitter_auth_fig>`.
+  Node-RED twitter node
 
-.. _networking_node_twitter_auth_fig:
+Authorize Twitter by double-clicking the *twitter* node. You'll see the screen shown in :ref:`networking_node_twitter_auth_fig`.
 
-Node-RED Twitter authorization, step 1
+.. _networking_node_twitter_auth_fig:
 
 .. figure:: figures/node-twitter-auth.png
   :align: center
   :alt: node-red authentication
 
-.. [start=4]
-. Click the pencil button to bring up the dialog box shown in :ref:`<networking_node_twitter_auth2_fig>`.
+  Node-RED Twitter authorization, step 1
 
-.. _networking_node_twitter_auth2_fig:
+Click the pencil button to bring up the dialog box shown in :ref:`networking_node_twitter_auth2_fig`.
 
-Node-RED twitter authorization, step 2
+.. _networking_node_twitter_auth2_fig:
 
 .. figure:: figures/node-twitter-auth2.png
   :align: center
   :alt: node-red authentication2
 
-.. [start=5]
+  Node-RED twitter authorization, step 2
 
-- Click the "here" link, as shown in :ref:`<networking_node_twitter_auth2_fig>`, and you'll 
-be taken to Twitter to authorize Node-RED.
+- Click the "here" link, as shown in :ref:`networking_node_twitter_auth2_fig`, and you'll be taken to Twitter to authorize Node-RED.
+- Log in to Twitter and click the "Authorize app" button (:ref:`networking_node_twitter_auth3_fig`).
 
-- Log in to Twitter and click the "Authorize app" button (:ref:`<networking_node_twitter_auth3_fig>`).
 
 .. _networking_node_twitter_auth3_fig:
 
-Node-RED Twitter site authorization
-
 .. figure:: figures/node-twitter-auth3.png
   :align: center
   :alt: node-red authentication3
 
-.. [start=7]
+  Node-RED Twitter site authorization
 
-- When you're back to Node-RED, click the Add button, add your Twitter credentials, 
-enter the hashtags to respond to (:ref:`<networking_node_twitter_beagle_fig>`), and then 
-click the Ok pass:[<span class="keep-together">button</span>].
+- When you're back to Node-RED, click the Add button, add your Twitter credentials, enter the hashtags to respond to (:ref:`networking_node_twitter_beagle_fig`), and then click the Ok button.
 
-.. _networking_node_twitter_beagle_fig:
 
-Node-RED adding the #BeagleBone hashtag
+.. _networking_node_twitter_beagle_fig:
 
 .. figure:: figures/node-twitter-beagle.png
   :align: center
   :alt: node-red beagle hash
 
-.. [start=8]
-- Go back to the left panel, scroll up to the top, and then drag the +debug+ node to the canva- (+debug+ is in the +output+ section.)
-- Connect the two nodes by clicking and dragging (:ref:`<networking_node_twitter_debug_fig>`).
+  Node-RED adding the #BeagleBone hashtag
 
-.. _networking_node_twitter_debug_fig:
+- Go back to the left panel, scroll up to the top, and then drag the *debug* node to the canva- (*debug* is in the *output* section.)
+- Connect the two nodes by clicking and dragging (:ref:`networking_node_twitter_debug_fig`).
 
-Node-RED Twitter adding +debug+ node and connecting
+.. _networking_node_twitter_debug_fig:
 
 .. figure:: figures/node-twitter-debug.png
   :align: center
   :alt: node-red debug
 
-.. [start=10]
+  Node-RED Twitter adding *debug* node and connecting
 
 - In the right panel, in the upper-right corner, click the "debug" tab.
 - Finally, click the Deploy button above the "debug" tab.
 
-Your Node-RED flow is now running on the Bone. Test it by going to Twitter and tweeting something with the hashtag +#BeagleBone+. Your Bone is now responding to events happening out in the world.
+Your Node-RED flow is now running on the Bone. Test it by going to Twitter and tweeting something with 
+the hashtag *#BeagleBone*. Your Bone is now responding to events happening out in the world.
 
 Adding an LED Toggle
-***********************
+=====================
 
 Now, we're ready to add the LED toggle:
 
-- Wire up an LED as shown in :ref:`<displays_externalLED>`. Mine is wired to +P9_14+.  
-- Scroll to the bottom of the left panel and drag the +bbb-discrete-out+ node (second from the bottom of the +bbb+ nodes) to the canvas and wire it (:ref:`<networking_node_bbb_out_fig>`).
+- Wire up an LED as shown in :ref:`displays_externalLED`. Mine is wired to *P9_14*.  
+- Scroll to the bottom of the left panel and drag the *bbb-discrete-out* node (second from the bottom of the *bbb* nodes) to the canvas and wire it (:ref:`networking_node_bbb_out_fig`).
 
 .. _networking_node_bbb_out_fig:
 
-Node-RED adding bbb-discrete-out node
-
 .. figure:: figures/node-disc-out.png
   :align: center
   :alt: node-red discrete out node
 
-.. [start=3]
+  Node-RED adding bbb-discrete-out node
 
 Double-click the node, select your GPIO pin and "Toggle state," 
-and then set "Startup as" to +1+ (:ref:`<networking_node_bbb_out_setup_fig>`).
+and then set "Startup as" to *1* (:ref:`networking_node_bbb_out_setup_fig`).
 
 .. _networking_node_bbb_out_setup_fig:
 
-Node-RED adding bbb-discrete-out configuration
-
 .. figure:: figures/node-disc-out-setup.png
   :align: center
   :alt: node-red discrete out setup
 
-.. [start=4]
+  Node-RED adding bbb-discrete-out configuration
 
 Click Ok and then Deploy.
 
-Test again. The LED will toggle every time the hashtag +#BeagleBone+ is tweeted. With a little more exploring, you should be able to have your Bone ringing a bell or spinning a motor in response to tweets.
-
-Discussion
-***********
+Test again. The LED will toggle every time the hashtag *#BeagleBone* is tweeted. With a little more exploring, 
+you should be able to have your Bone ringing a bell or spinning a motor in response to tweets.
 
 Communicating over a Serial Connection to an Arduino or LaunchPad
--------------------------------------------------------------------
+==================================================================
 
 Problem
-*********
+--------
 
 You would like your Bone to talk to an Arduino or LaunchPad.
 
 Solution
-*********
+---------
 
 The common serial port (also know as a UART) is the simplest way to 
-talk between the two.  Wire it up as shown in :ref:`<networking_launchPad_fig>`.
+talk between the two.  Wire it up as shown in :ref:`networking_launchPad_fig`.
 
-.. warning:: 
-  BeagleBone Black runs at 3.3 V. When wiring other devices to it, 
-  ensure that they are also 3.3 V. The LaunchPad I'm using is 3.3 V, 
-  but many Arduinos are 5.0 V and thus won't work. Or worse, 
-  they might damage your Bone.
+.. warning::
 
+  BeagleBone Black runs at 3.3 V. When wiring other devices to it, ensure that 
+  they are also 3.3 V. The LaunchPad I'm using is 3.3 V, but many Arduinos are 
+  5.0 V and thus won't work. Or worse, they might damage your Bone.
 
-.. _networking_launchPad_fig:
 
-Wiring a LaunchPad to a Bone via the common serial port
+.. _networking_launchPad_fig:
 
 .. figure:: figures/launchPad_bb.png
   :align: center
   :alt: MSP430 LaunchPad
 
-Add the code (or _sketch_, as it's called in Arduino-speak) in :ref:`<js_launchPad_code>` 
-to a file called _launchPad.ino_ and run it on your LaunchPad.
+  Wiring a LaunchPad to a Bone via the common serial port
 
-.. _js_launchPad_code:
-
-LaunchPad code for communicating via the UART (launchPad.ino)
+Add the code (or ``sketch``, as it's called in Arduino-speak) in :ref:`js_launchPad_code` 
+to a file called ``launchPad.ino`` and run it on your LaunchPad.
 
-.. code-block:: C
+.. _js_launchPad_code:
 
-  include::code/launchPad/launchPad.ino
+.. literalinclude:: ../code/06iot/launchPad/launchPad.ino
+   :caption: LaunchPad code for communicating via the UART (launchPad.ino)
+   :linenos:
 
+:download:`launchPad.ino <../code/06iot/launchPad/launchPad.ino>`
 
 1. Set the mode for the built-in red and green LEDs.
 
@@ -1090,34 +1054,33 @@ LaunchPad code for communicating via the UART (launchPad.ino)
 
 3. Prompt the user, which in this case is the Bone.
 
-4. Set the LEDs to the current values of the +red+ and +green+ variables.
+4. Set the LEDs to the current values of the *red* and *green* variables.
 
 5. Wait for characters to arrive on the serial port.
 
 6. After the characters are received, read it and respond to it.
 
-On the Bone, add the script in :ref:`<js_launchPadBeagle_code>` to a file called _launchPad.js_ and run it.
+On the Bone, add the script in :ref:`js_launchPadBeagle_code` to a file called `launchPad.js` and run it.
 
 .. _js_launchPadBeagle_code:
 
-Code for communicating via the UART (launchPad.js)
-
-.. code-block:: C
-
-  include::code/launchPad.js
+.. literalinclude:: ../code/06iot/launchPad.js
+   :caption: Code for communicating via the UART (launchPad.js)
+   :linenos:
 
+:download:`launchPad.js <../code/06iot/launchPad.js>`
 
-1. Select which serial port to use. :ref:`<networking_cape-headers-serial_fig>` shows what's available. We've wired +P9_24+ and +P9_26+, so we are using serial port +/dev/ttyO1+. (Note that's the letter _O_ and not the number _zero_.)
+1. Select which serial port to use. :ref:`networking_cape-headers-serial_fig` sows what's available. We've wired *P9_24* and *P9_26*, so we are using serial port */dev/ttyO1*. (Note that's the letter ``O`` and not the number ``zero``.)
 
 2. Set the baudrate to 9600, which matches the setting on the LaunchPad.
 
-3. Read one line at a time up to the newline character (+\n+).
+3. Read one line at a time up to the newline character (*\n*).
 
-4. Open the serial port and call +onSerial()+ whenever there is data available.
+4. Open the serial port and call *onSerial()* whenever there is data available.
 
 5. Determine what event has happened on the serial port and respond to it.
 
-6. If the serial port has been ++open++ed, start calling +sendCommand()+ every 1000 ms.
+6. If the serial port has been *opened*, start calling *sendCommand()* every 1000 ms.
 
 7. These are the two commands to send.
 
@@ -1136,6 +1099,6 @@ Code for communicating via the UART (launchPad.js)
 Discussion
 ************
 
-When you run the script in :ref:`<js_launchPadBeagle_code>`, the Bone opens up the 
-serial port and every second sends a new command, either +r+ or +g+. 
+When you run the script in :ref:`js_launchPadBeagle_code`, the Bone opens up the 
+serial port and every second sends a new command, either *r* or *g*. 
 The LaunchPad waits for the command and, when it arrives, responds by toggling the corresponding LED.
diff --git a/books/beaglebone-cookbook/07kernel/code/Makefile b/books/beaglebone-cookbook/07kernel/code/Makefile
deleted file mode 100644
index c151dc6d41e8906b57b297c3e2a496d200bed690..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/07kernel/code/Makefile
+++ /dev/null
@@ -1,8 +0,0 @@
-obj-m := hello.o
-KDIR  := /lib/modules/$(shell uname -r)/build
-
-all:
-	make -C $(KDIR) M=$$PWD
-	
-clean:
-	rm hello.mod.c hello.o modules.order hello.mod.o Module.symvers
diff --git a/books/beaglebone-cookbook/07kernel/code/Makefile.display b/books/beaglebone-cookbook/07kernel/code/Makefile.display
deleted file mode 100644
index a7f5a1fc7280dd7981fb76f1cdfa4ec208d7de40..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/07kernel/code/Makefile.display
+++ /dev/null
@@ -1,8 +0,0 @@
-obj-m := hello.o
-KDIR  := /lib/modules/$(shell uname -r)/build
-
-all:
-<TAB>make -C $(KDIR) M=$$PWD
-	
-clean:
-<TAB>rm hello.mod.c hello.o modules.order hello.mod.o Module.symvers
diff --git a/books/beaglebone-cookbook/07kernel/code/hello.c b/books/beaglebone-cookbook/07kernel/code/hello.c
deleted file mode 100644
index b3392a72b167b13ff4db6bd116732a2094da8e19..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/07kernel/code/hello.c
+++ /dev/null
@@ -1,22 +0,0 @@
-#include <linux/module.h>       /* Needed by all modules */
-#include <linux/kernel.h>       /* Needed for KERN_INFO */
-#include <linux/init.h>         /* Needed for the macros */
-
-static int __init hello_start(void)
-{
-    printk(KERN_INFO "Loading hello module...\n");
-    printk(KERN_INFO "Hello, World!\n");
-    return 0;
-}
-
-static void __exit hello_end(void)
-{
-    printk(KERN_INFO "Goodbye Boris\n");
-}
-
-module_init(hello_start);
-module_exit(hello_end);
-
-MODULE_AUTHOR("Boris Houndleroy");
-MODULE_DESCRIPTION("Hello World Example");
-MODULE_LICENSE("GPL");
diff --git a/books/beaglebone-cookbook/07kernel/code/hello.patch b/books/beaglebone-cookbook/07kernel/code/hello.patch
deleted file mode 100644
index deb5c615560465760fb6ec770525db26d3fd7226..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/07kernel/code/hello.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-From eaf4f7ea7d540bc8bb57283a8f68321ddb4401f4 Mon Sep 17 00:00:00 2001
-From: Jason Kridner <jdk@ti.com>
-Date: Tue, 12 Feb 2013 02:18:03 +0000
-Subject: [PATCH] hello: example kernel modules
-
----
- hello/Makefile   |    7 +++++++
- hello/hello.c    |   18 ++++++++++++++++++
- 2 files changed, 25 insertions(+), 0 deletions(-)
- create mode 100644 hello/Makefile
- create mode 100644 hello/hello.c
-
-diff --git a/hello/Makefile b/hello/Makefile
-new file mode 100644
-index 0000000..4b23da7
---- /dev/null
-+++ b/hello/Makefile
-@@ -0,0 +1,7 @@
-+obj-m := hello.o
-+
-+PWD   := $(shell pwd)
-+KDIR  := ${PWD}/..
-+
-+default:
-+	make -C $(KDIR) SUBDIRS=$(PWD) modules
-diff --git a/hello/hello.c b/hello/hello.c
-new file mode 100644
-index 0000000..157d490
---- /dev/null
-+++ b/hello/hello.c
-@@ -0,0 +1,22 @@
-+#include <linux/module.h>       /* Needed by all modules */
-+#include <linux/kernel.h>       /* Needed for KERN_INFO */
-+#include <linux/init.h>         /* Needed for the macros */
-+
-+static int __init hello_start(void)
-+{
-+    printk(KERN_INFO "Loading hello module...\n");
-+    printk(KERN_INFO "Hello, World!\n");
-+    return 0;
-+}
-+
-+static void __exit hello_end(void)
-+{
-+    printk(KERN_INFO "Goodbye Boris\n");
-+}
-+
-+module_init(hello_start);
-+module_exit(hello_end);
-+
-+MODULE_AUTHOR("Boris Houndleroy");
-+MODULE_DESCRIPTION("Hello World Example");
-+MODULE_LICENSE("GPL");
diff --git a/books/beaglebone-cookbook/07kernel/code/helloWorld.c b/books/beaglebone-cookbook/07kernel/code/helloWorld.c
deleted file mode 100644
index 0fd542de11f94a460882ea93ad7b9faf32068831..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/07kernel/code/helloWorld.c
+++ /dev/null
@@ -1,5 +0,0 @@
-#include <stdio.h>
-
-int main(int argc, char **argv) {
-  printf("Hello, World! \n");
-}
diff --git a/books/beaglebone-cookbook/07kernel/kernel.rst b/books/beaglebone-cookbook/07kernel/kernel.rst
index 7b0966b78ba324c9bc7d0e1104b96856f8fdcdb3..b57809bb6eccaa7189be53a671394add104b8d8d 100644
--- a/books/beaglebone-cookbook/07kernel/kernel.rst
+++ b/books/beaglebone-cookbook/07kernel/kernel.rst
@@ -3,34 +3,33 @@
 The Kernel
 ###########
 
-Introduction
----------------------------------
 The kernel is the heart of the Linux operating system. It's the software that takes the 
 low-level requests, such as reading or writing files, or reading and writing general-purpose 
 input/output (GPIO) pins, and maps them to the hardware. When you install a new version of the 
-OS (:ref:`<basics_latest_os>`), you get a certain version of the kernel. 
+OS (:ref:`basics_latest_os`), you get a certain version of the kernel. 
 
 You usually won't need to mess with the kernel, but sometimes you might want to try something new 
 that requires a different kernel. This chapter shows how to switch kernels. The nice thing is you 
 can have multiple kernels on your system at the same time and select from among them which to boot up.
 
-// TODO is this still true?
+.. TODO 
+    is this still true?
 
 .. note:: 
-    We assume here that you are logged on to your Bone as +root+ and superuser privileges. 
+    We assume here that you are logged on to your Bone as *root* and superuser privileges. 
     You also need to be logged in to your Linux host computer as a nonsuperuser.
 
 
 Updating the Kernel
----------------------
+====================
 
 Problem
-***********
+--------
 
 You have an out-of-date kernel and want to want to make it current.
 
 Solution
-***********
+---------
 
 Use the following command to determine which kernel you are running:
 
@@ -41,10 +40,10 @@ Use the following command to determine which kernel you are running:
     GNU/Linux
 
 
-The +3.8.13-bone67+ string is the kernel version.
+The *3.8.13-bone67* string is the kernel version.
 
 To update to the current kernel, ensure that your Bone is on the Internet 
-(:ref:`<networking_usb>` or :ref:`<networking_wired>`) and then run the following commands:
+(:ref:`networking_usb` or :ref:`networking_wired`) and then run the following commands:
 
 .. code-block:: bash
 
@@ -72,98 +71,92 @@ After you have rebooted, the new kernel will be running.
 If the current kernel is doing its job adequately, you probably don't need to update, but sometimes a new 
 software package requires a more up-to-date kernel. Fortunately, precompiled kernels are available and ready to download.  
 
-Discussion
-***********
-
-
 .. _kernel_building_modules:
 
 Building and Installing Kernel Modules
----------------------------------
+=======================================
 
 Problem
-***********
+--------
 
 You need to use a peripheral for which there currently is no driver, or you need to improve the 
 performance of an interface previously handled in user space.
 
 Solution
-***********
+---------
 
 The solution is to run in kernel space by building a kernel module. There are entire 
 `books on writing Linux Device Drivers <http://bit.ly/1Fb0usf>`_. This recipe assumes that 
 the driver has already been written and shows how to compile and install it. After you've 
 followed the steps for this simple module, you will be able to apply them to any other module.
 
-For our example module, add the code in :ref:`<kernel_simple_module>` to a file called _hello.c_.
+For our example module, add the code in :ref:`kernel_simple_module` to a file called ``hello.c``.
 
 .. _kernel_simple_module:
 
-Simple Kernel Module (hello.c)
-
-.. code-block:: JavaScript
-
-    include::code/hello.c
-
+.. literalinclude:: ../code/07kernel/hello.c
+   :caption: Simple Kernel Module (hello.c)
+   :linenos:
 
+:download:`hello.c <../code/07kernel/hello.c>`
 
-When compiling on the Bone, all you need to do is load the Kernel Headers for the version of the kernel you're running:
+When compiling on the Bone, all you need to do is load the Kernel 
+Headers for the version of the kernel you're running:
 
 .. code-block:: bash
 
-    bone$ sudo apt install linux-headers-`uname -r`
-
+    bone$ sudo apt install linux-headers-``uname -r``
 
 .. note:: 
-    The quotes around +`uname -r`+ are backtick characters. On a United States keyboard, 
+
+    The quotes around ``uname -r`` are backtick characters. On a United States keyboard, 
     the backtick key is to the left of the 1 key.
 
 
-This took a little more than three minutes on my Bone. The +`uname -r`+ part of the command 
+This took a little more than three minutes on my Bone. The ``uname -r`` part of the command 
 looks up what version of the kernel you are running and loads the headers for it. 
 
-Next, add the code in :ref:`<kernel_Makefle>` to a file called _Makefile_.
+Next, add the code in :ref:`kernel_Makefle` to a file called ``Makefile``.
 
 .. _kernel_Makefle:
 
-Simple Kernel Module (_Makefile_)
-
-.. code-block:: JavaScript
-
-    include::code/Makefile.display
-
+.. literalinclude:: ../code/07kernel/Makefile.display
+   :caption: Simple Kernel Module (``Makefile``)
+   :linenos:
 
+:download:`Makefile.display <../code/07kernel/Makefile.display>`
 
 .. note:: 
-    Replace the two instances of +<TAB>+ with a tab character (the key left of the Q key on a United States keyboard). 
+    Replace the two instances of *<TAB>* with a tab character (the key left of the Q key on a United States keyboard). 
     The tab characters are very important to makefiles and must appear as shown.
 
 
-Now, compile the kernel module by using the +make+ command:
+Now, compile the kernel module by using the *make* command:
 
 .. code-block:: bash
 
     bone$ make
     make -C /lib/modules/3.8.13-bone67/build \
-        SUBDIRS=/root/cookbook-atlas/code/hello modules
+        SUBDIRS=/home/debian/beaglebone-cookbook-code/07kernel/hello modules
     make[1]: Entering directory `/usr/src/linux-headers-3.8.13-bone67'
-    CC [M]  /root/cookbook-atlas/code/hello/hello.o
+    CC [M]  /home/debian/beaglebone-cookbook-code/07kernel/hello/hello.o
     Building modules, stage 2.
     MODPOST 1 modules
-    CC      /root/cookbook-atlas/code/hello/hello.mod.o
-    LD [M]  /root/cookbook-atlas/code/hello/hello.ko
+    CC      /home/debian/beaglebone-cookbook-code/07kernel/hello/hello.mod.o
+    LD [M]  /home/debian/beaglebone-cookbook-code/07kernel/hello/hello.ko
     make[1]: Leaving directory `/usr/src/linux-headers-3.8.13-bone67'
     bone$ ls
     Makefile        hello.c   hello.mod.c  hello.o
     Module.symvers  hello.ko  hello.mod.o  modules.order
 
 
-Notice that several files have been created. _hello.ko_ is the one you want. Try a couple of commands with it:
+Notice that several files have been created. 
+``hello.ko`` is the one you want. Try a couple of commands with it:
 
 .. code-block:: bash
 
     bone$ modinfo hello.ko
-    filename:       /root/hello/hello.ko
+    filename:       /home/debian/beaglebone-cookbook-code/07kernel/hello/hello.ko
     srcversion:     87C6AEED7791B4B90C3B50C
     depends:        
     vermagic:       3.8.13-bone67 SMP mod_unload modversions ARMv7 thumb2 p2v8
@@ -175,26 +168,25 @@ Notice that several files have been created. _hello.ko_ is the one you want. Try
     [491540.999476] Hello world
 
 
-The first command displays information about the module. The +insmod+ command inserts the module into the running kernel. 
-If all goes well, nothing is displayed, but the module does print something in the kernel log. The +dmesg+ command displays 
-the messages in the log, and the +tail -4+ command shows the last four messages. The last two messages are from the module. It worked!
-
-Discussion
-***********
+The first command displays information about the module. The *insmod* command inserts the module into the running kernel. 
+If all goes well, nothing is displayed, but the module does print something in the kernel log. The *dmesg* command displays 
+the messages in the log, and the *tail -4* command shows the last four messages. The last two messages are from the module. It worked!
 
 .. _kernel_LEDs:
 
 Controlling LEDs by Using SYSFS Entries
----------------------------------
+========================================
 
 Problem
-***********
+---------
+
 You want to control the onboard LEDs from the command line.
 
 Solution
-***********
-On Linux, http://bit.ly/1AjhWUW[everything is a file]; that is, you can access all the inputs and outputs, the LEDs, 
-and so on by opening the right _file_ and reading or writing to it. For example, try the following:
+---------
+
+On Linux, `everything is a file <http://bit.ly/1AjhWUW>`_ that is, you can access all the inputs and outputs, the LEDs, 
+and so on by opening the right ``file`` and reading or writing to it. For example, try the following:
 
 .. code-block:: bash
 
@@ -216,8 +208,8 @@ What you are seeing are four directories, one for each onboard LED. Now try this
         backlight gpio cpu0 default-on transient 
 
 
-The first command changes into the directory for LED +usr0+, which is the LED closest to the edge of the board. 
-The +[heartbeat]+ indicates that the default trigger (behavior) for the LED is to blink in the heartbeat pattern. 
+The first command changes into the directory for LED *usr0*, which is the LED closest to the edge of the board. 
+The *[heartbeat]* indicates that the default trigger (behavior) for the LED is to blink in the heartbeat pattern. 
 Look at your LED.  Is it blinking in a heartbeat pattern?
 
 Then try the following:
@@ -230,7 +222,7 @@ Then try the following:
         backlight gpio cpu0 default-on transient 
 
 
-This instructs the LED to use +none+ for a trigger. Look again. It should be no longer blinking.
+This instructs the LED to use *none* for a trigger. Look again. It should be no longer blinking.
 
 Now, try turning it on and off:
 
@@ -242,39 +234,36 @@ Now, try turning it on and off:
 
 The LED should be turning on and off with the commands.
 
-Discussion
-***********
-
 .. _kernel_gpio_sysfs:
 
 Controlling GPIOs by Using SYSFS Entries
------------------------------------------
+=========================================
 
 Problem
-***********
+--------
 
 You want to control a GPIO pin from the command line.
 
 Solution
-***********
+---------
 
-:ref:`<kernel_LEDs>` introduces the +sysfs+. This recipe shows how to read and write a GPIO pin. 
+:ref:`kernel_LEDs` introduces the *sysfs*. This recipe shows how to read and write a GPIO pin. 
 
 Reading a GPIO Pin via sysfs
-******************************
+=============================
 
-Suppose that you want to read the state of the +P9_42+ GPIO pin. (:ref:`<sensors_pushbutton>` shows how to wire a switch to +P9_42+.)  
-First, you need to map the +P9+ header location to GPIO number using :ref:`<kernel_gpio_map_fig>`, which shows that +P9_42+ maps to GPIO 7.
+Suppose that you want to read the state of the *P9_42* GPIO pin. (:ref:`sensors_pushbutton` shows how to wire a switch to *P9_42*.)  
+First, you need to map the *P9* header location to GPIO number using :ref:`kernel_gpio_map_fig`, which shows that *P9_42* maps to GPIO 7.
 
 .. _kernel_gpio_map_fig:
 
-.Mapping P9_42 header position to GPIO 7
-
 .. figure:: figures/cape-headers-digitalGPIO7.png
     :align: center
     :alt: Mapping Header Position to GPIO Numbers
 
-Next, change to the GPIO +sysfs+ directory:
+    Mapping P9_42 header position to GPIO 7
+
+Next, change to the GPIO *sysfs* directory:
 
 .. code-block:: bash
 
@@ -283,8 +272,8 @@ Next, change to the GPIO +sysfs+ directory:
     export  gpiochip0  gpiochip32  gpiochip64  gpiochip96  unexport
 
 
-The +ls+ command shows all the GPIO pins that have be exported. In this case, none have, 
-so you see only the four GPIO controllers. Export using the +export+ command:
+The *ls* command shows all the GPIO pins that have be exported. In this case, none have, 
+so you see only the four GPIO controllers. Export using the *export* command:
 
 .. code-block:: bash
 
@@ -293,7 +282,7 @@ so you see only the four GPIO controllers. Export using the +export+ command:
     export  gpio7  gpiochip0  gpiochip32  gpiochip64  gpiochip96  unexport
 
 
-Now you can see the _gpio7_ directory. Change into the _gpio7_ directory and look around:
+Now you can see the ``gpio7`` directory. Change into the ``gpio7`` directory and look around:
 
 .. code-block:: bash
 
@@ -307,7 +296,7 @@ Now you can see the _gpio7_ directory. Change into the _gpio7_ directory and loo
 
 
 Notice that the pin is already configured to be an input pin. (If it wasn't already configured that way, 
-use +echo in > direction+ to configure it.) You can also see that its current value is +0+—that is, it 
+use *echo in > direction* to configure it.) You can also see that its current value is *0*—that is, it 
 isn't pressed. Try pressing and holding it and running again:
 
 .. code-block:: bash
@@ -316,7 +305,7 @@ isn't pressed. Try pressing and holding it and running again:
     1
 
 
-The +1+ informs you that the switch is pressed. When you are done with GPIO 7, you can always +unexport+ it:
+The *1* informs you that the switch is pressed. When you are done with GPIO 7, you can always *unexport* it:
 
 .. code-block:: bash
 
@@ -327,11 +316,11 @@ The +1+ informs you that the switch is pressed. When you are done with GPIO 7, y
 
 
 Writing a GPIO Pin via sysfs
-******************************
+=============================
 
-Now, suppose that you want to control an external LED. :ref:`<displays_externalLED>` shows 
-how to wire an LED to +P9_14+. :ref:`<kernel_gpio_map_fig>` shows +P9_14+ is GPIO 50. Following 
-the approach in :ref:`<kernel_gpio_sysfs>`, enable GPIO 50 and make it an output:
+Now, suppose that you want to control an external LED. :ref:`displays_externalLED` shows 
+how to wire an LED to *P9_14*. :ref:`kernel_gpio_map_fig` shows *P9_14* is GPIO 50. Following 
+the approach in :ref:`kernel_gpio_sysfs`, enable GPIO 50 and make it an output:
 
 .. code-block:: bash
 
@@ -346,7 +335,7 @@ the approach in :ref:`<kernel_gpio_sysfs>`, enable GPIO 50 and make it an output
     in
 
 
-By default, +P9_14+ is set as an input. Switch it to an output and turn it on:
+By default, *P9_14* is set as an input. Switch it to an output and turn it on:
 
 .. code-block:: bash
 
@@ -355,23 +344,20 @@ By default, +P9_14+ is set as an input. Switch it to an output and turn it on:
     bone$ echo 0 > value
 
 
-The LED turns on when a +1+ is written to +value+ and turns off when a +0+ is written.
-
-Discussion
-***********
+The LED turns on when a *1* is written to *value* and turns off when a *0* is written.
 
 .. _kernel_compiling:
 
 Compiling the Kernel
-----------------------
+=====================
 
 Problem
-***********
+--------
 
 You need to download, patch, and compile the kernel from its source code.
 
 Solution
-***********
+---------
 
 This is easier than it sounds, thanks to some very powerful scripts.
 
@@ -381,7 +367,7 @@ This is easier than it sounds, thanks to some very powerful scripts.
 
 
 Downloading and Compiling the Kernel
-**************************************
+=====================================
 
 To download and compile the kernel, follow these steps:
 
@@ -394,52 +380,49 @@ To download and compile the kernel, follow these steps:
     host$ ./build_kernel.sh # <4>
 
 1. The first command clones a repository with the tools to build the kernel for the Bone.
+2. This command lists all the different versions of the kernel that you can build. You'll need to pick one of these. How do you know which one to pick? A good first step is to choose the one you are currently running.  *uname -a* will reveal which one that is. When you are able to reproduce the current kernel, go to `Linux Kernel Newbies <http://kernelnewbies.org/>`_ to see what features are available in other kernels. `LinuxChanges <http://bit.ly/1AjiL00>`_ shows the features in the newest kernel and `LinuxVersions <http://bit.ly/1MrIHx3>`_ links to features of pervious kernels.
+3. When you know which kernel to try, use *git checkout* to check it out. This command checks out at tag *3.8.13-bone60* and creates a new branch, *v3.8.13-bone60*.
+4. *build_kernel* is the master builder. If needed, it will download the cross compilers needed to compile the kernel (`linaro <http://www.linaro.org/>`_ is the current cross compiler). If there is a kernel at ``~/linux-dev``, it will use it; otherwise, it will download a copy to ``bb-kernel/ignore/linux-src``. It will then patch the kernel so that it will run on the Bone. 
 
-2. This command lists all the different versions of the kernel that you can build. You'll need to pick one of these. How do you know which one to pick? A good first step is to choose the one you are currently running.  +uname -a+ will reveal which one that is. When you are able to reproduce the current kernel, go to http://kernelnewbies.org/[Linux Kernel Newbies] to see what features are available in other kernels. http://bit.ly/1AjiL00[LinuxChanges] shows the features in the newest kernel and http://bit.ly/1MrIHx3[LinuxVersions] links to features of pervious kernels.
-
-3. When you know which kernel to try, use +git checkout+ to check it out. This command checks out at tag +3.8.13-bone60+ and creates a new branch, +v3.8.13-bone60+.
-
-4. +build_kernel+ is the master builder. If needed, it will download the cross compilers needed to compile the kernel (linaro [http://www.linaro.org/] is the current cross compiler). If there is a kernel at _~/linux-dev_, it will use it; otherwise, it will download a copy to _bb-kernel/ignore/linux-src_. It will then patch the kernel so that it will run on the Bone. 
-
-After the kernel is patched, you'll see a screen similar to :ref:`<kernel_config_fig>`, on which you can configure the kernel.
+After the kernel is patched, you'll see a screen similar to :ref:`kernel_config_fig`, on which you can configure the kernel.
 
 .. _kernel_config_fig:
 
-Kernel configuration menu
-
 .. figure:: figures/KernelConfig3.16.png
     :align: center
     :alt: Kernel configuration menu
 
+    Kernel configuration menu
+
 You can use the arrow keys to navigate. No changes need to be made, so you can just press the right 
 arrow and Enter to start the kernel compiling. The entire process took about 25 minutes on my 8-core host. 
 
-The _bb-kernel/KERNEL_ directory contains the source code for the kernel. The _bb-kernel/deploy_ 
+The ``bb-kernel/KERNEL`` directory contains the source code for the kernel. The ``bb-kernel/deploy``
 directory contains the compiled kernel and the files needed to run it.
 
 .. _kernel_install:
 
 Installing the Kernel on the Bone
-***********************************
+===================================
 
 To copy the new kernel and all its files to the microSD card, you need to halt the Bone, 
 and then pull the microSD card out and put it in an microSD card reader on your host computer. 
-Run +Disk+ (see :ref:`<basics_latest_os>`) to learn where the microSD card appears on your host 
-(mine appears in _/dev/sdb_). Then open the _bb-kernel/system.sh_ file and find this line near the end:
+Run *Disk* (see :ref:`basics_latest_os`) to learn where the microSD card appears on your host 
+(mine appears in ``/dev/sdb``). Then open the ``bb-kernel/system.sh`` file and find this line near the end:
 
 .. code-block:: bash
 
     MMC=/dev/sde
 
 
-Change that line to look like this (where +/dev/sdb+ is the path to your device):
+Change that line to look like this (where */dev/sdb* is the path to your device):
 
 .. code-block:: bash
     
     MMC=/dev/sdb
 
 
-Now, while in the _bb-kernel_ directory, run the following command:
+Now, while in the ``bb-kernel`` directory, run the following command:
 
 .. code-block:: bash
 
@@ -469,42 +452,38 @@ Now, while in the _bb-kernel_ directory, run the following command:
 The script lists the partitions it sees and asks if you have the correct one. 
 If you are sure, press Y, and the script will uncompress and copy the files to 
 the correct locations on your card. When this is finished, eject your card, plug 
-it into the Bone, and boot it up. Run +uname -a+, and you 
+it into the Bone, and boot it up. Run *uname -a*, and you 
 will see that you are running your compiled kernel.
 
-Discussion
-***********
-
 .. _kernel_using_cross_compiler:
 
 Using the Installed Cross Compiler
-------------------------------------
+===================================
 
 Problem
-***********
+--------
 
-You have followed the instructions in :ref:`<kernel_compiling>` 
+You have followed the instructions in :ref:`kernel_compiling` 
 and want to use the cross compiler it has downloaded.
 
-[TIP]
-
-
-You can cross-compile without installing the entire kernel source by running the following:
+.. tip::
+    You can cross-compile without installing the 
+    entire kernel source by running the following:
 
-.. code-block:: bash
+    .. code-block:: bash
 
-    host$ sudo apt install gcc-arm-linux-gnueabihf
+        host$ sudo apt install gcc-arm-linux-gnueabihf
 
 
-Then skip down to :ref:`<kernel_skip_to_here>`. 
+Then skip down to :ref:`kernel_skip_to_here`. 
 
 
 Solution
-***********
+---------
 
-:ref:`<kernel_compiling>` installs a cross compiler, but you need to set up a 
-couple of things so that it can be found. :ref:`<kernel_compiling>` installed the 
-kernel and other tools in a directory called _bb-kernel_. Run the 
+:ref:`kernel_compiling` installs a cross compiler, but you need to set up a 
+couple of things so that it can be found. :ref:`kernel_compiling` installed the 
+kernel and other tools in a directory called ``bb-kernel``. Run the 
 following commands to find the path to the cross compiler:
 
 .. code-block:: bash
@@ -516,7 +495,7 @@ following commands to find the path to the cross compiler:
 
 
 Here, the path to the cross compiler contains the version number 
-of the compiler. Yours might be different from mine. +cd+ into it:
+of the compiler. Yours might be different from mine. *cd* into it:
 
 .. code-block:: bash
 
@@ -526,7 +505,7 @@ of the compiler. Yours might be different from mine. +cd+ into it:
     arm-linux-gnueabihf                      lib  share
 
 
-At this point, we are interested in what's in _bin_:
+At this point, we are interested in what's in ``bin``:
 
 .. code-block:: bash
 
@@ -535,12 +514,12 @@ At this point, we are interested in what's in _bin_:
     arm-linux-gnueabihf-addr2line     arm-linux-gnueabihf-gfortran
     arm-linux-gnueabihf-ar            arm-linux-gnueabihf-gprof
     arm-linux-gnueabihf-as            arm-linux-gnueabihf-ld
-    arm-linux-gnueabihf-c++           arm-linux-gnueabihf-ld.bfd
+    arm-linux-gnueabihf-c+*           arm-linux-gnueabihf-ld.bfd
     arm-linux-gnueabihf-c++filt       arm-linux-gnueabihf-ldd
     arm-linux-gnueabihf-cpp           arm-linux-gnueabihf-ld.gold
     arm-linux-gnueabihf-ct-ng.config  arm-linux-gnueabihf-nm
     arm-linux-gnueabihf-elfedit       arm-linux-gnueabihf-objcopy
-    arm-linux-gnueabihf-g++           arm-linux-gnueabihf-objdump
+    arm-linux-gnueabihf-g+*           arm-linux-gnueabihf-objdump
     arm-linux-gnueabihf-gcc           arm-linux-gnueabihf-pkg-config
     arm-linux-gnueabihf-gcc-4.7.3     arm-linux-gnueabihf-pkg-config-real
     arm-linux-gnueabihf-gcc-ar        arm-linux-gnueabihf-ranlib
@@ -551,7 +530,7 @@ At this point, we are interested in what's in _bin_:
 
 
 What you see are all the cross-development tools. You need to add this directory 
-to the +$PATH+ the shell uses to find the commands it runs:
+to the *$PATH* the shell uses to find the commands it runs:
 
 .. code-block:: bash
 
@@ -566,7 +545,7 @@ to the +$PATH+ the shell uses to find the commands it runs:
 
 The first command displays the path to the directory where the cross-development 
 tools are located. The second shows which directories are searched to find commands 
-to be run. Currently, the cross-development tools are not in the +$PATH+. Let's add it:
+to be run. Currently, the cross-development tools are not in the *$PATH*. Let's add it:
 
 .. code-block:: bash
 
@@ -579,15 +558,15 @@ to be run. Currently, the cross-development tools are not in the +$PATH+. Let's
 
 
 .. note:: 
-    Those are backtick characters (left of the "1" key on your keyboard) around +pwd+.
+    Those are backtick characters (left of the "1" key on your keyboard) around *pwd*.
 
 
-The second line shows the +$PATH+ now contains the directory with the cross-development tools.
+The second line shows the *$PATH* now contains the directory with the cross-development tools.
 
 .. _kernel_skip_to_here:
 
 Setting Up Variables
-*********************
+=====================
 
 Now, set up a couple of variables to know which compiler you are using:
 
@@ -598,17 +577,15 @@ Now, set up a couple of variables to know which compiler you are using:
 
 
 These lines set up the standard environmental variables so that you can determine which cross-development 
-tools to use. Test the cross compiler by adding :ref:`<kernel_helloWorld>` to a file named _helloWorld.c_.
+tools to use. Test the cross compiler by adding :ref:`kernel_helloWorld` to a file named _helloWorld.c_.
 
 .. _kernel_helloWorld:
 
-Simple helloWorld.c to test cross compiling (helloWorld.c)
-
-.. code-block:: C
-
-    include::code/helloWorld.c
-
+.. literalinclude:: ../code/07kernel/helloWorld.c
+   :caption: Simple helloWorld.c to test cross compiling (helloWorld.c)
+   :linenos:
 
+:download:`helloWorld.c <../code/07kernel/helloWorld.c>`
 
 You can then cross-compile by using the following commands:
 
@@ -621,42 +598,36 @@ You can then cross-compile by using the following commands:
     BuildID[sha1]=0x10182364352b9f3cb15d1aa61395aeede11a52ad, not stripped
 
 
-The +file+ command shows that +a.out+ was compiled for an ARM processor.
-
-Discussion
-***********
-
+The *file* command shows that *a.out* was compiled for an ARM processor.
 
 .. _kernel_patches:
 
 Applying Patches
---------------------
+=================
 
 Problem
-***********
+--------
 
 You have a patch file that you need to apply to the kernel.
 
 Solution
-***********
+---------
 
-:ref:`<kernel_hello_patch>` shows a patch file that you can use on the kernel. 
+:ref:`kernel_hello_patch` shows a patch file that you can use on the kernel. 
 
 .. _kernel_hello_patch:
 
-Simple kernel patch file (hello.patch)
-
-.. code-block:: C
-
-    include::code/hello.patch[]
-
+.. literalinclude:: ../code/07kernel/hello.patch
+   :caption: Simple kernel patch file (hello.patch)
+   :linenos:
 
+:download:`hello.patch <../code/07kernel/hello.patch>`
 
 Here's how to use it:
 
-- Install the kernel sources (:ref:`<kernel_compiling>`).
+- Install the kernel sources (:ref:`kernel_compiling`).
 - Change to the kernel directory (+cd bb-kernel/KERNEL+).
-- Add :ref:`<kernel_hello_patch>` to a file named _hello.patch_ in the _bb-kernel/KERNEL_ directory.
+- Add :ref:`kernel_hello_patch` to a file named ``hello.patch`` in the ``bb-kernel/KERNEL`` directory.
 - Run the following commands:
 
 .. code-block:: bash
@@ -667,8 +638,8 @@ Here's how to use it:
     patching file hello/hello.c
 
 
-The output of the +patch+ command apprises you of what it's doing. 
-Look in the _hello_ directory to see what was created:
+The output of the *patch* command apprises you of what it's doing. 
+Look in the ``hello`` directory to see what was created:
 
 .. code-block:: bash
 
@@ -676,26 +647,24 @@ Look in the _hello_ directory to see what was created:
     host$ ls
     hello.c  Makefile
 
-
-Discussion
-***********
-
-:ref:`<kernel_building_modules>` shows how to build and install a module, and :ref:`<kernel_create_patch>` 
+:ref:`kernel_building_modules` shows how to build and install a module, and :ref:`kernel_create_patch` 
 shows how to create your own patch file.
 
 .. _kernel_create_patch:
 
 Creating Your Own Patch File
----------------------------------
+=============================
 
 Problem
-***********
+--------
+
 You made a few changes to the kernel, and you want to share them with your friends.
 
 Solution
-***********
+---------
 
-Create a patch file that contains just the changes you have made. Before making your changes, check out a new branch:
+Create a patch file that contains just the changes you have made. 
+Before making your changes, check out a new branch:
 
 .. code-block:: bash
 
@@ -715,7 +684,7 @@ Good, so far no changes have been made. Now, create a new branch:
     nothing to commit (working directory clean)
 
 
-You've created a new branch called _hello1_ and checked it out. Now, make whatever changes 
+You've created a new branch called ``hello1`` and checked it out. Now, make whatever changes 
 to the kernel you want. I did some work with a simple character driver that we can use as an example:
 
 .. code-block:: bash
@@ -764,8 +733,4 @@ Finally, create the patch file:
 .. code-block:: bash
 
     host$ git format-patch master --stdout &gt; hello1.patch
- 
-
-Discussion
-***********
 
diff --git a/books/beaglebone-cookbook/08realtime/code/pushLED.c b/books/beaglebone-cookbook/08realtime/code/pushLED.c
deleted file mode 100755
index 118210df3d93882406021436cf3110f6b0331294..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/08realtime/code/pushLED.c
+++ /dev/null
@@ -1,68 +0,0 @@
-////////////////////////////////////////
-//	blinkLED.c
-//	Blinks the P9_14 pin based on the P9_42 pin
-//	Wiring:
-//	Setup:
-//	See:
-////////////////////////////////////////
-#include <stdio.h>
-#include <string.h>
-#include <unistd.h>
-#define MAXSTR 100
-
-int main() {
-  FILE *fpbutton, *fpLED;
-  char LED[] = "50";   // Look up P9.14 using gpioinfo | grep -e chip -e P9.14.  chip 1, line 18 maps to 50
-  char button[] = "7"; // Look up P9.42 using gpioinfo | grep -e chip -e P9.42.  chip 0, line 7 maps to 7
-  char GPIOPATH[] = "/sys/class/gpio";
-  char path[MAXSTR] = "";
-
-  // Make sure LED is exported
-  snprintf(path, MAXSTR, "%s%s%s", GPIOPATH, "/gpio", LED);
-  if (!access(path, F_OK) == 0) {
-    snprintf(path, MAXSTR, "%s%s", GPIOPATH, "/export");
-    fpLED = fopen(path, "w");
-    fprintf(fpLED, "%s", LED);
-    fclose(fpLED);
-  }
- 
-  // Make it an output LED
-  snprintf(path, MAXSTR, "%s%s%s%s", GPIOPATH, "/gpio", LED, "/direction");
-  fpLED = fopen(path, "w");
-  fprintf(fpLED, "out");
-  fclose(fpLED);
-
-  // Make sure bbuttonutton is exported
-  snprintf(path, MAXSTR, "%s%s%s", GPIOPATH, "/gpio", button);
-  if (!access(path, F_OK) == 0) {
-    snprintf(path, MAXSTR, "%s%s", GPIOPATH, "/export");
-    fpbutton = fopen(path, "w");
-    fprintf(fpbutton, "%s", button);
-    fclose(fpbutton);
-  }
- 
-  // Make it an input button
-  snprintf(path, MAXSTR, "%s%s%s%s", GPIOPATH, "/gpio", button, "/direction");
-  fpbutton = fopen(path, "w");
-  fprintf(fpbutton, "in");
-  fclose(fpbutton);
-
-  // I don't know why I can open the LED outside the loop and use fseek before
-  //  each read, but I can't do the same for the button.  It appears it needs
-  //  to be opened every time.
-  snprintf(path, MAXSTR, "%s%s%s%s", GPIOPATH, "/gpio", LED,    "/value");
-  fpLED    = fopen(path, "w");
-  
-  char state = '0';
-
-  while (1) {
-    snprintf(path, MAXSTR, "%s%s%s%s", GPIOPATH, "/gpio", button, "/value");
-    fpbutton = fopen(path, "r");
-    fseek(fpLED, 0L, SEEK_SET);
-    fscanf(fpbutton, "%c", &state);
-    printf("state: %c\n", state);
-    fprintf(fpLED, "%c", state);
-    fclose(fpbutton);
-    usleep(250000);   // sleep time in microseconds
-  }
-}
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/08realtime/code/pushLED.js b/books/beaglebone-cookbook/08realtime/code/pushLED.js
deleted file mode 100755
index 485a2bbf9537c885f8acc07911716aecfb549dfc..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/08realtime/code/pushLED.js
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/usr/bin/env node
-////////////////////////////////////////
-//	pushLED.js
-//	Blinks an LED attached to P9_12 when the button at P9_42 is pressed
-//	Wiring:
-//	Setup:
-//	See:
-////////////////////////////////////////
-const fs = require("fs");
-
-const ms = 500   // Read time in ms
-
-const LED="50";   // Look up P9.14 using gpioinfo | grep -e chip -e P9.14.  chip 1, line 18 maps to 50
-const button="7"; // P9_42 mapps to 7
-
-GPIOPATH="/sys/class/gpio/";
-
-// Make sure LED is exported
-if(!fs.existsSync(GPIOPATH+"gpio"+LED)) {
-    fs.writeFileSync(GPIOPATH+"export", LED);
-}
-// Make it an output pin
-fs.writeFileSync(GPIOPATH+"gpio"+LED+"/direction", "out");
-
-// Make sure button is exported
-if(!fs.existsSync(GPIOPATH+"gpio"+button)) {
-    fs.writeFileSync(GPIOPATH+"export", button);
-}
-// Make it an input pin
-fs.writeFileSync(GPIOPATH+"gpio"+button+"/direction", "in");
-
-// Read every ms
-setInterval(flashLED, ms);
-
-function flashLED() {
-    var data = fs.readFileSync(GPIOPATH+"gpio"+button+"/value").slice(0, -1);
-    console.log('data = ' + data);
-    fs.writeFileSync(GPIOPATH+"gpio"+LED+"/value", data);
- }
diff --git a/books/beaglebone-cookbook/08realtime/code/pushLED.py b/books/beaglebone-cookbook/08realtime/code/pushLED.py
deleted file mode 100755
index 7606e090ae9418ce8ab233f2083d1b28650d805c..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/08realtime/code/pushLED.py
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/usr/bin/env python
-# ////////////////////////////////////////
-# //	pushLED.py
-# //	Blinks an LED attached to P9_12 when the button at P9_42 is pressed
-# //	Wiring:
-# //	Setup:
-# //	See:
-# ////////////////////////////////////////
-import time
-import os
-
-ms = 50   # Read time in ms
-
-LED="50"   # Look up P9.14 using gpioinfo | grep -e chip -e P9.14.  chip 1, line 18 maps to 50
-button="7" # P9_42 mapps to 7
-
-GPIOPATH="/sys/class/gpio/"
-
-# Make sure LED is exported
-if (not os.path.exists(GPIOPATH+"gpio"+LED)):
-    f = open(GPIOPATH+"export", "w")
-    f.write(LED)
-    f.close()
-
-# Make it an output pin
-f = open(GPIOPATH+"gpio"+LED+"/direction", "w")
-f.write("out")
-f.close()
-
-# Make sure button is exported
-if (not os.path.exists(GPIOPATH+"gpio"+button)):
-    f = open(GPIOPATH+"export", "w")
-    f.write(button)
-    f.close()
-
-# Make it an output pin
-f = open(GPIOPATH+"gpio"+button+"/direction", "w")
-f.write("in")
-f.close()
-
-# Read every ms
-fin  = open(GPIOPATH+"gpio"+button+"/value", "r")
-fout = open(GPIOPATH+"gpio"+LED+"/value", "w")
-
-while True:
-    fin.seek(0)
-    fout.seek(0)
-    fout.write(fin.read())
-    time.sleep(ms/1000)
diff --git a/books/beaglebone-cookbook/08realtime/code/pushLEDmmap.c b/books/beaglebone-cookbook/08realtime/code/pushLEDmmap.c
deleted file mode 100644
index 35f826684c17650b3e7eddd66c404a9fad23ba70..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/08realtime/code/pushLEDmmap.c
+++ /dev/null
@@ -1,68 +0,0 @@
-// From: http://stackoverflow.com/questions/13124271/driving-beaglebone-gpio
-// -through-dev-mem
-// user contributions licensed under cc by-sa 3.0 with attribution required
-// http://creativecommons.org/licenses/by-sa/3.0/
-// http://blog.stackoverflow.com/2009/06/attribution-required/
-// Author: madscientist159 (http://stackoverflow.com/users/3000377/madscientist159)
-//
-// Read one gpio pin and write it out to another using mmap.
-// Be sure to set -O3 when compiling.
-#include <stdio.h>
-#include <stdlib.h>
-#include <sys/mman.h>
-#include <fcntl.h> 
-#include <signal.h>    // Defines signal-handling functions (i.e. trap Ctrl-C)
-#include "pushLEDmmap.h"
-
-// Global variables
-int keepgoing = 1;    // Set to 0 when Ctrl-c is pressed
-
-// Callback called when SIGINT is sent to the process (Ctrl-C)
-void signal_handler(int sig) {
-    printf( "\nCtrl-C pressed, cleaning up and exiting...\n" );
-	keepgoing = 0;
-}
-
-int main(int argc, char *argv[]) {
-    volatile void *gpio_addr;
-    volatile unsigned int *gpio_datain;
-    volatile unsigned int *gpio_setdataout_addr;
-    volatile unsigned int *gpio_cleardataout_addr;
-
-    // Set the signal callback for Ctrl-C
-    signal(SIGINT, signal_handler);
-
-    int fd = open("/dev/mem", O_RDWR);
-
-    printf("Mapping %X - %X (size: %X)\n", GPIO0_START_ADDR, GPIO0_END_ADDR, 
-                                           GPIO0_SIZE);
-
-    gpio_addr = mmap(0, GPIO0_SIZE, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 
-                        GPIO0_START_ADDR);
-
-    gpio_datain            = gpio_addr + GPIO_DATAIN;
-    gpio_setdataout_addr   = gpio_addr + GPIO_SETDATAOUT;
-    gpio_cleardataout_addr = gpio_addr + GPIO_CLEARDATAOUT;
-
-    if(gpio_addr == MAP_FAILED) {
-        printf("Unable to map GPIO\n");
-        exit(1);
-    }
-    printf("GPIO mapped to %p\n", gpio_addr);
-    printf("GPIO SETDATAOUTADDR mapped to %p\n", gpio_setdataout_addr);
-    printf("GPIO CLEARDATAOUT mapped to %p\n", gpio_cleardataout_addr);
-
-    printf("Start copying GPIO_07 to GPIO_31\n");
-    while(keepgoing) {
-    	if(*gpio_datain & GPIO_07) {
-            *gpio_setdataout_addr= GPIO_31;
-    	} else {
-            *gpio_cleardataout_addr = GPIO_31;
-    	}
-        //usleep(1);
-    }
-
-    munmap((void *)gpio_addr, GPIO0_SIZE);
-    close(fd);
-    return 0;
-}
diff --git a/books/beaglebone-cookbook/08realtime/code/pushLEDmmap.h b/books/beaglebone-cookbook/08realtime/code/pushLEDmmap.h
deleted file mode 100644
index a9b49331d9d9f31c7346d5842d0ba76f1620ef85..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/08realtime/code/pushLEDmmap.h
+++ /dev/null
@@ -1,35 +0,0 @@
-// From: http://stackoverflow.com/questions/13124271/driving-beaglebone-gpio
-// -through-dev-mem
-// user contributions licensed under cc by-sa 3.0 with attribution required
-// http://creativecommons.org/licenses/by-sa/3.0/
-// http://blog.stackoverflow.com/2009/06/attribution-required/
-// Author: madscientist159 (http://stackoverflow.com/users/3000377/madscientist159)
-
-#ifndef _BEAGLEBONE_GPIO_H_
-#define _BEAGLEBONE_GPIO_H_
-
-#define GPIO0_START_ADDR 0x44e07000
-#define GPIO0_END_ADDR   0x44e08000
-#define GPIO0_SIZE (GPIO0_END_ADDR - GPIO0_START_ADDR)
-
-#define GPIO1_START_ADDR 0x4804C000
-#define GPIO1_END_ADDR   0x4804D000
-#define GPIO1_SIZE (GPIO1_END_ADDR - GPIO1_START_ADDR)
-
-#define GPIO2_START_ADDR 0x41A4C000
-#define GPIO2_END_ADDR   0x41A4D000
-#define GPIO2_SIZE (GPIO2_END_ADDR - GPIO2_START_ADDR)
-
-#define GPIO3_START_ADDR 0x41A4E000
-#define GPIO3_END_ADDR   0x41A4F000
-#define GPIO3_SIZE (GPIO3_END_ADDR - GPIO3_START_ADDR)
-
-#define GPIO_DATAIN 0x138
-#define GPIO_SETDATAOUT 0x194
-#define GPIO_CLEARDATAOUT 0x190
-
-#define GPIO_03  (1<<3)
-#define GPIO_07  (1<<7)
-#define GPIO_31  (1<<31)
-#define GPIO_60  (1<<28)
-#endif
\ No newline at end of file
diff --git a/books/beaglebone-cookbook/08realtime/code/rt/cyclictest.png b/books/beaglebone-cookbook/08realtime/code/rt/cyclictest.png
deleted file mode 100644
index 1e6780c155c297043268bda39a18e8acf77fbda2..0000000000000000000000000000000000000000
Binary files a/books/beaglebone-cookbook/08realtime/code/rt/cyclictest.png and /dev/null differ
diff --git a/books/beaglebone-cookbook/08realtime/code/rt/hist.gen b/books/beaglebone-cookbook/08realtime/code/rt/hist.gen
deleted file mode 100755
index e265fc7f745d22ba9fca9bd52bb2cb51f39890a4..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/08realtime/code/rt/hist.gen
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-# This code is from Julia Cartwright julia@kernel.org
-
-cyclictest -m -S -p 90 -h 400 -l "${1:-100000}"
diff --git a/books/beaglebone-cookbook/08realtime/code/rt/hist.plt b/books/beaglebone-cookbook/08realtime/code/rt/hist.plt
deleted file mode 100755
index 26d130b15bbc7dfe86373c71746b9897b1184884..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/08realtime/code/rt/hist.plt
+++ /dev/null
@@ -1,17 +0,0 @@
-# This code is from Julia Cartwright julia@kernel.org
-
-set terminal png medium size 800,600
-# set terminal X11 persist
-set output "cyclictest.png"
-set datafile commentschars "#"
-
-set logscale y
-
-# trim some of the distortion from the bottom of the plot
-set yrang [0.85:*]
-
-set xlabel "t (us)"
-set ylabel "Count"
-
-plot "nort.hist" using 1:2 with histeps title "NON-RT",    \
-     "rt.hist" using 1:2 with histeps title "PREEMPT-RT"
diff --git a/books/beaglebone-cookbook/08realtime/code/rt/install.sh b/books/beaglebone-cookbook/08realtime/code/rt/install.sh
deleted file mode 100755
index 7240ba2cfee9747021e06709f9aa0d7c0d99e40b..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/08realtime/code/rt/install.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-sudo apt install rt-tests
-# You can run gnuplot on the host
-sudo apt install gnuplot
diff --git a/books/beaglebone-cookbook/08realtime/code/rt/setup.sh b/books/beaglebone-cookbook/08realtime/code/rt/setup.sh
deleted file mode 100755
index c8003f2c4c18382b561a69ab816ee05bb91e9561..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/08realtime/code/rt/setup.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-# This may be needed to run rt
-echo 950000 | sudo tee /sys/fs/cgroup/cpu/cpu.rt_runtime_us 
-echo 950000 | sudo tee /sys/fs/cgroup/cpu/user.slice/cpu.rt_runtime_us 
diff --git a/books/beaglebone-cookbook/08realtime/realtime.rst b/books/beaglebone-cookbook/08realtime/realtime.rst
index a69b133b4a1727a080f67e9e312c4c0aae364d47..c306a7b460749635c4dee5f837afbbfe3491177f 100644
--- a/books/beaglebone-cookbook/08realtime/realtime.rst
+++ b/books/beaglebone-cookbook/08realtime/realtime.rst
@@ -3,92 +3,86 @@
 Real-Time I/O
 ###############
 
-Introduction
-----------------
-
 Sometimes, when BeagleBone Black interacts with the physical world, it needs to respond in a timely manner. 
 For example, your robot has just detected that one of the driving motors needs to turn a bit faster. 
-Systems that can respond quickly to a real event are known as _real-time_ systems. There are two broad 
+Systems that can respond quickly to a real event are known as ``real-time`` systems. There are two broad 
 categories of real-time systems: soft and hard.  
 
-In a _soft real-time_ system, the real-time requirements should be met _most_ of the time, where _most_ 
+In a ``soft real-time`` system, the real-time requirements should be met ``most`` of the time, where ``most`` 
 depends on the system. A video playback system is a good example. The goal might be to display 60 frames 
-per second, but it doesn't matter much if you miss a frame now and then. In a 100 percent _hard real-time_ 
-system, you can never fail to respond in time. Think of an airbag deployment system on a car. You can't even 
-be pass:[<span class="keep-together">50 ms late</span>].
+per second, but it doesn't matter much if you miss a frame now and then. In a 100 percent ``hard real-time`` 
+system, you can never fail to respond in time. Think of an airbag deployment system on a car. You can't even be 50 ms late.
 
 Systems running Linux generally can't do 100 percent hard real-time processing, because Linux gets in the way. 
 However, the Bone has an ARM processor running Linux and two additional 32-bit programmable real-time units 
-(PRUs http://bit.ly/1EzTPZv[Ti AM33XX PRUSSv2]) available to do real-time processing. Although the PRUs can 
+(PRUs `Ti AM33XX PRUSSv2 <http://bit.ly/1EzTPZv>`_) available to do real-time processing. Although the PRUs can 
 achieve 100 percent hard real-time, they take some effort to use.
 
 This chapter shows several ways to do real-time input/output (I/O), starting with the effortless, yet slower 
 JavaScript and moving up with increasing speed (and effort) to using the PRUs.
 
 .. note:: 
-    In this chapter, as in the others, we assume that you are logged in as +debian+ (as indicated by the +bone$+ prompt). 
-    This gives you quick access to the general-purpose input/output (GPIO) ports but you may have to use +sudo+ some times.
+    In this chapter, as in the others, we assume that you are logged in as *debian* (as indicated by the *bone$* prompt). 
+    This gives you quick access to the general-purpose input/output (GPIO) ports but you may have to use *sudo* some times.
 
 
 .. _realtime_JavaScript:
 
 I/O with JavaScript
----------------------
+====================
 
 Problem
-**********
+--------
 
 You want to read an input pin and write it to the output as quickly as possible with JavaScript.
 
 Solution
-**********
+---------
 
-:ref:`<sensors_pushbutton>` shows how to read a pushbutton switch and :ref:`<displays_externalLED>` controls an external LED. 
+:ref:`sensors_pushbutton` shows how to read a pushbutton switch and :ref:`displays_externalLED` controls an external LED. 
 This recipe combines the two to read the switch and turn on the LED in response to it. To make this recipe, you will need:
 
-* Breadboard and jumper wires (see :ref:`app proto <app_proto>`)
-* Pushbutton switch (see :ref:`app misc <app_misc>`)
-* 220 &#8486; resistor (see :ref:`app resistor <app_resistor>`)
-* LED (see :ref:`app opto <app_opto>`)
+* Breadboard and jumper wires
+* Pushbutton switch
+* 220R resistor
+* LED
 
-Wire up the pushbutton and LED as shown in :ref:`<realtime_pushLED_fig>`.
+Wire up the pushbutton and LED as shown in :ref:`realtime_pushLED_fig`.
 
 .. _realtime_pushLED_fig:
 
-Diagram for wiring a pushbutton and LED with the LED attached to P9_14
-
 .. figure:: figures/pushLED_bb.png
     :align: center
     :alt: Bone with pushbutton and LED
 
-The code in :ref:`<realtime_pushLED_code>` reads GPIO port +P9_42+, which is attached to the 
-pass:[<span class="keep-together">pushbutton</span>], and turns on the LED attached to 
-+P9_12+ when the button is pushed.
+    Diagram for wiring a pushbutton and LED with the LED attached to P9_14
 
-.. _py_pushLED_code:
+The code in :ref:`realtime_pushLED_code` reads GPIO port *P9_42*, which is attached to the 
+pushbutton, and turns on the LED attached to *P9_12* when the button is pushed.
 
-Monitoring a pushbutton (pushLED.py)
-
-.. code-block:: python
+.. _py_pushLED_code:
 
-    include::code/pushLED.py
+.. literalinclude:: ../code/08realtime/pushLED.py
+   :caption: Monitoring a pushbutton (pushLED.py)
+   :linenos:
 
+:download:`pushLED.py <../code/08realtime/pushLED.py>`
 
 .. _realtime_pushLED_code:
 
-Monitoring a pushbutton (pushLED.js)
+.. literalinclude:: ../code/08realtime/pushLED.js
+   :caption: Monitoring a pushbutton (pushLED.js)
+   :linenos:
 
-.. code-block:: JavaScript
+:download:`pushLED.js <../code/08realtime/pushLED.js>`
 
-    include::code/pushLED.js
 
-
-Add the code to a file named _pushLED.js_ and run it by using the following commands:
+Add the code to a file named ``pushLED.js`` and run it by using the following commands:
 
 .. code-block:: bash
 
-    bone$ <strong>chmod +x pushLED.js</strong>
-    bone$ <strong>./pushLED.js</strong>
+    bone$ chmod *x pushLED.js
+    bone$ ./pushLED.js
     data = 0
     data = 0
     data = 1
@@ -97,44 +91,39 @@ Add the code to a file named _pushLED.js_ and run it by using the following comm
 
 Press ^C (Ctrl-C) to stop the code.
 
-Discussion
-**********
-
-
 .. _realtime_c:
 
 I/O with C
----------------------
+===========
 
 Problem
-**********
+--------
 
 You want to use the C language to process inputs in real time, or Python/JavaScript isn't fast enough.
 
 Solution
-**********
+---------
 
-:ref:`<realtime_JavaScript>` shows how to control an LED with a pushbutton using JavaScript. This recipe accomplishes 
+:ref:`realtime_JavaScript` shows how to control an LED with a pushbutton using JavaScript. This recipe accomplishes 
 the same thing using C. It does it in the same way, opening the correct /sys/class/gpio files and reading an writing them.
 
-Wire up the pushbutton and LED as shown in :ref:`<realtime_pushLED_fig>`. 
-Then add the code in :ref:`<realtime_pushLED_c_code>` to a file named _pushLED.c_.
+Wire up the pushbutton and LED as shown in :ref:`realtime_pushLED_fig`. 
+Then add the code in :ref:`realtime_pushLED_c_code` to a file named ``pushLED.c``.
 
 .. _realtime_pushLED_c_code:
 
-Code for reading a switch and blinking an LED (pushLED.c)
-
-.. code-block:: bash
-
-    include::code/pushLED.c[]
+.. literalinclude:: ../code/08realtime/pushLED.c
+   :caption: Code for reading a switch and blinking an LED (pushLED.c)
+   :linenos:
 
+:download:`pushLED.c <../code/08realtime/pushLED.c>`
 
 Compile and run the code:
 
 .. code-block:: bash
 
-    bone$ <strong>gcc -o pushLED pushLED.c</strong>
-    bone$ <strong>./pushLED</strong>
+    bone$ gcc -o pushLED pushLED.c
+    bone$ ./pushLED
     state: 1
     state: 1
     state: 0
@@ -144,91 +133,89 @@ Compile and run the code:
     ^C
 
 The code responds quickly to the pushbutton. If you need more speed, 
-comment-out the +printf()+ and the +sleep()+.
+comment-out the *printf()* and the *sleep()*.
 
-Discussion
-**********
 
 .. _realtime_devmem2:
 
 I/O with devmem2
----------------------
+=================
 
 Problem
-**********
+--------
 
 Your C code isn't responding fast enough to the input signal. You want to read the GPIO registers directly.
 
 Solution
-**********
+---------
 
-The solution is to use a simple utility called +devmem2+, with which 
+The solution is to use a simple utility called *devmem2*, with which 
 you can read and write registers from the command line.
 
 .. warning:: 
     
     This solution is much more involved than the previous ones. You need to understand binary and 
-    hex numbers and be able to read the http://bit.ly/1B4Cm45[AM335x Technical Reference Manual].
+    hex numbers and be able to read the `AM335x Technical Reference Manual <http://bit.ly/1B4Cm45>`_.
 
 
-First, download and install +devmem2+:
+First, download and install *devmem2*:
 
 .. code-block:: bash
 
-    bone$ <strong>wget http://free-electrons.com/pub/mirror/devmem2.c</strong>
-    bone$ <strong>gcc -o devmem2 devmem2.c</strong>
-    bone$ <strong>sudo mv devmem2 /usr/bin</strong>
+    bone$ wget http://free-electrons.com/pub/mirror/devmem2.c
+    bone$ gcc -o devmem2 devmem2.c
+    bone$ sudo mv devmem2 /usr/bin
 
-This solution will read a pushbutton attached to +P9_42+ and flash an LED attached to +P9_13+. Note that this is a 
+This solution will read a pushbutton attached to *P9_42* and flash an LED attached to *P9_13*. Note that this is a 
 change from the previous solutions that makes the code used here much simpler. Wire up your Bone as 
-shown in :ref:`<realtime_pushLEDmmap_fig>`.
+shown in :ref:`realtime_pushLEDmmap_fig`.
 
 .. _realtime_pushLEDmmap_fig:
 
-Diagram for wiring a pushbutton and LED with the LED attached to P9_13
-
 .. figure:: figures/pushLEDmmap_bb.png
     :align: center
     :alt: Bone with pushbutton and LED wired to P9_13
 
-Now, flash the LED attached to +P9_13+ using the Linux +sysfs+ interface (:ref:`<kernel_gpio_sysfs>`). To do this, 
-first look up which GPIO number +P9_13+ is attached to by referring to :ref:`<tips_cape_headers_digital>`. 
-Finding +P9_13+ at GPIO 31, export GPIO 31 and make it an output:
+    Diagram for wiring a pushbutton and LED with the LED attached to P9_13
+
+Now, flash the LED attached to *P9_13* using the Linux *sysfs* interface (:ref:`kernel_gpio_sysfs`). To do this, 
+first look up which GPIO number *P9_13* is attached to by referring to :ref:`tips_cape_headers_digital`. 
+Finding *P9_13* at GPIO 31, export GPIO 31 and make it an output:
 
 .. code-block:: bash
 
-    bone$ <strong>cd cd /sys/class/gpio/</strong>
-    bone$ <strong>echo 31 > export</strong>
-    bone$ <strong>cd gpio31</strong>
-    bone$ <strong>echo out > direction</strong>
-    bone$ <strong>echo 1 > value</strong>
-    bone$ <strong>echo 0 > value</strong>
+    bone$ cd cd /sys/class/gpio/
+    bone$ echo 31 > export
+    bone$ cd gpio31
+    bone$ echo out > direction
+    bone$ echo 1 > value
+    bone$ echo 0 > value
 
-The LED will turn on when +1+ is echoed into +value+ and off when +0+ is echoed. 
+The LED will turn on when *1* is echoed into *value* and off when *0* is echoed. 
 
 Now that you know the LED is working, look up its memory address. This is where things get very detailed. 
-First, download the http://bit.ly/1B4Cm45[AM335x Technical Reference Manual]. Look up +GPIO0+ in the 
-Memory Map chapter (sensors). Table 2-2 indicates that +GPIO0+ starts at address +0x44E0_7000+. Then 
-go to Section 25.4.1, "GPIO Registers." This shows that +GPIO_DATAIN+ has an offset of +0x138+, +GPIO_CLEARDATAOUT+ 
-has an offset of +0x190+, and +GPIO_SETDATAOUT+ has an offset of +0x194+.  
+First, download the `AM335x Technical Reference Manual <http://bit.ly/1B4Cm45>`_. Look up *GPIO0* in the 
+Memory Map chapter (sensors). Table 2-2 indicates that *GPIO0* starts at address *0x44E0_7000*. Then 
+go to Section 25.4.1, "GPIO Registers." This shows that *GPIO_DATAIN* has an offset of *0x138*, *GPIO_CLEARDATAOUT* 
+has an offset of *0x190*, and *GPIO_SETDATAOUT* has an offset of *0x194*.  
 
-This means you read from address +0x44E0_7000+ + +0x138+ = +0x44E0_7138+ to see the status of the LED:
+This means you read from address *0x44E0_7000* * *0x138* = *0x44E0_7138* to see the status of the LED:
 
 .. code-block:: bash
 
-    bone$ <strong>sudo devmem2 0x44E07138</strong>
+    bone$ sudo devmem2 0x44E07138
     /dev/mem opened.
     Memory mapped at address 0xb6f8e000.
     Value at address 0x44E07138 (0xb6f8e138): 0xC000C404
 
 
-The returned value +0xC000C404+ (+1100 0000 0000 0000 1100 0100 0000 0100+ in binary) has bit 31 set to +1+, 
-which means the LED is on. Turn the LED off by writing +0x80000000+ (+1000 0000 0000 0000 0000 0000 0000 0000+ binary) 
-to the +GPIO_CLEARDATA+ register at +0x44E0_7000+ + +0x190+ = +0x44E0_7190+:
+The returned value *0xC000C404* (*1100 0000 0000 0000 1100 0100 0000 0100* in binary) has bit 31 set to *1*, 
+which means the LED is on. Turn the LED off by writing *0x80000000* (*1000 0000 0000 0000 0000 0000 0000 0000* binary) 
+to the *GPIO_CLEARDATA* register at *0x44E0_7000* * *0x190* = *0x44E0_7190*:
 
 .. code-block:: bash
 
-    bone$ <strong>sudo devmem2 0x44E07190 w 0x80000000</strong>
+    bone$ sudo devmem2 0x44E07190 w 0x80000000
     /dev/mem opened.
     Memory mapped at address 0xb6fd7000.
     Value at address 0x44E07190 (0xb6fd7190): 0x80000000
@@ -236,41 +223,43 @@ to the +GPIO_CLEARDATA+ register at +0x44E0_7000+ + +0x190+ = +0x44E0_7190+:
 
 The LED is now off.
 
-You read the pushbutton switch in a similar way. :ref:`<tips_cape_headers_digital>` says +P9_42+ is GPIO 7, which means bit 7 is the state of +P9_42+. The +devmem2+ in this example reads +0x0+, which means all bits are +0+, including GPIO 7. Section 25.4.1 of the Technical Reference Manual instructs you to use offset +0x13C+ to read +GPIO_DATAOUT+. Push the pushbutton and run +devmem2+:
+You read the pushbutton switch in a similar way. :ref:`tips_cape_headers_digital` says 
+*P9_42* is GPIO 7, which means bit 7 is the state of *P9_42*. The *devmem2* in this 
+example reads *0x0*, which means all bits are *0*, including GPIO 7. Section 25.4.1 
+of the Technical Reference Manual instructs you to use offset *0x13C* to read 
+*GPIO_DATAOUT*. Push the pushbutton and run *devmem2*:
 
 .. code-block:: bash
 
-    bone$ <strong>sudo devmem2 0x44e07138</strong>
+    bone$ sudo devmem2 0x44e07138
     /dev/mem opened.
     Memory mapped at address 0xb6fe2000.
     Value at address 0x44E07138 (0xb6fe2138): 0x4000C484
 
 
-Here, bit 7 is set in +0x4000C484+, showing the button is pushed.
+Here, bit 7 is set in *0x4000C484*, showing the button is pushed.
 
-Discussion
-**********
 
 This is much more tedious than the previous methods, but it's what's necessary if you need to 
-minimize the time to read an input. :ref:`<realtime_mmap>` shows how to read and write these addresses from C.
+minimize the time to read an input. :ref:`realtime_mmap` shows how to read and write these addresses from C.
 
 .. _realtime_mmap:
 
 I/O with C and mmap()
----------------------
+======================
 
 Problem
-**********
+--------
 
 Your C code isn't responding fast enough to the input signal.
 
 Solution
-**********
+---------
 
 In smaller processors that aren't running an operating system, you can read and write a given memory address directly 
 from C. With Linux running on Bone, many of the memory locations are hardware protected, so you can't accidentally access them directly. 
 
-This recipe shows how to use +mmap()+ (memory map) to map the GPIO registers to an array in C. Then all you need t
+This recipe shows how to use *mmap()* (memory map) to map the GPIO registers to an array in C. Then all you need t
 o do is access the array to read and write the registers.
 
 .. warning:: 
@@ -279,41 +268,41 @@ o do is access the array to read and write the registers.
     and be able to read the AM335x Technical Reference Manual.
 
 
-This solution will read a pushbutton attached to +P9_42+ and flash an LED attached to +P9_13+. Note that this is a 
+This solution will read a pushbutton attached to *P9_42* and flash an LED attached to *P9_13*. Note that this is a 
 change from the previous solutions that makes the code used here much simpler.
 
-.. tip:: See :ref:`<realtime_devmem2>` for details on mapping the GPIO numbers to memory addresses.
+.. tip:: 
+    See :ref:`realtime_devmem2` for details on mapping 
+    the GPIO numbers to memory addresses.
 
 
-Add the code in :ref:`<realtime_pushLEDmmap_h>` to a file named _pushLEDmmap.h_.
+Add the code in :ref:`realtime_pushLEDmmap_h` to a file named ``pushLEDmmap.h``.
 
 .. _realtime_pushLEDmmap_h:
 
-Memory address definitions (pushLEDmmap.h)
+.. literalinclude:: ../code/08realtime/pushLEDmmap.h
+   :caption: Memory address definitions (pushLEDmmap.h)
+   :linenos:
 
+:download:`pushLEDmmap.h <../code/08realtime/pushLEDmmap.h>`
 
-.. code-block:: bash
-
-    include::code/pushLEDmmap.h[pushLEDmmap.h]
 
+Add the code in :ref:`realtime_pushLEDmmap_c` to a file named ``pushLEDmmap.c``.
 
-
-Add the code in :ref:`<realtime_pushLEDmmap_c>` to a file named _pushLEDmmap.c_.
 .. _realtime_pushLEDmmap_c:
 
-Code for directly reading memory addresses (pushLEDmmap.c)
-
+.. literalinclude:: ../code/08realtime/pushLEDmmap.c
+   :caption: Code for directly reading memory addresses (pushLEDmmap.c)
+   :linenos:
 
-.. code-block:: bash
-
-    include::code/pushLEDmmap.c[pushLEDmmap.c]
+:download:`pushLEDmmap.c <../code/08realtime/pushLEDmmap.c>`
 
 Now, compile and run the code:
 
 .. code-block:: bash
 
-    bone$ <strong>gcc -O3 pushLEDmmap.c -o pushLEDmmap</strong>
-    bone$ <strong>sudo ./pushLEDmmap</strong>
+    bone$ gcc -O3 pushLEDmmap.c -o pushLEDmmap
+    bone$ sudo ./pushLEDmmap
     Mapping 44E07000 - 44E08000 (size: 1000)
     GPIO mapped to 0xb6fac000
     GPIO SETDATAOUTADDR mapped to 0xb6fac194
@@ -322,23 +311,21 @@ Now, compile and run the code:
     ^C
     Ctrl-C pressed, cleaning up and exiting...
 
-The code is in a tight +while+ loop that checks the status of GPIO 7 and copies it to GPIO 31.
+The code is in a tight *while* loop that checks the status of GPIO 7 and copies it to GPIO 31.
 
-Discussion
-**********
 
 Tighter Delay Bounds with the PREEMPT_RT Kernel
-----------------
+================================================
 
 
 Problem
-**********
+--------
 
 
 You want to run real-time processes on the Beagle, but the OS is slowing things down.
 
 Solution
-**********
+---------
 
 The Kernel can be compiled with PREEMPT_RT enabled which reduces the delay from when a thread is scheduled to when it runs.
 
@@ -349,33 +336,35 @@ Discussion to see how much the latencies are reduced.
 
 .. code-block:: bash
 
-    bone$ <strong>uname -a</strong>
+    bone$ uname -a
     Linux breadboard-home 5.10.120-ti-r47 #1bullseye SMP PREEMPT Tue Jul 12 18:59:38 UTC 2022 armv7l GNU/Linux
-    I'm running a 5.10 kernel.  Remember the whole string, +5.10.120-ti-r47+, for later.
+    
+I'm running a 5.10 kernel.  Remember the whole string, *5.10.120-ti-r47*, for later.
 
-* Go to https://forum.beagleboard.org/t/debian-10-x-11-x-kernel-updates/30928[kernel update] and look for +5.10+.
+* Go to `kernel update <https://forum.beagleboard.org/t/debian-10-x-11-x-kernel-updates/30928>`_ and look for *5.10*.
 
 .. _realtime_kernel_update_fig:
 
-The regular and RT kernels
-
-.. figure:: figures/kernel_update.pn
-    :align: centerg
+.. figure:: figures/kernel_update.png
+    :align: center
     :alt: The regular and RT kernels
 
-In :ref:`<realtime_kernel_update_fig>` you see the reular kernel on top and the RT below. 
+    The regular and RT kernels
+
+In :ref:`realtime_kernel_update_fig` you see the reular kernel on top and the RT below. 
 
 * We want the RT one.
 
 .. code-block:: bash
 
-    bone$ <strong>sudo apt update</strong>
-    bone$ <strong>sudo apt install bbb.io-kernel-5.10-ti-rt-am335x</strong>
+    bone$ sudo apt update
+    bone$ sudo apt install bbb.io-kernel-5.10-ti-rt-am335x
 
-.. note:: Use the *am57xx* if you are using the BeagleBoard AI or AI64.
+.. note:: 
+    Use the *am57xx* if you are using the BeagleBoard AI or AI64.
 
 
-* Before rebooting, edit +/boot/uEnv.txt+ to start with:
+* Before rebooting, edit */boot/uEnv.txt* to start with:
 
 .. code-block:: bash
 
@@ -386,12 +375,10 @@ In :ref:`<realtime_kernel_update_fig>` you see the reular kernel on top and the
     #uuid=
     #dtb=
 
-+uname_r+ tells the boot loader which kernel to boot.  Here we've commented out the 
+*uname_r* tells the boot loader which kernel to boot.  Here we've commented out the 
 regular kernel and left in the RT kernel.  Next time you boot you'll be running the RT kernel. 
 Don't reboot just yet.  Let's gather some latency data first.
 
-Discussion
-**********
 
 `Bootlin's preempt_rt workshop <https://bootlin.com/doc/training/preempt-rt/>`_ looks 
 like a good workshop on PREEMPT RT.  Their slides say:
@@ -410,40 +397,42 @@ the first lab since we present a simpler way to get the RT kernel running.
 
 
 Cyclictest
-**********
+===========
 
-+cyclictest+ is one tool for measuring the latency from when a thread is schduled and when it runs. 
-The +code/rt+ directory in the git repo has some scripts for gathering latency data and plotting it. 
+*cyclictest* is one tool for measuring the latency from when a thread is schduled and when it runs. 
+The *code/rt* directory in the git repo has some scripts for gathering latency data and plotting it. 
 Here's how to run the scripts.
 
-* First look in :ref:`<realtime_install_fig>` to see what to install.
+* First look in :ref:`realtime_install_fig` to see what to install.
 
 .. _realtime_install_fig:
 
-.. code-block:: bash
-    
-    include::code/rt/install.sh
+.. literalinclude:: ../code/08realtime/rt/install.sh
+   :caption: rt/install.sh
+   :linenos:
+
+:download:`rt/install.sh <../code/08realtime/rt/install.sh>`
 
 
 * Open up another window and start something that will create a load on the Bone, then run the following:
 
 .. code-block:: bash
 
-    bone$ <strong>time sudo ./hist.gen > nort.hist</strong>
+    bone$ time sudo ./hist.gen > nort.hist
 
-:ref:`<realtime_hist_gen_fig>` shows what's being run.  It defaults to 100,000 loops, so it takes a while. 
-The data is saved in +nort.hist+, which stands for no RT  histogram.
+:ref:`realtime_hist_gen_fig` shows what's being run.  It defaults to 100,000 loops, so it takes a while. 
+The data is saved in *nort.hist*, which stands for no RT  histogram.
 
 .. _realtime_hist_gen_fig:
 
-hist.gen
-
-.. code-block:: bash
-
-    include::code/rt/hist.gen
+.. literalinclude:: ../code/08realtime/rt/hist.gen
+   :caption: hist.gen
+   :linenos:
 
+:download:`rt/hist.gen <../code/08realtime/rt/hist.gen>`
 
-.. note:: If you get an error:
+.. note:: 
+    If you get an error:
 
 Unable to change scheduling policy!
 Probably missing capabilities, either run as root or increase RLIMIT_RTPRIO limits
@@ -462,63 +451,64 @@ try running ./setup.sh. If that doesn't work try:
 
 .. code-block:: bash
 
-    bone$ <strong>reboot</strong>
+    bone$ reboot
 
 * After rebooting:
 
 .. code-block:: bash
 
-    bone$ <strong>uname -a</strong>
+    bone$ uname -a
     Linux breadboard-home 5.10.120-ti-rt-r47 #1bullseye SMP PREEMPT RT Tue Jul 12 18:59:38 UTC 2022 armv7l GNU/Linux
 
 Congratulations you are running the RT kernel. 
 
 .. note:: 
     If the Beagle appears to be running (the LEDs are flashing) but you are having trouble connecting 
-    via +ssh 192.168.7.2+, you can try connecting using the approach shown in :ref:`<tips_FTDI>`.
+    via *ssh 192.168.7.2*, you can try connecting using the approach shown in :ref:`tips_FTDI`.
 
-Now run the scipt again (note it's being saved in +rt.hist+ this time.)
+Now run the scipt again (note it's being saved in *rt.hist* this time.)
 
 .. code-block:: bash
 
-    bone$ <strong>time sudo ./hist.gen > rt.hist</strong>
+    bone$ time sudo ./hist.gen > rt.hist
 
-.. note:: At this point yoou can edit +/boot/uEnt.txt+ to boot the non RT kernel and reboot.
+.. note:: 
+    At this point yoou can edit */boot/uEnt.txt* to boot the non RT kernel and reboot.
 
 
 Now it's time to plot the results.
 
 .. code-block:: bash
 
-    bone$ <strong>gnuplot hist.plt</strong>
+    bone$ gnuplot hist.plt
 
 This will generate the file *cyclictest.png* which contains your plot.  It should look like:
 
 .. _realtime_cyclictest_fig:
 
-Histogram of Non-RT and RT kernels running cyclictest
-
-.. figure:: code/rt/cyclictest.png
+.. figure:: ../code/08realtime/rt/cyclictest.png
     :align: center
     :alt: Histogram of Non-RT and RT kernels running cyclictest
 
+    Histogram of Non-RT and RT kernels running cyclictest
+
 Notice the NON-RT data have much longer latenices. They may not happen often (fewer than 10 times in each bin), 
 but they are occuring and may be enough to miss a real-time deadline.
 
-The PREEMPT-RT times are all under a 150 pass:[&mu;]s. 
+The PREEMPT-RT times are all under a 150s. 
 
 .. _realtime_simpPRU:
 
 I/O with simpPRU
----------------------
+=================
 
 Problem
-**********
+--------
 
 You require better timing than running C on the ARM can give you.
 
 Solution
-**********
+---------
 
 The AM335x processor on the Bone has an ARM processor that is running Linux, but it also has 
 two 32-bit PRUs that are available for processing I/O. It takes a fair amount of understanding 
@@ -526,6 +516,6 @@ to program the PRU. Fortunately, `simpPRU <https://simppru.readthedocs.io/en/lat
 language for PRU which compiles down to PRU C. This solution shows how to use it.
 
 Background
------------
+===========
 
 simpPRU
diff --git a/books/beaglebone-cookbook/09capes/capes.rst b/books/beaglebone-cookbook/09capes/capes.rst
index 796d056e9b12f3622d70a739bdcdf14805a1016d..eef75fffdddd722c9083b40eec6e150b8dc87864 100644
--- a/books/beaglebone-cookbook/09capes/capes.rst
+++ b/books/beaglebone-cookbook/09capes/capes.rst
@@ -3,9 +3,6 @@
 Capes
 #####
 
-Introduction
------------------------------
-
 Previous chapters of this book show a variety of ways to interface BeagleBone Black 
 to the physical world by using a breadboard and wiring to the +P8+ and +P9+ headers. 
 This is a great approach because it's easy to modify your circuit to debug it or try 
@@ -16,7 +13,7 @@ you want to share your hardware with the masses.
 You can easily expand the functionality of the Bone by adding a  `cape <http://bit.ly/1wucweC>`_. 
 A cape is simply a board--often a printed circuit board (PCB) that connects to the +P8+ 
 and +P9+ headers and follows a few standard pin usages. You can stack up to four capes onto the 
-Bone. Capes can range in size from Bone-sized (:ref:`<capes_miniDisplay>`) to much larger than the Bone (:ref:`<capes_7inLCD>`).
+Bone. Capes can range in size from Bone-sized (:ref:`capes_miniDisplay`) to much larger than the Bone (:ref:`capes_7inLCD`).
 
 This chapter shows how to attach a couple of capes, move your design to a protoboard, then to a PCB, 
 and finally on to mass production.
@@ -24,24 +21,29 @@ and finally on to mass production.
 .. _capes_7inLCD:
 
 Using a Seven-Inch LCD Cape
------------------------------
+============================
 
 Problem
-***********
+--------
 
 You want to display the Bone's desktop on a portable LCD.
 
 Solution
-***********
+--------
+
+.. note:: #TODO# The 4D Systems LCD capes would make a better example. CircuitCo is out of business.
 
 A number of `LCD capes <http://bit.ly/1AjlXJ9>`_ are built for the Bone, ranging in size from three 
 to seven inches. This recipe attaches a seven-inch `BeagleBone LCD7 <http://bit.ly/1NK8Hra>`_ 
-from `CircuitCo http://circuitco.com/`_ (shown in :ref:`<capes_7inLCD_fig>`) to the Bone.
+from `CircuitCo <http://circuitco.com/>`_ (shown in :ref:`capes_7inLCD_fig`) to the Bone.
 
 .. _capes_7inLCD_fig:
 
+7" LCD
+========
+
 .. note:: 
-    Seven-inch LCD from CircuitCo, :ref:`<capes_7inLCD_fig>` was originally posted by CircuitCo 
+    Seven-inch LCD from CircuitCo, :ref:`capes_7inLCD_fig` was originally posted by CircuitCo 
     at http://elinux.org/File:BeagleBone-LCD7-Front.jpg under a 
     `Creative Commons Attribution-ShareAlike 3.0 Unported License <http://creativecommons.org/licenses/by-sa/3.0/>`_.
 
@@ -51,55 +53,52 @@ from `CircuitCo http://circuitco.com/`_ (shown in :ref:`<capes_7inLCD_fig>`) to
 
 To make this recipe, you will need:
 
-* Seven-inch LCD cape (see :ref:`app misc<app_misc>`)
-* A 5 V power supply (see :ref:`app misc<app_misc>`)
+* Seven-inch LCD cape
+* A 5 V power supply
 
 Just attach the Bone to the back of the LCD, making sure pin 1 of *P9* lines up with 
 pin 1 of +P9+ on the LCD. Apply a 5 V power supply, and the desktop will appear on 
-your LCD, as shown in :ref:`<capes_LCD7Desktop>`. 
+your LCD, as shown in :ref:`capes_LCD7Desktop`. 
 
 .. _capes_LCD7Desktop:
 
-Seven-inch LCD desktop
-
 .. figure:: figures/LCD7Desktop.png
     :align: center
     :alt: 7 inch LCD desktop
 
+    Seven-inch LCD desktop
+
 Attach a USB keyboard and mouse, and you have a portable Bone. 
 `Wireless keyboard and mouse combinations <https://www.adafruit.com/products/922>`_ 
 make a nice solution to avoid the need to add a USB hub.
 
-Discussion
-***********
-
 .. _capes_miniDisplay:
 
 Using a 128 x 128-Pixel LCD Cape
----------------------------------
+=================================
 
 Problem
-***********
+--------
 
 You want to use a small LCD to display things other than the desktop.
 
 Solution
-***********
+---------
 
-The http://bit.ly/1xd0r8p[MiniDisplay] is a 128 x 128 full-color LCD cape that just fits on the 
-Bone, as shown in :ref:`<capes_miniDisplay_fig>`. 
+The `MiniDisplay <http://bit.ly/1xd0r8p>`_ is a 128 x 128 full-color LCD cape that just fits on the 
+Bone, as shown in :ref:`capes_miniDisplay_fig`. 
 
 .. _capes_miniDisplay_fig:
 
-MiniDisplay 128 x 128-pixel LCD from CircuitCo
-
 .. figure:: figures/MiniDisplay-A1.jpg
     :align: center
     :alt: miniDisplay LCD
 
+    MiniDisplay 128 x 128-pixel LCD from CircuitCo
+
 To make this recipe, you will need:
 
-* MiniDisplay LCD cape (see :ref:`app misc<app_misc>`)
+* MiniDisplay LCD cape
 
 Attach to the Bone and apply power. Then run the following commands:
 
@@ -108,82 +107,84 @@ Attach to the Bone and apply power. Then run the following commands:
     # From http://elinux.org/CircuitCo:MiniDisplay_Cape
     # Datasheet:
     # https://www.crystalfontz.com/products/document/3277/ST7735_V2.1_20100505.pdf
-    bone$ <strong>wget http://elinux.org/images/e/e4/Minidisplay-example.tar.gz</strong>
-    bone$ <strong>tar zmxvf Minidisplay-example.tar.gz</strong>
-    bone$ <strong>cd minidisplay-example</strong>
-    bone$ <strong>make</strong>
-    bone$ <strong>./minidisplay-test</strong>
+    bone$ wget http://elinux.org/images/e/e4/Minidisplay-example.tar.gz
+    bone$ tar zmxvf Minidisplay-example.tar.gz
+    bone$ cd minidisplay-example
+    bone$ make
+    bone$ ./minidisplay-test
     Unable to initialize SPI: No such file or directory
     Aborted
 
 
-.. warning:: You might get a compiler warning, but the code should run fine.
+.. warning:: 
+    You might get a compiler warning, but the code should run fine.
 
 The MiniDisplay uses the Serial Peripheral Interface (SPI) interface, and it's not initialized. 
 The `manufacturer's website <http://bit.ly/1xd0r8p>`_ suggests enabling SPI0 by using the following commands:
 
-.. code-block:: bash
+.. code-block:: shell-session
 
-    bone$ <strong>export SLOTS=/sys/devices/bone_capemgr.*/slots</strong>
-    bone$ <strong>echo BB-SPIDEV0 &gt; $SLOTS</strong>
+    bone$ export SLOTS=/sys/devices/bone_capemgr.*/slots
+    bone$ echo BB-SPIDEV0 > $SLOTS
 
 
 Hmmm, something isn't working here. Here's how to see what happened:
 
-.. code-block:: bash
+.. callout::
+
+    .. code-block:: shell-session
     
-    bone$ <strong>dmesg | tail</strong>
-    [  625.334497] bone_capemgr.9: part_number 'BB-SPIDEV0', version 'N/A'
-    [  625.334673] bone_capemgr.9: slot #11: generic override
-    [  625.334720] bone_capemgr.9: bone: Using override eeprom data at slot 11
-    [  625.334769] bone_capemgr.9: slot #11: 'Override Board Name,00A0,Override \
-                Manuf,BB-SPIDEV0'
-    [  625.335026] bone_capemgr.9: slot #11: \Requesting part number/version based \
-                'BB-SPIDEV0-00A0.dtbo
-    [  625.335076] bone_capemgr.9: slot #11: Requesting firmware \
-                'BB-SPIDEV0-00A0.dtbo' \
-                for board-name 'Override Board Name', version '00A0'
-    [  625.335144] bone_capemgr.9: slot #11: dtbo 'BB-SPIDEV0-00A0.dtbo' loaded; \
-                converting to live tree
-    [  625.341842] bone_capemgr.9: slot #11: BB-SPIDEV0 conflict P9.21 \
-                (#10:bspwm_P9_21_b) <a class="co" id="capemgr_conflict_co" href="#capemgr_conflict" ><img src="callouts/1.png" alt="1"/></a>
-    [  625.351296] bone_capemgr.9: slot #11: Failed verification
-
-
-
-.. <dl class="calloutlist">
-..  <dt><a class="co" id="capemgr_conflict" href="#capemgr_conflict_co"><img src="callouts/1.png" alt="1"/></a></dt>
-..   <dd>Shows there is a conflict for pin <code>P9_21</code>: it's already configured for pulse width modulation (PWM).</dd>
-.. </dl>
+        bone$ dmesg | tail
+        [  625.334497] bone_capemgr.9: part_number 'BB-SPIDEV0', version 'N/A'
+        [  625.334673] bone_capemgr.9: slot #11: generic override
+        [  625.334720] bone_capemgr.9: bone: Using override eeprom data at slot 11
+        [  625.334769] bone_capemgr.9: slot #11: 'Override Board Name,00A0,Override \
+                    Manuf,BB-SPIDEV0'
+        [  625.335026] bone_capemgr.9: slot #11: \Requesting part number/version based \
+                    'BB-SPIDEV0-00A0.dtbo
+        [  625.335076] bone_capemgr.9: slot #11: Requesting firmware \
+                    'BB-SPIDEV0-00A0.dtbo' \
+                    for board-name 'Override Board Name', version '00A0'
+        [  625.335144] bone_capemgr.9: slot #11: dtbo 'BB-SPIDEV0-00A0.dtbo' loaded; \
+                    converting to live tree
+        [  625.341842] bone_capemgr.9: slot #11: BB-SPIDEV0 conflict P9.21 \
+                    (#10:bspwm_P9_21_b) # <1>
+        [  625.351296] bone_capemgr.9: slot #11: Failed verification
+
+    .. annotations::
+
+        <1> Shows there is a conflict for pin `P9_21`: it's already configured for pulse width modulation (PWM).
+
 
 Here's how to see what's already configured:
 
-.. code-block:: bash
 
-    bone$ <strong>cat $SLOTS</strong>
-    0: 54:PF--- 
-    1: 55:PF--- 
-    2: 56:PF--- 
-    3: 57:PF--- 
-    4: ff:P-O-L Bone-LT-eMMC-2G,00A0,Texas Instrument,BB-BONE-EMMC-2G
-    5: ff:P-O-L Bone-Black-HDMI,00A0,Texas Instrument,BB-BONELT-HDMI
-    7: ff:P-O-L Override Board Name,00A0,Override Manuf,bspm_P9_42_27
-    8: ff:P-O-L Override Board Name,00A0,Override Manuf,bspm_P9_41_27
-    9: ff:P-O-L Override Board Name,00A0,Override Manuf,am33xx_pwm
-    10: ff:P-O-L Override Board Name,00A0,Override Manuf,bspwm_P9_21_b <a class="co" id="capemgr_load_co" href="#capemgr_load"><img src="callouts/1.png" alt="1"/></a>
+.. callout::
+
+    .. code-block:: shell-session
+
+        bone$ cat $SLOTS
+        0: 54:PF--- 
+        1: 55:PF--- 
+        2: 56:PF--- 
+        3: 57:PF--- 
+        4: ff:P-O-L Bone-LT-eMMC-2G,00A0,Texas Instrument,BB-BONE-EMMC-2G
+        5: ff:P-O-L Bone-Black-HDMI,00A0,Texas Instrument,BB-BONELT-HDMI
+        7: ff:P-O-L Override Board Name,00A0,Override Manuf,bspm_P9_42_27
+        8: ff:P-O-L Override Board Name,00A0,Override Manuf,bspm_P9_41_27
+        9: ff:P-O-L Override Board Name,00A0,Override Manuf,am33xx_pwm
+        10: ff:P-O-L Override Board Name,00A0,Override Manuf,bspwm_P9_21_b # <1>
 
+    .. annotations::
 
-.. <dl class="calloutlist">
-..  <dt><a id="capemgr_load" href="#capemgr_load_co"><img src="callouts/1.png" alt="1"/></a></dt>
-..   <dd>You can see the eMMC, HDMI, and three PWMs are already using some of the pins. Slot 10 shows <code>P9_21</code> is in use by a PWM.</dd>
-.. </dl>
+        <1> You can see the eMMC, HDMI, and three PWMs are already using some of the pins. Slot 10 shows `P9_21` is in use by a PWM.
 
 You can unconfigure it by using the following commands:
 
 .. code-block:: bash
 
-    bone$ <strong>echo -10 &gt; $SLOTS</strong>
-    bone$ <strong>cat $SLOTS</strong>
+    bone$ echo -10 > $SLOTS
+    bone$ cat $SLOTS
     0: 54:PF--- 
     1: 55:PF--- 
     2: 56:PF--- 
@@ -194,71 +195,90 @@ You can unconfigure it by using the following commands:
     8: ff:P-O-L Override Board Name,00A0,Override Manuf,bspm_P9_41_27
     9: ff:P-O-L Override Board Name,00A0,Override Manuf,am33xx_pwm
 
-Now +P9_21+ is free for the MiniDisplay to use.
+Now *P9_21* is free for the MiniDisplay to use.
 
-.. note:: In future Bone images, all of the pins will already be allocated as part of the main device tree using runtime pinmux helpers and configured at runtime using the http://bit.ly/1EXLeP2[+config-pin+ utility]. This would eliminate the need for device tree overlays in most cases.
-====
+.. note:: 
+    In future Bone images, all of the pins will already be allocated as part of the main device 
+    tree using runtime pinmux helpers and configured at runtime using the `config-pin utility <http://bit.ly/1EXLeP2>`_. 
+    This would eliminate the need for device tree overlays in most cases.
 
 Now, configure it for the MiniDisplay and run a test:
 
 .. code-block:: bash
 
-    bone$ <strong>echo BB-SPIDEV0 &gt; $SLOTS</strong>
-    bone$ <strong>./minidisplay-test</strong>
+    bone$ echo BB-SPIDEV0 > $SLOTS
+    bone$ ./minidisplay-test
 
 
-You then see Boris, as shown in :ref:`<capes_miniDisplayBoris>`.
+You then see Boris, as shown in :ref:`capes_miniDisplayBoris`.
 
 .. _capes_miniDisplayBoris:
 
-.. note:: MiniDisplay showing Boris, :ref:`<capes_miniDisplayBoris>` was originally posted by David Anders at http://elinux.org/File:Minidisplay-boris.jpg under a `Creative Commons Attribution-ShareAlike 3.0 Unported License <http://creativecommons.org/licenses/by-sa/3.0/>`_.
+Mini display Boris
+==================
+
+.. note:: 
+    MiniDisplay showing Boris, :ref:`capes_miniDisplayBoris` was originally posted by David Anders at http://elinux.org/File:Minidisplay-boris.jpg 
+    under a `Creative Commons Attribution-ShareAlike 3.0 Unported License <http://creativecommons.org/licenses/by-sa/3.0/>`_.
 
 .. figure:: figures/miniDisplay_Boris.png
     :align: center
     :alt: miniDisplay LCD showing Boris
 
-Discussion
-***********
-
 Connecting Multiple Capes
------------------------------
+==========================
 
 Problem
-***********
+--------
 
 You want to use more than one cape at a time.
 
 Solution
-***********
+---------
 
 First, look at each cape that you want to stack mechanically. Are they all using stacking
-headers like the ones shown in :ref:`<capes_stacking_headers>`? No more than one should be using non-stacking headers.
+headers like the ones shown in :ref:`capes_stacking_headers`? No more than one should be using non-stacking headers.
 
 .. _capes_stacking_headers:
 
-Stacking headers
-
 .. figure:: figures/stacking_headers.JPG
     :align: center
     :alt: 
 
+    Stacking headers
+
 Note that larger LCD panels might provide expansion headers, such as the ones
-shown in :ref:`<capes_lcd_backside>`, rather than the stacking headers, and that those can also be used for adding
+shown in :ref:`capes_lcd_backside`, rather than the stacking headers, and that those can also be used for adding
 additional capes.
 
 .. _capes_lcd_backside:
 
-.. note:: Back side of LCD7 cape, :ref:`<capes_lcd_backside>` was originally posted by CircuitCo at http://elinux.org/File:BeagleBone-LCD-Backside.jpg under a `Creative Commons Attribution-ShareAlike 3.0 Unported License <http://creativecommons.org/licenses/by-sa/3.0/>`_.
+LCD Backside
+=============
+
+.. note:: 
+    Back side of LCD7 cape, :ref:`capes_lcd_backside` was originally posted by CircuitCo at http://elinux.org/File:BeagleBone-LCD-Backside.jpg under 
+    a `Creative Commons Attribution-ShareAlike 3.0 Unported License <http://creativecommons.org/licenses/by-sa/3.0/>`_.
+
+.. note:: #TODO# One of the 4D Systems LCD capes would make a better example for an LCD cape. The CircuitCo cape is no longer available.
 
 .. figure:: figures/LCD7back.png
     :align: center
     :alt: 
 
-Next, take a note of each pin utilized by each cape. The http://beaglebonecapes.com[BeagleBone Capes catalog] provides a graphical representation for the pin usage of most capes, as shown in :ref:`<Audio_cape_pins_fig>` for the Circuitco Audio Cape.
+Next, take a note of each pin utilized by each cape. The `BeagleBone Capes catalog <http://beaglebonecapes.com>`_ 
+provides a graphical representation for the pin usage of most capes, as shown in :ref:`Audio_cape_pins_fig` for the Circuitco Audio Cape.
+
+.. note:: #TODO# Bela would make a better example for an audio cape. The CircuitCo cape is no longer available.
 
 .. _Audio_cape_pins_fig:
 
-.. note:: Pins utilized by CircuitCo Audio Cape, :ref:`<Audio_cape_pins_fig>` was originally posted by Djackson at http://elinux.org/File:Audio_pins_revb.png under a `Creative Commons Attribution-ShareAlike 3.0 Unported License <http://creativecommons.org/licenses/by-sa/3.0/>`_.
+Audio cape pins
+===============
+
+.. note:: 
+    Pins utilized by CircuitCo Audio Cape, :ref:`Audio_cape_pins_fig` was originally posted by Djackson at http://elinux.org/File:Audio_pins_revb.png 
+    under a `Creative Commons Attribution-ShareAlike 3.0 Unported License <http://creativecommons.org/licenses/by-sa/3.0/>`_.
 
 .. figure:: figures/audioCape.png
     :align: center
@@ -267,48 +287,50 @@ Next, take a note of each pin utilized by each cape. The http://beaglebonecapes.
 In most cases, the same pin should never be used on two different capes, though in some cases, pins can be shared. Here are some exceptions:
 
 - GND 
-    - The ground (+GND+) pins should be shared between the capes, and there's no need to worry about consumed resources on those pins.
+    - The ground (*GND*) pins should be shared between the capes, and there's no need to worry about consumed resources on those pins.
 - VDD_3V3
-    - The 3.3 V power supply (+VDD_3V3+) pins can be shared by all capes to supply power, but the total combined consumption of all the capes should be less than 500 mA (250 mA per +VDD_3V3+ pin).
+    - The 3.3 V power supply (*VDD_3V3*) pins can be shared by all capes to supply power, but the total combined consumption of all the capes should be less than 500 mA (250 mA per *VDD_3V3* pin).
 - VDD_5V
-    - The 5.0 V power supply (+VDD_5V+) pins can be shared by all capes to supply power, but the total combined consumption of all the capes should be less than 2 A (1 A per +VDD_5V+ pin). It is possible for one, and only one, of the capes to _provide_ power to this pin rather than consume it, and it should provide at least 3 A to ensure proper system function. Note that when no voltage is applied to the DC connector, nor from a cape, these pins will not be powered, even if power is provided via USB.
+    - The 5.0 V power supply (*VDD_5V*) pins can be shared by all capes to supply power, but the total combined consumption of all the capes should be less than 2 A (1 A per +VD*_5V+ p*n). It is possible for one, and only one, of the capes to _provide_ power to this pin rather than consume it, and it should provide at least 3 A to ensure proper system function. Note that when no voltage is applied to the DC connector, nor from a cape, these pins will not be powered, even if power is provided via USB.
 - SYS_5V
-    - The regulated 5.0 V power supply (+SYS_5V+) pins can be shared by all capes to supply power, but the total combined consumption of all the capes should be less than 500 mA (250 mA per +SYS_5V+ pin).
+    - The regulated 5.0 V power supply (*SYS_5V*) pins can be shared by all capes to supply power, but the total combined consumption of all the capes should be less than 500 mA (250 mA per *SYS_5V* pin).
 - VADC and AGND
     - The ADC reference voltage pins can be shared by all capes.
 - I2C2_SCL and I2C2_SDA
-    - I^2^C is a shared bus, and the +I2C2_SCL+ and +I2C2_SDA+ pins default to having this bus enabled for use by cape expansion ID EEPROMs.
+    - |I2C| is a shared bus, and the *I2C2_SCL* and *I2C2_SDA* pins default to having this bus enabled for use by cape expansion ID EEPROMs.
 
-Discussion
-***********
+.. |I2C| replace:: I\ :sup:`2`\ C
 
 .. _capes_soldering:
 
 Moving from a Breadboard to a Protoboard
------------------------------------------
+=========================================
 
 Problem
-***********
+--------
 
 You have your circuit working fine on the breadboard, but you want a more reliable solution.
 
 Solution
-***********
+---------
 
 Solder your components to a protoboard. 
 
 To make this recipe, you will need:
 
-* Protoboard (see :ref:`<app_proto>`)
-* Soldering iron (see :ref:`app misc<app_misc>`)
+* Protoboard
+* Soldering iron
 * Your other components
 
 Many places make premade circuit boards that are laid out like the breadboard we have been using. 
-:ref:`<capes_beaglebread_fig>` shows the http://bit.ly/1HCwtB4[BeagleBone Breadboard], 
+:ref:`capes_beaglebread_fig` shows the `BeagleBone Breadboard <http://bit.ly/1HCwtB4>`_, 
 which is just one protoboard option.
 
 .. _capes_beaglebread_fig:
 
+Beaglebread
+============
+
 .. note:: 
     This was originally posted by William 
     Traynor at http://elinux.org/File:BeagleBone-Breadboard.jpg under a 
@@ -320,72 +342,66 @@ which is just one protoboard option.
 
 You just solder your parts on the protoboard as you had them on the breadboard.
 
-Discussion
-***********
-
 .. _capes_creating_prototype_schematic:
 
 Creating a Prototype Schematic
------------------------------
+==============================
 
 Problem
-***********
+--------
 
 You've wired up a circuit on a breadboard. How do you turn that prototype into a schematic others can read and 
 that you can import into other design tools?
 
 Solution
-***********
+---------
 
-In :ref:`<tips_fritzing>`, we introduced Fritzing as a useful tool for drawing block diagrams. Fritzing can also 
-do circuit schematics and printed-circuit layout. For example, :ref:`<capes_quickRobo_fig>` shows a block diagram 
+In :ref:`tips_fritzing`, we introduced Fritzing as a useful tool for drawing block diagrams. Fritzing can also 
+do circuit schematics and printed-circuit layout. For example, :ref:`capes_quickRobo_fig` shows a block diagram 
 for a simple robot controller (quickBot.fzz is the name of the Fritzing file used to create the diagram).
 
 .. _capes_quickRobo_fig:
 
-A simple robot controller diagram (quickBot.fzz)
-
 .. figure:: figures/quickBot_bb.png
     :align: center
     :alt: Simple robot diagram
 
-The controller has an H-bridge to drive two DC motors (:ref:`<motors_dcDirection>`), an IR range sensor, 
+    A simple robot controller diagram (quickBot.fzz)
+
+The controller has an H-bridge to drive two DC motors (:ref:`motors_dcDirection`), an IR range sensor, 
 and two headers for attaching analog encoders for the motors. Both the IR sensor and the encoders 
 have analog outputs that exceed 1.8 V, so each is run through a voltage divider (two resistors) to 
-scale the voltage to the correct range (see :ref:`<sensors_hc-sr04>` for a voltage divider example).
+scale the voltage to the correct range (see :ref:`sensors_hc-sr04` for a voltage divider example).
 
-:ref:`<capes_quickRobo_schemRaw>` shows the schematic automatically generated by Fritzing. 
+:ref:`capes_quickRobo_schemRaw` shows the schematic automatically generated by Fritzing. 
 It's a mess. It's up to you to fix it.
 
 .. _capes_quickRobo_schemRaw:
 
-Automatically generated schematic
-
 .. figure:: figures/quickBot_schemRaw.png
     :align: center
     :alt: Autogenerated schematic
 
-:ref:`<capes_quickRobo_schem>` shows my cleaned-up schematic. I did it by moving the parts around until it looked better.
+    Automatically generated schematic
 
-.. _capes_quickRobo_schem:
+:ref:`capes_quickRobo_schem` shows my cleaned-up schematic. I did it by moving the parts around until it looked better.
 
-Cleaned-up schematic
+.. _capes_quickRobo_schem:
 
 .. figure:: figures/quickBot_schem.png
     :align: center
     :alt: Cleaned up schematic
 
-Discussion
-***********
+    Cleaned-up schematic
 
 .. _capes_quickRobo_schemZoom:
 
-Zoomed-in schematic
-
 .. figure:: figures/quickBot_schemZoom.png
     :align: center
     :alt: Zoomed in schematic
 
+    Zoomed-in schematic
+
 You might find that you want to create your design in a more advanced design tool, 
 perhaps because it has the library components you desire, it integrates better with other tools 
 you are using, or it has some other feature (such as simulation) of which you'd like to take advantage.
@@ -393,384 +409,388 @@ you are using, or it has some other feature (such as simulation) of which you'd
 .. _capes_verify:
 
 Verifying Your Cape Design
------------------------------
+===========================
 
 Problem
-***********
+--------
 
 You've got a design. How do you quickly verify that it works?
 
 Solution
-***********
+---------
 
 To make this recipe, you will need:
 
-* An oscilloscope (see :ref:`app misc<app_misc>`)
+* An oscilloscope
 
 Break down your design into functional subcomponents and write tests for each. 
 Use components you already know are working, such as the onboard LEDs, to display 
-the test status with the code in :ref:`<capes_quickBot_motor_test_code>`.
+the test status with the code in :ref:`capes_quickBot_motor_test_code`.
 
 .. _capes_quickBot_motor_test_code:
 
 Testing the quickBot motors interface (quickBot_motor_test.js)
+==============================================================
+
+.. callout::
+
+    .. code-block:: javascript
+
+        #!/usr/bin/env node
+        var b = require('bonescript');
+        var M1_SPEED    = 'P9_16'; // <1>
+        var M1_FORWARD  = 'P8_15';
+        var M1_BACKWARD = 'P8_13';
+        var M2_SPEED    = 'P9_14';
+        var M2_FORWARD  = 'P8_9';
+        var M2_BACKWARD = 'P8_11';
+        var freq = 50; // <2>
+        var fast = 0.95;
+        var slow = 0.7;
+        var state = 0; // <3>
+
+        b.pinMode(M1_FORWARD, b.OUTPUT); // <4>
+        b.pinMode(M1_BACKWARD, b.OUTPUT);
+        b.pinMode(M2_FORWARD, b.OUTPUT);
+        b.pinMode(M2_BACKWARD, b.OUTPUT);
+        b.analogWrite(M1_SPEED, 0, freq); // <5>
+        b.analogWrite(M2_SPEED, 0, freq);
+
+        updateMotors(); // <6>
+
+        function updateMotors() {
+            //console.log("Setting state = " + state); // <7>
+            updateLEDs(state);
+            switch(state) { // <3>
+                case 0:
+                default:
+                    M1_set(0); // <8>
+                    M2_set(0);
+                    state = 1; // <3>
+                    break;
+                case 1:
+                    M1_set(slow);
+                    M2_set(slow);
+                    state = 2;
+                    break;
+                case 2:
+                    M1_set(slow);
+                    M2_set(-slow);
+                    state = 3;
+                    break;
+                case 3:
+                    M1_set(-slow);
+                    M2_set(slow);
+                    state = 4;
+                    break;
+                case 4:
+                    M1_set(fast);
+                    M2_set(fast);
+                    state = 0;
+                    break;
+            }
+            setTimeout(updateMotors, 2000); // <3>
+        }
 
-.. code-block:: bash
-
-    #!/usr/bin/env node
-    var b = require('bonescript');
-    var M1_SPEED    = 'P9_16'; <a class="co" id="co_hello_CO1-1_unique" href="#callout_hello_CO1-1_unique"><img src="callouts/1.png" alt="1"/></a>
-    var M1_FORWARD  = 'P8_15';
-    var M1_BACKWARD = 'P8_13';
-    var M2_SPEED    = 'P9_14';
-    var M2_FORWARD  = 'P8_9';
-    var M2_BACKWARD = 'P8_11';
-    var freq = 50; <a class="co" id="co_hello_CO1-2_unique" href="#callout_hello_CO1-2_unique"><img src="callouts/2.png" alt="2"/></a>
-    var fast = 0.95;
-    var slow = 0.7;
-    var state = 0;  <a class="co" id="co_hello_CO1-3_unique" href="#callout_hello_CO1-3_unique"><img src="callouts/3.png" alt="3"/></a>
-
-    b.pinMode(M1_FORWARD, b.OUTPUT); <a class="co" id="co_hello_CO1-4_unique" href="#callout_hello_CO1-4_unique"><img src="callouts/4.png" alt="4"/></a>
-    b.pinMode(M1_BACKWARD, b.OUTPUT);
-    b.pinMode(M2_FORWARD, b.OUTPUT);
-    b.pinMode(M2_BACKWARD, b.OUTPUT);
-    b.analogWrite(M1_SPEED, 0, freq); <a class="co" id="co_hello_CO1-5_unique" href="#callout_hello_CO1-5_unique"><img src="callouts/5.png" alt="5"/></a>
-    b.analogWrite(M2_SPEED, 0, freq);
-
-    updateMotors(); <a class="co" id="co_hello_CO1-6_unique" href="#callout_hello_CO1-6_unique"><img src="callouts/6.png" alt="6"/></a>
-
-    function updateMotors() { <img src="callouts/6.png" alt="6"/>
-        //console.log("Setting state = " + state); <a class="co" id="co_hello_CO1-7_unique" href="#callout_hello_CO1-7_unique"><img src="callouts/7.png" alt="7"/></a>
-        updateLEDs(state); <img src="callouts/7.png" alt="7"/>
-        switch(state) { <img src="callouts/3.png" alt="3"/>
+        function updateLEDs(state) { // <7>
+            switch(state) {
             case 0:
-            default:
-                M1_set(0); <a class="co" id="co_hello_CO1-8_unique" href="#callout_hello_CO1-8_unique"><img src="callouts/8.png" alt="8"/></a>
-                M2_set(0);
-                state = 1; <img src="callouts/3.png" alt="3"/>
+                b.digitalWrite("USR0", b.LOW);
+                b.digitalWrite("USR1", b.LOW);
+                b.digitalWrite("USR2", b.LOW);
+                b.digitalWrite("USR3", b.LOW);
                 break;
             case 1:
-                M1_set(slow);
-                M2_set(slow);
-                state = 2;
+                b.digitalWrite("USR0", b.HIGH);
+                b.digitalWrite("USR1", b.LOW);
+                b.digitalWrite("USR2", b.LOW);
+                b.digitalWrite("USR3", b.LOW);
                 break;
             case 2:
-                M1_set(slow);
-                M2_set(-slow);
-                state = 3;
+                b.digitalWrite("USR0", b.LOW);
+                b.digitalWrite("USR1", b.HIGH);
+                b.digitalWrite("USR2", b.LOW);
+                b.digitalWrite("USR3", b.LOW);
                 break;
             case 3:
-                M1_set(-slow);
-                M2_set(slow);
-                state = 4;
+                b.digitalWrite("USR0", b.LOW);
+                b.digitalWrite("USR1", b.LOW);
+                b.digitalWrite("USR2", b.HIGH);
+                b.digitalWrite("USR3", b.LOW);
                 break;
             case 4:
-                M1_set(fast);
-                M2_set(fast);
-                state = 0;
+                b.digitalWrite("USR0", b.LOW);
+                b.digitalWrite("USR1", b.LOW);
+                b.digitalWrite("USR2", b.LOW);
+                b.digitalWrite("USR3", b.HIGH);
                 break;
+            }
         }
-        setTimeout(updateMotors, 2000); <img src="callouts/3.png" alt="3"/>
-    }
-
-    function updateLEDs(state) { <img src="callouts/7.png" alt="7"/>
-        switch(state) {
-        case 0:
-            b.digitalWrite("USR0", b.LOW);
-            b.digitalWrite("USR1", b.LOW);
-            b.digitalWrite("USR2", b.LOW);
-            b.digitalWrite("USR3", b.LOW);
-            break;
-        case 1:
-            b.digitalWrite("USR0", b.HIGH);
-            b.digitalWrite("USR1", b.LOW);
-            b.digitalWrite("USR2", b.LOW);
-            b.digitalWrite("USR3", b.LOW);
-            break;
-        case 2:
-            b.digitalWrite("USR0", b.LOW);
-            b.digitalWrite("USR1", b.HIGH);
-            b.digitalWrite("USR2", b.LOW);
-            b.digitalWrite("USR3", b.LOW);
-            break;
-        case 3:
-            b.digitalWrite("USR0", b.LOW);
-            b.digitalWrite("USR1", b.LOW);
-            b.digitalWrite("USR2", b.HIGH);
-            b.digitalWrite("USR3", b.LOW);
-            break;
-        case 4:
-            b.digitalWrite("USR0", b.LOW);
-            b.digitalWrite("USR1", b.LOW);
-            b.digitalWrite("USR2", b.LOW);
-            b.digitalWrite("USR3", b.HIGH);
-            break;
-        }
-    }
-
-    function M1_set(speed) { <img src="callouts/8.png" alt="8"/>
-        speed = (speed &gt; 1) ? 1 : speed; <a class="co" id="co_hello_CO1-9_unique" href="#callout_hello_CO1-9_unique"><img src="callouts/9.png" alt="9"/></a>
-        speed = (speed &lt; -1) ? -1 : speed;
-        b.digitalWrite(M1_FORWARD, b.LOW);
-        b.digitalWrite(M1_BACKWARD, b.LOW);
-        if(speed &gt; 0) {
-            b.digitalWrite(M1_FORWARD, b.HIGH);
-        } else if(speed &lt; 0) {
-            b.digitalWrite(M1_BACKWARD, b.HIGH);
-        }
-        b.analogWrite(M1_SPEED, Math.abs(speed), freq); <a class="co" id="co_hello_CO1-10_unique" href="#callout_hello_CO1-10_unique"><img src="callouts/10.png" alt="10"/></a>
-    }
-
-    function M2_set(speed) {
-        speed = (speed &gt; 1) ? 1 : speed;
-        speed = (speed &lt; -1) ? -1 : speed;
-        b.digitalWrite(M2_FORWARD, b.LOW);
-        b.digitalWrite(M2_BACKWARD, b.LOW);
-        if(speed &gt; 0) {
-            b.digitalWrite(M2_FORWARD, b.HIGH);
-        } else if(speed &lt; 0) {
-            b.digitalWrite(M2_BACKWARD, b.HIGH);
+
+        function M1_set(speed) { // <8>
+            speed = (speed > 1) ? 1 : speed; // <9>
+            speed = (speed < -1) ? -1 : speed;
+            b.digitalWrite(M1_FORWARD, b.LOW);
+            b.digitalWrite(M1_BACKWARD, b.LOW);
+            if(speed > 0) {
+                b.digitalWrite(M1_FORWARD, b.HIGH);
+            } else if(speed < 0) {
+                b.digitalWrite(M1_BACKWARD, b.HIGH);
+            }
+            b.analogWrite(M1_SPEED, Math.abs(speed), freq); // <10>
         }
-        b.analogWrite(M2_SPEED, Math.abs(speed), freq);
-
-
-.. <dl class="calloutlist">
-.. <dt><a class="co" id="callout_hello_CO1-1_unique" href="#co_hello_CO1-1_unique"><img src="callouts/1.png" alt="1"/></a></dt>
-.. <dd><p>Define each pin as a variable. This makes it easy to change to another pin if you decide that is necessary.</p></dd>
-.. <dt><a class="co" id="callout_hello_CO1-2_unique" href="#co_hello_CO1-2_unique"><img src="callouts/2.png" alt="2"/></a></dt>
-.. <dd><p>Make other simple parameters variables. Again, this makes it easy to update them. When creating this test, I found that the PWM frequency to drive the motors needed to be relatively low to get over the kickback shown in <a data-type="xref" href="#quickBot_motor_kickback"/>. I also found that I needed to get up to about 70 percent duty cycle for my circuit to reliably start the motors turning.</p></dd>
-.. <dt><a class="co" id="callout_hello_CO1-3_unique" href="#co_hello_CO1-3_unique"><img src="callouts/3.png" alt="3"/></a></dt>
-.. <dd><p>Use a simple variable such as <code>state</code> to keep track of the test phase. This is used in a <code>switch</code> statement to jump to the code to configure for that test phase and updated after configuring for the current phase in order to select the next phase. Note that the next phase isn&#8217;t entered until after a two-second delay, as specified in the call to <code>setTimeout()</code>.</p></dd>
-.. <dt><a class="co" id="callout_hello_CO1-4_unique" href="#co_hello_CO1-4_unique"><img src="callouts/4.png" alt="4"/></a></dt>
-.. <dd><p>Perform the initial setup of all the pins.</p></dd>
-.. <dt><a class="co" id="callout_hello_CO1-5_unique" href="#co_hello_CO1-5_unique"><img src="callouts/5.png" alt="5"/></a></dt>
-.. <dd><p>The first time a PWM pin is used, it is configured with the update frequency. It is important to set this just once to the right frequency, because other PWM channels might use the same PWM controller, and attempts to reset the PWM frequency might fail. The <code>pinMode()</code> function doesn&#8217;t have an argument for providing the update frequency, so use the <code>analogWrite()</code> function, instead. You can review using the PWM in <a data-type="xref" href="#motors_servo"/>.</p></dd>
-.. <dt><a class="co" id="callout_hello_CO1-6_unique" href="#co_hello_CO1-6_unique"><img src="callouts/6.png" alt="6"/></a></dt>
-.. <dd><p><code>updateMotors()</code> is the test function for the motors and is defined after all the setup and initialization code. The code calls this function every two seconds using the <code>setTimeout()</code> JavaScript function. The first call is used to prime the loop.</p></dd>
-.. <dt><a class="co" id="callout_hello_CO1-7_unique" href="#co_hello_CO1-7_unique"><img src="callouts/7.png" alt="7"/></a></dt>
-.. <dd><p>The call to <code>console.log()</code> was initially here to observe the state transitions in the debug console, but it was replaced with the <code>updateLEDs()</code> call. Using the <code>USER</code> LEDs makes it possible to note the state transitions without having visibility of the debug console. <code>updateLEDs()</code> is defined later.</p></dd>
-.. <dt><a class="co" id="callout_hello_CO1-8_unique" href="#co_hello_CO1-8_unique"><img src="callouts/8.png" alt="8"/></a></dt>
-.. <dd><p>The <code>M1_set()</code> and <code>M2_set()</code> functions are defined near the bottom and do the work of configuring the motor drivers into a particular state. They take a single argument of <code>speed</code>, as defined between <code>-1</code> (maximum reverse), <code>0</code> (stop), and <code>1</code> (maximum forward).</p></dd>
-.. <dt><a class="co" id="callout_hello_CO1-9_unique" href="#co_hello_CO1-9_unique"><img src="callouts/9.png" alt="9"/></a></dt>
-.. <dd><p>Perform simple bounds checking to ensure that speed values are between <code>-1</code> and <code>1</code>.</p></dd>
-.. <dt><a class="co" id="callout_hello_CO1-10_unique" href="#co_hello_CO1-10_unique"><img src="callouts/10.png" alt="10"/></a></dt>
-.. <dd><p>The <code>analogWrite()</code> call uses the absolute value of <code>speed</code>, making any negative numbers a positive magnitude.</p></dd>
-.. </dl>
-
-++++
-====
 
-.. _quickBot_motor_kickback:
+        function M2_set(speed) {
+            speed = (speed > 1) ? 1 : speed;
+            speed = (speed < -1) ? -1 : speed;
+            b.digitalWrite(M2_FORWARD, b.LOW);
+            b.digitalWrite(M2_BACKWARD, b.LOW);
+            if(speed > 0) {
+                b.digitalWrite(M2_FORWARD, b.HIGH);
+            } else if(speed < 0) {
+                b.digitalWrite(M2_BACKWARD, b.HIGH);
+            }
+            b.analogWrite(M2_SPEED, Math.abs(speed), freq);
+
+
+   .. annotations::
+
+      <1> Define each pin as a variable. This makes it easy to change to another pin if you decide that is necessary.
+
+      <2> Make other simple parameters variables. Again, this makes it easy to update them. When creating this test, I found that the PWM frequency to drive the motors needed to be relatively low to get over the kickback shown in :ref:`quickBot_motor_kickback`. I also found that I needed to get up to about 70 percent duty cycle for my circuit to reliably start the motors turning.
+
+      <3> Use a simple variable such as `state` to keep track of the test phase. This is used in a `switch` statement to jump to the code to configure for that test phase and updated after configuring for the current phase in order to select the next phase. Note that the next phase isn't entered until after a two-second delay, as specified in the call to `setTimeout()`.
+
+      <4> Perform the initial setup of all the pins.
+
+      <5> The first time a PWM pin is used, it is configured with the update frequency. It is important to set this just once to the right frequency, because other PWM channels might use the same PWM controller, and attempts to reset the PWM frequency might fail. The `pinMode()` function doesn't have an argument for providing the update frequency, so use the `analogWrite()` function, instead. You can review using the PWM in :ref:`motors_servo`.
+
+      <6> `updateMotors()` is the test function for the motors and is defined after all the setup and initialization code. The code calls this function every two seconds using the `setTimeout()` JavaScript function. The first call is used to prime the loop.
+
+      <7> The call to `console.log()` was initially here to observe the state transitions in the debug console, but it was replaced with the `updateLEDs()` call. Using the `USER` LEDs makes it possible to note the state transitions without having visibility of the debug console. `updateLEDs()` is defined later.
+
+      <8> The `M1_set()` and `M2_set()` functions are defined near the bottom and do the work of configuring the motor drivers into a particular state. They take a single argument of `speed`, as defined between `-1` (maximum reverse), `0` (stop), and `1` (maximum forward).
+
+      <9> Perform simple bounds checking to ensure that speed values are between `-1` and `1`.
 
-quickBot motor test showing kickback
+      <10> The `analogWrite()` call uses the absolute value of `speed`, making any negative numbers a positive magnitude.
+
+.. _quickBot_motor_kickback:
 
 .. figure:: figures/quickBot_motor_kickback.JPG
     :align: center
     :alt: quickBot kicking back
 
-Using the solution in :ref:`<basics_autorun>`, you can untether from your coding station to test your 
-design at your lab workbench, as shown in :ref:`<quickBot_scope_fig>`.
+    quickBot motor test showing kickback
 
-.. _quickBot_scope_fig:
+Using the solution in :ref:`beaglebone-cookbook-basics`, you can untether from your coding station to test your 
+design at your lab workbench, as shown in :ref:`quickBot_scope_fig`.
 
-quickBot motor test code under scope
+.. _quickBot_scope_fig:
 
 .. figure:: figures/quickBot_motor_test_scope.JPG
     :align: center
     :alt: quickBot under scope
 
+    quickBot motor test code under scope
+
 SparkFun provides a `useful guide to using an oscilloscope <http://bit.ly/18AzuoR>`_. 
 You might want to check it out if you've never used an oscilloscope before.
 Looking at the stimulus you'll generate *before* you connect up your hardware will help you avoid surprises.
 
-Discussion
-***********
-
 .. _capes_layout:
 
 Laying Out Your Cape PCB
------------------------------
+=========================
 
 Problem
-***********
+--------
 
 You've generated a diagram and schematic for your circuit and verified that they are correct. How do you create a PCB?
 
 Solution
-***********
+---------
 
 If you've been using Fritzing, all you need to do is click the PCB tab, and there's your board. Well, almost. 
-Much like the schematic view shown in :ref:`<capes_creating_prototype_schematic>`, you need to do some layout work 
+Much like the schematic view shown in :ref:`capes_creating_prototype_schematic`, you need to do some layout work 
 before it's actually usable. I just moved the components around until they seemed to be grouped logically and 
 then clicked the Autoroute button.  After a minute or two of trying various layouts, Fritzing picked the one it 
-determined to be the best. :ref:`<capes_quickRobo_pcb>` shows the results.
+determined to be the best. :ref:`capes_quickRobo_pcb` shows the results.
 
 .. _capes_quickRobo_pcb:
 
-Simple robot PCB
-
 .. figure:: figures/quickBot_pcb.png
     :align: center
     :alt: Simple robot PCB
 
+    Simple robot PCB
+
 The `Fritzing pre-fab web page <http://bit.ly/1HCxokQ>`_ has a few helpful hints, including checking the widths 
 of all your traces and cleaning up any questionable routing created by the autorouter.
 
-Discussion
-***********
-
-The PCB in :ref:`<capes_quickRobo_pcb>` is a two-sided board. One color (or shade of gray in the printed book) 
+The PCB in :ref:`capes_quickRobo_pcb` is a two-sided board. One color (or shade of gray in the printed book) 
 represents traces on one side of the board, and the other color (or shade of gray) is the other side. Sometimes, 
 you'll see a trace come to a small circle and then change colors. This is where it is switching sides of the board 
 through what's called a _via_. One of the goals of PCB design is to minimize the number of vias.
 
-:ref:`<capes_quickRobo_pcb>` wasn't my first try or my last. My approach was to see what was needed to hook where and 
+:ref:`capes_quickRobo_pcb` wasn't my first try or my last. My approach was to see what was needed to hook where and 
 move the components around to make it easier for the autorouter to carry out its job.
 
 .. note:: 
     There are entire books and websites dedicated to creating PCB layouts. Look around and see 
-    what you can find. http://bit.ly/1wXTLki[SparkFun's guide to making PCBs] is particularly useful.
+    what you can find. `SparkFun's guide to making PCBs <http://bit.ly/1wXTLki>`_ is particularly useful.
 
 Customizing the Board Outline
-*******************************
+=============================
 
 One challenge that slipped my first pass review was the board outline. The part we installed in 
-:ref:`<tips_fritzing>` is meant to represent BeagleBone Black, not a cape, so the outline doesn't have 
-the notch cut out of it for the Ethernet pass:[<span class="keep-together">connector</span>]. 
-
-The http://bit.ly/1xd1aGV[Fritzing custom PCB outline page] describes how to create and use a custom 
-board outline. Although it is possible to use a drawing tool like https://inkscape.org/en/[Inkscape], 
-I chose to use http://bit.ly/1b2aZmn[the SVG _path_ command] directly to create :ref:`<capes_boardoutline_code>`.
-
-.. _capes_boardoutline_code:
-
-Outline SVG for BeagleBone cape (beaglebone_cape_boardoutline.svg)
-
-.. &lt;?xml version='1.0' encoding='UTF-8' standalone='no'?&gt;
-.. &lt;svg xmlns="http://www.w3.org/2000/svg" version="1.1"
-..     width="306"  height="193.5"&gt;&lt;!--<a class="co" id="co_capes_bo_1_co" href="#callout_capes_bo_1_co"><img src="callouts/1.png" alt="1"/></a>--&gt;
-..  &lt;g id="board"&gt;&lt;!--<a class="co" id="co_capes_bo_2_co" href="#callout_capes_bo_2_co"><img src="callouts/2.png" alt="2"/></a>--&gt;
-..   &lt;path fill="#338040" id="boardoutline" d="M 22.5,0 l 0,56 L 72,56
-..       q 5,0 5,5 l 0,53.5 q 0,5 -5,5 L 0,119.5 L 0,171 Q 0,193.5 22.5,193.5 
-..       l 238.5,0 c 24.85281,0 45,-20.14719 45,-45 L 306,45 
-..       C 306,20.14719 285.85281,0 261,0 z"/&gt;&lt;!--<a class="co" id="co_capes_bo_3_co" href="#callout_capes_bo_3_co"><img src="callouts/3.png" alt="3"/></a>--&gt;
-..  &lt;/g&gt;
-.. &lt;/svg&gt;
-
-.. ++++
-.. <dl class="calloutlist">
-.. <dt><a class="co" id="callout_capes_bo_1_co" href="#co_capes_bo_1_co"><img src="callouts/1.png" alt="1"/></a></dt><dd><p>This is a standard SVG header. The width and height are set based on the BeagleBone outline provided in the Adafruit library.</p></dd>
-.. <dt><a class="co" id="callout_capes_bo_2_co" href="#co_capes_bo_2_co"><img src="callouts/2.png" alt="2"/></a></dt><dd><p>Fritzing requires the element to be within a layer called <code>board</code>.</p></dd>
-.. <dt><a class="co" id="callout_capes_bo_3_co" href="#co_capes_bo_3_co"><img src="callouts/3.png" alt="3"/></a></dt><dd><p>Fritzing requires the color to be <code>#338040</code> and the layer to be called <code>boardoutline</code>. The units end up being 1/90 of an inch. That is, take the numbers in the SVG code and divide by 90 to get the numbers from the System Reference Manual.</p></dd>
-.. </dl>
-.. ++++
-
-The measurements are taken from the http://bit.ly/1C5rSa8[BeagleBone Black System Reference Manual], 
-as shown in :ref:`<capes_dimensions_fig>`.
+:ref:`tips_fritzing` is meant to represent BeagleBone Black, not a cape, so the outline doesn't have 
+the notch cut out of it for the Ethernet connector. 
 
-.. _capes_dimensions_fig:
+The `Fritzing custom PCB outline page <http://bit.ly/1xd1aGV>`_ describes how to create and use a custom 
+board outline. Although it is possible to use a drawing tool like `Inkscape <https://inkscape.org/en/>`_, 
+I chose to use `the SVG path command <http://bit.ly/1b2aZmn>`_ directly to create :ref:`capes_boardoutline_code`.
+
+.. callout::
+
+    .. code-block:: xml
+       :caption: Outline SVG for BeagleBone cape (beaglebone_cape_boardoutline.svg)
+       :name: capes_boardoutline_code
+       :linenos:
+    
+       <?xml version='1.0' encoding='UTF-8' standalone='no'?>
+       <svg xmlns="http://www.w3.org/2000/svg" version="1.1"
+        width="306"  height="193.5"> <!-- <1> -->
+        <g id="board"> <!-- <2> -->
+         <path fill="#338040" id="boardoutline" d="M 22.5,0 l 0,56 L 72,56
+          q 5,0 5,5 l 0,53.5 q 0,5 -5,5 L 0,119.5 L 0,171 Q 0,193.5 22.5,193.5 
+          l 238.5,0 c 24.85281,0 45,-20.14719 45,-45 L 306,45 
+          C 306,20.14719 285.85281,0 261,0 z"/> <!-- <3> -->
+        </g>
+       </svg>
+
+    .. annotations::
+
+       <1> This is a standard SVG header. The width and height are set based on the BeagleBone outline provided in the Adafruit library.
+
+       <2> Fritzing requires the element to be within a layer called `board`
 
-Cape dimensions
+       <3> Fritzing requires the color to be `#338040` and the layer to be called `boardoutline`. The units end up being 1/90 of an inch. That is, take the numbers in the SVG code and divide by 90 to get the numbers from the System Reference Manual.
+
+The measurements are taken from the :ref:`beagleboneblack-mechanical` section of the :ref:`BeagleBone Black System Reference Manual <beagleboneblack-home>`, as shown in :ref:`capes_dimensions_fig`.
+
+.. _capes_dimensions_fig:
 
 .. figure:: figures/srm_cape_dimensions.png
     :align: center
     :alt: Cape dimensions in SRM
 
-You can observe the rendered output of :ref:`<capes_boardoutline_code>` quickly by opening the file in a web browser, as shown in :ref:`<capes_boardoutline_fig>`.
+    Cape dimensions
 
-.. _capes_boardoutline_fig:
+You can observe the rendered output of :ref:`capes_boardoutline_code` quickly by opening the 
+file in a web browser, as shown in :ref:`capes_boardoutline_fig`.
 
-Rendered cape outline in Chrome
+.. _capes_boardoutline_fig:
 
 .. figure:: figures/beaglebone_cape_boardoutline.png
     :align: center
     :alt: Board outline in Chrome
 
-After you have the SVG outline, you'll need to select the PCB in Fritzing and select a custom shape in the Inspector box. Begin with the original background, as shown in :ref:`<capes_fritzing1>`.
+    Rendered cape outline in Chrome
 
-.. _capes_fritzing1:
+.. _tips_fritzing:
 
-PCB with original board, without notch for Ethernet connector
+Fritzing tips
+==============
+
+After you have the SVG outline, you'll need to select the PCB in Fritzing and select a custom shape in the 
+Inspector box. Begin with the original background, as shown in :ref:`capes_fritzing1`.
+
+.. _capes_fritzing1:
 
 .. figure:: figures/fritzing1.png
     :align: center
     :alt: PCB orginal baord
 
-Hide all but the Board Layer (:ref:`<capes_fritzing2>`).
+    PCB with original board, without notch for Ethernet connector
 
-.. _capes_fritzing2:
+Hide all but the Board Layer (:ref:`capes_fritzing2`).
 
-PCB with all but the Board Layer hidden
+.. _capes_fritzing2:
 
 .. figure:: figures/fritzing2.png
     :align: center
     :alt: PCB orginal baord hidden
 
-Select the PCB1 object and  then, in the Inspector pane, scroll down to the "load image file" button (:ref:`<capes_fritzing3>`).
+    PCB with all but the Board Layer hidden
 
-.. _capes_fritzing3:
+Select the PCB1 object and  then, in the Inspector pane, 
+scroll down to the "load image file" button (:ref:`capes_fritzing3`).
 
-Clicking :load image file: with PCB1 selected
+.. _capes_fritzing3:
 
 .. figure:: figures/fritzing3.png
     :align: center
     :alt: PCB load image file
 
-Navigate to the _beaglebone_cape_boardoutline.svg_ file created in :ref:`<capes_boardoutline_code>`, as shown in :ref:`<capes_fritzing4>`.
+    Clicking :load image file: with PCB1 selected
 
-.. _capes_fritzing4:
+Navigate to the *beaglebone_cape_boardoutline.svg* file created in 
+:ref:`capes_boardoutline_code`, as shown in :ref:`capes_fritzing4`.
 
-Selecting the .svg file
+.. _capes_fritzing4:
 
 .. figure:: figures/fritzing4.png
     :align: center
     :alt: PCB selecting svg file
 
-Turn on the other layers and line up the Board Layer with the rest of the PCB, as shown in :ref:`<capes_fritzing_inspector_fig>`.
+    Selecting the .svg file
 
-.. _capes_fritzing_inspector_fig:
+Turn on the other layers and line up the Board Layer with the rest of the 
+PCB, as shown in :ref:`capes_fritzing_inspector_fig`.
 
-PCB Inspector
+.. _capes_fritzing_inspector_fig:
 
 .. figure:: figures/Fritzing_Inspector.png
     :align: center
     :alt: PCB Inspector
 
-Now, you can save your file and send it off to be made, 
-as described in :ref:`<capes_prototype>`.
+    PCB Inspector
+
+Now, you can save your file and send it off to be made, as described in :ref:`capes_prototype`.
 
 PCB Design Alternatives
-*************************
+=======================
 
 There are other free PCB design programs. Here are a few.
 
 TO PROD: The headings I've marked as bold lines really should be subheadings of "PCB Design Alternatives," 
-but AsciiDoc won't let me go that deep (to the ==level). Is what I've done the best solution, 
+but AsciiDoc won't let me go that deep (to the level). Is what I've done the best solution, 
 or is there a way to create another heading level?
 
 *EAGLE*
 
-http://www.cadsoftusa.com/[Eagle PCB] and http://bit.ly/19cbwS0[DesignSpark PCB] are two popular 
+`Eagle PCB <http://www.cadsoftusa.com/>`_ and `DesignSpark PCB <http://bit.ly/19cbwS0>`_ are two popular 
 design programs. Many capes (and other PCBs) are designed with Eagle PCB, and the files are available. 
-For example, the MiniDisplay cape (:ref:`<capes_miniDisplay>`) has the schematic shown in :ref:`<capes_miniDisplay_schem>` 
-and PCB shown in :ref:`<capes_miniDisplay_pcb>`.
+For example, the MiniDisplay cape (:ref:`capes_miniDisplay`) has the schematic shown in :ref:`capes_miniDisplay_schem` 
+and PCB shown in :ref:`capes_miniDisplay_pcb`.
 
 .. _capes_miniDisplay_schem:
 
-Schematic for the MiniDisplay cape
-
 .. figure:: figures/miniDisplay_Cape_schem.png
     :align: center
     :alt: Schematic for miniDisplay
 
-.. _capes_miniDisplay_pcb:
+    Schematic for the MiniDisplay cape
 
-PCB for MiniDisplay cape
+.. _capes_miniDisplay_pcb:
 
 .. figure:: figures/miniDisplay_Cape_pcb.png
     :align: center
     :alt: PCB for miniDisplay
 
+    PCB for MiniDisplay cape
+
 A good starting point is to take the PCB layout for the MiniDisplay and edit it for your project. 
 The connectors for +P8+ and +P9+ are already in place and ready to go.
 
@@ -785,37 +805,36 @@ You can install Eagle PCB on your Linux host by using the following command:
 
 .. code-block:: bash
 
-    host$ <strong>sudo apt install eagle</strong>
+    host$ sudo apt install eagle
     Reading package lists... Done
     Building dependency tree       
     Reading state information... Done
     ...
     Setting up eagle (6.5.0-1) ...
     Processing triggers for libc-bin (2.19-0ubuntu6.4) ...
-    host$ <strong>eagle</strong>
+    host$ eagle
 
 
-You'll see the startup screen shown in :ref:`<capes_Eagle_License>`.
+You'll see the startup screen shown in :ref:`capes_Eagle_License`.
 
 .. _capes_Eagle_License:
 
-Eagle PCB startup screen
-
 .. figure:: figures/EagleLicense.png
     :align: center
     :alt: Eagle License
 
+    Eagle PCB startup screen
+
 Click "Run as Freeware." When my Eagle started, it said it needed to be updated. To update on Linux, 
-follow the link provided by Eagle and download _eagle-lin-7.2.0.run_ (or whatever version is current.). 
+follow the link provided by Eagle and download *eagle-lin-7.2.0.run* (or whatever version is current.). 
 Then run the following commands:
 
 .. code-block:: bash
 
-    host$ <strong>chmod +x eagle-lin-7.2.0.run</strong>
-    host$ <strong>./eagle-lin-7.2.0.run</strong>
-
+    host$ chmod +x eagle-lin-7.2.0.run
+    host$ ./eagle-lin-7.2.0.run
 
-A series of screens will appear. Click Next. When you see a screen that looks like :ref:`<capes_eagle3>`, note the Destination Directory.
+A series of screens will appear. Click Next. When you see a screen that looks like :ref:`capes_eagle3`, note the Destination Directory.
 
 .. _capes_eagle3:
 
@@ -826,36 +845,36 @@ A series of screens will appear. Click Next. When you see a screen that looks li
     The Eagle installation destination directory
 
 Continue clicking Next until it's installed. Then run the following commands 
-(where +~/eagle-7.2.0+ is the path you noted in :ref:`<capes_eagle3>`):
+(where *~/eagle-7.2.0* is the path you noted in :ref:`capes_eagle3`):
 
 .. code-block:: bash
 
-    host$ <strong>cd /usr/bin</strong>
-    host$ <strong>sudo rm eagle</strong>
-    host$ <strong>sudo ln -s ~/eagle-7.2.0/bin/eagle .</strong>
-    host$ <strong>cd</strong>
-    host$ <strong>eagle</strong>
+    host$ cd /usr/bin
+    host$ sudo rm eagle
+    host$ sudo ln -s ~/eagle-7.2.0/bin/eagle .
+    host$ cd
+    host$ eagle
 
 
-The +ls+ command links +eagle+ in */usr/bin*, so you can run +eagle+ from any directory. 
-After +eagle+ starts, you'll see the start screen shown in :ref:`<capes_eagle7>`.
+The *ls* command links *eagle* in */usr/bin*, so you can run +eagle+ from any directory. 
+After *eagle* starts, you'll see the start screen shown in :ref:`capes_eagle7`.
 
 .. _capes_eagle7:
 
-The Eagle start screen
-
 .. figure:: figures/eagle7.png
     :align: center
     :alt: Eagle start screen
 
+    The Eagle start screen
+
 Ensure that the correct version number appears.
 
-If you are moving a design from Fritzing to Eagle, see :ref:`<capes_schematic_migration>` 
+If you are moving a design from Fritzing to Eagle, see :ref:`capes_schematic_migration` 
 for tips on converting from one to the other.
 
 *DesignSpark PCB*
 
-The free `DesignSpark PCB <http://bit.ly/19cbwS0>` doesn't have the same limitations as Eagle PCB, 
+The free `DesignSpark PCB <http://bit.ly/19cbwS0>`_ doesn't have the same limitations as Eagle PCB, 
 but it runs only on Windows. Also, it doesn't seem to have the following of Eagle at this time.
 
 .. _capes_upverter:
@@ -863,50 +882,50 @@ but it runs only on Windows. Also, it doesn't seem to have the following of Eagl
 *Upverter*
 
 In addition to free solutions you run on your desktop, you can also work with a browser-based 
-tool called https://upverter.com/[Upverter]. With Upverter, you can collaborate easily, editing 
+tool called `Upverter <https://upverter.com/>`_. With Upverter, you can collaborate easily, editing 
 your designs from anywhere on the Internet. It also provides many conversion options and a PCB fabrication service.
 
 .. note:: 
-    Don't confuse Upverter with Upconverter (:ref:`<capes_schematic_migration>`). 
+    Don't confuse Upverter with Upconverter (:ref:`capes_schematic_migration`). 
     Though their names differ by only three letters, they differ greatly in what they do.
 
 .. _capes_kicad:
 
-*Kicad*
+Kicad
+=======
 
-Unlike the previously mentioned free (no-cost) solutions, `Kicad <http://bit.ly/1b2bnBg >`_
-is open source and provides some features beyond those of Fritzing. Notably, `CircuitHub <http://circuithub.com/>`_ 
-(discussed in :ref:`<capes_production>`) provides support for uploading Kicad designs.
+Unlike the previously mentioned free (no-cost) solutions, `Kicad <http://bit.ly/1b2bnBg>`_
+is open source and provides some features beyond those of Fritzing. Notably, `CircuitHub site <http://circuithub.com/>`_ 
+(discussed in :ref:`capes_production`) provides support for uploading Kicad designs.
 
 .. _capes_schematic_migration:
 
 Migrating a Fritzing Schematic to Another Tool
------------------------------------------------
+===============================================
 
 Problem
-***********
+--------
 
 You created your schematic in Fritzing, but it doesn't integrate with everything you need. 
 How can you move the schematic to another tool?
 
 Solution
-***********
-
+---------
 
 Use the `Upverter schematic-file-converter <http://bit.ly/1wXUkdM>`_ Python script. For example, suppose that you want 
-to convert the Fritzing file for the diagram shown in :ref:`<capes_quickRobo_fig>`. First, install Upverter.
+to convert the Fritzing file for the diagram shown in :ref:`capes_quickRobo_fig`. First, install Upverter.
 
 I found it necessary to install +libfreetype6+ and +freetype-py+ onto my system, but you might not need this first step:
 
 .. code-block:: bash
 
-    host$ <strong>sudo apt install libfreetype6</strong>
+    host$ sudo apt install libfreetype6
     Reading package lists... Done
     Building dependency tree       
     Reading state information... Done
     libfreetype6 is already the newest version.
     0 upgraded, 0 newly installed, 0 to remove and 154 not upgraded.
-    host$ <strong>sudo pip install freetype-py</strong>
+    host$ sudo pip install freetype-py
     Downloading/unpacking freetype-py
     Running setup.py egg_info for package freetype-py
 
@@ -921,11 +940,11 @@ I found it necessary to install +libfreetype6+ and +freetype-py+ onto my system,
     All these commands are being run on the Linux-based host computer, as shown by the +host$+ prompt. 
     Log in as a normal user, not +root+.
 
-Now, install the +schematic-file-converter+ tool:
+Now, install the ``schematic-file-converter`` tool:
 
 .. code-block:: bash
 
-    host$ <strong>git clone git@github.com:upverter/schematic-file-converter.git</strong>
+    host$ git clone git@github.com:upverter/schematic-file-converter.git
     Cloning into 'schematic-file-converter'...
     remote: Counting objects: 22251, done.
     remote: Total 22251 (delta 0), reused 0 (delta 0)
@@ -933,8 +952,8 @@ Now, install the +schematic-file-converter+ tool:
     Resolving deltas: 100% (14761/14761), done.
     Checking connectivity... done.
     Checking out files: 100% (16880/16880), done.
-    host$ <strong>cd schematic-file-converter</strong>
-    host$ <strong>sudo python setup.py install</strong>
+    host$ cd schematic-file-converter
+    host$ sudo python setup.py install
     .
     .
     .
@@ -945,8 +964,8 @@ Now, install the +schematic-file-converter+ tool:
     Installed /usr/local/lib/python2.7/dist-packages/python_upconvert-0.8.9-py2.7.egg
     Processing dependencies for python-upconvert==0.8.9
     Finished processing dependencies for python-upconvert==0.8.9
-    host$ <strong>cd ..</strong>
-    host$ <strong>python -m upconvert.upconverter -h</strong>
+    host$ cd ..
+    host$ python -m upconvert.upconverter -h
     usage: upconverter.py [-h] [-i INPUT] [-f TYPE] [-o OUTPUT] [-t TYPE]
                         [-s SYMDIRS [SYMDIRS ...]] [--unsupported]
                         [--raise-errors] [--profile] [-v] [--formats]
@@ -1000,35 +1019,32 @@ At the time of this writing, Upverter suppports the following file types:
     | netlist (csv)  | out only                |
     +----------------+-------------------------+
 
-After Upverter is installed, run the file (_quickBot.fzz_) that generated :ref:`<capes_quickRobo_fig>` through Upverter:
+After Upverter is installed, run the file (``quickBot.fzz``) that generated :ref:`capes_quickRobo_fig` through Upverter:
 
 .. code-block:: bash
 
-    host$ <strong>python -m upconvert.upconverter -i quickBot.fzz \
-    -f fritzing -o quickBot-eaglexml.sch -t eaglexml --unsupported</strong> 
+    host$ python -m upconvert.upconverter -i quickBot.fzz \
+    -f fritzing -o quickBot-eaglexml.sch -t eaglexml --unsupported 
     WARNING: RUNNING UNSUPPORTED VERSION OF PYTHON (2.7 > 2.6)
     DEBUG:main:parsing quickBot.fzz in format fritzing
-    host$ <strong>ls -l</strong>
+    host$ ls -l
     total 188
     -rw-rw-r-- 1 ubuntu ubuntu  63914 Nov 25 19:47 quickBot-eaglexml.sch
     -rw-r--r-- 1 ubuntu ubuntu 122193 Nov 25 19:43 quickBot.fzz
     drwxrwxr-x 9 ubuntu ubuntu   4096 Nov 25 19:42 schematic-file-converter
 
 
-:ref:`<caps_eagle>` shows the output of the conversion.
+:ref:`caps_eagle` shows the output of the conversion.
 
 .. _caps_eagle:
 
-Output of Upverter conversion
-
 .. figure:: figures/quickBot_eaglexml.png
     :align: center
     :alt: Converter Output
 
-No one said it would be pretty!
+    Output of Upverter conversion
 
-Discussion
-***********
+No one said it would be pretty!
 
 I found that Eagle was more generous at reading in the +eaglexml+ format than the +eagle+ format. 
 This also made it easier to hand-edit any translation issues.
@@ -1036,37 +1052,39 @@ This also made it easier to hand-edit any translation issues.
 .. _capes_prototype:
 
 Producing a Prototype
------------------------------
+======================
 
 Problem
-***********
+--------
 
 You have your PCB all designed. How do you get it made?
 
 Solution
-***********
+---------
 
 To make this recipe, you will need:
 
-* A completed design (see :ref:`<capes_layout>`)
-* Soldering iron (see :ref:`app misc<app_misc>`)
-* Oscilloscope (see :ref:`app misc<app_misc>`)
-* Multimeter (see :ref:`app misc<app_misc>`)
+* A completed design
+* Soldering iron
+* Oscilloscope
+* Multimeter
 * Your other components
 
-Upload your design to http://oshpark.com[OSH Park] and order a few boards. :ref:`<capes_oshpark_share>` 
-shows a resulting http://bit.ly/1MtlzAp[shared project page for the quickBot cape] created in 
-:ref:`<capes_layout>`. We'll proceed to break down how this design was uploaded and shared to enable ordering fabricated PCBs.
+Upload your design to `OSH Park <http://oshpark.com>` and order a few boards. :ref:`capes_oshpark_share` shows a resulting 
+`shared project page for the quickBot cape <http://bit.ly/1MtlzAp>`_ created in :ref:`capes_layout`. We'll proceed to 
+break down how this design was uploaded and shared to enable ordering fabricated PCBs.
 
 .. _capes_oshpark_share:
 
-The OSH Park QuickBot Cape shared project page
-
 .. figure:: figures/quickBot_oshpark_share.png
     :align: center
     :alt: 
 
-Within Fritzing, click the menu next to "Export for PCB" and choose "Extended Gerber," as shown in :ref:`<capes_fritzing_export_fig>`. You'll need to choose a directory in which to save them and then compress them all into a http://bit.ly/1Br5lEh[Zip file]. The http://bit.ly/1B4GqRU[WikiHow article on creating Zip files] might be helpful if you aren't very experienced at making these.
+    The OSH Park QuickBot Cape shared project page
+
+Within Fritzing, click the menu next to "Export for PCB" and choose "Extended Gerber," as shown in :ref:`capes_fritzing_export_fig`. 
+You'll need to choose a directory in which to save them and then compress them all into a `Zip file <http://bit.ly/1Br5lEh>`_. 
+The `WikiHow article on creating Zip files <http://bit.ly/1B4GqRU>`_ might be helpful if you aren't very experienced at making these.
 
 .. _capes_fritzing_export_fig:
 
@@ -1076,9 +1094,16 @@ Within Fritzing, click the menu next to "Export for PCB" and choose "Extended Ge
 
     Choosing "Extended Gerber" in Fritzing
 
-Things on the `OSH Park website <http://oshpark.com>`_ are reasonably self-explanatory. You'll need to create an account and upload the Zip file containing the http://bit.ly/1B4GzEZ[Gerber files] you created. If you are a cautious person, you might choose to examine the Gerber files with a Gerber file viewer first. The http://bit.ly/18bUgeA[Fritzing fabrication FAQ] offers several suggestions, including http://gerbv.sourceforge.net/[gerbv] for Windows and Linux users.
+Things on the `OSH Park website <http://oshpark.com>`_ are reasonably self-explanatory. You'll need to create an account and 
+upload the Zip file containing the `Gerber files <http://bit.ly/1B4GzEZ>`_ you created. If you are a cautious person, 
+you might choose to examine the Gerber files with a Gerber file viewer first. The `Fritzing fabrication FAQ <http://bit.ly/18bUgeA>`_ 
+offers several suggestions, including `gerbv <http://gerbv.sourceforge.net/>`_ for Windows and Linux users.
 
-When your upload is complete, you'll be given a quote, shown images for review, and presented with options for accepting and ordering. After you have accepted the design, your https://oshpark.com/users/current[list of accepted designs] will also include the option of enabling sharing of your designs so that others can order a PCB, as well. If you are looking to make some money on your design, you'll want to go another route, like the one described in :ref:`<capes_production>`. :ref:`<capes_quickbot_pcb>` shows the resulting PCB that arrives in the mail.
+When your upload is complete, you'll be given a quote, shown images for review, and presented with options for accepting 
+and ordering. After you have accepted the design, your `list of accepted designs <https://oshpark.com/users/current>`_ 
+will also include the option of enabling sharing of your designs so that others can order a PCB, as well. If you are 
+looking to make some money on your design, you'll want to go another route, like the one described in :ref:`capes_production`. 
+:ref:`capes_quickbot_pcb` shows the resulting PCB that arrives in the mail.
 
 .. _capes_quickbot_pcb:
 
@@ -1088,13 +1113,13 @@ When your upload is complete, you'll be given a quote, shown images for review,
 
     QuickBot PCB
 
-Now is a good time to ensure that you have all of your components and a soldering station set up as in :ref:`<capes_soldering>`, as well as an oscilloscope, as used in :ref:`<capes_verify>`.
+Now is a good time to ensure that you have all of your components and a soldering station set up as in :ref:`capes_soldering`, as well as an oscilloscope, as used in :ref:`capes_verify`.
 
-When you get your board, it is often informative to "buzz out" a few connections by using a multimeter. If you've never used a multimeter before, the http://bit.ly/18bUgeA[SparkFun] or http://bit.ly/1Br5Xtv[Adafruit] tutorials might be helpful. Set your meter to continuity testing mode and probe between points where the headers are and where they should be connecting to your components. This would be more difficult and less accurate after you solder down your components, so it is a good idea to keep a bare board around just for this purpose.
+When you get your board, it is often informative to "buzz out" a few connections by using a multimeter. If you've never used a multimeter before, the `SparkFun <http://bit.ly/18bUgeA>`_ or `Adafruit <http://bit.ly/1Br5Xtv>`_ tutorials might be helpful. Set your meter to continuity testing mode and probe between points where the headers are and where they should be connecting to your components. This would be more difficult and less accurate after you solder down your components, so it is a good idea to keep a bare board around just for this purpose.
 
 You'll also want to examine your board mechanically before soldering parts down. You don't want to waste components on a PCB that might need to be altered or replaced.
 
-When you begin assembling your board, it is advisable to assemble it in functional subsections, if possible, to help narrow down any potential issues. :ref:`<capes_motors_soldered>` shows the motor portion wired up and running the test in :ref:`<capes_quickBot_motor_test_code>`.
+When you begin assembling your board, it is advisable to assemble it in functional subsections, if possible, to help narrow down any potential issues. :ref:`capes_motors_soldered` shows the motor portion wired up and running the test in :ref:`capes_quickBot_motor_test_code`.
 
 .. _capes_motors_soldered:
 
@@ -1108,42 +1133,36 @@ Continue assembling and testing your board until you are happy. If you find issu
 choose to cut traces and use point-to-point wiring to resolve your issues before placing an 
 order for a new PCB. Better right the second time than the third!
 
-Discussion
-***********
-
 Creating Contents for Your Cape Configuration EEPROM
-------------------------------------------------------
+=====================================================
 
 Problem
-***********
+--------
 
 Your cape is ready to go, and you want it 
 to automatically initialize when the Bone boots up.
 
 Solution
-***********
+---------
 
-Complete capes have an I^2^C EEPROM on board that contains configuration information that is read at boot time. 
-`Adventures in BeagleBone Cape EEPROMs <http://bit.ly/1Fb64uF>` gives a helpful description of two methods for 
+Complete capes have an |I2C| EEPROM on board that contains configuration information that is read at boot time. 
+`Adventures in BeagleBone Cape EEPROMs <http://bit.ly/1Fb64uF>`_ gives a helpful description of two methods for 
 programming the EEPROM.  `How to Roll your own BeagleBone Capes <http://bit.ly/1E5M7RJ>`_ is a good four-part 
 series on creating a cape, including how to wire and program the EEPROM.
 
-Discussion
-***********
-
 .. _capes_production:
 
 Putting Your Cape Design into Production
------------------------------------------
+=========================================
 
 Problem
-***********
+--------
 
 You want to share your cape with others. 
 How do you scale up?
 
 Solution
-***********
+---------
 
 `CircuitHub <https://circuithub.com/>`_ offers a great tool to get a quick quote on assembled PCBs. 
 To make things simple, I downloaded the `CircuitCo MiniDisplay Cape Eagle design materials <http://bit.ly/1C5uvJc>`_
@@ -1152,35 +1171,32 @@ and uploaded them to CircuitHub.
 After the design is uploaded, you'll need to review the parts to verify that CircuitHub has or 
 can order the right ones. Find the parts in the catalog by changing the text in the search box 
 and clicking the magnifying glass. When you've found a suitable match, select it to confirm 
-its use in your design, as shown in :ref:`<capes_circuithub_parts>`.
+its use in your design, as shown in :ref:`capes_circuithub_parts`.
 
 .. _capes_circuithub_parts:
 
-CircuitHub part matching
-
 .. figure:: figures/circuithub_part_matching.png
     :align: center
     :alt: 
 
-When you've selected all of your parts, a quote tool appears at the bottom of the page, 
-as shown in :ref:`<capes_circuithub_quote>`.
+    CircuitHub part matching
 
-.. _capes_circuithub_quote:
+When you've selected all of your parts, a quote tool appears at the bottom of the page, as shown in :ref:`capes_circuithub_quote`.
 
-CircuitHub quote generation
+.. _capes_circuithub_quote:
 
 .. figure:: figures/circuithub_quote.png
     :align: center
     :alt: 
 
-Checking out the pricing on the MiniDisplay Cape (without including the LCD itself) in :ref:`<capes_circuithub_pricing_table>`, 
+    CircuitHub quote generation
+
+Checking out the pricing on the MiniDisplay Cape (without including the LCD itself) in :ref:`capes_circuithub_pricing_table`, 
 you can get a quick idea of how increased volume can dramatically impact the per-unit costs.
 
 .. _capes_circuithub_pricing_table:
 
-CircuitHub price examples (all prices USD)
-
-.. table::
+.. table:: CircuitHub price examples (all prices USD)
 
     +-----------+----------+---------+------------+------------+-------------+
     | Quantity  | 1        | 10      | 100        | 1000       | 10,000      |
@@ -1197,13 +1213,11 @@ CircuitHub price examples (all prices USD)
     +-----------+----------+---------+------------+------------+-------------+
 
 Checking the `Crystalfontz web page for the LCD <http://bit.ly/1GF6xqE>`_, 
-you can find the prices for the LCDs as well, as shown in :ref:`<capes_lcd_pricing_table>`.
+you can find the prices for the LCDs as well, as shown in :ref:`capes_lcd_pricing_table`.
 
 .. _capes_lcd_pricing_table:
 
-LCD pricing (USD)
-
-.. table::
+.. table:: LCD pricing (USD)
 
     +-----------+---------+--------+----------+------------+-------------+
     | Quantity  | 1       | 10     | 100      | 1000       | 10,000      |
@@ -1219,20 +1233,10 @@ can choose how much markup you need to be paid for your work and launch the camp
 Money is only collected if and when the desired target quantity is reached, so there's no risk that 
 the boards will cost too much to be affordable. This is a great way to cost-effectively launch your boards to market!
 
-Discussion
-***********
-
 There's no real substitute for getting to know your contract manufacturer, its capabilities, 
 communication style, strengths, and weaknesses. Look around your town to see if anyone is 
 doing this type of work and see if they'll give you a tour.
 
-.. note:: ?
-// To DO, fix this
-
-Don't confuse CircuitHub and CircuitCo. CircuitCo is the official contract manufacturer of 
-BeagleBoard.org and not the same company as CircuitHub, the online contract manufacturing 
-service. CircuitCo would be an excellent choice for you to consider to perform your contract 
-manufacturing, but it doesn't offer an online quote service at this point, so it isn't as easy 
-to include details on how to engage with it in this book.
-
+.. note::
 
+   Don't confuse CircuitHub and CircuitCo. CircuitCo is closed.
diff --git a/books/beaglebone-cookbook/09capes/code/quickBot_motor_test.js b/books/beaglebone-cookbook/09capes/code/quickBot_motor_test.js
deleted file mode 100755
index ed6435b3c155b30d883a1a735e2387c2e60262c3..0000000000000000000000000000000000000000
--- a/books/beaglebone-cookbook/09capes/code/quickBot_motor_test.js
+++ /dev/null
@@ -1,116 +0,0 @@
-#!/usr/bin/env node
-var b = require('bonescript');
-var M1_SPEED    = 'P9_16';                          // <1>
-var M1_FORWARD  = 'P8_15';
-var M1_BACKWARD = 'P8_13';
-var M2_SPEED    = 'P9_14';
-var M2_FORWARD  = 'P8_9';
-var M2_BACKWARD = 'P8_11';
-var freq = 50;                                      // <2>
-var fast = 0.95;
-var slow = 0.7;
-var state = 0;                                      // <3>
-
-b.pinMode(M1_FORWARD, b.OUTPUT);                    // <4>
-b.pinMode(M1_BACKWARD, b.OUTPUT);
-b.pinMode(M2_FORWARD, b.OUTPUT);
-b.pinMode(M2_BACKWARD, b.OUTPUT);
-b.analogWrite(M1_SPEED, 0, freq);                   // <5>
-b.analogWrite(M2_SPEED, 0, freq);
-
-updateMotors();                                     // <6>
-
-function updateMotors() {                           // <6>
-    //console.log("Setting state = " + state);      // <7>
-    updateLEDs(state);                              // <7>
-    switch(state) {                                 // <3>
-        case 0:
-        default:
-            M1_set(0);                              // <8>
-            M2_set(0);
-            state = 1;                              // <3>
-            break;
-        case 1:
-            M1_set(slow);
-            M2_set(slow);
-            state = 2;
-            break;
-        case 2:
-            M1_set(slow);
-            M2_set(-slow);
-            state = 3;
-            break;
-        case 3:
-            M1_set(-slow);
-            M2_set(slow);
-            state = 4;
-            break;
-        case 4:
-            M1_set(fast);
-            M2_set(fast);
-            state = 0;
-            break;
-    }
-    setTimeout(updateMotors, 2000);                 // <3>
-}
-
-function updateLEDs(state) {                        // <7>
-    switch(state) {
-    case 0:
-        b.digitalWrite("USR0", b.LOW);
-        b.digitalWrite("USR1", b.LOW);
-        b.digitalWrite("USR2", b.LOW);
-        b.digitalWrite("USR3", b.LOW);
-        break;
-    case 1:
-        b.digitalWrite("USR0", b.HIGH);
-        b.digitalWrite("USR1", b.LOW);
-        b.digitalWrite("USR2", b.LOW);
-        b.digitalWrite("USR3", b.LOW);
-        break;
-    case 2:
-        b.digitalWrite("USR0", b.LOW);
-        b.digitalWrite("USR1", b.HIGH);
-        b.digitalWrite("USR2", b.LOW);
-        b.digitalWrite("USR3", b.LOW);
-        break;
-    case 3:
-        b.digitalWrite("USR0", b.LOW);
-        b.digitalWrite("USR1", b.LOW);
-        b.digitalWrite("USR2", b.HIGH);
-        b.digitalWrite("USR3", b.LOW);
-        break;
-    case 4:
-        b.digitalWrite("USR0", b.LOW);
-        b.digitalWrite("USR1", b.LOW);
-        b.digitalWrite("USR2", b.LOW);
-        b.digitalWrite("USR3", b.HIGH);
-        break;
-    }
-}
-
-function M1_set(speed) {                            // <8>
-    speed = (speed > 1) ? 1 : speed;                // <9>
-    speed = (speed < -1) ? -1 : speed;
-    b.digitalWrite(M1_FORWARD, b.LOW);
-    b.digitalWrite(M1_BACKWARD, b.LOW);
-    if(speed > 0) {
-        b.digitalWrite(M1_FORWARD, b.HIGH);
-    } else if(speed < 0) {
-        b.digitalWrite(M1_BACKWARD, b.HIGH);
-    }
-    b.analogWrite(M1_SPEED, Math.abs(speed), freq); // <10>
-}
-
-function M2_set(speed) {
-    speed = (speed > 1) ? 1 : speed;
-    speed = (speed < -1) ? -1 : speed;
-    b.digitalWrite(M2_FORWARD, b.LOW);
-    b.digitalWrite(M2_BACKWARD, b.LOW);
-    if(speed > 0) {
-        b.digitalWrite(M2_FORWARD, b.HIGH);
-    } else if(speed < 0) {
-        b.digitalWrite(M2_BACKWARD, b.HIGH);
-    }
-    b.analogWrite(M2_SPEED, Math.abs(speed), freq);
-}
diff --git a/books/beaglebone-cookbook/10parts/parts.rst b/books/beaglebone-cookbook/10parts/parts.rst
index 2e6e6faf9656705176598c701b18a1f84b0114b5..a952cf1dd467a1ef4cdc796db5467581469e7492 100644
--- a/books/beaglebone-cookbook/10parts/parts.rst
+++ b/books/beaglebone-cookbook/10parts/parts.rst
@@ -3,18 +3,10 @@
 Parts and Suppliers
 ####################
 
-.. note::
-   #TODO#: (Mark) Do we really need this? (Jason) Yeah, I think it is helpful.
-
-Parts
-----------
-
 The following tables list where you can find the parts used in this book. 
 We have listed only one or two sources here, but you can often find a given part in many places.
 
-United States suppliers
-
-.. table::
+.. table:: United States suppliers
 
     +-------------+------------------------------------+------------------------------------+
     | Supplier    | Website                            | Notes                              |
@@ -34,9 +26,7 @@ United States suppliers
     | SparkFun    | http://www.sparkfun.com            | Good for modules and parts         |
     +-------------+------------------------------------+------------------------------------+
 
-Other suppliers
-
-.. table::
+.. table:: Other suppliers
 
     +-----------+----------------------------------+-------------------------------------------------------------------------------------------+
     | Supplier  | Website                          | Notes                                                                                     |
@@ -44,10 +34,8 @@ Other suppliers
     | Element14 | http://element14.com/BeagleBone  | World-wide BeagleBoard.org-compliant clone of BeagleBone Black, carries many accessories  |
     +-----------+----------------------------------+-------------------------------------------------------------------------------------------+
 
-.. _app_proto:
-
 Prototyping Equipment
------------------------
+======================
 
 Many of the hardware projects in this book use jumper wires and a breadboard. 
 We prefer the preformed wires that lie flat on the board. <<parts_jumper>> lists places 
@@ -55,9 +43,7 @@ with jumper wires, and <<parts_breadboard>> shows where you can get breadboards.
 
 .. _parts_jumper:
 
-Jumper wires
-
-.. table::
+.. table:: Jumper wires
 
     +-------------+--------------------------------------------------------------------------------------------+
     | Supplier    | Website                                                                                    |
@@ -74,9 +60,7 @@ Jumper wires
 
 .. _parts_breadboard:
 
-Breadboards
-
-.. table::
+.. table:: Breadboards
 
     +-------------+---------------------------------------------------------------------------------------------------------------------------------------------+
     | Supplier    | Website                                                                                                                                     |
@@ -97,9 +81,9 @@ If you want something more permanent, try `Adafruit's Perma-Proto Breadboard <ht
 .. _app_resistor:
 
 Resistors
-----------
+==========
 
-We use 220 , 1 k, 4.7 k, 10 k, 20 k, and 22 k resistors in this book. 
+We use 220 , 1k, 4.7k, 10k, 20k, and 22k resistors in this book. 
 All are 0.25 W.  The easiest way to get all these, and many more, is to order `SparkFun's Resistor Kit <http://bit.ly/1EXREh8>`_.  
 It's a great way to be ready for future projects, because it has 500 resistors. 
 `RadioShack's 500-piece Resistor Assortment <http://shack.net/1B4Io4V>`_ is a bit more 
@@ -115,10 +99,8 @@ You can find the 10 k trimpot (or variable resistor) at `SparkFun 10k POT <http:
 Flex resistors (sometimes called *flex sensors* or *bend sensors*) are available at 
 `SparkFun flex resistors <http://bit.ly/1Br7HD2>`_ and `Adafruit flex resistors <http://bit.ly/1HCGoql>`_.
 
-.. _app_transistor:
-
 Transistors and Diodes
------------------------
+=======================
 
 The `2N3904 <http://bit.ly/1B4J8H4>`_ is a common NPN transistor that you can get almost anywhere. 
 Even `Amazon NPN transitor <http://amzn.to/1AjvcsD>`_ has it. `Adafruit NPN transitor <http://bit.ly/1b2dgxT>`_ has a nice 10-pack. 
@@ -129,10 +111,8 @@ The `1N4001 <http://bit.ly/1EbRzF6>`_ is a popular 1A diode. Buy one at `SparkFu
 10 at `Adafruit diode <http://bit.ly/1Gs05zP>`_, 25 at `RadioShack diode <http://shack.net/1E5OTXi>`_, 
 or 40,000 at `DigiKey diode <http://bit.ly/18ADlT2>`_.
 
-.. _app_ic:
-
 Integrated Circuits
----------------------
+=====================
 
 The PCA9306 is a small integrated circuit (IC) that converts voltage levels between 3.3 V and 5 V. You can get it 
 cheaply in large quantities from `DigiKey PCA9306 <http://bit.ly/1Fb8REd>`_, but it's in a very small, hard-to-use, surface-mount 
@@ -153,10 +133,9 @@ sells it on a breakout board that works well with a breadboard.
 The DS18B20 is a one-wire digital temperature sensor that looks like a three-terminal transistor. 
 Both `SparkFun DS18B20 <http://bit.ly/1Fba7Hv>`_ and `Adafruit DS18B20 <http://bit.ly/1EbSYvC>`_ carry it.
 
-.. _app_opto:
 
 Opto-Electronics
------------------
+=================
 
 `LEDs <http://bit.ly/1BwZvQj>`_ are *light-emitting diodes*. LEDs come in a wide range of colors, 
 brightnesses, and styles. You can get a basic red LED at `SparkFun red LED <http://bit.ly/1GFaHPi>`_, 
@@ -165,104 +144,97 @@ brightnesses, and styles. You can get a basic red LED at `SparkFun red LED <http
 Many places carry bicolor LED matrices, but be sure to get one with an I^2^C interface. 
 `Adafruit LED matrix <http://bit.ly/18AENVn>`_ is where I got mine.
 
-.. _app_capes:
-
 Capes
-------
+======
 
 There are a number of sources for capes for BeagleBone Black. 
 `eLinux.org BeagleBoard.org capes page <http://bit.ly/1AjlXJ9>`_ keeps a current list.
 
-
-.. _app_misc:
-
 Miscellaneous
---------------
+==============
 
 Here are some things that don't fit in the other categories.
 
-.Miscellaneous
-
-.. table::
-
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | 3.3 V FTDI cable                                    | `SparkFun FTDI cable <http://bit.ly/1FMeXsG>`_,                                     |
-    |                                                     | `Adafruit FTDI cable <http://bit.ly/18AF1Mm>`_                                       |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | USB WiFi adapter                                    | `Adafruit WiFi adapter <http://www.adafruit.com/products/814>`_                        |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | Female HDMI to male microHDMI adapter               | `Amazon HDMI to microHDMI adapter <http://amzn.to/1C5BcLp>`_                                        |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | HDMI cable                                          | `SparkFun HDMI cable <https://www.sparkfun.com/products/11572>`_                     |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | Micro HDMI to HDMI cable                            | `Adafruit HDMI to microHDMI cable <http://www.adafruit.com/products/1322>`_                       |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | HDMI to DVI Cable                                   | `SparkFun HDMI to DVI cable <https://www.sparkfun.com/products/12612>`_                     |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | HDMI monitor                                        | `Amazon HDMI monitor <http://amzn.to/1B4MABD>`_                                        |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | Powered USB hub                                     | `Amazon power USB hub <http://amzn.to/1NKm2zB>`_,                                       |
-    |                                                     | `Adafruit power USB hub <http://www.adafruit.com/products/961>`_                        |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | Keyboard with USB hub                               | `Amazon keyboard with USB hub <http://amzn.to/1FbblSX>`_                                        |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | Soldering iron                                      | `SparkFun soldering iron <http://bit.ly/1FMfUkP>`_,                                      |
-    |                                                     | `Adafruit soldering iron <http://bit.ly/1EXZ6J1>`_                                       |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | Oscilloscope                                        | `Adafruit oscilloscope <https://www.adafruit.com/products/468>`_                       |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | Multimeter                                          | `SparkFun multimeter <http://bit.ly/1C5BUbu>`_,                                      |
-    |                                                     | `Adafruit multimeter <http://bit.ly/1wXX3np>`_                                       |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | PowerSwitch Tail II                                 | `SparkFun PowerSwitch Tail II <http://bit.ly/1Ag5bLP>`_,                                      | 
-    |                                                     | `Adafruit PowerSwitch Tail II <http://bit.ly/1wXX8aF>`_                                       |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
+.. table:: Miscellaneous
+
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | 3.3 V FTDI cable                                    | `SparkFun FTDI cable <http://bit.ly/1FMeXsG>`_,                                       |
+    |                                                     | `Adafruit FTDI cable <http://bit.ly/18AF1Mm>`_                                        |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | USB WiFi adapter                                    | `Adafruit WiFi adapter <http://www.adafruit.com/products/814>`_                       |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | Female HDMI to male microHDMI adapter               | `Amazon HDMI to microHDMI adapter <http://amzn.to/1C5BcLp>`_                          |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | HDMI cable                                          | `SparkFun HDMI cable <https://www.sparkfun.com/products/11572>`_                      |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | Micro HDMI to HDMI cable                            | `Adafruit HDMI to microHDMI cable <http://www.adafruit.com/products/1322>`_           |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | HDMI to DVI Cable                                   | `SparkFun HDMI to DVI cable <https://www.sparkfun.com/products/12612>`_               |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | HDMI monitor                                        | `Amazon HDMI monitor <http://amzn.to/1B4MABD>`_                                       |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | Powered USB hub                                     | `Amazon power USB hub <http://amzn.to/1NKm2zB>`_,                                     |
+    |                                                     | `Adafruit power USB hub <http://www.adafruit.com/products/961>`_                      |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | Keyboard with USB hub                               | `Amazon keyboard with USB hub <http://amzn.to/1FbblSX>`_                              |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | Soldering iron                                      | `SparkFun soldering iron <http://bit.ly/1FMfUkP>`_,                                   |
+    |                                                     | `Adafruit soldering iron <http://bit.ly/1EXZ6J1>`_                                    |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | Oscilloscope                                        | `Adafruit oscilloscope <https://www.adafruit.com/products/468>`_                      |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | Multimeter                                          | `SparkFun multimeter <http://bit.ly/1C5BUbu>`_,                                       |
+    |                                                     | `Adafruit multimeter <http://bit.ly/1wXX3np>`_                                        |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | PowerSwitch Tail II                                 | `SparkFun PowerSwitch Tail II <http://bit.ly/1Ag5bLP>`_,                              | 
+    |                                                     | `Adafruit PowerSwitch Tail II <http://bit.ly/1wXX8aF>`_                               |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
     | Servo motor                                         | `SparkFun servo motor <http://bit.ly/1C72cvw>`_,                                      |
     |                                                     | `Adafruit servo motor <http://bit.ly/1HCPQdl>`_                                       |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | 5 V power supply                                    | `SparkFun 5V power supply <http://bit.ly/1C72q5C>`_,                                      |
-    |                                                     | `Adafruit 5V power supply <http://bit.ly/18c0n2D>`_                                       |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | 5 V power supply                                    | `SparkFun 5V power supply <http://bit.ly/1C72q5C>`_,                                  |
+    |                                                     | `Adafruit 5V power supply <http://bit.ly/18c0n2D>`_                                   |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
     | 3 V to 5 V motor                                    | `SparkFun 3V-5V motor <http://bit.ly/1b2g65Y>`_,                                      |
     |                                                     | `Adafruit 3V-5V motor <http://bit.ly/1C72DWF>`_                                       |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | 3 V to 5 V bipolar stepper motor                    | `SparkFun 3V-5V bipolar stepper motor <http://bit.ly/1Bx2hVU>`_,                                      |
-    |                                                     | `Adafruit 3V-5V bipolar stepper motor <http://bit.ly/18c0HhV>`_                                       |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | 3 V to 5 V unipolar stepper motor                   | `Adafruit 3V-5V unipolar stepper motor <http://www.adafruit.com/products/858>`_                        |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | Pushbutton switch                                   | `SparkFun pushbutton switch <http://bit.ly/1AjDf90>`_,                                      |
-    |                                                     | `Adafruit pushbutton switch <http://bit.ly/1b2glhw>`_                                       |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | Magnetic reed switch                                | `SparkFun magnetic reed switch <https://www.sparkfun.com/products/8642>`_                      |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | LV-MaxSonar-EZ1 Sonar Range Finder                  | `SparkFun LV-MaxSonar-EZ1 <http://bit.ly/1C73dDH>`_,                                      |
-    |                                                     | `Amazon LV-MaxSonar-EZ1 <http://amzn.to/1wXXvlP>`_                                        |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | HC-SR04 Ultrsonic Range Sensor                      | `Amazon HC-SR04 <http://amzn.to/1FbcPNa>`_                                        |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | Rotary encoder                                      | `SparkFun rotary encoder <http://bit.ly/1D5ZypK>`_,                                      |
-    |                                                     | `Adafruit rotary encoder <http://bit.ly/1D5ZGp3>`_                                       |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | GPS receiver                                        | `SparkFun GPS <http://bit.ly/1EA2sn0>`_,                                      |
-    |                                                     | `Adafruit GPS <http://bit.ly/1MrS2VV>`_                                       |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | BLE USB dongle                                      | `Adafruit BLE USB dongle <http://www.adafruit.com/products/1327>`_                       |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | SensorTag                                           | `DigiKey SensorTag <http://bit.ly/18AGPVt>`_,                                       |
-    |                                                     | `Amazon SensorTag <http://amzn.to/1EA2B9U>`_,                                       |
-    |                                                     | `TI SensorTag <https://store.ti.com/CC2541-SensorTag-Development-Kit-P3192.aspx>`_  |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | Syba SD-CM-UAUD USB Stereo Audio Adapter            | `Amazon USB audio adapter <http://amzn.to/1EA2GdI>`_                                        |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | Sabrent External Sound Box USB-SBCV                 | `Amazon USB audio adapter (alt) <http://amzn.to/1C74kTU>`_                                        |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | Vantec USB External 7.1 Channel Audio Adapter       | `Amazon USB audio adapter (alt2) <http://amzn.to/19cinev>`_                                        |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | Nokia 5110 LCD                                      | `Adafruit 5110 LCD <http://bit.ly/1Ag6LgG>`_,                                      |
-    |                                                     | `SparkFun 5110 LCD <http://bit.ly/19cizdu>`_                                       |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
-    | BeagleBone LCD7                                     | `eLinux LCD7 <http://elinux.org/CircuitCo:BeagleBone_LCD7#Distributors>`_      |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | 3 V to 5 V bipolar stepper motor                    | `SparkFun 3V-5V bipolar stepper motor <http://bit.ly/1Bx2hVU>`_,                      |
+    |                                                     | `Adafruit 3V-5V bipolar stepper motor <http://bit.ly/18c0HhV>`_                       |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | 3 V to 5 V unipolar stepper motor                   | `Adafruit 3V-5V unipolar stepper motor <http://www.adafruit.com/products/858>`_       |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | Pushbutton switch                                   | `SparkFun pushbutton switch <http://bit.ly/1AjDf90>`_,                                |
+    |                                                     | `Adafruit pushbutton switch <http://bit.ly/1b2glhw>`_                                 |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | Magnetic reed switch                                | `SparkFun magnetic reed switch <https://www.sparkfun.com/products/8642>`_             |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | LV-MaxSonar-EZ1 Sonar Range Finder                  | `SparkFun LV-MaxSonar-EZ1 <http://bit.ly/1C73dDH>`_,                                  |
+    |                                                     | `Amazon LV-MaxSonar-EZ1 <http://amzn.to/1wXXvlP>`_                                    |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | HC-SR04 Ultrsonic Range Sensor                      | `Amazon HC-SR04 <http://amzn.to/1FbcPNa>`_                                            |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | Rotary encoder                                      | `SparkFun rotary encoder <http://bit.ly/1D5ZypK>`_,                                   |
+    |                                                     | `Adafruit rotary encoder <http://bit.ly/1D5ZGp3>`_                                    |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | GPS receiver                                        | `SparkFun GPS <http://bit.ly/1EA2sn0>`_,                                              |
+    |                                                     | `Adafruit GPS <http://bit.ly/1MrS2VV>`_                                               |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | BLE USB dongle                                      | `Adafruit BLE USB dongle <http://www.adafruit.com/products/1327>`_                    |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | SensorTag                                           | `DigiKey SensorTag <http://bit.ly/18AGPVt>`_,                                         |
+    |                                                     | `Amazon SensorTag <http://amzn.to/1EA2B9U>`_,                                         |
+    |                                                     | `TI SensorTag <https://store.ti.com/CC2541-SensorTag-Development-Kit-P3192.aspx>`_    |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | Syba SD-CM-UAUD USB Stereo Audio Adapter            | `Amazon USB audio adapter <http://amzn.to/1EA2GdI>`_                                  |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | Sabrent External Sound Box USB-SBCV                 | `Amazon USB audio adapter (alt) <http://amzn.to/1C74kTU>`_                            |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | Vantec USB External 7.1 Channel Audio Adapter       | `Amazon USB audio adapter (alt2) <http://amzn.to/19cinev>`_                           |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | Nokia 5110 LCD                                      | `Adafruit 5110 LCD <http://bit.ly/1Ag6LgG>`_,                                         |
+    |                                                     | `SparkFun 5110 LCD <http://bit.ly/19cizdu>`_                                          |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
+    | BeagleBone LCD7                                     | `eLinux LCD7 <http://elinux.org/CircuitCo:BeagleBone_LCD7#Distributors>`_             |
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
     | MiniDisplay Cape                                    | `eLinux minidisplay <http://elinux.org/CircuitCo:MiniDisplay_Cape>`_                  |
-    +-----------------------------------------------------+---------------------------------------------------------------------------+
+    +-----------------------------------------------------+---------------------------------------------------------------------------------------+
diff --git a/books/beaglebone-cookbook/code b/books/beaglebone-cookbook/code
new file mode 160000
index 0000000000000000000000000000000000000000..269209bc64423a06e8caf11b91c7468805b287b2
--- /dev/null
+++ b/books/beaglebone-cookbook/code
@@ -0,0 +1 @@
+Subproject commit 269209bc64423a06e8caf11b91c7468805b287b2
diff --git a/books/index.rst b/books/index.rst
index 1cf8a938c3c882893ede9788f121becfe756a4e1..b31ab04b2ccc74efc620bff31a851c5bd88b0f6f 100644
--- a/books/index.rst
+++ b/books/index.rst
@@ -1,12 +1,14 @@
+.. _books-home:
+
 Books
 *****
 
 This is a collection of open-source books written to help Beagle developers.
 
-`BeagleBone Cookbook <beaglebone-cookbook>`__ is a great introduction to programming
+:ref:`BeagleBone Cookbook <beaglebone-cookbook>`__ is a great introduction to programming
 a BeagleBone using Linux from userspace, mostly using Python or JavaScript.
 
-`PRU Cookbook <pru-cookbook>`__ provides numerous examples on using the incredible
+:ref:`PRU Cookbook <pru-cookbook>`__ provides numerous examples on using the incredible
 ultra-low-latency microcontrollers inside the processors used on BeagleBone boards
 that are a big part of what has made BeagleBone such a popular platform.
 
diff --git a/books/pru-cookbook/01case/case.rst b/books/pru-cookbook/01case/case.rst
index 8082060ee5bcc66e3c66810087ca20a35deb448f..27b035e7b26567643cd455398c632543aefb8d3a 100644
--- a/books/pru-cookbook/01case/case.rst
+++ b/books/pru-cookbook/01case/case.rst
@@ -19,8 +19,8 @@ operation.
 
 But what if you have a project that needs the flexibility of an OS and the timing 
 of a microcontroller?  This is where the BeagleBoard excels since it has both 
-an ARM procssor running Linux and two footnote:[Four if you are on the BeagleBone AI];
-**P**rogrammable **R**eal-Time **U**nits (PRUs).
+an ARM procssor running Linux and two [#]_
+**P**\ rogrammable **R**\ eal-Time **U**\ nits (PRUs).
 The PRUs have 32-bit cores which run
 independently of the ARM processor, therefore they can
 be programmed to respond quickly to inputs and produce very precisely timed 
@@ -35,27 +35,29 @@ Here we present:
 
 .. TODO Switch from LEDscape to FPP
 
-* `Robotics Control Library <http://strawsondesign.com/docs/roboticscape/>`_
+* `Robotics Control Library <https://beagleboard.org/librobotcontrol>`_
 * `BeagleLogic <https://github.com/abhishek-kakkar/BeagleLogic/wiki>`_
 * `NeoPixels -- 5050 RGB LEDs with Integrated Drivers (Falcon Christmas) <http://falconchristmas.com>`_
 * `RGB LED Matrix (Falcon Christmas) <http://falconchristmas.com>`_
-* `simpPRU -- A python-like language for programming the PRUs`_ <https://github.com/VedantParanjape/simpPRU>
-.. * `MachineKit <http://www.machinekit.io/>`_
-.. * `ArduPilot <http://ardupilot.org/>, <http://ardupilot.org/dev/docs/beaglepilot.html>`_
-.. * `BeagleScope <https://github.com/ZeekHuge/BeagleScope>`_
+* `simpPRU -- A python-like language for programming the PRUs <https://github.com/VedantParanjape/simpPRU>`_ 
+* `MachineKit <http://www.machinekit.io/>`_
+* `BeaglePilot <http://ardupilot.org/dev/docs/beaglepilot.html>`_
+* `BeagleScope <https://github.com/ZeekHuge/BeagleScope>`_
 
 The following are resources used in this chapter.
 
 .. admonition:: Resources
 
-   * `Pocket Beagle System Reference Manual https://github.com/beagleboard/pocketbeagle/wiki/System-Reference-Manual#673_PRUICSS_Pin_Access`_
-   * `BeagleBone Black P8 Header Table https://github.com/derekmolloy/exploringBB/blob/master/chp06/docs/BeagleboneBlackP8HeaderTable.pdf`_
-   * `BeagleBone Black P9 Header Table https://github.com/derekmolloy/exploringBB/blob/master/chp06/docs/BeagleboneBlackP9HeaderTable.pdf`_
-   * `BeagleBone AI System Reference Manual https://github.com/beagleboard/beaglebone-ai/wiki/System-Reference-Manual`_
+   * `Pocket Beagle System Reference Manual <https://docs.beagleboard.io/latest/boards/pocketbeagle/original/index.html>`_
+   * `BeagleBone Black P8 Header Table <https://docs.beagleboard.io/latest/boards/beaglebone/black/ch07.html#id2>`_
+      * `P8 Header Table from exploringBB <https://github.com/derekmolloy/exploringBB/blob/master/chp06/docs/BeagleboneBlackP8HeaderTable.pdf>`_
+   * `BeagleBone Black P9 Header Table <https://docs.beagleboard.io/latest/boards/beaglebone/black/ch07.html#id3>`_
+      * `P9 Header Table from exploringBB <https://github.com/derekmolloy/exploringBB/blob/master/chp06/docs/BeagleboneBlackP9HeaderTable.pdf>`_
+   * `BeagleBone AI System Reference Manual <https://docs.beagleboard.io/latest/boards/beaglebone/ai/index.html>`_
 
 
 Robotics Control Library
--------------------------
+**************************
 
 Robotics is an embedded application that often requires both an SBC to control the 
 high-level tasks (such as path planning, line following, communicating with the user)
@@ -65,18 +67,17 @@ to turn, or how to balance in response to an IMU input).  The
 `robot <https://www.hackster.io/edumip/edumip-13a29c>`_ 
 demonstrates that by using the PRU, the Blue can handle both the high 
 and low -level tasks without an additional microcontroller. The EduMIP is shown 
-in :ref:`<case_blue>`.
+in :ref:`case_blue`.
 
 .. _case_blue:
 
-Blue balancing
-~~~~~~~~~~~~~~~
-
 .. figure:: figures/blue.png
    :align: center
    :alt: Blue balancing
 
-The `Robotics Control Library <http://strawsondesign.com/docs/roboticscape/>`_ is a 
+   Blue balancing
+
+The `Robotics Control Library <https://beagleboard.org/librobotcontrol>`_ is a 
 package that is already installed on the Beagle 
 that contains a C library and example/testing programs. It uses the PRU to extend the 
 real-time hardware of the Bone by adding eight addional servo channels and one 
@@ -88,14 +89,14 @@ Controlling Eight Servos
 *************************
 
 Problem
-~~~~~~~~
+--------
 
 You need to control eight servos, but the Bone doesn't have enough pulse width 
 modulation (PWM) channels
 and you don't want to add hardware.  
 
 Solution
-~~~~~~~~~
+---------
 
 The Robotics Control Library provides eight additional PWM channels 
 via the PRU that can be used out of the box. 
@@ -104,7 +105,7 @@ via the PRU that can be used out of the box.
    The I/O pins on the Beagles have a mutliplexer that lets you select what I/O 
    appears on a given pin.  The Blue has the mux already configured to to run these
    examples.  Follow the instructions in 
-   :ref:`../03details/details.html#details_configure_servos, Configuring Pins for Controlling Servos` 
+   :ref:`details_configure_servos` 
    to configure the pins for the Black and the Pocket.
 
 
@@ -138,7 +139,7 @@ The ``-f 10`` says to use a frequency of 10 Hz and the ``-p 1.5`` says to set th
       rc_test_servo -c 1 -p 0.0
 
 Discussion
-~~~~~~~~~~~
+------------
 
 The BeagleBone Blue sends these eight outputs to it's servo channels.  The others use the pins shown in the 
 :ref:`case__register_to_pin_table`.
@@ -146,7 +147,7 @@ The BeagleBone Blue sends these eight outputs to it's servo channels.  The other
 .. _case__register_to_pin_table:
 
 PRU register to pin table
-~~~~~~~~~~~~~~~~~~~~~~~~~~
+---------------------------
 
 .. table::
 
@@ -172,13 +173,9 @@ PRU register to pin table
 
 
 You can find these details in the 
-`P8 Header Table <https://github.com/derekmolloy/exploringBB/blob/master/chp06/docs/BeagleboneBlackP8HeaderTable.pdf>`_, 
-`P9 Header Table <https://github.com/derekmolloy/exploringBB/blob/master/chp06/docs/BeagleboneBlackP9HeaderTable.pdf>`_, 
-`Pocket Beagle System Reference Manual <https://github.com/beagleboard/pocketbeagle/wiki/System-Reference-Manual#673_PRUICSS_Pin_Access>`_ 
-(Here is a more usable version of the `table <https://docs.google.com/spreadsheets/d/1FRGvYOyW1RiNSEVprvstfJAVeapnASgDXHtxeDOjgqw/edit?usp=sharing>`_.)
-and
-`BeagleBone AI System Reference Manual <https://github.com/beagleboard/beaglebone-ai/wiki/System-Reference-Manual>`_.
-(Here is a more usable version of the `table <https://docs.google.com/spreadsheets/d/1dFSBVem86vAUD7MLXvqdS-N0Efi8_g_O1iTqzql8DAo/edit#gid=0>`_.)
+
+* `Pocket Beagle pinout <https://docs.google.com/spreadsheets/d/1FRGvYOyW1RiNSEVprvstfJAVeapnASgDXHtxeDOjgqw/edit?usp=sharing>`_
+* `BeagleBone AI PRU pins <https://docs.google.com/spreadsheets/d/1dFSBVem86vAUD7MLXvqdS-N0Efi8_g_O1iTqzql8DAo/edit#gid=0>`_
 
 
 Be default the PRUs are already loaded with the code needed to run the
@@ -187,15 +184,15 @@ servos.  All you have to do is run the command.
 .. [/opt/source/Robotics_Cape_Installer/pru_firmware/src/pru1-servo.asm]
 
 Controlling Individual Servos
-******************************
+*******************************
 
 Problem
-~~~~~~~~~
+--------
 
 ``rc_test_servos`` is nice, but I need to control the servos individually.
 
 Solution
-~~~~~~~~~
+---------
 
 You can modify ``rc_test_servos.c``.  You'll find it on the bone online at
 https://github.com/beagleboard/librobotcontrol/blob/master/examples/src/rc_test_servos.c.
@@ -208,29 +205,29 @@ Controlling More Than Eight Channels
 *************************************
 
 Problem
-~~~~~~~~~~
+--------
 
 I need more than eight PWM channels, or I need less jitter on the off time.
 
 Solution
-~~~~~~~~~~
+---------
 
 This is a more advanced problem and required reprograming the PRUs.  See 
-:ref:`../05blocks/blocks.html#blocks_pwm, PWM Generator` for an example.
+:ref:`blocks_pwm` for an example.
 
 Reading Hardware Encoders
 **************************
 
 Problem
-~~~~~~~~~~
+--------
 
 I want to use four encoders to measure four motors, but I only see hardware for three.
 
 Solution
-~~~~~~~~~~
+---------
 
-The forth encoder can be implemented on the PRU. If you run ``rc_test_encoders_eqep`` on the Blue, you will see the output of 
-encoders E1-E3 which are connected to the eEQP hardware.
+The forth encoder can be implemented on the PRU. If you run ``rc_test_encoders_eqep`` 
+on the Blue, you will see the output of encoders E1-E3 which are connected to the eEQP hardware.
 
 .. code-block:: bash
 
@@ -246,7 +243,8 @@ pins shown in :ref:`case_pin_mapping`.
 .. _case_pin_mapping:
 
 eQEP to pin mapping
-~~~~~~~~~~~~~~~~~~~~
+--------------------
+
 .. table::
 
    +----+--------+-----------+-----------+--------+--------+------------+-------------+
@@ -272,22 +270,23 @@ eQEP to pin mapping
    The I/O pins on the Beagles have a mutliplexer that lets you select what I/O 
    appears on a given pin.  The Blue has the mux already configured to to run these
    examples.  Follow the instructions in 
-   :ref:`../03details/details.html#details_configure_encoders, Configuring Pins for Controlling Encoders` 
+   :ref:`details_configure_encoders` 
    to configure the pins for the Black and the Pocket.
 
 
 Reading PRU Encoder
-*********************
+=====================
 
 Problem
-~~~~~~~~
+--------
 
 I want to access the PRU encoder.
 
 Solution
-~~~~~~~~~
+---------
 
 The forth encoder is implemented on the PRU and accessed with `sudo rc_test_encoders_pru`  
+
 .. note::
    This command needs root permission, so the `sudo` is needed.  
 
@@ -309,17 +308,17 @@ Here's what you will see
 
 
 BeagleLogic -- a 14-channel Logic Analyzer
--------------------------------------------
+********************************************
 
 Problem
-********
+--------
 
 I need a 100Msps, 14-channel logic analyzer
 
 Solution
-*********
+---------
 
-`BeagleLogic <https://beaglelogic.readthedocs.io/en/latest/>`_ is a 100Msps, 
+`BeagleLogic documentation <https://beaglelogic.readthedocs.io/en/latest/>`_ is a 100Msps, 
 14-channel logic analyzer that runs on the Beagle. 
 
 .. admonition:: information
@@ -335,8 +334,8 @@ Solution
    https://github.com/abhishek-kakkar/BeagleLogic/wiki
 
 
-The quickest solution is to get the `no-setup-required image <https://github.com/abhishek-kakkar/BeagleLogic/wiki/BeagleLogic-%22no-setup-required%22-setup:-Introducing-System-Image!>`_.  It points to an older image
-(beaglelogic-stretch-2017-07-13-4gb.img.xz) but should still work.
+The quickest solution is to get the `no-setup-required image <https://github.com/abhishek-kakkar/BeagleLogic/wiki/BeagleLogic-%22no-setup-required%22-setup:-Introducing-System-Image!>`_. 
+It points to an older image (beaglelogic-stretch-2017-07-13-4gb.img.xz) but should still work.
 
 If you want to be running a newer image, there are instructions on the site for `installing BeagleLogic <https://beaglelogic.readthedocs.io/en/latest/install.html>`_, but I had to do the additional steps in :ref:`case_installing_beaglelogic`.
 
@@ -344,10 +343,8 @@ If you want to be running a newer image, there are instructions on the site for
 
 .. _case_installing_beaglelogic:
 
-Installing BeagleLogic
-~~~~~~~~~~~~~~~~~~~~~~~
-
 .. code-block:: bash
+   :caption: Installing BeagleLogic
       
    bone$ *git clone https://github.com/abhishek-kakkar/BeagleLogic*
    bone$ *cd BeagleLogic/kernel*
@@ -365,16 +362,15 @@ Then click *Begin Capture* to capture your data, at up to 100 MHz!
 
 .. _case_beaglelogic_capture:
 
-BeagleLogic Data Capture
-~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/beaglelogic_capture.png
    :align: center
    :alt: BeagleLogic Data Capture
 
+   BeagleLogic Data Capture
+
 
 Discussion
-************
+-----------
 
 BeagleLogic is a complete system that includes firmware for the PRUs, 
 a kernel module and a web interface that create a powerful 100 MHz 
@@ -383,7 +379,7 @@ logic analyzer on the Bone with no additional hardware needed.
 .. tip::
 
    If you need buffered inputs, consider
-   http://standalone.beaglelogic.net/en/latest/[BeagleLogic Standalone],
+   `BeagleLogic Standalone <http://standalone.beaglelogic.net/en/latest/>`_,
    a turnkey Logic Analyzer built on top of BeagleLogic.
 
 
@@ -434,10 +430,10 @@ explaining how the PRUs get this type of performance.
 
 
 NeoPixels -- 5050 RGB LEDs with Integrated Drivers (Falcon Christmas)
-----------------------------------------------------------------------
+***********************************************************************
 
 Problem
-*********
+--------
 
 You have an `Adafruit NeoPixel LED string <http://www.adafruit.com/products/1138>`_,
 `Adafruit NeoPixel LED matrix <http://www.adafruit.com/products/1487>`_ or
@@ -448,10 +444,10 @@ and want to light it up.
 .. TODO Show how to drive ws2812's with FPP.
 
 Solution
-*********
+---------
 
 If you are driving just one string you can write your own code 
-(See :ref:`../05blocks/blocks.adoc#blocks_ws2812, WS2812 Driver`)
+(See :ref:`blocks_ws2812`)
 If you plan to drive multiple strings, then consider
 Falcon Christmas (`FPP <https://falconchristmas.com/>`_). 
 FPP can be used to drive both LEDs with an integrated
@@ -460,7 +456,7 @@ set up for the integrated drive and in the next section the no driver LEDs will
 show.
 
 Hardware
-*********
+----------
 
 For this setup we'll wire a single string of NeoPixels to the Beagle.  
 I've attached the black wire on the string to ground on the Beagle 
@@ -475,7 +471,7 @@ line 27.  It's the 20th entry in the list.  You could pick any of the others
 if you'd rather.
 
 Software Setup
-***************
+---------------
 
 Assuming the PocketBeagle is attached via the USB cable, 
 on your host computer browse to <http://192.168.7.2/> and you will see 
@@ -483,35 +479,32 @@ on your host computer browse to <http://192.168.7.2/> and you will see
 
 .. _case_fpp_program_control2:
 
-Falcon Play Program Control
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/fpp_program_control.png
    :align: center
    :alt: Falcon Play Program Control
 
+   Falcon Play Program Control
+
 You can test the display by first setting up the Channel Outputs and then 
 going to *Display Testing*.  :ref:`case_channel_outputs_menu2` shows where to 
 select Channel Outputs and :ref:`case_channel_outputs2` shows which settings to use.
 
 .. _case_channel_outputs_menu2:
 
-Selecting Channel Outputs
-~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/fpp_channel_outputs_menu.png
    :align: center
    :alt: Selecting Channel Outputs
 
-.. _case_channel_outputs2:
+   Selecting Channel Outputs
 
-Channel Outputs Settings
-~~~~~~~~~~~~~~~~~~~~~~~~~
+.. _case_channel_outputs2:
 
 .. figure:: figures/fpp_channel_outputs_strings.png
    :align: center
    :alt: Channel Outputs Settings
 
+   Channel Outputs Settings
+
 Click on the *Pixel Strings* tab.  Earlier we noted that *P1.31* is attached
 to port 20.  Note that at the bottom of the screen, port 20 has a PIXEL COUNT
 of 24.  We're telling FPP our string has 24 NeoPixels and they are attached
@@ -524,13 +517,12 @@ Next we need to test the display.  Select **Display Testing** shown in
 
 .. _case_display_testing_menu2:
 
-Selecting Display Testing
-~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/fpp_display_testing_menu2.png
    :align: center
    :alt: Selecting Display Testing
 
+   Selecting Display Testing
+
 Set the *End Channel* to *72*. (72 is 3*24)  
 Click *Enable Test Mode* and your matrix should light up.  Try the different 
 testing patterns shown in :ref:`case_display_testing2`.
@@ -544,13 +536,12 @@ testing patterns shown in :ref:`case_display_testing2`.
 
 .. _case_display_testing2:
 
-Display Testing Options
-~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/fpp_display_testing2.png
    :align: center
    :alt: Display Testing Options
 
+   Display Testing Options
+
 You can control the LED string using the E1.31 protocol. 
 (https://www.doityourselfchristmas.com/wiki/index.php?title=E1.31_(Streaming-ACN)_Protocol)
 First configure the input channels by going to Channel Inputs as shown in
@@ -558,54 +549,52 @@ First configure the input channels by going to Channel Inputs as shown in
 
 .. _case_channel_inputs:
 
-Going to Channel Inputs
-~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/fpp_channel_inputs.png
    :align: center
    :alt: Going to Channel Inputs
 
+   Going to Channel Inputs
+
 Tell it you have 72 LEDs and enable the input as shown in :ref:`case_set_inputs`.
 
 .. _case_set_inputs:
 
-Setting Channel Inputs
-~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/fpp_inputs_setup2.png
    :align: center
    :alt: Setting Channel Inputs
 
+   Setting Channel Inputs
+
 Finally go to the Status Page as shown in :ref:`case_status`.
 
 .. _case_status:
 
-Watching the status
-~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/fpp_status.png
    :align: center
    :alt: Watching Status
 
+   Watching the status
+
 Now run a program on another computer that generated E1.31 packets.
-:ref:`case_1.31_example` is an example python program.
+:ref:`case_e1.31_example` is an example python program.
 
-.. _cse_e1.31_example:
+.. _case_e1.31_example:
 
-.e1.31-test.py 
-~~~~~~~~~~~~~~
+.. literalinclude:: code/e1.31-test.py
+   :caption: e1.31-test.py -Example of generating packets to control the NeoPixels
+   :linenos:
 
-:downlod:`e1.31-test.py <code/e1.31-test.py>`- Example of generating packets to control the NeoPixels 
+:download:`e1.31-test.py <code/e1.31-test.py>` 
 
 .. TODO document the code
 
 .. _case_rgb_matrix:
 
 RGB LED Matrix -- No Integrated Drivers (Falcon Christmas)
------------------------------------------------------------
+************************************************************
 
 Problem
-*************************
+--------
 
 You want to use a RGB LED Matrix display that doesn't have integrated
 drivers such as the 
@@ -614,20 +603,17 @@ shown in :ref:`case_adfruit_matrix`.
 
 .. _case_adfruit_matrix:
 
-Adafruit LED Matrix
-~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/ledmatrix.jpg
    :align: center
    :alt: Adafruit LED Matrix
 
+   Adafruit LED Matrix
+
 Solution
-*************************
+---------
 
-`Falcon Christmas <http://falconchristmas.com>`_ makes a software package
-called 
-`Falcon Player <http://falconchristmas.com/forum/index.php/board,8.0.html>`_ (FPP) which can drive 
-such displays.
+`Falcon Christmas <http://falconchristmas.com>`_ makes a software package called 
+`Falcon Player <http://falconchristmas.com/forum/index.php/board,8.0.html>`_ (FPP) which can drive such displays.
 
 .. admonition:: information:
 
@@ -642,7 +628,7 @@ such displays.
    http://www.falconchristmas.com/wiki/FPP:FAQ#What_is_FPP.3F
 
 Hardware
-~~~~~~~~~
+---------
 
 The Beagle hardware can be either a BeagleBone Black with the 
 `Octoscroller Cape <https://oshpark.com/shared_projects/7mSHNZcD>`_, or a 
@@ -658,20 +644,18 @@ to full white at the same time you will need at least a 4A supply.
 
 .. _case_pocket:
 
-Pocket Beagle Driving a P5 RGB LED Matrix via the PocketScroller Cape
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/pocketscroller.jpg
    :align: center
    :alt: Pocket Beagle Driving a P5 RGB LED Matrix via the PocketScroller Cape
 
+   Pocket Beagle Driving a P5 RGB LED Matrix via the PocketScroller Cape
 
 Software
-~~~~~~~~~~
+---------
 
 The FPP software is most easily installed by downloading the 
-`current FPP release <https://github.com/FalconChristmas/fpp/releases/>`_, flashing an SD card and 
-booting from it. 
+`current FPP release <https://github.com/FalconChristmas/fpp/releases/>`_, 
+flashing an SD card and booting from it. 
 
 .. tip::
 
@@ -685,66 +669,60 @@ on your host computer browse to http://192.168.7.2/ and you will see
 
 .. _case_fpp_program_control:
 
-Falcon Play Program Control
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/fpp_program_control.png
    :align: center
    :alt: Falcon Play Program Control
 
+   Falcon Play Program Control
+
 You can test the display by first setting up the Channel Outputs and then 
 going to *Display Testing*.  :ref:`case_channel_outputs_menu` shows where to 
 select Channel Outputs and :ref:`case_channel_outputs` shows which settings to use.
 
 .. _case_channel_outputs_menu:
 
-Selecting Channel Outputs
-~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/fpp_channel_outputs_menu.png
    :align: center
    :alt: Selecting Channel Outputs
 
-.. _case_channel_outputs:
+   Selecting Channel Outputs
 
-Channel Outputs Settings
-~~~~~~~~~~~~~~~~~~~~~~~~~
+.. _case_channel_outputs:
 
 .. figure:: figures/fpp_channel_outputs.png
    :align: center
    :alt: Channel Outputs Settings
 
-Click on the **LED Panels** tab and then the only changes I made was 
-to select the **Single Panel Size** to be
-*64x32* and to check the **Enable LED Panel Output**.
+   Channel Outputs Settings
+
+Click on the **LED Panels** tab and then the only changes I made was to select the 
+**Single Panel Size** to be *64x32* and to check the **Enable LED Panel Output**.
 
 Next we need to test the display.  Select *Display Testing* shown in
 :ref:`case_display_testing_menu`.
 
 .. _case_display_testing_menu:
 
-Selecting Display Testing
-~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/fpp_display_testing_menu.png
    :align: center
    :alt: Selecting Display Testing
 
+   Selecting Display Testing
+
 Set the **End Channel** to **6144**. (6144 is 3*64*32)  
 Click **Enable Test Mode** and your matrix should light up.  Try the different 
 testing patterns shown in :ref:`case_display_testing`.
 
 .. _case_display_testing:
 
-Display Testing Options
-~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/fpp_display_testing.png
    :align: center
    :alt: Display Testing Options
 
+   Display Testing Options
+
 xLights - Creating Content for the Display
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+===========================================
 
 Once you are sure your LED Matrix is working correctly you can program it 
 with a sequence.  
@@ -776,13 +754,12 @@ Run xLights and you'll see :ref:`case_xlights_setup`.
 
 .. _case_xlights_setup:
 
-xLights Setup
-~~~~~~~~~~~~~~
-
 .. figure:: figures/xlights_setup.png
    :align: center
    :alt: xLights Setup
 
+   xLights Setup
+
 We'll walk you through a simple setup to get an animation to display on the 
 RGB Matrix.  xLights can use a protocol called E1.31 to send information to 
 the display.  Setup xLights by clicking on *Add Ethernet* and entering the values 
@@ -790,13 +767,12 @@ shown in :ref:`case_xlights_setup_e1_31`.
 
 .. _case_xlights_setup_e1_31:
 
-Setting Up E1.31
-~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/xlights_setup_e1_31.png
    :align: center
    :alt: Setting Up E1.31
 
+   Setting Up E1.31
+
 The **IP Address** is the Bone's address as seen from the host computer. 
 Each LED is one channel, so one RGB LED is three channels.  The P5 board 
 has 3*64*32 or 6144 channels.  These are grouped into universes of 512 
@@ -809,37 +785,34 @@ Your setup should look like :ref:`case_xlights_setup_done`.  Click the
 
 .. _case_xlights_setup_done:
 
-xLights setup for P5 display
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/xlights_setup_done.png
    :align: center
    :alt: xLights setup for P5 display
 
+   xLights setup for P5 display
+
 Next click on the **Layout** tab.  Click on the *Matrix* button as shown in 
 :ref:`case_xlights_matrix`, then click on the black area where you want your 
 matrix to appear.
 
 .. _case_xlights_matrix:
 
-Setting up the Matrix Layout
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/xlights_layout.png
    :align: center
    :alt: Setting up the Matrix Layout
 
+   Setting up the Matrix Layout
+
 :ref:`case_xlights_layout_details` shows the setting to use for the P5 matrix. 
 
 .. _case_xlights_layout_details:
 
-Layout details for P5 matrix
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/xlights_layout_details.png
    :align: center
    :alt: Layout details for P5 matrix
 
+   Layout details for P5 matrix
+
 All I changed was **# Strings**, **Nodes/String**, **Starting Location** and most 
 importantly, expand **String Properties** and select at **String Type** of 
 **RGB Nodes**.  Above the setting you should see that **Start Chan** is 1 and 
@@ -851,19 +824,18 @@ Now click on the *Sequencer* tab and then click on the **New Sequence** button
 
 .. _case_seq_new:
 
-Starting a new sequence
-~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/xlights_seq_new.png
    :align: center
    :alt: Starting a new sequence
 
+   Starting a new sequence
+
 Then click on **Animation**, **20fps (50ms)**, and **Quick Start**. Learning how to 
 do sequences is beyond the scope of this cookbook, however I'll shown you how
 do simple sequence just to be sure xLights is talking to the Bone.
 
 Setting Up E1.31 on the Bone
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+==============================
 
 First we need to setup FPP to take input from xLights.  Do this by going to 
 the *Input/Output Setup* menu and selecting *Channel Inputs*.  Then 
@@ -872,13 +844,12 @@ enter *12* for *Universe Count* and click *set* and you will see
 
 .. _case_inputs_setup:
 
-E1.31 Inputs
-~~~~~~~~~~~~~
-
 .. figure:: figures/fpp_inputs_setup.png
    :align: center
    :alt: .E1.31 Inputs
 
+   E1.31 Inputs
+
 Click on the **Save** button above the table.  
 
 Then go to the **Status/Control** menu and select **Status Page**.  
@@ -887,15 +858,14 @@ Then go to the **Status/Control** menu and select **Status Page**.
 
 .. _case_mode_bridge:
 
-Bridge Mode
-~~~~~~~~~~~~~
-
 .. figure:: figures/fpp_mode_bridge.png
    :align: center
    :alt: Bridge Mode
 
+   Bridge Mode
+
 Testing the xLights Connection
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+===============================
 
 The Bone is now listening for commands from xLights via the E1.31 protocol.
 A quick way to verify everything is t o return to xLights and go to the 
@@ -903,28 +873,26 @@ A quick way to verify everything is t o return to xLights and go to the
 
 .. _case_xlights_test:
 
-xLights test page
-~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/xlights_test.png
    :align: center
    :alt: xLights test page
 
+   xLights test page
+
 Click the box under **Select channels...**, click **Output to lights** and 
 select **Twinkle 50%**.  You matrix should have a colorful twinkle pattern
 (:ref:`case_xlights_twinkle`).
 
 .. _case_xlights_twinkle:
 
-xLights Twinkle test pattern
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/xlights_twinkle.jpg
    :align: center
    :alt: xLights Twinkle test pattern
 
+   xLights Twinkle test pattern
+
 A Simple xLights Sequence
-~~~~~~~~~~~~~~~~~~~~~~~~~~
+==========================
 
 Now that the xLights to FPP link is tested you can generate a sequence to 
 play.  Close the Test window and click on the **Sequencer** tab.  Then drag 
@@ -935,19 +903,18 @@ toolbar.  Your matrix should now be displaying your effect.
 
 .. _case_seq_drag:
 
-Drag an effect to the timeline
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/xlights_seq_drag.png
    :align: center
    :alt: Drag an effect to the timeline
 
+   Drag an effect to the timeline
+
 The setup requires the host computer to send the animation data to the Bone. 
 The next section shows how to save the sequence and play it on the Bone 
 standalone.
 
 Saving a Sequence and Playing it Standalone
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+============================================
 
 In xLights save your sequence by hitting Ctrl-S and giving it a name.  I called 
 mine *fire* since I used a fire effect.  Now, switch back to FPP and select 
@@ -957,13 +924,12 @@ the *Content Setup* menu and select *File Manager*.  Click the black
 
 .. _case_file_manager:
 
-FPP file manager
-~~~~~~~~~~~~~~~~
-
 .. figure:: figures/fpp_file_manager.png
    :align: center
    :alt: FPP file manager
 
+   FPP file manager
+
 Once your sequence is uploaded, got to **Content Steup** and select **Playlists**. 
 Enter you playlist name (I used **fire**) and click **Add**.  Then click
 **Add a Sequence/Entry** and select **Sequence Only** 
@@ -971,13 +937,12 @@ Enter you playlist name (I used **fire**) and click **Add**.  Then click
 
 .. _case_playlist:
 
-Adding a new playlist to FPP
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/fpp_playlist.png
    :align: center
    :alt: Adding a new playlist to FPP
 
+   Adding a new playlist to FPP
+
 Be sure to click **Save Playlist** on the right. Now return to 
 **Status/Control** and **Status Page** and make sure **FPPD Mode:** is set 
 to **Standalone**.  You should see your playlist.  Click the **Play** 
@@ -985,19 +950,18 @@ button and your sequence will play.
 
 .. _case_playlist_status:
 
-Adding a new playlist to FPP
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/fpp_playlist_status.png
    :align: center
    :alt: Playing a playlist
 
+   Adding a new playlist to FPP
+
 The beauty of the PRU is that the Beagle can play a detailed sequence at 
 20 frames per second and the ARM procossor is only 15% used.  The PRUs 
 are doing all the work.
 
 simpPRU -- A python-like language for programming the PRUs 
------------------------------------------------------------
+===========================================================
 
 `simpPRU <https://github.com/VedantParanjape/simpPRU>`_ is a simple, python-like 
 programming languge designed to make programming the PRUs easy. 
@@ -1029,8 +993,9 @@ Now, suppose you wanted to run the
 `LED blink <https://simppru.readthedocs.io/en/latest/examples/led_blink/>`_
 example which is reproduced here.
 
-LED Blink (blink.sim)
-~~~~~~~~~~~~~~~~~~~~~
+.. literalinclude:: code/blink.sim
+   :caption: LED Blink (blink.sim)
+   :linenos:
 
 :download:`blink.sim <code/blink.sim>`
 
@@ -1046,7 +1011,7 @@ Just run simppru
    Current mode for P1_31 is:     pruout
 
 Detected TI AM335x PocketBeagle
---------------------------------
+================================
 
 The +--load+ flag caused the compiled code to be copied to +/lib/firmware+.
 To start just do:
@@ -1064,16 +1029,14 @@ Your LED should now be blinking.
 
 Check out the many examples (https://simppru.readthedocs.io/en/latest/examples/led_blink/).
 
-simpPRU Examples
-~~~~~~~~~~~~~~~~
-
 .. figure:: figures/LEDblink.png
    :align: center
    :alt: simpPRU Examples
 
+   simpPRU Examples
 
 MachineKit
------------
+===========
 
 `MachineKit <http://www.machinekit.io/>`_ is a platform for machine control 
 applications.  It can control machine tools, robots, or other automated devices. It can control servo 
@@ -1120,3 +1083,7 @@ multi-copters, traditional helicopters, fixed wing aircraft and rovers. ArduPilo
    colleges and universities around the world.
 
    http://www.machinekit.io/about/
+
+.. rubric:: Footnotes
+   
+.. [#] Four if you are on the BeagleBone AI
diff --git a/books/pru-cookbook/02start/start.rst b/books/pru-cookbook/02start/start.rst
index dee7273df5bb6ed688a21156b65cf02433d76667..80ee433d0fb94fda96f35a8d6101e3efacc6306e 100644
--- a/books/pru-cookbook/02start/start.rst
+++ b/books/pru-cookbook/02start/start.rst
@@ -13,15 +13,15 @@ code (and the whole book) on the PRU Cookbook github site:
 https://github.com/MarkAYoder/PRUCookbook. 
 
 Selecting a Beagle
-====================
+********************
 
 Problem
-----------
+--------
 
 Which Beagle should you use?
 
 Solution
-----------
+---------
 
 http://beagleboard.org/boards lists the many Beagles from which to choose.  
 Here we'll give examples for the venerable `BeagleBone Black <http://beagleboard.org/black>`_, 
@@ -41,13 +41,12 @@ member of the open hardware Beagle family.
 
 .. _start_black:
 
-BeagleBone Black
-~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/product_detail_black_sm.jpg
     :align: center
     :alt: BeableBone Black
 
+    BeagleBone Black
+
 The Black has:
 
 * AM335x 1GHz ARM® Cortex-A8 processor
@@ -71,13 +70,12 @@ The `Blue <http://beagleboard.org/blue>`_ is a good choice if you are doing robo
 
 .. _start_blue:
 
-BeagleBone Blue
-~~~~~~~~~~~~~~~~
-
 .. figure:: figures/beagle-blue.png
     :align: center
     :alt: BeagleBone Blue
 
+    BeagleBone Blue
+
 The Blue has everything the Black has except it has no Ethernet or HDMI.  
 But it also has:
 
@@ -89,18 +87,17 @@ But it also has:
 * User interface: 11 user programmable LEDs, 2 user programmable buttons
 
 In addition you can mount the Blue on the 
-https://www.renaissancerobotics.com/eduMIP.html[EduMIP kit] as shown in
+`EduMIP kit <https://www.renaissancerobotics.com/eduMIP.html>`_ as shown in
 :ref:`start_edumip` to get a balancing robot.
 
 .. _start_edumip:
 
-BeagleBone Blue EduMIP Kit
-~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/edumip.png
     :align: center
     :alt: BeagleBone Blue EduMIP Kit
 
+    BeagleBone Blue EduMIP Kit
+
 https://www.hackster.io/53815/controlling-edumip-with-ni-labview-2005f8 
 shows how to assemble the robot and control it from 
 `LabVIEW <http://www.ni.com/en-us/shop/labview.html>`_.
@@ -114,13 +111,12 @@ compatible with the other Beagles.
 
 .. _start_pocket:
 
-PocketBeagle
-~~~~~~~~~~~~~
-
 .. figure:: figures/PocketBeagle-size-compare-small.jpg
     :align: center
     :alt: PocketBeagle
 
+    PocketBeagle
+
 The Pocket is based on the same processor as the Black and Blue and has:
 
 * 8 analog inputs
@@ -130,19 +126,18 @@ The Pocket is based on the same processor as the Black and Blue and has:
 See http://beagleboard.org/pocket for more details.
 
 BeagleBone AI
-~~~~~~~~~~~~~~~~~
+~~~~~~~~~~~~~~
 
 If you want to do deep learning, try the  `BeagleBone AI <http://beagleboard.org/ai>`_.
 
 .. _start_ai:
 
-BeagleBone AI
-~~~~~~~~~~~~~~
-
 .. figure:: figures/BB_AI_BeautyAngle_800px.jpg
     :align: center
     :alt: BeableBone AI
 
+    BeagleBone AI
+
 The AI has:
 
 * Dual Arm® Cortex®-A15 microprocessor subsystem
@@ -163,7 +158,7 @@ The AI has:
 
 
 Installing the Latest OS on Your Bone
-======================================
+****************************************
 
 Problem
 ---------
@@ -185,17 +180,16 @@ one for all the other Beagles (
 `AM3358 Debian 10.3 2020-04-06 4GB SD IoT <https://debian.beagleboard.org/images/bone-debian-10.3-iot-armhf-2020-04-06-4gb.img.xz>`_).
 Download the one for your Beagle.
 
-Latest Debian images
-~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/latest-images.png
     :align: center
     :alt: Latest Debian images
 
+    Latest Debian images
+
 It contains all the packages we'll need.
 
 Flashing a Micro SD Card
-=========================
+*************************
 
 Problem
 ---------
@@ -215,17 +209,16 @@ button and wait for it to finish.
 
 .. _start_etcher:
 
-Etcher
-~~~~~~~~
-
 .. figure:: figures/etcher.png
     :align: center
     :alt: Ether
 
+    Etcher
+
 Once the SD is flashed, insert it in the Beagle and power it up.
 
 Cloud9 IDE
-===========
+***********
 
 Problem
 ------------
@@ -241,13 +234,12 @@ a web-based intergrated development environment (IDE) as shown in
 
 .. _start_c9:
 
-Cloud9 IDE
-~~~~~~~~~~~~
-
 .. figure:: figures/c9.png
     :align: center
     :alt: The Cloud9 IDE
 
+    Cloud9 IDE
+
 Just point the browswer on your host computer to http://192.168.7.2 
 and start exploring.  If you want the files in your home directory to appear
 in the tree structure click the settings gear and select *Show Home in Favorites* 
@@ -255,13 +247,12 @@ as shown in :ref:`start_c9_show_home`.
 
 .. _start_c9_show_home:
 
-Cloud9 Showing Home files
-~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/c9ShowHome.png
     :align: center
     :alt: Cloud9 showing home files
 
+    Cloud9 Showing Home files
+
 
 If you want to edit files beyond your home directory you can link to the root file system by:
 
@@ -277,7 +268,7 @@ If you want to edit files beyond your home directory you can link to the root fi
 Now you can reach all the files from Cloud9.
 
 Getting Example Code
-====================
+**********************
 
 Problem
 ---------
@@ -302,7 +293,8 @@ it on your Beagle and then look in the *docs* directory.
     04debug/    08ai/      common/    index.adoc      notes.html  style.html
 
 
-Each chapter has its own directory and within that directory is a **code** directory that has all of the code.
+Each chapter has its own directory and within that directory 
+is a **code** directory that has all of the code.
 
 .. code-block::bash
 
@@ -313,7 +305,7 @@ Each chapter has its own directory and within that directory is a **code** direc
 Go and explore.
 
 Blinking an LED
-=================
+*****************
 
 Problem
 ---------
@@ -330,8 +322,9 @@ is some code that blinks the ``USR3`` LED ten times using the PRU.
 
 .. _start_hello:
 
-hello.pru0.c
-~~~~~~~~~~~~~
+.. literalinclude:: code/hello.pru0.c
+    :caption: hello.pru0.c
+    :linenos:
 
 :download:`hello.pru0.c <code/hello.pru0.c>`
 
@@ -346,7 +339,7 @@ to run it right now do the following.
 .. tip::
 
     If the following doesn't work see 
-    `Compiling with clpru and lnkpru <../03details/details.html#_compiling_with_clpru_and_lnkpru>`_
+    :ref:`compiling_with_clpru_and_lnkpru`
     for instillation instructions.
 
 .. _start_running_code:
diff --git a/books/pru-cookbook/03details/details.rst b/books/pru-cookbook/03details/details.rst
index 24aa20a4bfae86634c1fa6ad1e84cc17776fc765..55f8761fda6acee8c5100a2fbbc7e2f10da22c7c 100644
--- a/books/pru-cookbook/03details/details.rst
+++ b/books/pru-cookbook/03details/details.rst
@@ -20,7 +20,7 @@ compile code and also start and stop the PRUs.
 
 
 Getting Example Code
-=====================
+**********************
 
 Problem
 ---------
@@ -42,10 +42,10 @@ It's all on a GitHub repository.
    code to be identical for specific version. The version needs to be noted in the
    documentation.
 
+.. _compiling_with_clpru_and_lnkpru:
 
 Compiling with clpru and lnkpru
-================================
-
+********************************
 
 Problem
 ---------
@@ -64,6 +64,7 @@ They are called ``clpru`` and ``lnkpru``.  Do the following to see if ``clpru``
     /usr/bin/clpru
 
 .. tip::
+    
     If ``clpru`` isn't installed, follow the instructions at
     https://elinux.org/Beagleboard:BeagleBoneBlack_Debian#TI_PRU_Code_Generation_Tools
     to install it.
@@ -83,6 +84,7 @@ In fact there are PRU versions of many of the standard code generation tools.
 
 code tools
 ~~~~~~~~~~~
+
 .. code-block:: bash
 
     bone$ ls /usr/bin/*pru
@@ -95,7 +97,7 @@ code tools
 See the `PRU Assembly Language Tools <http://www.ti.com/lit/ug/spruhv6b/spruhv6b.pdf>`_ for more details.
 
 Making sure the PRUs are configured
-====================================
+*************************************
 
 Problem
 ---------
@@ -130,7 +132,7 @@ Uncomment the ``uboot_overlay`` line as shown and then reboot.
     0 lrwxrwxrwx 1 root root 33 Jul 29 16:12 pruss-core1 -> /sys/class/remoteproc/remoteproc2
 
 Compiling and Running
-======================
+**********************
 
 Problem
 ---------
@@ -203,6 +205,7 @@ You can override the ``TARGET`` on the command line.
 Notice the ``TARGET`` doesn't have the ``.c`` on the end.
 
 You can also specify them when running ``make``.
+
 .. code-block:: bash
 
     bone$ cp gpio.pru0.c gpio.pru1.c
@@ -211,8 +214,10 @@ You can also specify them when running ``make``.
 The setup file also contains instructions to figure out which Beagle you are running
 and then configure the pins acordingly.
 
-setup.sh
-~~~~~~~~~
+
+.. literalinclude:: code/gpio_setup.sh
+   :caption: gpio_setup.sh
+   :linenos:
 
 :download:`gpio_setup.sh <code/gpio_setup.sh>`
 
@@ -240,7 +245,7 @@ The ``Makefile`` stops the PRU, compiles the file and moves it where it will
 be loaded, and then restarts the PRU.
 
 Stopping and Starting the PRU
-==============================
+*******************************
 
 Problem
 ---------
@@ -278,7 +283,7 @@ If you want to control the other PRU use:
 .. _details_makefile:
 
 The Standard Makefile
-=====================
+**********************
 
 Problem
 ---------
@@ -299,8 +304,9 @@ It's assumed you already know how Makefiles work.  If not, there are
 many resources online that can bring you up to speed.
 Here is the local ``Makefile`` used throughout this book.
 
-Local Makefile
-~~~~~~~~~~~~~~~
+.. literalinclude:: code/Makefile
+   :caption: Local Makefile
+   :linenos:
 
 :download:`Makefile <code/Makefile>`
 
@@ -312,7 +318,7 @@ Fortunately you shouldn't have to modify the `Makefile`.
 .. _detail_linker:
 
 The Linker Command File - am335x_pru.cmd
-=========================================
+******************************************
 
 
 Problem
@@ -328,8 +334,10 @@ where to put what for the BeagleBone Black and Blue, and the Pocket.
 The ``am57xx_pru.cmd`` does the same for the AI.
 Both files can be found in ``/var/lib/cloud9/common``.
 
-am335x_pru.cmd
-~~~~~~~~~~~~~~~~
+
+.. literalinclude:: code/am335x_pru.cmd
+   :caption: am335x_pru.cmd
+   :linenos:
 
 :download:`am335x_pru.cmd <code/am335x_pru.cmd>`
 
@@ -340,44 +348,44 @@ The cmd file for the AI is about the same, with appropriate addresses for the AI
 Discussion
 -----------
 
-
 The important things to notice in the file are given in the following table.
 
 AM335x_PRU.cmd important things
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
 .. table::
 
-    +-----+-----------------------------------------------------------------------------------------+
-    |Line | Explanation                                                                             |
-    +=====+=========================================================================================+
-    |16   | This is where the instructions are stored. See page 206 of the                          |
+    +-----+------------------------------------------------------------------------------------------------+
+    |Line | Explanation                                                                                    |
+    +=====+================================================================================================+
+    |16   | This is where the instructions are stored. See page 206 of the                                 |
     |     | `AM335x Technical Reference Manual rev. P <https://www.ti.com/lit/ug/spruh73p/spruh73p.pdf>`_  |
-    |     | Or see page 417 of                                                                      |
-    |     | `AM572x Technical Reference Manual <http://www.ti.com/lit/pdf/spruhz6l>`_ for the AI.   |
-    +-----+-----------------------------------------------------------------------------------------+
-    |22   | This is where PRU 0's DMEM 0 is mapped.  It's also where PRU 1's                        |
-    |     | DMEM 1 is mapped.                                                                       |
-    +-----+-----------------------------------------------------------------------------------------+
-    |23   | The reverse to above.  PRU 0's DMEM 1 appears here and PRU 1's DMEM 0                   |
-    |     | is here.                                                                                |
-    +-----+-----------------------------------------------------------------------------------------+
-    |26   | The shared memory for both PRU's appears here.                                          |
-    +-----+-----------------------------------------------------------------------------------------+
-    |72   | The `.text` section is where the code goes.  It's mapped to `IMEM`                      |
-    +-----+-----------------------------------------------------------------------------------------+
-    |73   | The ((stack)) is then mapped to DMEM 0. Notice that DMEM 0 is one bank                  |
-    +-----+-----------------------------------------------------------------------------------------+
-    |     | of memory for PRU 0 and another for PRU1, so they both get their own stacks.            |
-    +-----+-----------------------------------------------------------------------------------------+
-    |74   | The `.bss` section is where the **heap** goes.                                          |
-    +-----+-----------------------------------------------------------------------------------------+
+    |     | Or see page 417 of                                                                             |
+    |     | `AM572x Technical Reference Manual <http://www.ti.com/lit/pdf/spruhz6l>`_ for the AI.          |
+    +-----+------------------------------------------------------------------------------------------------+
+    |22   | This is where PRU 0's DMEM 0 is mapped.  It's also where PRU 1's                               |
+    |     | DMEM 1 is mapped.                                                                              |
+    +-----+------------------------------------------------------------------------------------------------+
+    |23   | The reverse to above.  PRU 0's DMEM 1 appears here and PRU 1's DMEM 0                          |
+    |     | is here.                                                                                       |
+    +-----+------------------------------------------------------------------------------------------------+
+    |26   | The shared memory for both PRU's appears here.                                                 |
+    +-----+------------------------------------------------------------------------------------------------+
+    |72   | The `.text` section is where the code goes.  It's mapped to `IMEM`                             |
+    +-----+------------------------------------------------------------------------------------------------+
+    |73   | The ((stack)) is then mapped to DMEM 0. Notice that DMEM 0 is one bank                         |
+    +-----+------------------------------------------------------------------------------------------------+
+    |     | of memory for PRU 0 and another for PRU1, so they both get their own stacks.                   |
+    +-----+------------------------------------------------------------------------------------------------+
+    |74   | The `.bss` section is where the **heap** goes.                                                 |
+    +-----+------------------------------------------------------------------------------------------------+
 
 Why is it important to understand this file?  If you are going to store things
 in DMEM, you need to be sure to start at address 0x0200 since the **stack** and 
 the **heap** are in the locations below 0x0200.
 
 Loading Firmware
-==================
+*****************
 
 Problem
 ---------
@@ -441,7 +449,7 @@ Therefore you copy your ``.out`` file to ``/lib/firmware/am335x-pru0-fw``.
 .. _details_configure_servos:
 
 Configuring Pins for Controlling Servos
-========================================
+****************************************
 
 Problem
 ---------
@@ -455,8 +463,10 @@ It depends on which Beagle you are running on.  If you are on the AI or Blue,
 everything is already configured for you.
 If you are on the Black or Pocket you'll need to run the following script.
 
-servos_setup.sh
-~~~~~~~~~~~~~~~~
+
+.. literalinclude:: code/servos_setup.sh
+   :caption: servos_setup.sh
+   :linenos:
 
 :download:`servos_setup.sh <code/servos_setup.sh>`
 
@@ -470,7 +480,7 @@ assigns ``pins`` a list of pins to configure.  Then the last part of the script
 .. _details_configure_encoders:
 
 Configuring Pins for Controlling Encoders
-==========================================
+*********************************************
 
 Problem
 ---------
@@ -484,7 +494,9 @@ It depends on which Beagle you are running on.  If you are on the AI or Blue,
 everything is already configured for you.
 If you are on the Black or Pocket you'll need to run the following script.
 
-.encoder_setup.sh
+.. literalinclude:: code/encoder_setup.sh
+   :caption: encoder_setup.sh
+   :linenos:
 
 :download:`encoder_setup.sh <code/encoder_setup.sh>`
 
diff --git a/pru-cookbook/04debug/code/AM335x_PRU.cmd b/books/pru-cookbook/04debug/code/AM335x_PRU.cmd
similarity index 100%
rename from pru-cookbook/04debug/code/AM335x_PRU.cmd
rename to books/pru-cookbook/04debug/code/AM335x_PRU.cmd
diff --git a/books/pru-cookbook/04debug/debug.rst b/books/pru-cookbook/04debug/debug.rst
index 7887b96c13784a3202985f7329a53411009bc2ac..42a54d4a220c75e8db8ac7b1a98a480fd1dcda0c 100644
--- a/books/pru-cookbook/04debug/debug.rst
+++ b/books/pru-cookbook/04debug/debug.rst
@@ -13,7 +13,7 @@ Finally, using one of the UARTS to send debugging information out a serial port
 is shown. 
 
 Debugging via an LED
-=====================
+**********************
 
 Problem
 ---------
@@ -28,17 +28,16 @@ flash. :ref:`debug_LED` shows an LED attached to pin P9_29 of the BeagleBone Bla
 
 .. _debug_LED:
 
-LED used for debugging P9_29
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/LED_bb.png
   :align: center
   :alt: LED used for debugging P9_29
 
+  LED used for debugging P9_29
+
 Make sure you have the LED in the correct way, or it won't work.
 
 Discussion
----------
+-----------
 
 If your output is changing more than a few times a second, the LED will be 
 blinking too fast and you'll need an oscilloscope or a logic analyzer to
@@ -50,7 +49,7 @@ RAM is discussed in :ref:`debug_prudebug`.
 .. _dmesg_hw:
 
 dmesg Hw
-=========
+***********
 
 Problem
 ---------
@@ -60,16 +59,16 @@ when I load my code, but don't know what's causing it.
 
 Solution
 ---------
+
 The command ``dmesg`` outputs useful information when dealing with the kernel.
 Simplying running ``dmesg -Hw`` can tell you a lot.  The ``-H`` flag puts the
 dates in the human readable form, the ``-w`` tells it to wait for more information.
 Often I'll have a window open running ``dmesg -Hw``.
-.
 
 Here's what ``dmesg`` said for the example above.
 
 dmesg -Hw
-~~~~~~~~~~
+**********
 
 .. code-block:: bash
 
@@ -83,7 +82,7 @@ to my code.
 .. _debug_prudebug:
 
 prudebug - A Simple Debugger for the PRU
-=========================================
+******************************************
 
 Problem
 ---------
@@ -200,10 +199,7 @@ restart back at the beginning.
 
 The ``dd`` command dumps the memory.  Keep in mind the following.
 
-Important memory locations
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-.. table::
+.. table:: Important memory locations
 
   +-------+---------------------------------------------------------------------------+
   |Address|Contents                                                                   |
@@ -274,12 +270,10 @@ Here's the shared memory.
 You can also use ``prudebug`` to set breakpoints and single step, 
 but I haven't used that feature much.
 
-:ref:`../05blocks/blocks.html#_memory_allocation, Memory Allocation` gives examples 
-of how you can control where your vaiables are stored in memory.
-
+:ref:`memory_allocation` gives examples of how you can control where your vaiables are stored in memory.
 
 UART
-======
+******
 
 Problem
 ---------
@@ -297,44 +291,39 @@ use the UART (serial port) to output debug information.  The PRU has it's
 own UART that can send characters to a serial port.
 
 You'll need a 3.3V FTDI cable to go between your Beagle and the USB port 
-on your host computer as shown in :ref:`debug_ftdi`. [#debug1]_ 
+on your host computer as shown in :ref:`ftdi_cable`. [#debug1]_ 
 you can get such a cable from places such as 
 `Sparkfun <https://www.sparkfun.com/products/9717>`_ or 
 `Adafruit <https://www.adafruit.com/product/70>`_.  
 
-.. _debug_ftdi:
-
-FTDI cable
-~~~~~~~~~~~
+.. _ftdi_cable:
 
 .. figure:: figures/FTDIcable.jpg
   :align: center
   :alt: FTDI cable
 
+  FTDI cable
+
 Discussion
----------
+-----------
 
 The Beagle side of the FTDI cable has a small triangle on it as shown in 
 :ref:`debug_ftdi_connector` which marks the ground pin, pin 1.  
 
 .. _debug_ftdi_connector:
 
-FTDI connector
-~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/FTDIconnector.jpg
   :align: center
   :alt: FTDI connector
 
+  FTDI connector
+
 The :ref:`debug_FTDI` table shows which pins connect where and :ref:`debug_ftdi_pins`
 is a wiring diagram for the BeagleBone Black.
 
 .. _debug_FTDI:
 
-Wriing for FTDI cable to Beagle
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-.. table::
+.. table:: Wring for FTDI cable to Beagle
 
   +--------+------+---------+-------------+--------+------+---------+
   |FTDI pin|Color |Black pin|AI 1 pin     |AI 2 pin|Pocket|Function |
@@ -348,15 +337,14 @@ Wriing for FTDI cable to Beagle
 
 .. _debug_ftdi_pins:
 
-FTDI to BB Black
-~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/FTDIhookup_bb.png
   :align: center
   :alt: FTDI to BB Black
 
+  FTDI to BB Black
+
 Details
-~~~~~~~~
+--------
 
 Two examples of using the UART are presented here. The first 
 (:ref:`debug_uart1`) sends a character out the serial port then 
@@ -375,7 +363,7 @@ Once an ENTER appears the string is sent back.
 You need to set the pin muxes.
 
 config-pin
-~~~~~~~~~~~
+-----------
 
 .. code-block:: bash
 
@@ -391,8 +379,9 @@ config-pin
 
 .. note::
 
-  See :ref:`../08ai/ai.html#ai_device_tree, Configuring pins on the AI via device trees` for configuring 
-  pins on the AI. Make sure your `rx` pins are configured as input pins in the device tree.
+  See :ref:`ai_device_tree` for configuring 
+  pins on the AI. Make sure your `rx` pins are 
+  configured as input pins in the device tree.
 
 For example 
 
@@ -402,15 +391,16 @@ For example
 
 .. * TODO - Add code for Blue.
 
-uart1.pru1_0.c
-~~~~~~~~~~~~~~~
+.. literalinclude:: code/uart1.pru1_0.c
+   :caption: uart1.pru1_0.c
+   :linenos:
 
-Set the following variables so ``make`` will know what to compile.
+:download:`uart1.pru1_0.c <code/uart1.pru1_0.c>`
 
-make
-~~~~~
+Set the following variables so ``make`` will know what to compile.
 
 .. code-block:: bash
+  :caption: make
 
   bone$ *make TARGET=uart1.pru0*
   /var/lib/cloud9/common/Makefile:29: MODEL=TI_AM335x_BeagleBone_Black,TARGET=uart1.pru0
@@ -433,19 +423,19 @@ In a terminal window on your host computer run
 It will initially display the first charters (``H``) and then as you enter
 characters on the keyboard, the rest of the message will appear.
 
-uart1.pru0.c output
-~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/uart1.pru0.png
   :align: center
   :alt: uart1.pru0.c output
 
+  uart1.pru0.c output
+
 Here's the code (``uart1.pru1_0.c``) that does it.
 
 .. _debug_uart1:
 
-uart1.pru1_0.c
-~~~~~~~~~~~~~~~
+.. literalinclude:: code/uart1.pru1_0.c
+   :caption: uart1.pru1_0.c
+   :linenos:
 
 :download:`uart1.pru1_0.c <code/uart1.pru1_0.c>`
 
@@ -472,15 +462,16 @@ receive register on the UART.
 These simple lines should be enough to place in your code to print out
 debugging information.
 
-uart2.pru0.c
-~~~~~~~~~~~~
+.. literalinclude:: code/uart2.pru0.c
+   :caption: uart2.pru0.c
+   :linenos:
 
-If you want to try ``uart2.pru0.c``, run the following:
+:download:`uart2.pru0.c <code/uart2.pru0.c>`
 
-make
-~~~~~
+If you want to try ``uart2.pru0.c``, run the following:
 
 .. code-block:: bash
+  :caption: make
 
   bone$ *make TARGET=uart2.pru0*
   /var/lib/cloud9/common/Makefile:29: MODEL=TI_AM335x_BeagleBone_Black,TARGET=uart2.pru0
@@ -495,13 +486,12 @@ make
 
 You will see:
 
-uart2.pru0.c output
-~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/uart2.pru0.png
   :align: center
   :alt: uart2.pru0.c output
 
+  uart2.pru0.c output
+
 Type a few characters and hit ENTER. The PRU will playback what you typed,
 but it won't echo it as you type.
 
@@ -514,8 +504,9 @@ wait for the FIFO to empty, which may cause your code to miss something.
 
 .. _debug_uart2:
 
-uart2.pru1_0.c
-~~~~~~~~~~~~~~~
+.. literalinclude:: code/uart2.pru1_0.c
+   :caption: uart2.pru1_0.c
+   :linenos:
 
 :download:`uart2.pru1_0.c <code/uart2.pru1_0.c>`
 
@@ -524,11 +515,12 @@ More complex examples can be built using the principles shown in these examples.
 Copyright
 ==========
 
-copyright.c
-~~~~~~~~~~~~~
+.. literalinclude:: code/copyright.c
+   :caption: copyright.c
+   :linenos:
 
 :download:`copyright.c <code/copyright.c>`
 
 .. rubric:: Footnotes
 
-.. [#debug1] FTDI images are from the BeagleBone Cookbook http://shop.oreilly.com/product/0636920033899.do
+.. [#debug1] `FTDI images are from the BeagleBone Cookbook <http://shop.oreilly.com/product/0636920033899.do>`_
diff --git a/books/pru-cookbook/05blocks/blocks.rst b/books/pru-cookbook/05blocks/blocks.rst
index e6de06e35ef9851530791b1518ba28ef68a765c4..f675235cf1ead5bf16c306fb0cd0d1c87e19acc6 100644
--- a/books/pru-cookbook/05blocks/blocks.rst
+++ b/books/pru-cookbook/05blocks/blocks.rst
@@ -7,17 +7,20 @@ Here are some examples that use the basic PRU building blocks.
 
 The following are resources used in this chapter.
 
-Resources
-~~~~~~~~~~
+.. note::
+
+   *Resources*
 
-* `PRU Optimizing C/C++ Compiler, v2.2, User's Guide <http://www.ti.com/lit/ug/spruhv7b/spruhv7b.pdf>`_
-* `AM572x Technical Reference Manual <http://www.ti.com/lit/pdf/spruhz6l>`_ (AI)
-* `AM335x Technical Reference Manual <http://www.ti.com/lit/pdf/spruh73>`_ (All others)
-* `Exploring BeagleBone by Derek Molloy <http://exploringbeaglebone.com/>`_
-* `WS2812 Data Sheet <https://cdn-shop.adafruit.com/datasheets/WS2812.pdf>`_
+   * `PRU Optimizing C/C++ Compiler, v2.2, User's Guide <http://www.ti.com/lit/ug/spruhv7b/spruhv7b.pdf>`_
+   * `AM572x Technical Reference Manual <http://www.ti.com/lit/pdf/spruhz6l>`_ (AI)
+   * `AM335x Technical Reference Manual <http://www.ti.com/lit/pdf/spruh73>`_ (All others)
+   * `Exploring BeagleBone by Derek Molloy <http://exploringbeaglebone.com/>`_
+   * `WS2812 Data Sheet <https://cdn-shop.adafruit.com/datasheets/WS2812.pdf>`_
+
+.. _memory_allocation:
 
 Memory Allocation
-==================
+******************
 
 
 Problem
@@ -35,13 +38,12 @@ shared memory (Shared RAM) as shown in :ref:`blocks_PRU_block_diagram`.
 
 .. _blocks_PRU_block_diagram:
 
-PRU Block Diagram
-~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/blockDiagram.png
   :align: center
   :alt: PRU Block diagram
 
+  PRU Block Diagram
+
 Each PRU accesses it's own DRAM starting at location 0x0000_0000. Each PRU
 can also access the other PRU's DRAM starting at 0x0000_2000. Both PRUs 
 access the shared RAM at 0x0001_0000. The compiler can control where each 
@@ -51,8 +53,9 @@ of these memories variables are stored.
 
 .. _blocks_shared:
 
-shared.pro0.c - Examples of Using Different Memory Locations
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+.. literalinclude:: code/shared.pru0.c
+   :caption: shared.pro0.c - Examples of Using Different Memory Locations
+   :linenos:
 
 :download:`shared.pru0.c <code/shared.pru0.c>`
 
@@ -62,8 +65,7 @@ Discussion
 
 Here's the line-by-line
 
-Line-byline for shared.pru0.c
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+.. table:: Line-byline for shared.pru0.c
 
   +-------+---------------------------------------------------------------------------------------------------------+
   |Line   | Explanation                                                                                             |
@@ -155,9 +157,7 @@ therefore placed on the stack at run time.  The ``shared.map`` file shows the
 compile time allocations.  We have to look in the memory itself to see what
 happen at run time.
 
-Let's fire up ``prudebug`` 
-(:ref:`../04debug/debug.html#debug_prudebug, prudebug - A Simple Debugger for the PRU`)
-to see where things are.
+Let's fire up ``prudebug`` (:ref:`debug_prudebug`) to see where things are.
 
 .. code-block:: bash
 
@@ -233,10 +233,10 @@ be sure if you are hand picking where things are put, not to put them in places
 used by the compiler.
 
 Auto Initialization of built-in LED Triggers
-=============================================
+*********************************************
 
 Problem
------------
+---------
 
 I see the built-in LEDs blink to their own patterns. 
 How do I turn this off? Can this be automated?
@@ -312,8 +312,9 @@ the code work.  Fortunately the Makefile always runs it.
 
 .. _blocks_write_init_pins:
 
-write_init_pins.sh
-~~~~~~~~~~~~~~~~~~~
+.. literalinclude:: code/write_init_pins.sh
+   :caption: write_init_pins.sh
+   :linenos:
 
 :download:`write_init_pins.sh <code/write_init_pins.sh>`
 
@@ -338,7 +339,7 @@ file contains everything needed to run the executable.
 .. _blocks_pwm:
 
 PWM Generator
-==============
+**************
 
 One of the simplest things a PRU can to is generate a simple
 signal starting with a single channel PWM that has a fixed frequency and
@@ -365,8 +366,9 @@ for details on making it work.
 
 .. _blocks_pwm1:
 
-pwm1.pru0.c 
-~~~~~~~~~~~~
+.. literalinclude:: code/pwm1.pru0.c
+   :caption: pwm1.pru0.c
+   :linenos:
 
 :download:`pwm1.pru0.c <code/pwm1.pru0.c>`
 
@@ -385,7 +387,7 @@ On the Pocket run
 
 .. note::
 
-  See :ref:`../08ai/ai.html#ai_device_tree, Configuring pins on the AI via device trees` 
+  See :ref:`ai_device_tree` 
   for configuring pins on the AI.
 
 Then, tell ``Makefile`` which PRU you are compiling for and what your target file is
@@ -417,17 +419,17 @@ Discussion
 
 Since this is our first example we'll discuss the many parts in detail.
 
-pwm1.pru0.c
-~~~~~~~~~~~~
+.. literalinclude:: code/pwm1.pru0.c
+   :caption: pwm1.pru0.c
+   :linenos:
+
+:download:`pwm1.pru0.c <code/pwm1.pru0.c>`
 
 :ref:`blocks_pwm1_line_by_line` is a line-by-line expanation of the c code.
 
 .. _blocks_pwm1_line_by_line:
 
-Line-by-line of pwm1.pru0.c
-~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-.. table::
+.. table:: Line-by-line of pwm1.pru0.c
 
   +-----+-------------------------------------------------------------------------------------+
   |Line | Explanation                                                                         |
@@ -446,34 +448,32 @@ Line-by-line of pwm1.pru0.c
 
 Here's what's in ``resource_table_empty.h``
 
-resource_table_empty.c 
-~~~~~~~~~~~~~~~~~~~~~~~
+.. literalinclude:: code/resource_table_empty.h
+   :caption: resource_table_empty.c
+   :linenos:
 
-:download:`resource_table_empty.h <code/resource_table_empty.h>`
+:download:`resource_table_empty.c <code/resource_table_empty.h>`
 
-Line-by-line (continuted)
-~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-.. table::
+.. table:: Line-by-line (continuted)
 
   +-----+-----------------------------------------------------------------------------------------------------------------+
   |Line | Explanation                                                                                                     |
   +=====+=================================================================================================================+
-  |6-7  | `pass:[__]R30` and `pass:[__]R31` are two variables that refer to the                                           |
-  |     | PRU output (`pass:[__]R30`) and input (`pass:[__]R31`) registers.                                               |
-  |     | When you write something to `pass:[__]R30` it will show up on the                                               |
-  |     | corresponding output pins. When you read from `pass:[__]R31`                                                    |
+  |6-7  | ``__R30`` and ``__R31`` are two variables that refer to the                                                     |
+  |     | PRU output (``__R30``) and input (``__R31``) registers.                                                         |
+  |     | When you write something to ``__R30`` it will show up on the                                                    |
+  |     | corresponding output pins. When you read from ``__R31``                                                         |
   |     | you read the data on the input pins.                                                                            |
   |     | NOTE: Both names begin with two underscore's. Section 5.7.2 of the                                              |
-  |     | http://www.ti.com/lit/ug/spruhv7b/spruhv7b.pdf[PRU Optimizing C/C++ Compiler, v2.2, User's Guide]               |
+  |     | `PRU Optimizing C/C++ Compiler, v2.2, User's Guide <http://www.ti.com/lit/ug/spruhv7b/spruhv7b.pdf>`_           |
   |     | gives more details.                                                                                             |
   +-----+-----------------------------------------------------------------------------------------------------------------+
-  |11   | This line selects which GPIO pin to toggle.  The table below shows which bits in `pass:[__]R30`                 |
+  |11   | This line selects which GPIO pin to toggle.  The table below shows which bits in ``__R30``                      |
   |     | map to which pins                                                                                               |
   +-----+-----------------------------------------------------------------------------------------------------------------+
   |14   | `CT_CFG.SYSCFG_bit.STANDBY_INIT` is set to `0` to enable the OCP master port. More details on this              |
   |     | and thousands of other regesters see the                                                                        |
-  |     | https://www.ti.com/lit/ug/spruh73p/spruh73p.pdf[AM335x Technical Reference Manual]. Section 4 is on the PRU     |
+  |     | `TI AM335x TRM <https://www.ti.com/lit/ug/spruh73p/spruh73p.pdf>`_. Section 4 is on the PRU                     |
   |     | and section 4.5 gives details for all the registers.                                                            |
   +-----+-----------------------------------------------------------------------------------------------------------------+
 
@@ -483,10 +483,7 @@ Bit 0 is the LSB.
 
 .. _blocks_mapping_bits:
 
-Mapping bit positions to pin names
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-.. table:: 
+.. table:: Mapping bit positions to pin names
 
   +---+---+---------------------+-----------+
   |PRU|Bit|Black pin            |Pocket pin |
@@ -550,34 +547,32 @@ Mapping bit positions to pin names
 
 .. note::
 
-  See :ref:`../08ai/ai.html#ai_device_tree, Configuring pins on the AI via device trees` 
+  See :ref:`ai_device_tree` 
   for all the PRU pins on the AI.
 
 Since we are running on PRU 0, and we're using ``0x0001``, 
 that is bit 0, we'll be toggling ``P9_31``.
 
-Line-by-line (continued again)
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
-.. table::
+.. table:: Line-by-line (continued again)
 
   +-----+-----------------------------------------------------------------------+
   |Line | Explanation                                                           |
   +=====+=======================================================================+
-  |17   | Here is where the action is.  This line reads ``pass:[__]R30`` and    |
+  |17   | Here is where the action is.  This line reads ``__R30`` and           |
   |     | then ORs it with ``gpio``, setting the bits where there is            |
   |     | a 1 in ``gpio`` and leaving the bits where there is a 0.              |
   |     | Thus we are setting the bit we selected. Finally the new              |
-  |     | value is written back to ``pass:[__]R30``.                            |
+  |     | value is written back to ``__R30``.                                   |
   +-----+-----------------------------------------------------------------------+
-  |18   | ``pass:[__]delay_cycles`` is an ((instrinsic function)) that delays   |
+  |18   | ``__delay_cycles`` is an ((instrinsic function)) that delays          |
   |     | with number of cycles passed to it. Each cycle is 5ns,                |
   |     | and we are delaying 100,000,000 cycles which is                       |
   |     | 500,000,000ns, or 0.5 seconds.                                        |
   +-----+-----------------------------------------------------------------------+
   |19   | This is like line 17, but ``~gpio`` inverts all the bits in ``gpio``  |
   |     | so that where we had a 1, there is now a 0.  This 0                   |
-  |     | is then ANDed with ``pass:[__]R30`` setting the corresponding         |
+  |     | is then ANDed with ``__R30`` setting the corresponding                |
   |     | bit to 0.  Thus we are clearing the bit we selected.                  |
   +-----+-----------------------------------------------------------------------+
 
@@ -590,31 +585,30 @@ Line-by-line (continued again)
 
 When you run this code and look at the output you will see something like the following figure.
 
-Output of pwm1.pru0.c with 100,000,000 delays cycles giving a 1s period
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 .. figure:: figures/pwm1.png
   :align: center
   :alt: pwm1.pru0.c output
 
+  Output of pwm1.pru0.c with 100,000,000 delays cycles giving a 1s period
+
 Notice the on time (``+Width(1)``) is 500ms, just as we predicted.  
 The off time is 498ms, which is only 2ms off from our prediction. 
 The standard deviation is 0, or only 380as, which is 380 * 10^-18^!.
 
 You can see how fast the PRU can run by setting both of the 
-``pass:[__]delay_cycles`` to 0. This results in the next figure.
-
-Output of pwm1.pru0c with 0 delay cycles
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+``__delay_cycles`` to 0. This results in the next figure.
 
 .. figure:: figures/pwm2.png
   :align: center
   :alt: pwm1.pru0.c output with 0 delay
 
+  Output of pwm1.pru0c with 0 delay cycles
+
 Notice the period is 15ns which gives us a frequency of about 67MHz. At this high 
 frequency the breadboard that I'm using distorts the waveform so it's no longer a squarewave. 
-The **on** time is 5.3ns and the **off** time is 9.8ns.  That means **pass:[__]R30 |= gpio** 
-took only one 5ns cycle and ``pass:[__]R30 &= ~gpio`` also only took one cycle, but there 
+The **on** time is 5.3ns and the **off** time is 9.8ns.  That means **__R30 |= gpio** 
+took only one 5ns cycle and ``__R30 &= ~gpio`` also only took one cycle, but there 
 is also an extra cycle needed for the loop.  This means the compiler was able to implement 
 the ``while`` loop in just three 5ns instructions!  Not bad.
 
@@ -622,29 +616,35 @@ We want a square wave, so we need to add a delay to correct for the delay of loo
 
 Here's the code that does just that.
 
-pwm2.pru0.c 
-~~~~~~~~~~~~~
+.. literalinclude:: code/pwm2.pru0.c
+   :caption: pwm2.pru0.c
+   :linenos:
 
 :download:`pwm2.pru0.c <code/pwm2.pru0.c>`
 
 The output now looks like:
 
-Output of pwm2.pru0.c corrected delay
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/pwm3.png
   :align: center
   :alt: pwm2.c corrected delay
 
-It's not hard to adjust the two ``pass:[__]delay_cycles`` 
+  Output of pwm2.pru0.c corrected delay
+
+It's not hard to adjust the two ``__delay_cycles`` 
 to get the desired frequency and duty cycle.
 
-### Controlling the PWM Frequency
-#### Problem
+Controlling the PWM Frequency
+******************************
+
+Problem
+---------
+
 You would like to control the frequency and 
 duty cycle of the PWM without recompiling.
 
-#### Solution
+Solution
+----------
+
 Have the PRU read the **on** and **off** times from a shared memory location. 
 Each PRU has is own 8KB of data memory (DRAM) and 12KB of shared memory 
 (SHAREDMEM) that the ARM processor can also access.  See :ref:`blocks_PRU_block_diagram`.
@@ -654,8 +654,7 @@ The DRAM 0 address is 0x0000 for PRU 0.  The same DRAM appears at address
 
 .. tip::
 
-  See page
-  184 of the https://www.ti.com/lit/ug/spruh73p/spruh73p.pdf[AM335x Technical Reference Manual].  
+  See page 184 of the `AM335x TRM (184) <https://www.ti.com/lit/ug/spruh73p/spruh73p.pdf>`_. 
 
 We take the previous PRU code and add the lines
  
@@ -692,15 +691,17 @@ the ARM can write values into the DRAM and change the PWM on and off times.
 
 .. _blocks_pwm4:
 
-pwm4.pru0.c 
-~~~~~~~~~~~~
+.. literalinclude:: code/pwm4.pru0.c
+   :caption: pwm4.pru0.c
+   :linenos:
 
 :download:`pwm4.pru0.c <code/pwm4.pru0.c>`
 
 Here is code that runs on the ARM side to set the on and off time values.
 
-pwm-test.c 
-~~~~~~~~~~~~
+.. literalinclude:: code/pwm-test.c
+   :caption: pwm-test.c
+   :linenos:
 
 :download:`pwm-test.c <code/pwm-test.c>`
 
@@ -708,13 +709,12 @@ A quick check on the 'scope shows :ref:`blocks_pwm_arm_control`.
 
 .. _blocks_pwm_arm_control:
 
-Four Channel PWM with ARM control
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/pwm4.png
   :align: center
   :alt: pwm4.png
 
+  Four Channel PWM with ARM control
+
 From the 'scope you see a 1 cycle **on** time results in a 450ns wide pulse and a 
 3.06us period is 326KHz, much slower than the 10ns pulse we saw before.  But it 
 may be more than fast enough for many applications.  For example, most servos run at 50Hz.
@@ -722,39 +722,35 @@ may be more than fast enough for many applications.  For example, most servos ru
 But we can do better.
 
 Loop Unrolling for Better Performance
-======================================
+***************************************
 
 Problem
------------
+---------
 
 The ARM controlled PRU code runs too slowly.
 
 Solution
------------
+----------
 
-Simple loop unrolling can greatly improve the speed.  ``pwm5.pru0.c`` is our unrolled
-version.
+Simple loop unrolling can greatly improve the speed.  ``pwm5.pru0.c`` is our unrolled version.
 
-pwm5.pru0.c Unrolled
-~~~~~~~~~~~~~~~~~~~~~
+.. literalinclude:: code/pwm5.pru0.c
+   :caption: pwm5.pru0.c Unrolled
+   :linenos:
 
 :download:`pwm5.pru0.c <code/pwm5.pru0.c>`
 
 The output of ``pwm5.pru0.c`` is in the figure below.
 
-pwm5.pru0.c Unrolled version of pwm4.pru0.c
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/pwm5_no_loop.png
   :align: center
   :alt: pwm5.pru0.c Unrolled version of pwm4.pru0.c
 
-It's running about 6 times faster than ``pwm4.pru0.c``.
+  pwm5.pru0.c Unrolled version of pwm4.pru0.c
 
-pwm4.pru0.c vs. pwm5.pru0.c
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+It's running about 6 times faster than ``pwm4.pru0.c``.
 
-.. table::
+.. table:: pwm4.pru0.c vs. pwm5.pru0.c
   
   +---------+-----------------+-----------------+---------+-----------------------+---------+
   |Measure  |pwm4.pru0.c time |pwm5.pru0.c time |Speedup  |pwm5.pru0.c w/o UNROLL |Speedup  |
@@ -786,7 +782,7 @@ it copies the code an then it's compiled.
 This unrolling gets us an impressive 6x speedup.
 
 Making All the Pulses Start at the Same Time
-=============================================
+**********************************************
 
 Problem
 -----------
@@ -802,21 +798,22 @@ in each channel starts about 15ns later than the channel above it.
 
 .. _blocks_zoomed:
 
-pwm5.pru0 Zoomed In 
-~~~~~~~~~~~~~~~~~~~~~
 .. figure:: figures/pwm5_zoomed.png
   :align: center
   :alt: pwm5.pru0 zoomed.png
 
-The solution is to declare ``Rtmp`` (line 35) which holds the value for ``pass:[__]R30``.
+  pwm5.pru0 Zoomed In 
+
+The solution is to declare ``Rtmp`` (line 35) which holds the value for ``__R30``.
 
-pwm6.pru0.c Sync'ed Version of pwm5.pru0.c 
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+.. literalinclude:: code/pwm6.pru0.c
+   :caption: pwm6.pru0.c Sync'ed Version of pwm5.pru0.c 
+   :linenos:
 
 :download:`pwm6.pru0.c Sync'ed Version of pwm5.pru0.c <code/pwm6.pru0.c>`
 
 Each channel writes it's value to ``Rtmp`` (lines 17 and 20) and then after
-each channel has updated, ``Rtmp`` is copied to ``pass:[__]R30`` (line 54).
+each channel has updated, ``Rtmp`` is copied to ``__R30`` (line 54).
 
 Discussion
 -----------
@@ -824,16 +821,16 @@ Discussion
 The following figure shows the channel are sync'ed. Though the period is slightly
 longer than before.
 
-pwm6.pru0 Synchronized Channels
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 .. figure:: figures/pwm6_synced.png
   :align: center
   :alt: pwm6.pru0 Synchronized Channels
 
+  pwm6.pru0 Synchronized Channels
+
 
 Adding More Channels via PRU 1
-================================
+*******************************
 
 Problem
 -----------
@@ -857,15 +854,17 @@ will make the period half as long.
 
 Here's the code (``pwm7.pru0.c``)
 
-pwm7.pru0.c Using Both PRUs
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+.. literalinclude:: code/pwm7.pru0.c
+   :caption: pwm7.pru0.c Using Both PRUs
+   :linenos:
 
 :download:`pwm7.pru0.c Using Both PRUs <code/pwm7.pru0.c>`
 
 Be sure to run ``pwm7_setup.sh`` to get the correct pins configured.
 
-pwm7_setup.sh
-~~~~~~~~~~~~~~~
+.. literalinclude:: code/pwm7_setup.sh
+   :caption: pwm7_setup.sh
+   :linenos:
 
 :download:`pw7_setup.sh <code/pwm7_setup.sh>`
 
@@ -908,6 +907,7 @@ Discussion
 
 There weren't many changes to be made.  Line 15 we set MAXCH to 2. Lines 44-48
 is where the big change is.
+
 .. code-block:: c
 
 		pru0_dram[2*ch  ] = on [ch+PRUNUN*MAXCH];	// Copy to DRAM0 so the ARM can change it
@@ -924,30 +924,28 @@ behavior.
 
 Running the code you will see the next figure.
 
-pwm7.pru0 Two PRUs running
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/pwm7_two_prus_running.png
   :align: center
   :alt: pwm7.pru0 Two PRUs running
 
+  pwm7.pru0 Two PRUs running
+
 What's going on there, the first channels look fine, but the PRU 1 channels
 are blurred.  To see what's happening, let's stop the oscilloscope.
 
-pwm7.pru0 Two PRUs stopped
-~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/pwm7_two_prus_stopped.png
   :align: center
   :alt: pwm7 Two PRUs stopped
 
+  pwm7.pru0 Two PRUs stopped
+
 The stopped display shows that the four channels are doing what we wanted, except 
 The PRU 0 channels have a period of 370ns while the PRU 1 channels at 330ns.
 It appears the compiler has optimied the two PRUs slightly differenty.
 
 
 Synchronizing Two PRUs
-=======================
+***********************
 
 Problem
 -----------
@@ -958,26 +956,28 @@ Solution
 -----------
 
 Use the Interrupt Controller (INTC).  It allows one PRU to signal the other.
-Page 225 of the `AM335x Technical Reference Manual <https://www.ti.com/lit/ug/spruh73p/spruh73p.pdf>`_
+Page 225 of the `AM335x TRM 225 <https://www.ti.com/lit/ug/spruh73p/spruh73p.pdf>`_
 has details of how it works.  Here's the code for PRU 0, which at the end of the
 ``while`` loop signals PRU 1 to start(``pwm8.pru0.c``).
 
-pwm8.pru0.c PRU 0 using INTC to send a signal to PRU 1 
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+.. literalinclude:: code/pwm8.pru0.c
+   :caption: pwm8.pru0.c PRU 0 using INTC to send a signal to PRU 1 
+   :linenos:
 
 :download:`pwm8.pru0.c  PRU 0 using INTC to send a signal to PRU 1 <code/pwm8.pru0.c>`
 
 PRU 2's code waits for PRU 0 before going.
 
-pwm8.pru1.c PRU 1 waiting for INTC from PRU 0 
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+.. literalinclude:: code/pwm8.pru1.c
+   :caption: pwm8.pru1.c PRU 1 waiting for INTC from PRU 0
+   :linenos:
 
 :download:`pwm8.pru1.c PRU 1 waiting for INTC from PRU 0 <code/pwm8.pru1.c>`
 
 In ``pwm8.pru0.c`` PRU 1 waits for a signal from PRU 0, so be sure to start PRU 1 first.
 
 .. code-block:: bash
-
+  
   bone$ *make TARGET=pwm8.pru0; make TARGET=pwm8.pru1*
 
 Discussion
@@ -986,31 +986,27 @@ Discussion
 The figure below shows the two PRUs are synchronized, though there is some extra
 overhead in the process so the period is longer.
 
-pwm8.pru0 PRUs sycned
-~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/pwm8_prus_sycned.png
   :align: center
   :alt: pwm8.pru0 PRUs sycned
 
-This isn't much different from the previous examples.
+  pwm8.pru0 PRUs sycned
 
-pwm8.pru0.c changes from pwm7.pru0.c 
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+This isn't much different from the previous examples.
 
-.. table::
+.. table:: pwm8.pru0.c changes from pwm7.pru0.c
 
   +-----+-------+---------------------------------------------------------------------------------------+
   |PRU  |Line   |Change                                                                                 |
   +=====+=======+=======================================================================================+
   |0    |37-45  |For PRU 0 these define ``configInitc()`` which initializes the interupts.              |
   |     |       |See page 226 of the                                                                    |
-  |     |       |`AM335x Technical Reference Manual <https://www.ti.com/lit/ug/spruh73p/spruh73p.pdf>`_ |
+  |     |       |`AM335x TRM <https://www.ti.com/lit/ug/spruh73p/spruh73p.pdf>`_                        |
   |     |       |for a diagram explaining events, channels, hosts, etc.                                 |
   +-----+-------+---------------------------------------------------------------------------------------+
   |0    |55-56  |Set a configuration register and call `configInitc`.                                   |
   +-----+-------+---------------------------------------------------------------------------------------+
-  |1    |59-61  |PRU 1 then waits for PRU 0 to signal it.  Bit 31 of ``pass:[__]R31`` corresponds       |
+  |1    |59-61  |PRU 1 then waits for PRU 0 to signal it.  Bit 31 of ``__R31`` corresponds              |
   |     |       |to the Host-1 channel which ``configInitc()`` set up. We also clear event 16 so        |
   |     |       |PRU 0 can set it again.                                                                |
   +-----+-------+---------------------------------------------------------------------------------------+
@@ -1022,7 +1018,7 @@ pwm8.pru0.c changes from pwm7.pru0.c
 This ends the multipart pwm example.
 
 Reading an Input at Regular Intervals
-======================================
+**************************************
 
 Problem
 -----------
@@ -1032,15 +1028,11 @@ You have an input pin that needs to be read at regular intervals.
 Solution
 -----------
 
-You can use the ``pass:[__]R31`` register to read an input pin. Let's use the following
-pins.
+You can use the ``__R31`` register to read an input pin. Let's use the following pins.
 
 .. _blocks_io_pins:
 
-Input/Output pins
-~~~~~~~~~~~~~~~~~~
-
-.. table::
+.. table:: Input/Output pins
 
   +---------+----------+-----+----------+---------+
   |Direction|Bit number|Black|AI (ICSS2)|Pocket   |
@@ -1054,25 +1046,27 @@ These values came from :ref:`blocks_mapping_bits`.
 
 Configure the pins with ``input_setup.sh``.
 
-input_setup.sh
-~~~~~~~~~~~~~~~
+.. literalinclude:: code/input_setup.sh
+   :caption: input_setup.sh
+   :linenos:
 
 :download:`input_setup.sh <code/input_setup.sh>`
 
 The following code reads the input pin and writes its value to the output pin.
 
-input.c
-~~~~~~~~~~
+.. literalinclude:: code/input.pru0.c
+   :caption: code/input.pru0.c
+   :linenos:
 
 :download:`input.pru0.c <code/input.pru0.c>`
 
 Discussion
 -----------
 
-Just remember that ``pass:[__]R30`` is for outputs and ``pass:[__]R31`` is for inputs.
+Just remember that ``__R30`` is for outputs and ``__R31`` is for inputs.
 
 Analog Wave Generator
-=======================
+**********************
 
 Problem
 -----------
@@ -1092,13 +1086,13 @@ a large duty cycle for when it is large.
 
 This example was inspired by 
 `A PRU Sin Wave Generator <https://github.com/derekmolloy/exploringBB/tree/master/chp13/sineWave>`_
-in chapter 13 of 
-`Exploring BeagleBone by Derek Molloy<http://exploringbeaglebone.com/>`_.
+in chapter 13 of `Exploring BeagleBone by Derek Molloy <http://exploringbeaglebone.com/>`_.
 
 Here's the code.
 
-sine.pru0.c
-~~~~~~~~~~~~~
+.. literalinclude:: code/sine.pru0.c
+   :caption: sine.pru0.c
+   :linenos:
 
 :download:`sine.pru0.c <code/sine.pru0.c>`
 
@@ -1124,32 +1118,27 @@ Suppose you want to generate a sawtooth waveform like the one shown in :ref:`blo
 
 .. _blocks_sawtooth:
 
-Continuous Sawtooth Waveform
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/sawtoothsmooth.png
   :align: center
   :alt: Continuous Sawtooth Waveform
 
+  Continuous Sawtooth Waveform
+
 You need to sample the waveform and store one cycle. :ref:`blocks_sawtoothsampled`
 shows a sampled version of the sawtooth. You need to generate ``MAXT`` samples; 
 here we show 20 samples, which may be enough. In the code ``MAXT`` is set to 100.
 
 .. _blocks_sawtoothsampled:
 
-Sampled Sawtooth Waveform
-~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/sawtoothsampled.png
   :align: center
   :alt: Sampled Sawtooth Waveform
 
-There's a lot going on here; let's take it line by line.
+  Sampled Sawtooth Waveform
 
-Line-by-line of sine.pru0.c
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+There's a lot going on here; let's take it line by line.
 
-.. table::
+.. table:: Line-by-line of sine.pru0.c
 
   +-------+---------------------------------------------------------------------------------+
   |Line   | Explanation                                                                     |
@@ -1194,13 +1183,12 @@ Line-by-line of sine.pru0.c
 
 .. _blocks_sawunfiltered:
 
-Unfiltered Sawtooth Waveform
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/sawunfiltered.png
   :align: center
   :alt: Unfiltered Sawtooth Waveform
 
+  Unfiltered Sawtooth Waveform
+
 It doesn't look like a sawtooth; but if you look at the left side you will 
 see each cycle has a longer and longer on time.  The duty cycle is increasing.
 Once it's almost 100% duty cycle, it switches to a very small duty cycle.
@@ -1214,13 +1202,12 @@ A simple low-pass filter, built with one resistor and one capacitor will do it.
 
 .. _blocks_filterwiring:
 
-Low-Pass Filter Wiring Diagram
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/filter_bb.png
   :align: center
   :alt: Low-Pass Filter Wiring Diagram
 
+  Low-Pass Filter Wiring Diagram
+
 .. note::
 
   I used a 10K variable resistor and a 0.022uF capacitor.
@@ -1231,13 +1218,12 @@ Low-Pass Filter Wiring Diagram
 
 .. _blocks_sawscope:
 
-Reconstructed Sawtooth Waveform
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/sawscope.png
   :align: center
   :alt: Reconstructed Sawtooth Waveform
 
+  Reconstructed Sawtooth Waveform
+
 Now that looks more like a sawtooth wave.  The top plot is the time-domain
 plot of the output of the low-pass filter. The bottom plot is the FFT of the top 
 plot, therefore it's the frequency domain. We are getting a sawtooth with a
@@ -1252,13 +1238,12 @@ resistor.  You'll see something like :ref:`blocks_lowercutoff`.
 
 .. _blocks_lowercutoff:
 
-Reconstructed Sawtooth Waveform with Lower Cutoff Frequency
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/sawlowercutoff.png
   :align: center
   :alt: Reconstructed Sawtooth Waveform with Lower Cutoff Frequency
 
+  Reconstructed Sawtooth Waveform with Lower Cutoff Frequency
+
 The high freqencies have been reduced, but the corner of the waveform has 
 been rounded.  You can also adjust the cutoff to a higher frequency and you'll 
 get a sharper corner, but you'll also get more high frequencies. See 
@@ -1266,13 +1251,12 @@ get a sharper corner, but you'll also get more high frequencies. See
 
 .. _blocks_highercutoff:
 
-Reconstructed Sawtooth Waveform with Higher Cutoff Frequency
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/sawhighercutoff.png
   :align: center
   :alt: Reconstructed Sawtooth Waveform with Higher Cutoff Frequency
 
+  Reconstructed Sawtooth Waveform with Higher Cutoff Frequency
+
 Adjust to taste, though the real solution is to build a higher order filter. 
 Search for _second order **filter** and you'll find some nice circuits.
 
@@ -1285,24 +1269,22 @@ You can also get a triangle waveform by setting the ``#define``.
 
 .. _blocks_triangle:
 
-Reconstructed Triangle Waveform
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/triangle.png
   :align: center
   :alt: Reconstructed Triangle Waveform
 
+  Reconstructed Triangle Waveform
+
 And also the sine wave as shown in :ref:`blocks_sine`.
 
 .. _blocks_sine:
 
-Reconstructed Sinusoid Waveform
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/sine.png
   :align: center
   :alt: Reconstructed Sinusoid Waveform
 
+  Reconstructed Sinusoid Waveform
+
 Notice on the bottom plot the harmonics are much more suppressed.
 
 Generating the sine waveform uses **floats**. This requires much more code.
@@ -1311,8 +1293,9 @@ You can look in `/tmp/cloud9-examples/sine.pru0.map` to see how much memory is b
 
 .. _blocks_sine_map:
 
-/tmp/cloud9-examples/sine.pru0.map for Sine Wave
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+.. literalinclude:: code/sine.map
+   :caption: /tmp/cloud9-examples/sine.pru0.map for Sine Wave
+   :linenos:
 
 :download:`lines=1..22 <code/sine.map>`
 
@@ -1330,7 +1313,7 @@ to the PRU.
 .. _blocks_ws2812:
 
 WS2812 (NeoPixel) driver
-==========================
+***************************
 
 Problem
 -----------
@@ -1353,40 +1336,38 @@ Wire the input to ``P9_29`` and power to 3.3V and ground to ground as shown in
 
 .. _blocks_neo_wiring:
 
-.NeoPixel Wiring
 .. figure:: figures/neo_bb.png
   :align: center
   :alt: NeoPixel Wiring
 
+  NeoPixel Wiring
+
 Test your wiring with the simple code in :ref:`blocks_neo1` 
 which to turns all pixels white.
 
 .. _blocks_neo1:
 
-neo1.pru0.c - Code to turn all NeoPixels's white
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-.. code-block:: bash
+.. literalinclude:: code/neo1.pru0.c
+   :caption: neo1.pru0.c - Code to turn all NeoPixels's white
+   :linenos:
 
 :download:`neo1.pru0.c <code/neo1.pru0.c>`
 
 Discussion
 -----------
 
-:ref:`blocks_sequence` (taken from  `WS2812 Data Sheet <https://cdn-shop.adafruit.com/datasheets/WS2812.pdf>`_) shows the following waveforms are used to send a bit of data.
+:ref:`blocks_sequence` (taken from  `WS2812 Data Sheet <https://cdn-shop.adafruit.com/datasheets/WS2812.pdf>`_) 
+shows the following waveforms are used to send a bit of data.
 
 .. _blocks_sequence:
 
-NeoPixel bit sequence
-~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/neo_sequence.png
   :align: center
   :alt: NeoPixel bit sequence
 
-Where the times are:
+  NeoPixel bit sequence
 
-.. table::
+.. table:: Where the times are:
 
   +-------+-------------+
   |Label  | Time in ns  |
@@ -1411,12 +1392,11 @@ shows the waveform for sending a 0 value.  Note the times are spot on.
 
 .. _blocks_zero_scope:
 
-NeoPixel zero timing
-~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/neo_scope.png
   :align: center
-  :alt: 
+  :alt: NeoPixel zero timing
+
+  NeoPixel zero timing
 
 Each NeoPixel listens for a RGB value. Once a value has arrived all other values
 that follow are passed on to the next NeoPixel which does the same thing.
@@ -1428,23 +1408,24 @@ grab the next value for itself and start over again.
 
 
 Setting NeoPixels to Different Colors
-======================================
+***************************************
 
 Problem
------------
+---------
 
 I want to set the LEDs to different colors.
 
 Solution
------------
+---------
 
-Wire your NeoPixels as shown in :ref:`blocks_neo_wiring` then run the code in 
-:ref:`blocks_neo2`.
+Wire your NeoPixels as shown in :ref:`blocks_neo_wiring` 
+then run the code in :ref:`blocks_neo2`.
 
 .. _blocks_neo2:
 
-neo2.pru0.c - Code to turn on green, red, blue
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+.. literalinclude:: code/neo2.pru0.c
+   :caption: neo2.pru0.c - Code to turn on green, red, blue
+   :linenos:
 
 :download:`neo2.pru0.c <code/neo2.pru0.c>`
 
@@ -1458,25 +1439,21 @@ used to control the green, red and blue values.
 
 .. _blocks_new_data_seq:
 
-NeoPixel data sequence
-~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/neo_data_seq.png
   :align: center
-  :alt: 
+  :alt: NeoPixel data sequence
+
+  NeoPixel data sequence
 
 .. note::
 
-The usual order for colors is RGB (red, green, blue), but the NeoPixels use GRB (green, red, blue).
+  The usual order for colors is RGB (red, green, blue), but the NeoPixels use GRB (green, red, blue).
 
 :ref:`blocks_neo2_line` is the line-by-line for ``neo2.pru0.c``.
 
 .. _blocks_neo2_line:
 
-Line-by-line for neo2.pru0.c
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-.. table::
+.. table:: Line-by-line for neo2.pru0.c
 
   +-------+---------------------------------------------------------------------------------+
   |Line   | Explanation                                                                     |
@@ -1501,12 +1478,10 @@ Line-by-line for neo2.pru0.c
 
 .. note::
 
-This will only change the first ``STR_LEN`` LEDs.  The LEDs that follow will not
-be changed.
-====
+  This will only change the first ``STR_LEN`` LEDs.  The LEDs that follow will not be changed.
 
 Controlling Arbitrary LEDs
-============================
+***************************
 
 Problem
 -----------
@@ -1522,30 +1497,30 @@ string to the LEDs.  :ref:`blocks_neo3` shows an example animates a red pixel
 running around a ring of blue background.  :ref:`blocks_neo3_video` shows
 the code in action.
 
-.. _blocks_neo3_video:
+.. _blocks_neo3:
 
-neo3.pru0.c - Simple animation
+.. literalinclude:: code/neo3.pru0.c
+   :caption: neo3.pru0.c - Code to animate a red pixel running around a ring of blue
+   :linenos:
 
-:download:`ring_around.mp4 <figures/ring_around.mp4>`
+:download:`neo3.pru0.c <code/neo3.pru0.c>`
 
-.. _blocks_neo3:
+.. _blocks_neo3_video:
 
-neo3.pru0.c - Code to animate a red pixel running around a ring of blue
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+Neo3 Video
+-----------
 
-:download:`neo3.pru0.c <code/neo3.pru0.c>`
+:download:`neo3.pru0.c - Simple animation <figures/ring_around.mp4>`
 
 
 Discussion
 -----------
 
-Here's the highlights.
-
-.. table::
+.. table:: Here's the highlights.
 
   +-----+---------------------------------+
   |Line |Explanation                      |
-  +=====|=================================+
+  +=====+=================================+
   |32,33|Initiallize the array of colors. |
   +-----+---------------------------------+
   |38-41|Update the array.                |
@@ -1558,7 +1533,7 @@ Here's the highlights.
   +-----+---------------------------------+
 
 Controlling NeoPixels Through a Kernel Driver
-======================================
+*************************************************
 
 Problem
 -----------
@@ -1576,8 +1551,9 @@ an example.
 
 .. _blocks_neo4:
 
-neo4.pru0.c - Code to talk to the PRU via rpmsg_pru
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+.. literalinclude:: code/neo4.pru0.c
+   :caption: neo4.pru0.c - Code to talk to the PRU via rpmsg_pru
+   :linenos:
 
 :download:`neo4.pru0.c <code/neo4.pru0.c>`
 
@@ -1614,32 +1590,41 @@ There's a lot here.  I'll just hit some of the highlights in :ref:`blocks_neo4_l
 
 .. _blocks_neo4_lines:
 
-Line-by-line for neo4.pru0.c
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-.. table::
-
-|Line |Explanation
-
-|30   |The `CHAN_NAME` of `rpmsg-pru` matches that `prmsg_pru` driver that is
-is already installed.  This connects this PRU to the driver.
-|32   |The `CHAN_PORT` tells it to use port 30.  That's why we use
-`/dev/rpmsg_pru30`
-|40   |`payload[]` is the buffer that receives the data from the ARM.
-|42-48|Same as the previous NeoPixel examples.
-|52   |`color[]` is the state to be sent to the LEDs.
-|66-68|`color[]` is initialized.
-|70-85|Here are a number of details needed to set up the channel between 
-the PRU and the ARM.
-|88   |Here we wait until the ARM sends us some numbers.
-|99   |Receive all the data from the ARM, store it in `payload[]`.
-|101-111|The data sent is:  index red green blue.  Pull off the index.  If it's 
-in the right range, pull off the red, green and blue values.
-|113  |The NeoPixels want the data in GRB order.  Shift and OR everything 
-together.
-|116-133|If the `index` = -1, send the contents of `color` to the LEDs.  This
-code is same as before.
-|====
+.. table:: Line-by-line for neo4.pru0.c
+
+  +---------+---------------------------------------------------------------------------+
+  |Line     | Explanation                                                               |
+  +=========+===========================================================================+
+  |30       | The `CHAN_NAME` of `rpmsg-pru` matches that `prmsg_pru` driver that is    |
+  |         | is already installed.  This connects this PRU to the driver.              |
+  +---------+---------------------------------------------------------------------------+
+  |32       | The `CHAN_PORT` tells it to use port 30.  That's why we use               |
+  |         | `/dev/rpmsg_pru30`                                                        |
+  +---------+---------------------------------------------------------------------------+
+  |40       | `payload[]` is the buffer that receives the data from the ARM.            |
+  +---------+---------------------------------------------------------------------------+
+  |42-48    | Same as the previous NeoPixel examples.                                   |
+  +---------+---------------------------------------------------------------------------+
+  |52       | `color[]` is the state to be sent to the LEDs.                            |
+  +---------+---------------------------------------------------------------------------+
+  |66-68    | `color[]` is initialized.                                                 |
+  +---------+---------------------------------------------------------------------------+
+  |70-85    | Here are a number of details needed to set up the channel between         |
+  |         | the PRU and the ARM.                                                      |
+  +---------+---------------------------------------------------------------------------+
+  |88       | Here we wait until the ARM sends us some numbers.                         |
+  +---------+---------------------------------------------------------------------------+
+  |99       | Receive all the data from the ARM, store it in `payload[]`.               |
+  +---------+---------------------------------------------------------------------------+
+  |101-111  | The data sent is:  index red green blue.  Pull off the index.  If it's    |
+  |         | in the right range, pull off the red, green and blue values.              |
+  +---------+---------------------------------------------------------------------------+
+  |113      | The NeoPixels want the data in GRB order.  Shift and OR everything        |
+  |         | together.                                                                 |
+  +---------+---------------------------------------------------------------------------+
+  |116-133  | If the `index` = -1, send the contents of `color` to the LEDs.  This      |
+  |         | code is same as before.                                                   |
+  +---------+---------------------------------------------------------------------------+
 
 You can now use programs running on the ARM to send colors to the PRU.
 
@@ -1647,8 +1632,9 @@ You can now use programs running on the ARM to send colors to the PRU.
 
 .. _blocks_neo-rainbow:
 
-neo-rainbow.py - A python program using /dev/rpmsg_pru30
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+.. literalinclude:: code/neo-rainbow.py
+   :caption: neo-rainbow.py - A python program using /dev/rpmsg_pru30
+   :linenos:
 
 :download:`neo-rainbow.py <code/neo-rainbow.py>`
 
@@ -1659,7 +1645,6 @@ the last number, or you numbers will get blurred together.
 Switching from pru0 to pru1 with rpmsg_pru
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
-
 There are three things you need to change when switching from pru0 to pru1
 when using rpmsg_pru.
 
@@ -1675,14 +1660,13 @@ when using rpmsg_pru.
 These changes switch to the proper channel numbers to use pru1 instead of pru0.
 
 RGB LED Matrix - No Integrated Drivers
-======================================
-
+***************************************
 
 Problem
 -----------
 
 You have a RGB LED matrix 
-(:ref:`../01case/case.html#case_rgb_matrix, 1.4. RGB LED Matrix - No Integrated Drivers`) and want to know
+(:ref:`case_rgb_matrix`) and want to know
 at a low level how the PRU works.
 
 Solution
@@ -1735,8 +1719,9 @@ high-level view of how to drive the display.
 
 .. _blocks_rgb_python:
 
-rgb_python.py - Python code for driving RGB LED matrix
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+.. literalinclude:: code/rgb_python.py
+   :caption: rgb_python.py - Python code for driving RGB LED matrix
+   :linenos:
 
 :download:`rgb_python.py <code/rgb_python.py>`
 
@@ -1744,8 +1729,9 @@ Be sure to run the :ref:`blocks_rgb_setup` script before running the python code
 
 .. _blocks_rgb_setup:
 
-rgb_python_setup.sh
-~~~~~~~~~~~~~~~~~~~~
+.. literalinclude:: code/rgb_python_setup.sh
+   :caption: rgb_python_setup.sh
+   :linenos:
 
 :download:`rgb_python_setup.sh <code/rgb_python_setup.sh>`
 
@@ -1762,26 +1748,27 @@ Your display should look like :ref:`blocks_rgb_python_jpg`.
 
 .. _blocks_rgb_python_jpg:
 
-Display running rgb_python.py
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/rgb_python.jpg
   :align: center
   :alt: Display running rgb_python.py
 
+  Display running rgb_python.py
+
 So why do only two lines appear at a time?  That's how the display works. 
 Currently lines 6 and 22 are showing, then a moment later 7 and 23 show, etc. 
 The display can only display two lines at a time, so it cycles through all the 
 lines.  Unfortunately, python is too slow to make the display appear 
 all at once.  Here's where the PRU comes in.
 
-:ref:``blocks_rgb1`` is the PRU code to drive the RGB LED matrix.   Be sure to run
-``bone$ source rgb_setup.sh`` first.
+:ref:``blocks_rgb1`` is the PRU code to drive the RGB LED matrix. 
+Be sure to run ``bone$ source rgb_setup.sh`` first.
 
 .. _blocks_rgb1:
 
-PRU code for driving the RGB LED matrix
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+.. literalinclude:: code/rgb1.pru0.c
+   :caption: PRU code for driving the RGB LED matrix
+   :linenos:
 
 :download:`rgb1.pru0.c <code/rgb1.pru0.c>`
 
@@ -1790,33 +1777,31 @@ The results are shown in :ref:`blocks_rgb_pru`.
 
 .. _blocks_rgb_pru:
 
-Display running rgb1.c on PRU 0
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/rgb_pru.jpg
   :align: center
   :alt: Display running rgb1.pru0.c on PRU 0
 
+  Display running rgb1.c on PRU 0
+
 The PRU is fast enough to quickly write to the display so that it appears 
 as if all the LEDs are on at once.
 
 Discussion
 -----------
 
-There are a lot of details needed to make this simple display work.  Let's 
-go over some of them.
+There are a lot of details needed to make this simple display work. 
+Let's go over some of them.
 
 First, the connector looks like :ref:`blocks_matrix_j1`.
 
 .. _blocks_matrix_j1:
 
-RGB Matrix J1 connector
-~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/matrix_j1.jpg
   :align: center
   :alt: RGB Matrix J1 connector, 200
 
+  RGB Matrix J1 connector
+
 Notice the labels on the connect match the labels in the code.
 :ref:`blocks_pocket_scroller_pins` shows how the pins on the display are 
 mapped to the pins on the Pocket Beagle.
@@ -1826,10 +1811,7 @@ mapped to the pins on the Pocket Beagle.
 
 .. _blocks_pocket_scroller_pins:
 
-PocketScroller pin table
-~~~~~~~~~~~~~~~~~~~~~~~~~
-
-.. table::
+.. table:: PocketScroller pin table
 
   +-----------------+---------------+------------------------+------------------+-------------------+
   |J1 Connector Pin |Pocket Headers |gpio port and bit number|Linux gpio number |PRU R30 bit number |
@@ -1870,12 +1852,11 @@ https://docs.google.com/spreadsheets/d/1FRGvYOyW1RiNSEVprvstfJAVeapnASgDXHtxeDOj
 
 .. _blocks_rgb_waveforms:
 
-Oscilloscope display of CLK, OE, LAT and R1
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/rgb_waveforms.png
   :align: center
-  :alt: .Oscilloscope display of CLK, OE, LAT and R1
+  :alt: Oscilloscope display of CLK, OE, LAT and R1
+
+  Oscilloscope display of CLK, OE, LAT and R1
 
 The top waveform is the CLK, the next is OE, followed by LAT and finally R1. 
 The OE (output enable) is active low, so most of the time the display is visible. 
@@ -1883,9 +1864,7 @@ The sequence is:
 
 * Put data on the R1, G1, B1, R2, G2 and B2 lines
 * Toggle the clock.
-* Repeat the first two steps as one row of data is transfered.  There are 
-384 LEDs (2 rows of 32 RGB LEDs times 3 LED per RGB), but we are clocking in 
-six bits (R1, G1, etc.) at a time, so 384/6=64 values need to be clocked in.
+* Repeat the first two steps as one row of data is transfered.  There are 384 LEDs (2 rows of 32 RGB LEDs times 3 LED per RGB), but we are clocking in six bits (R1, G1, etc.) at a time, so 384/6=64 values need to be clocked in.
 * Once all the values are in, disable the display (OE goes high)
 * Then toggle the latch (LAT) to latch the new data.
 * Turn the display back on.
@@ -1901,13 +1880,12 @@ comparision.
 
 .. _blocks_rgb_fpp:
 
-FPP waveforms
-~~~~~~~~~~~~~~
-
 .. figure:: figures/rgb_fpp.png
   :align: center
   :alt: FPP waveforms
 
+  FPP waveforms
+
 Getting More Colors
 ~~~~~~~~~~~~~~~~~~~~~
 
@@ -1927,7 +1905,7 @@ The Adafruit description goes on to say:
 This is what FPP does, but it's beyond the scope of this project.
 
 Compiling and Inserting rpmsg_pru
-======================================
+***********************************
 
 Problem
 -----------
@@ -1970,8 +1948,9 @@ It's now installed and ready to go.
 Copyright
 ==========
 
-copyright.c
-~~~~~~~~~~~~~
+.. literalinclude:: code/copyright.c
+   :caption: copyright.c
+   :linenos:
 
 :download:`copyright.c <code/copyright.c>`
 
diff --git a/books/pru-cookbook/06io/io.html b/books/pru-cookbook/06io/io.html
deleted file mode 100644
index 5bb5425db9ef3699741ac9d74701f36aac6519b4..0000000000000000000000000000000000000000
--- a/books/pru-cookbook/06io/io.html
+++ /dev/null
@@ -1,1003 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
-<meta charset="UTF-8">
-<!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=edge"><![endif]-->
-<meta name="viewport" content="width=device-width, initial-scale=1.0">
-<meta name="generator" content="Asciidoctor 1.5.8">
-<title>Accessing More I/O</title>
-<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic%7CNoto+Serif:400,400italic,700,700italic%7CDroid+Sans+Mono:400,700">
-<style>
-/* Asciidoctor default stylesheet | MIT License | http://asciidoctor.org */
-/* Uncomment @import statement below to use as custom stylesheet */
-/*@import "https://fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic%7CNoto+Serif:400,400italic,700,700italic%7CDroid+Sans+Mono:400,700";*/
-article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}
-audio,canvas,video{display:inline-block}
-audio:not([controls]){display:none;height:0}
-script{display:none!important}
-html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}
-a{background:transparent}
-a:focus{outline:thin dotted}
-a:active,a:hover{outline:0}
-h1{font-size:2em;margin:.67em 0}
-abbr[title]{border-bottom:1px dotted}
-b,strong{font-weight:bold}
-dfn{font-style:italic}
-hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}
-mark{background:#ff0;color:#000}
-code,kbd,pre,samp{font-family:monospace;font-size:1em}
-pre{white-space:pre-wrap}
-q{quotes:"\201C" "\201D" "\2018" "\2019"}
-small{font-size:80%}
-sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
-sup{top:-.5em}
-sub{bottom:-.25em}
-img{border:0}
-svg:not(:root){overflow:hidden}
-figure{margin:0}
-fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}
-legend{border:0;padding:0}
-button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}
-button,input{line-height:normal}
-button,select{text-transform:none}
-button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}
-button[disabled],html input[disabled]{cursor:default}
-input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}
-button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}
-textarea{overflow:auto;vertical-align:top}
-table{border-collapse:collapse;border-spacing:0}
-*,*::before,*::after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}
-html,body{font-size:100%}
-body{background:#fff;color:rgba(0,0,0,.8);padding:0;margin:0;font-family:"Noto Serif","DejaVu Serif",serif;font-weight:400;font-style:normal;line-height:1;position:relative;cursor:auto;tab-size:4;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}
-a:hover{cursor:pointer}
-img,object,embed{max-width:100%;height:auto}
-object,embed{height:100%}
-img{-ms-interpolation-mode:bicubic}
-.left{float:left!important}
-.right{float:right!important}
-.text-left{text-align:left!important}
-.text-right{text-align:right!important}
-.text-center{text-align:center!important}
-.text-justify{text-align:justify!important}
-.hide{display:none}
-img,object,svg{display:inline-block;vertical-align:middle}
-textarea{height:auto;min-height:50px}
-select{width:100%}
-.center{margin-left:auto;margin-right:auto}
-.stretch{width:100%}
-.subheader,.admonitionblock td.content>.title,.audioblock>.title,.exampleblock>.title,.imageblock>.title,.listingblock>.title,.literalblock>.title,.stemblock>.title,.openblock>.title,.paragraph>.title,.quoteblock>.title,table.tableblock>.title,.verseblock>.title,.videoblock>.title,.dlist>.title,.olist>.title,.ulist>.title,.qlist>.title,.hdlist>.title{line-height:1.45;color:#7a2518;font-weight:400;margin-top:0;margin-bottom:.25em}
-div,dl,dt,dd,ul,ol,li,h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6,pre,form,p,blockquote,th,td{margin:0;padding:0;direction:ltr}
-a{color:#2156a5;text-decoration:underline;line-height:inherit}
-a:hover,a:focus{color:#1d4b8f}
-a img{border:none}
-p{font-family:inherit;font-weight:400;font-size:1em;line-height:1.6;margin-bottom:1.25em;text-rendering:optimizeLegibility}
-p aside{font-size:.875em;line-height:1.35;font-style:italic}
-h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6{font-family:"Open Sans","DejaVu Sans",sans-serif;font-weight:300;font-style:normal;color:#ba3925;text-rendering:optimizeLegibility;margin-top:1em;margin-bottom:.5em;line-height:1.0125em}
-h1 small,h2 small,h3 small,#toctitle small,.sidebarblock>.content>.title small,h4 small,h5 small,h6 small{font-size:60%;color:#e99b8f;line-height:0}
-h1{font-size:2.125em}
-h2{font-size:1.6875em}
-h3,#toctitle,.sidebarblock>.content>.title{font-size:1.375em}
-h4,h5{font-size:1.125em}
-h6{font-size:1em}
-hr{border:solid #dddddf;border-width:1px 0 0;clear:both;margin:1.25em 0 1.1875em;height:0}
-em,i{font-style:italic;line-height:inherit}
-strong,b{font-weight:bold;line-height:inherit}
-small{font-size:60%;line-height:inherit}
-code{font-family:"Droid Sans Mono","DejaVu Sans Mono",monospace;font-weight:400;color:rgba(0,0,0,.9)}
-ul,ol,dl{font-size:1em;line-height:1.6;margin-bottom:1.25em;list-style-position:outside;font-family:inherit}
-ul,ol{margin-left:1.5em}
-ul li ul,ul li ol{margin-left:1.25em;margin-bottom:0;font-size:1em}
-ul.square li ul,ul.circle li ul,ul.disc li ul{list-style:inherit}
-ul.square{list-style-type:square}
-ul.circle{list-style-type:circle}
-ul.disc{list-style-type:disc}
-ol li ul,ol li ol{margin-left:1.25em;margin-bottom:0}
-dl dt{margin-bottom:.3125em;font-weight:bold}
-dl dd{margin-bottom:1.25em}
-abbr,acronym{text-transform:uppercase;font-size:90%;color:rgba(0,0,0,.8);border-bottom:1px dotted #ddd;cursor:help}
-abbr{text-transform:none}
-blockquote{margin:0 0 1.25em;padding:.5625em 1.25em 0 1.1875em;border-left:1px solid #ddd}
-blockquote cite{display:block;font-size:.9375em;color:rgba(0,0,0,.6)}
-blockquote cite::before{content:"\2014 \0020"}
-blockquote cite a,blockquote cite a:visited{color:rgba(0,0,0,.6)}
-blockquote,blockquote p{line-height:1.6;color:rgba(0,0,0,.85)}
-@media screen and (min-width:768px){h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6{line-height:1.2}
-h1{font-size:2.75em}
-h2{font-size:2.3125em}
-h3,#toctitle,.sidebarblock>.content>.title{font-size:1.6875em}
-h4{font-size:1.4375em}}
-table{background:#fff;margin-bottom:1.25em;border:solid 1px #dedede}
-table thead,table tfoot{background:#f7f8f7}
-table thead tr th,table thead tr td,table tfoot tr th,table tfoot tr td{padding:.5em .625em .625em;font-size:inherit;color:rgba(0,0,0,.8);text-align:left}
-table tr th,table tr td{padding:.5625em .625em;font-size:inherit;color:rgba(0,0,0,.8)}
-table tr.even,table tr.alt,table tr:nth-of-type(even){background:#f8f8f7}
-table thead tr th,table tfoot tr th,table tbody tr td,table tr td,table tfoot tr td{display:table-cell;line-height:1.6}
-h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6{line-height:1.2;word-spacing:-.05em}
-h1 strong,h2 strong,h3 strong,#toctitle strong,.sidebarblock>.content>.title strong,h4 strong,h5 strong,h6 strong{font-weight:400}
-.clearfix::before,.clearfix::after,.float-group::before,.float-group::after{content:" ";display:table}
-.clearfix::after,.float-group::after{clear:both}
-*:not(pre)>code{font-size:.9375em;font-style:normal!important;letter-spacing:0;padding:.1em .5ex;word-spacing:-.15em;background-color:#f7f7f8;-webkit-border-radius:4px;border-radius:4px;line-height:1.45;text-rendering:optimizeSpeed;word-wrap:break-word}
-*:not(pre)>code.nobreak{word-wrap:normal}
-*:not(pre)>code.nowrap{white-space:nowrap}
-pre,pre>code{line-height:1.45;color:rgba(0,0,0,.9);font-family:"Droid Sans Mono","DejaVu Sans Mono",monospace;font-weight:400;text-rendering:optimizeSpeed}
-em em{font-style:normal}
-strong strong{font-weight:400}
-.keyseq{color:rgba(51,51,51,.8)}
-kbd{font-family:"Droid Sans Mono","DejaVu Sans Mono",monospace;display:inline-block;color:rgba(0,0,0,.8);font-size:.65em;line-height:1.45;background-color:#f7f7f7;border:1px solid #ccc;-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,.2),0 0 0 .1em white inset;box-shadow:0 1px 0 rgba(0,0,0,.2),0 0 0 .1em #fff inset;margin:0 .15em;padding:.2em .5em;vertical-align:middle;position:relative;top:-.1em;white-space:nowrap}
-.keyseq kbd:first-child{margin-left:0}
-.keyseq kbd:last-child{margin-right:0}
-.menuseq,.menuref{color:#000}
-.menuseq b:not(.caret),.menuref{font-weight:inherit}
-.menuseq{word-spacing:-.02em}
-.menuseq b.caret{font-size:1.25em;line-height:.8}
-.menuseq i.caret{font-weight:bold;text-align:center;width:.45em}
-b.button::before,b.button::after{position:relative;top:-1px;font-weight:400}
-b.button::before{content:"[";padding:0 3px 0 2px}
-b.button::after{content:"]";padding:0 2px 0 3px}
-p a>code:hover{color:rgba(0,0,0,.9)}
-#header,#content,#footnotes,#footer{width:100%;margin-left:auto;margin-right:auto;margin-top:0;margin-bottom:0;max-width:62.5em;*zoom:1;position:relative;padding-left:.9375em;padding-right:.9375em}
-#header::before,#header::after,#content::before,#content::after,#footnotes::before,#footnotes::after,#footer::before,#footer::after{content:" ";display:table}
-#header::after,#content::after,#footnotes::after,#footer::after{clear:both}
-#content{margin-top:1.25em}
-#content::before{content:none}
-#header>h1:first-child{color:rgba(0,0,0,.85);margin-top:2.25rem;margin-bottom:0}
-#header>h1:first-child+#toc{margin-top:8px;border-top:1px solid #dddddf}
-#header>h1:only-child,body.toc2 #header>h1:nth-last-child(2){border-bottom:1px solid #dddddf;padding-bottom:8px}
-#header .details{border-bottom:1px solid #dddddf;line-height:1.45;padding-top:.25em;padding-bottom:.25em;padding-left:.25em;color:rgba(0,0,0,.6);display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-flow:row wrap;-webkit-flex-flow:row wrap;flex-flow:row wrap}
-#header .details span:first-child{margin-left:-.125em}
-#header .details span.email a{color:rgba(0,0,0,.85)}
-#header .details br{display:none}
-#header .details br+span::before{content:"\00a0\2013\00a0"}
-#header .details br+span.author::before{content:"\00a0\22c5\00a0";color:rgba(0,0,0,.85)}
-#header .details br+span#revremark::before{content:"\00a0|\00a0"}
-#header #revnumber{text-transform:capitalize}
-#header #revnumber::after{content:"\00a0"}
-#content>h1:first-child:not([class]){color:rgba(0,0,0,.85);border-bottom:1px solid #dddddf;padding-bottom:8px;margin-top:0;padding-top:1rem;margin-bottom:1.25rem}
-#toc{border-bottom:1px solid #e7e7e9;padding-bottom:.5em}
-#toc>ul{margin-left:.125em}
-#toc ul.sectlevel0>li>a{font-style:italic}
-#toc ul.sectlevel0 ul.sectlevel1{margin:.5em 0}
-#toc ul{font-family:"Open Sans","DejaVu Sans",sans-serif;list-style-type:none}
-#toc li{line-height:1.3334;margin-top:.3334em}
-#toc a{text-decoration:none}
-#toc a:active{text-decoration:underline}
-#toctitle{color:#7a2518;font-size:1.2em}
-@media screen and (min-width:768px){#toctitle{font-size:1.375em}
-body.toc2{padding-left:15em;padding-right:0}
-#toc.toc2{margin-top:0!important;background-color:#f8f8f7;position:fixed;width:15em;left:0;top:0;border-right:1px solid #e7e7e9;border-top-width:0!important;border-bottom-width:0!important;z-index:1000;padding:1.25em 1em;height:100%;overflow:auto}
-#toc.toc2 #toctitle{margin-top:0;margin-bottom:.8rem;font-size:1.2em}
-#toc.toc2>ul{font-size:.9em;margin-bottom:0}
-#toc.toc2 ul ul{margin-left:0;padding-left:1em}
-#toc.toc2 ul.sectlevel0 ul.sectlevel1{padding-left:0;margin-top:.5em;margin-bottom:.5em}
-body.toc2.toc-right{padding-left:0;padding-right:15em}
-body.toc2.toc-right #toc.toc2{border-right-width:0;border-left:1px solid #e7e7e9;left:auto;right:0}}
-@media screen and (min-width:1280px){body.toc2{padding-left:20em;padding-right:0}
-#toc.toc2{width:20em}
-#toc.toc2 #toctitle{font-size:1.375em}
-#toc.toc2>ul{font-size:.95em}
-#toc.toc2 ul ul{padding-left:1.25em}
-body.toc2.toc-right{padding-left:0;padding-right:20em}}
-#content #toc{border-style:solid;border-width:1px;border-color:#e0e0dc;margin-bottom:1.25em;padding:1.25em;background:#f8f8f7;-webkit-border-radius:4px;border-radius:4px}
-#content #toc>:first-child{margin-top:0}
-#content #toc>:last-child{margin-bottom:0}
-#footer{max-width:100%;background-color:rgba(0,0,0,.8);padding:1.25em}
-#footer-text{color:rgba(255,255,255,.8);line-height:1.44}
-#content{margin-bottom:.625em}
-.sect1{padding-bottom:.625em}
-@media screen and (min-width:768px){#content{margin-bottom:1.25em}
-.sect1{padding-bottom:1.25em}}
-.sect1:last-child{padding-bottom:0}
-.sect1+.sect1{border-top:1px solid #e7e7e9}
-#content h1>a.anchor,h2>a.anchor,h3>a.anchor,#toctitle>a.anchor,.sidebarblock>.content>.title>a.anchor,h4>a.anchor,h5>a.anchor,h6>a.anchor{position:absolute;z-index:1001;width:1.5ex;margin-left:-1.5ex;display:block;text-decoration:none!important;visibility:hidden;text-align:center;font-weight:400}
-#content h1>a.anchor::before,h2>a.anchor::before,h3>a.anchor::before,#toctitle>a.anchor::before,.sidebarblock>.content>.title>a.anchor::before,h4>a.anchor::before,h5>a.anchor::before,h6>a.anchor::before{content:"\00A7";font-size:.85em;display:block;padding-top:.1em}
-#content h1:hover>a.anchor,#content h1>a.anchor:hover,h2:hover>a.anchor,h2>a.anchor:hover,h3:hover>a.anchor,#toctitle:hover>a.anchor,.sidebarblock>.content>.title:hover>a.anchor,h3>a.anchor:hover,#toctitle>a.anchor:hover,.sidebarblock>.content>.title>a.anchor:hover,h4:hover>a.anchor,h4>a.anchor:hover,h5:hover>a.anchor,h5>a.anchor:hover,h6:hover>a.anchor,h6>a.anchor:hover{visibility:visible}
-#content h1>a.link,h2>a.link,h3>a.link,#toctitle>a.link,.sidebarblock>.content>.title>a.link,h4>a.link,h5>a.link,h6>a.link{color:#ba3925;text-decoration:none}
-#content h1>a.link:hover,h2>a.link:hover,h3>a.link:hover,#toctitle>a.link:hover,.sidebarblock>.content>.title>a.link:hover,h4>a.link:hover,h5>a.link:hover,h6>a.link:hover{color:#a53221}
-.audioblock,.imageblock,.literalblock,.listingblock,.stemblock,.videoblock{margin-bottom:1.25em}
-.admonitionblock td.content>.title,.audioblock>.title,.exampleblock>.title,.imageblock>.title,.listingblock>.title,.literalblock>.title,.stemblock>.title,.openblock>.title,.paragraph>.title,.quoteblock>.title,table.tableblock>.title,.verseblock>.title,.videoblock>.title,.dlist>.title,.olist>.title,.ulist>.title,.qlist>.title,.hdlist>.title{text-rendering:optimizeLegibility;text-align:left;font-family:"Noto Serif","DejaVu Serif",serif;font-size:1rem;font-style:italic}
-table.tableblock.fit-content>caption.title{white-space:nowrap;width:0}
-.paragraph.lead>p,#preamble>.sectionbody>[class="paragraph"]:first-of-type p{font-size:1.21875em;line-height:1.6;color:rgba(0,0,0,.85)}
-table.tableblock #preamble>.sectionbody>[class="paragraph"]:first-of-type p{font-size:inherit}
-.admonitionblock>table{border-collapse:separate;border:0;background:none;width:100%}
-.admonitionblock>table td.icon{text-align:center;width:80px}
-.admonitionblock>table td.icon img{max-width:none}
-.admonitionblock>table td.icon .title{font-weight:bold;font-family:"Open Sans","DejaVu Sans",sans-serif;text-transform:uppercase}
-.admonitionblock>table td.content{padding-left:1.125em;padding-right:1.25em;border-left:1px solid #dddddf;color:rgba(0,0,0,.6)}
-.admonitionblock>table td.content>:last-child>:last-child{margin-bottom:0}
-.exampleblock>.content{border-style:solid;border-width:1px;border-color:#e6e6e6;margin-bottom:1.25em;padding:1.25em;background:#fff;-webkit-border-radius:4px;border-radius:4px}
-.exampleblock>.content>:first-child{margin-top:0}
-.exampleblock>.content>:last-child{margin-bottom:0}
-.sidebarblock{border-style:solid;border-width:1px;border-color:#e0e0dc;margin-bottom:1.25em;padding:1.25em;background:#f8f8f7;-webkit-border-radius:4px;border-radius:4px}
-.sidebarblock>:first-child{margin-top:0}
-.sidebarblock>:last-child{margin-bottom:0}
-.sidebarblock>.content>.title{color:#7a2518;margin-top:0;text-align:center}
-.exampleblock>.content>:last-child>:last-child,.exampleblock>.content .olist>ol>li:last-child>:last-child,.exampleblock>.content .ulist>ul>li:last-child>:last-child,.exampleblock>.content .qlist>ol>li:last-child>:last-child,.sidebarblock>.content>:last-child>:last-child,.sidebarblock>.content .olist>ol>li:last-child>:last-child,.sidebarblock>.content .ulist>ul>li:last-child>:last-child,.sidebarblock>.content .qlist>ol>li:last-child>:last-child{margin-bottom:0}
-.literalblock pre,.listingblock pre:not(.highlight),.listingblock pre[class="highlight"],.listingblock pre[class^="highlight "],.listingblock pre.CodeRay,.listingblock pre.prettyprint{background:#f7f7f8}
-.sidebarblock .literalblock pre,.sidebarblock .listingblock pre:not(.highlight),.sidebarblock .listingblock pre[class="highlight"],.sidebarblock .listingblock pre[class^="highlight "],.sidebarblock .listingblock pre.CodeRay,.sidebarblock .listingblock pre.prettyprint{background:#f2f1f1}
-.literalblock pre,.literalblock pre[class],.listingblock pre,.listingblock pre[class]{-webkit-border-radius:4px;border-radius:4px;word-wrap:break-word;overflow-x:auto;padding:1em;font-size:.8125em}
-@media screen and (min-width:768px){.literalblock pre,.literalblock pre[class],.listingblock pre,.listingblock pre[class]{font-size:.90625em}}
-@media screen and (min-width:1280px){.literalblock pre,.literalblock pre[class],.listingblock pre,.listingblock pre[class]{font-size:1em}}
-.literalblock pre.nowrap,.literalblock pre.nowrap pre,.listingblock pre.nowrap,.listingblock pre.nowrap pre{white-space:pre;word-wrap:normal}
-.literalblock.output pre{color:#f7f7f8;background-color:rgba(0,0,0,.9)}
-.listingblock pre.highlightjs{padding:0}
-.listingblock pre.highlightjs>code{padding:1em;-webkit-border-radius:4px;border-radius:4px}
-.listingblock pre.prettyprint{border-width:0}
-.listingblock>.content{position:relative}
-.listingblock code[data-lang]::before{display:none;content:attr(data-lang);position:absolute;font-size:.75em;top:.425rem;right:.5rem;line-height:1;text-transform:uppercase;color:#999}
-.listingblock:hover code[data-lang]::before{display:block}
-.listingblock.terminal pre .command::before{content:attr(data-prompt);padding-right:.5em;color:#999}
-.listingblock.terminal pre .command:not([data-prompt])::before{content:"$"}
-table.pyhltable{border-collapse:separate;border:0;margin-bottom:0;background:none}
-table.pyhltable td{vertical-align:top;padding-top:0;padding-bottom:0;line-height:1.45}
-table.pyhltable td.code{padding-left:.75em;padding-right:0}
-pre.pygments .lineno,table.pyhltable td:not(.code){color:#999;padding-left:0;padding-right:.5em;border-right:1px solid #dddddf}
-pre.pygments .lineno{display:inline-block;margin-right:.25em}
-table.pyhltable .linenodiv{background:none!important;padding-right:0!important}
-.quoteblock{margin:0 1em 1.25em 1.5em;display:table}
-.quoteblock>.title{margin-left:-1.5em;margin-bottom:.75em}
-.quoteblock blockquote,.quoteblock p{color:rgba(0,0,0,.85);font-size:1.15rem;line-height:1.75;word-spacing:.1em;letter-spacing:0;font-style:italic;text-align:justify}
-.quoteblock blockquote{margin:0;padding:0;border:0}
-.quoteblock blockquote::before{content:"\201c";float:left;font-size:2.75em;font-weight:bold;line-height:.6em;margin-left:-.6em;color:#7a2518;text-shadow:0 1px 2px rgba(0,0,0,.1)}
-.quoteblock blockquote>.paragraph:last-child p{margin-bottom:0}
-.quoteblock .attribution{margin-top:.75em;margin-right:.5ex;text-align:right}
-.verseblock{margin:0 1em 1.25em}
-.verseblock pre{font-family:"Open Sans","DejaVu Sans",sans;font-size:1.15rem;color:rgba(0,0,0,.85);font-weight:300;text-rendering:optimizeLegibility}
-.verseblock pre strong{font-weight:400}
-.verseblock .attribution{margin-top:1.25rem;margin-left:.5ex}
-.quoteblock .attribution,.verseblock .attribution{font-size:.9375em;line-height:1.45;font-style:italic}
-.quoteblock .attribution br,.verseblock .attribution br{display:none}
-.quoteblock .attribution cite,.verseblock .attribution cite{display:block;letter-spacing:-.025em;color:rgba(0,0,0,.6)}
-.quoteblock.abstract blockquote::before,.quoteblock.excerpt blockquote::before,.quoteblock .quoteblock blockquote::before{display:none}
-.quoteblock.abstract blockquote,.quoteblock.abstract p,.quoteblock.excerpt blockquote,.quoteblock.excerpt p,.quoteblock .quoteblock blockquote,.quoteblock .quoteblock p{line-height:1.6;word-spacing:0}
-.quoteblock.abstract{margin:0 1em 1.25em;display:block}
-.quoteblock.abstract>.title{margin:0 0 .375em;font-size:1.15em;text-align:center}
-.quoteblock.excerpt,.quoteblock .quoteblock{margin:0 0 1.25em;padding:0 0 .25em 1em;border-left:.25em solid #dddddf}
-.quoteblock.excerpt blockquote,.quoteblock.excerpt p,.quoteblock .quoteblock blockquote,.quoteblock .quoteblock p{color:inherit;font-size:1.0625rem}
-.quoteblock.excerpt .attribution,.quoteblock .quoteblock .attribution{color:inherit;text-align:left;margin-right:0}
-table.tableblock{max-width:100%;border-collapse:separate}
-p.tableblock:last-child{margin-bottom:0}
-td.tableblock>.content{margin-bottom:-1.25em}
-table.tableblock,th.tableblock,td.tableblock{border:0 solid #dedede}
-table.grid-all>thead>tr>.tableblock,table.grid-all>tbody>tr>.tableblock{border-width:0 1px 1px 0}
-table.grid-all>tfoot>tr>.tableblock{border-width:1px 1px 0 0}
-table.grid-cols>*>tr>.tableblock{border-width:0 1px 0 0}
-table.grid-rows>thead>tr>.tableblock,table.grid-rows>tbody>tr>.tableblock{border-width:0 0 1px}
-table.grid-rows>tfoot>tr>.tableblock{border-width:1px 0 0}
-table.grid-all>*>tr>.tableblock:last-child,table.grid-cols>*>tr>.tableblock:last-child{border-right-width:0}
-table.grid-all>tbody>tr:last-child>.tableblock,table.grid-all>thead:last-child>tr>.tableblock,table.grid-rows>tbody>tr:last-child>.tableblock,table.grid-rows>thead:last-child>tr>.tableblock{border-bottom-width:0}
-table.frame-all{border-width:1px}
-table.frame-sides{border-width:0 1px}
-table.frame-topbot,table.frame-ends{border-width:1px 0}
-table.stripes-all tr,table.stripes-odd tr:nth-of-type(odd){background:#f8f8f7}
-table.stripes-none tr,table.stripes-odd tr:nth-of-type(even){background:none}
-th.halign-left,td.halign-left{text-align:left}
-th.halign-right,td.halign-right{text-align:right}
-th.halign-center,td.halign-center{text-align:center}
-th.valign-top,td.valign-top{vertical-align:top}
-th.valign-bottom,td.valign-bottom{vertical-align:bottom}
-th.valign-middle,td.valign-middle{vertical-align:middle}
-table thead th,table tfoot th{font-weight:bold}
-tbody tr th{display:table-cell;line-height:1.6;background:#f7f8f7}
-tbody tr th,tbody tr th p,tfoot tr th,tfoot tr th p{color:rgba(0,0,0,.8);font-weight:bold}
-p.tableblock>code:only-child{background:none;padding:0}
-p.tableblock{font-size:1em}
-td>div.verse{white-space:pre}
-ol{margin-left:1.75em}
-ul li ol{margin-left:1.5em}
-dl dd{margin-left:1.125em}
-dl dd:last-child,dl dd:last-child>:last-child{margin-bottom:0}
-ol>li p,ul>li p,ul dd,ol dd,.olist .olist,.ulist .ulist,.ulist .olist,.olist .ulist{margin-bottom:.625em}
-ul.checklist,ul.none,ol.none,ul.no-bullet,ol.no-bullet,ol.unnumbered,ul.unstyled,ol.unstyled{list-style-type:none}
-ul.no-bullet,ol.no-bullet,ol.unnumbered{margin-left:.625em}
-ul.unstyled,ol.unstyled{margin-left:0}
-ul.checklist{margin-left:.625em}
-ul.checklist li>p:first-child>.fa-square-o:first-child,ul.checklist li>p:first-child>.fa-check-square-o:first-child{width:1.25em;font-size:.8em;position:relative;bottom:.125em}
-ul.checklist li>p:first-child>input[type="checkbox"]:first-child{margin-right:.25em}
-ul.inline{display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-flow:row wrap;-webkit-flex-flow:row wrap;flex-flow:row wrap;list-style:none;margin:0 0 .625em -1.25em}
-ul.inline>li{margin-left:1.25em}
-.unstyled dl dt{font-weight:400;font-style:normal}
-ol.arabic{list-style-type:decimal}
-ol.decimal{list-style-type:decimal-leading-zero}
-ol.loweralpha{list-style-type:lower-alpha}
-ol.upperalpha{list-style-type:upper-alpha}
-ol.lowerroman{list-style-type:lower-roman}
-ol.upperroman{list-style-type:upper-roman}
-ol.lowergreek{list-style-type:lower-greek}
-.hdlist>table,.colist>table{border:0;background:none}
-.hdlist>table>tbody>tr,.colist>table>tbody>tr{background:none}
-td.hdlist1,td.hdlist2{vertical-align:top;padding:0 .625em}
-td.hdlist1{font-weight:bold;padding-bottom:1.25em}
-.literalblock+.colist,.listingblock+.colist{margin-top:-.5em}
-.colist td:not([class]):first-child{padding:.4em .75em 0;line-height:1;vertical-align:top}
-.colist td:not([class]):first-child img{max-width:none}
-.colist td:not([class]):last-child{padding:.25em 0}
-.thumb,.th{line-height:0;display:inline-block;border:solid 4px #fff;-webkit-box-shadow:0 0 0 1px #ddd;box-shadow:0 0 0 1px #ddd}
-.imageblock.left{margin:.25em .625em 1.25em 0}
-.imageblock.right{margin:.25em 0 1.25em .625em}
-.imageblock>.title{margin-bottom:0}
-.imageblock.thumb,.imageblock.th{border-width:6px}
-.imageblock.thumb>.title,.imageblock.th>.title{padding:0 .125em}
-.image.left,.image.right{margin-top:.25em;margin-bottom:.25em;display:inline-block;line-height:0}
-.image.left{margin-right:.625em}
-.image.right{margin-left:.625em}
-a.image{text-decoration:none;display:inline-block}
-a.image object{pointer-events:none}
-sup.footnote,sup.footnoteref{font-size:.875em;position:static;vertical-align:super}
-sup.footnote a,sup.footnoteref a{text-decoration:none}
-sup.footnote a:active,sup.footnoteref a:active{text-decoration:underline}
-#footnotes{padding-top:.75em;padding-bottom:.75em;margin-bottom:.625em}
-#footnotes hr{width:20%;min-width:6.25em;margin:-.25em 0 .75em;border-width:1px 0 0}
-#footnotes .footnote{padding:0 .375em 0 .225em;line-height:1.3334;font-size:.875em;margin-left:1.2em;margin-bottom:.2em}
-#footnotes .footnote a:first-of-type{font-weight:bold;text-decoration:none;margin-left:-1.05em}
-#footnotes .footnote:last-of-type{margin-bottom:0}
-#content #footnotes{margin-top:-.625em;margin-bottom:0;padding:.75em 0}
-.gist .file-data>table{border:0;background:#fff;width:100%;margin-bottom:0}
-.gist .file-data>table td.line-data{width:99%}
-div.unbreakable{page-break-inside:avoid}
-.big{font-size:larger}
-.small{font-size:smaller}
-.underline{text-decoration:underline}
-.overline{text-decoration:overline}
-.line-through{text-decoration:line-through}
-.aqua{color:#00bfbf}
-.aqua-background{background-color:#00fafa}
-.black{color:#000}
-.black-background{background-color:#000}
-.blue{color:#0000bf}
-.blue-background{background-color:#0000fa}
-.fuchsia{color:#bf00bf}
-.fuchsia-background{background-color:#fa00fa}
-.gray{color:#606060}
-.gray-background{background-color:#7d7d7d}
-.green{color:#006000}
-.green-background{background-color:#007d00}
-.lime{color:#00bf00}
-.lime-background{background-color:#00fa00}
-.maroon{color:#600000}
-.maroon-background{background-color:#7d0000}
-.navy{color:#000060}
-.navy-background{background-color:#00007d}
-.olive{color:#606000}
-.olive-background{background-color:#7d7d00}
-.purple{color:#600060}
-.purple-background{background-color:#7d007d}
-.red{color:#bf0000}
-.red-background{background-color:#fa0000}
-.silver{color:#909090}
-.silver-background{background-color:#bcbcbc}
-.teal{color:#006060}
-.teal-background{background-color:#007d7d}
-.white{color:#bfbfbf}
-.white-background{background-color:#fafafa}
-.yellow{color:#bfbf00}
-.yellow-background{background-color:#fafa00}
-span.icon>.fa{cursor:default}
-a span.icon>.fa{cursor:inherit}
-.admonitionblock td.icon [class^="fa icon-"]{font-size:2.5em;text-shadow:1px 1px 2px rgba(0,0,0,.5);cursor:default}
-.admonitionblock td.icon .icon-note::before{content:"\f05a";color:#19407c}
-.admonitionblock td.icon .icon-tip::before{content:"\f0eb";text-shadow:1px 1px 2px rgba(155,155,0,.8);color:#111}
-.admonitionblock td.icon .icon-warning::before{content:"\f071";color:#bf6900}
-.admonitionblock td.icon .icon-caution::before{content:"\f06d";color:#bf3400}
-.admonitionblock td.icon .icon-important::before{content:"\f06a";color:#bf0000}
-.conum[data-value]{display:inline-block;color:#fff!important;background-color:rgba(0,0,0,.8);-webkit-border-radius:100px;border-radius:100px;text-align:center;font-size:.75em;width:1.67em;height:1.67em;line-height:1.67em;font-family:"Open Sans","DejaVu Sans",sans-serif;font-style:normal;font-weight:bold}
-.conum[data-value] *{color:#fff!important}
-.conum[data-value]+b{display:none}
-.conum[data-value]::after{content:attr(data-value)}
-pre .conum[data-value]{position:relative;top:-.125em}
-b.conum *{color:inherit!important}
-.conum:not([data-value]):empty{display:none}
-dt,th.tableblock,td.content,div.footnote{text-rendering:optimizeLegibility}
-h1,h2,p,td.content,span.alt{letter-spacing:-.01em}
-p strong,td.content strong,div.footnote strong{letter-spacing:-.005em}
-p,blockquote,dt,td.content,span.alt{font-size:1.0625rem}
-p{margin-bottom:1.25rem}
-.sidebarblock p,.sidebarblock dt,.sidebarblock td.content,p.tableblock{font-size:1em}
-.exampleblock>.content{background-color:#fffef7;border-color:#e0e0dc;-webkit-box-shadow:0 1px 4px #e0e0dc;box-shadow:0 1px 4px #e0e0dc}
-.print-only{display:none!important}
-@page{margin:1.25cm .75cm}
-@media print{*{-webkit-box-shadow:none!important;box-shadow:none!important;text-shadow:none!important}
-html{font-size:80%}
-a{color:inherit!important;text-decoration:underline!important}
-a.bare,a[href^="#"],a[href^="mailto:"]{text-decoration:none!important}
-a[href^="http:"]:not(.bare)::after,a[href^="https:"]:not(.bare)::after{content:"(" attr(href) ")";display:inline-block;font-size:.875em;padding-left:.25em}
-abbr[title]::after{content:" (" attr(title) ")"}
-pre,blockquote,tr,img,object,svg{page-break-inside:avoid}
-thead{display:table-header-group}
-svg{max-width:100%}
-p,blockquote,dt,td.content{font-size:1em;orphans:3;widows:3}
-h2,h3,#toctitle,.sidebarblock>.content>.title{page-break-after:avoid}
-#toc,.sidebarblock,.exampleblock>.content{background:none!important}
-#toc{border-bottom:1px solid #dddddf!important;padding-bottom:0!important}
-body.book #header{text-align:center}
-body.book #header>h1:first-child{border:0!important;margin:2.5em 0 1em}
-body.book #header .details{border:0!important;display:block;padding:0!important}
-body.book #header .details span:first-child{margin-left:0!important}
-body.book #header .details br{display:block}
-body.book #header .details br+span::before{content:none!important}
-body.book #toc{border:0!important;text-align:left!important;padding:0!important;margin:0!important}
-body.book #toc,body.book #preamble,body.book h1.sect0,body.book .sect1>h2{page-break-before:always}
-.listingblock code[data-lang]::before{display:block}
-#footer{padding:0 .9375em}
-.hide-on-print{display:none!important}
-.print-only{display:block!important}
-.hide-for-print{display:none!important}
-.show-for-print{display:inherit!important}}
-@media print,amzn-kf8{#header>h1:first-child{margin-top:1.25rem}
-.sect1{padding:0!important}
-.sect1+.sect1{border:0}
-#footer{background:none}
-#footer-text{color:rgba(0,0,0,.6);font-size:.9em}}
-@media amzn-kf8{#header,#content,#footnotes,#footer{padding:0}}
-</style>
-<style>
-/* Stylesheet for CodeRay to match GitHub theme | MIT License | http://foundation.zurb.com */
-/*pre.CodeRay {background-color:#f7f7f8;}*/
-.CodeRay .line-numbers{border-right:1px solid #d8d8d8;padding:0 0.5em 0 .25em}
-.CodeRay span.line-numbers{display:inline-block;margin-right:.5em;color:rgba(0,0,0,.3)}
-.CodeRay .line-numbers strong{color:rgba(0,0,0,.4)}
-table.CodeRay{border-collapse:separate;border-spacing:0;margin-bottom:0;border:0;background:none}
-table.CodeRay td{vertical-align: top;line-height:1.45}
-table.CodeRay td.line-numbers{text-align:right}
-table.CodeRay td.line-numbers>pre{padding:0;color:rgba(0,0,0,.3)}
-table.CodeRay td.code{padding:0 0 0 .5em}
-table.CodeRay td.code>pre{padding:0}
-.CodeRay .debug{color:#fff !important;background:#000080 !important}
-.CodeRay .annotation{color:#007}
-.CodeRay .attribute-name{color:#000080}
-.CodeRay .attribute-value{color:#700}
-.CodeRay .binary{color:#509}
-.CodeRay .comment{color:#998;font-style:italic}
-.CodeRay .char{color:#04d}
-.CodeRay .char .content{color:#04d}
-.CodeRay .char .delimiter{color:#039}
-.CodeRay .class{color:#458;font-weight:bold}
-.CodeRay .complex{color:#a08}
-.CodeRay .constant,.CodeRay .predefined-constant{color:#008080}
-.CodeRay .color{color:#099}
-.CodeRay .class-variable{color:#369}
-.CodeRay .decorator{color:#b0b}
-.CodeRay .definition{color:#099}
-.CodeRay .delimiter{color:#000}
-.CodeRay .doc{color:#970}
-.CodeRay .doctype{color:#34b}
-.CodeRay .doc-string{color:#d42}
-.CodeRay .escape{color:#666}
-.CodeRay .entity{color:#800}
-.CodeRay .error{color:#808}
-.CodeRay .exception{color:inherit}
-.CodeRay .filename{color:#099}
-.CodeRay .function{color:#900;font-weight:bold}
-.CodeRay .global-variable{color:#008080}
-.CodeRay .hex{color:#058}
-.CodeRay .integer,.CodeRay .float{color:#099}
-.CodeRay .include{color:#555}
-.CodeRay .inline{color:#000}
-.CodeRay .inline .inline{background:#ccc}
-.CodeRay .inline .inline .inline{background:#bbb}
-.CodeRay .inline .inline-delimiter{color:#d14}
-.CodeRay .inline-delimiter{color:#d14}
-.CodeRay .important{color:#555;font-weight:bold}
-.CodeRay .interpreted{color:#b2b}
-.CodeRay .instance-variable{color:#008080}
-.CodeRay .label{color:#970}
-.CodeRay .local-variable{color:#963}
-.CodeRay .octal{color:#40e}
-.CodeRay .predefined{color:#369}
-.CodeRay .preprocessor{color:#579}
-.CodeRay .pseudo-class{color:#555}
-.CodeRay .directive{font-weight:bold}
-.CodeRay .type{font-weight:bold}
-.CodeRay .predefined-type{color:inherit}
-.CodeRay .reserved,.CodeRay .keyword {color:#000;font-weight:bold}
-.CodeRay .key{color:#808}
-.CodeRay .key .delimiter{color:#606}
-.CodeRay .key .char{color:#80f}
-.CodeRay .value{color:#088}
-.CodeRay .regexp .delimiter{color:#808}
-.CodeRay .regexp .content{color:#808}
-.CodeRay .regexp .modifier{color:#808}
-.CodeRay .regexp .char{color:#d14}
-.CodeRay .regexp .function{color:#404;font-weight:bold}
-.CodeRay .string{color:#d20}
-.CodeRay .string .string .string{background:#ffd0d0}
-.CodeRay .string .content{color:#d14}
-.CodeRay .string .char{color:#d14}
-.CodeRay .string .delimiter{color:#d14}
-.CodeRay .shell{color:#d14}
-.CodeRay .shell .delimiter{color:#d14}
-.CodeRay .symbol{color:#990073}
-.CodeRay .symbol .content{color:#a60}
-.CodeRay .symbol .delimiter{color:#630}
-.CodeRay .tag{color:#008080}
-.CodeRay .tag-special{color:#d70}
-.CodeRay .variable{color:#036}
-.CodeRay .insert{background:#afa}
-.CodeRay .delete{background:#faa}
-.CodeRay .change{color:#aaf;background:#007}
-.CodeRay .head{color:#f8f;background:#505}
-.CodeRay .insert .insert{color:#080}
-.CodeRay .delete .delete{color:#800}
-.CodeRay .change .change{color:#66f}
-.CodeRay .head .head{color:#f4f}
-</style>
-</head>
-<body class="article">
-<div id="header">
-<div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-<ul class="sectlevel1">
-<li><a href="#_accessing_more_io">1. Accessing More I/O</a>
-<ul class="sectlevel2">
-<li><a href="#_editing_bootuenv_txt_to_access_the_p8_header_on_the_black">1.1. Editing /boot/uEnv.txt to Access the P8 Header on the Black</a></li>
-<li><a href="#_accessing_gpio">1.2. Accessing gpio</a></li>
-<li><a href="#io_uio">1.3. Configuring for UIO Instead of RemoteProc</a></li>
-<li><a href="#_converting_pasm_assembly_code_to_clpru">1.4. Converting pasm Assembly Code to clpru</a></li>
-</ul>
-</li>
-</ul>
-</div>
-</div>
-<div id="content">
-<div class="paragraph">
-<p><a href="../index.html">Outline</a></p>
-</div>
-<div class="sect1">
-<h2 id="_accessing_more_io"><a class="link" href="#_accessing_more_io">1. Accessing More I/O</a></h2>
-<div class="sectionbody">
-<div class="paragraph">
-<p>So far the examples have shown how to access the GPIO pins on the BeagleBone Black&#8217;s
-<code>P9</code> header and through the <code>__R30</code> register.  Below shows how more GPIO pins
-can be accessed.</p>
-</div>
-<div class="paragraph">
-<p>The following are resources used in this chapter.</p>
-</div>
-<div class="ulist">
-<div class="title">Resources</div>
-<ul>
-<li>
-<p><a href="https://github.com/derekmolloy/exploringBB/blob/master/chp06/docs/BeagleboneBlackP8HeaderTable.pdf">P8 Header Table</a></p>
-</li>
-<li>
-<p><a href="https://github.com/derekmolloy/exploringBB/blob/master/chp06/docs/BeagleboneBlackP9HeaderTable.pdf">P9 Header Table</a></p>
-</li>
-<li>
-<p><a href="http://www.ti.com/lit/pdf/spruhz6l">AM572x Technical Reference Manual</a> (AI)</p>
-</li>
-<li>
-<p><a href="http://www.ti.com/lit/pdf/spruh73">AM335x Technical Reference Manual</a> (All others)</p>
-</li>
-<li>
-<p><a href="http://www.ti.com/lit/ug/spruhv6a/spruhv6a.pdf">PRU Assembly Language Tools</a></p>
-</li>
-</ul>
-</div>
-<div class="sect2">
-<h3 id="_editing_bootuenv_txt_to_access_the_p8_header_on_the_black"><a class="link" href="#_editing_bootuenv_txt_to_access_the_p8_header_on_the_black">1.1. Editing /boot/uEnv.txt to Access the P8 Header on the Black</a></h3>
-<div class="sect3">
-<h4 id="_problem"><a class="link" href="#_problem">Problem</a></h4>
-<div class="paragraph">
-<p>When I try to configure some pins on the <code>P8</code> header of the Black I get an error.</p>
-</div>
-<div class="listingblock">
-<div class="title">config-pin</div>
-<div class="content">
-<pre class="CodeRay highlight"><code data-lang="bash">bone$ <strong>config-pin P8_28 pruout</strong>
-ERROR: open() for /sys/devices/platform/ocp/ocp:P8_28_pinmux/state failed, No such file or directory</code></pre>
-</div>
-</div>
-</div>
-<div class="sect3">
-<h4 id="_solution"><a class="link" href="#_solution">Solution</a></h4>
-<div class="paragraph">
-<p>On the images for the BeagleBone Black, the HDMI display driver is enabled by
-default and uses many of the <code>P8</code> pins.  If you are not using
-HDMI video (or the HDI audio, or even the eMMC) you can disable it by editing
-<code>/boot/uEnv.txt</code></p>
-</div>
-<div class="paragraph">
-<p>Open <code>/boot/uEnv.txt</code> and scroll down aways until you see:</p>
-</div>
-<div class="listingblock">
-<div class="title">/boot/uEnv.txt</div>
-<div class="content">
-<pre class="CodeRay highlight"><code data-lang="bash">###Disable auto loading of virtual capes (emmc/video/wireless/adc)
-#disable_uboot_overlay_emmc=1
-disable_uboot_overlay_video=1
-#disable_uboot_overlay_audio=1</code></pre>
-</div>
-</div>
-<div class="paragraph">
-<p>Uncomment the lines that correspond to the devices you want to disable and
-free up their pins.</p>
-</div>
-<div class="admonitionblock tip">
-<table>
-<tr>
-<td class="icon">
-<div class="title">Tip</div>
-</td>
-<td class="content">
-<div class="paragraph">
-<p><a href="https://github.com/derekmolloy/exploringBB/blob/master/chp06/docs/BeagleboneBlackP8HeaderTable.pdf">P8 Header Table</a>
-shows what pins are allocated for what.</p>
-</div>
-</td>
-</tr>
-</table>
-</div>
-<div class="paragraph">
-<p>Save the file and reboot.  You now have access to the <code>P8</code> pins.</p>
-</div>
-</div>
-</div>
-<div class="sect2">
-<h3 id="_accessing_gpio"><a class="link" href="#_accessing_gpio">1.2. Accessing gpio</a></h3>
-<div class="sect3">
-<h4 id="_problem_2"><a class="link" href="#_problem_2">Problem</a></h4>
-<div class="paragraph">
-<p>I&#8217;ve used up all the GPIO in <code>__R30</code>, where can I get more?</p>
-</div>
-</div>
-<div class="sect3">
-<h4 id="_solution_2"><a class="link" href="#_solution_2">Solution</a></h4>
-<div class="paragraph">
-<p>So far we have focused on using PRU 0.
-<a href="../05blocks/blocks.html#blocks_mapping_bits">Mapping bit positions to pin names
-PRU</a> shows
-that PRU 0 can access ten GPIO pins on the BeagleBone Black.  If you use
-PRU 1 you can get to an additional 14 pins (if they aren&#8217;t in use for other things.)</p>
-</div>
-<div class="paragraph">
-<p>What if you need even more GPIO pins? You can access <em>any</em> GPIO pin by going
-through the <strong>O</strong>pen-<strong>C</strong>ore <strong>P</strong>rotocol (OCP) port.</p>
-</div>
-<div class="paragraph">
-<div class="title">PRU Integration</div>
-<p><span class="image"><img src="figures/pruIntegration.png" alt="PRU Integration"></span></p>
-</div>
-<div class="paragraph">
-<p>The figure above shows we&#8217;ve been using the <em>Enhanced GPIO</em> interface when using
-<code>__R30</code>, but it also shows you can use the OCP.  You get access to many more
-GPIO pins, but it&#8217;s a slower access.</p>
-</div>
-<div class="listingblock">
-<div class="title">gpio.pru0.c</div>
-<div class="content">
-<pre class="CodeRay highlight"><code data-lang="c"><table class="CodeRay"><tr>
-  <td class="line-numbers"><pre>1
-2
-3
-4
-5
-6
-7
-8
-9
-10
-11
-12
-13
-14
-15
-16
-17
-18
-19
-20
-21
-22
-23
-</pre></td>
-  <td class="code"><pre><span class="comment">// This code accesses GPIO without using R30 and R31</span>
-<span class="preprocessor">#include</span> <span class="include">&lt;stdint.h&gt;</span>
-<span class="preprocessor">#include</span> <span class="include">&lt;pru_cfg.h&gt;</span>
-<span class="preprocessor">#include</span> <span class="include">&quot;resource_table_empty.h&quot;</span>
-<span class="preprocessor">#include</span> <span class="include">&quot;prugpio.h&quot;</span>
-
-<span class="preprocessor">#define</span> P9_11   (<span class="hex">0x1</span>&lt;&lt;<span class="integer">30</span>)           <span class="comment">// Bit position tied to P9_11 on Black</span>
-<span class="preprocessor">#define</span> P2_05   (<span class="hex">0x1</span>&lt;&lt;<span class="integer">30</span>)           <span class="comment">// Bit position tied to P2_05 on Pocket</span>
-
-<span class="directive">volatile</span> <span class="directive">register</span> uint32_t __R30;
-<span class="directive">volatile</span> <span class="directive">register</span> uint32_t __R31;
-
-<span class="directive">void</span> main(<span class="directive">void</span>)
-{
-    uint32_t *gpio0 = (uint32_t *)GPIO0;
-
-    <span class="keyword">while</span>(<span class="integer">1</span>) {
-        gpio0[GPIO_SETDATAOUT]   = P9_11;
-        __delay_cycles(<span class="integer">100000000</span>);
-        gpio0[GPIO_CLEARDATAOUT] = P9_11;
-        __delay_cycles(<span class="integer">100000000</span>);
-    }
-}</pre></td>
-</tr></table></code></pre>
-</div>
-</div>
-<div class="paragraph">
-<p>This code will toggle <code>P9_11</code> on and off. Here&#8217;s the setup file.</p>
-</div>
-<div class="listingblock">
-<div class="title">setup.sh</div>
-<div class="content">
-<pre class="CodeRay highlight"><code data-lang="bash"><table class="CodeRay"><tr>
-  <td class="line-numbers"><pre>1
-2
-3
-4
-5
-6
-7
-8
-9
-10
-11
-12
-13
-14
-15
-16
-17
-18
-19
-20
-21
-22
-23
-24
-25
-26
-27
-28
-</pre></td>
-  <td class="code"><pre>#!/bin/bash
-
-export TARGET=gpio.pru0
-echo TARGET=$TARGET
-
-# Configure the PRU pins based on which Beagle is running
-machine=$(awk '{print $NF}' /proc/device-tree/model)
-echo -n $machine
-if [ $machine = &quot;Black&quot; ]; then
-    echo &quot; Found&quot;
-    pins=&quot;P9_11&quot;
-elif [ $machine = &quot;Blue&quot; ]; then
-    echo &quot; Found&quot;
-    pins=&quot;&quot;
-elif [ $machine = &quot;PocketBeagle&quot; ]; then
-    echo &quot; Found&quot;
-    pins=&quot;P2_05&quot;
-else
-    echo &quot; Not Found&quot;
-    pins=&quot;&quot;
-fi
-
-for pin in $pins
-do
-    echo $pin
-    config-pin $pin gpio
-    config-pin -q $pin
-done</pre></td>
-</tr></table></code></pre>
-</div>
-</div>
-<div class="paragraph">
-<p>Notice in the code <code>config-pin</code> set <code>P9_11</code> to <code>gpio</code>, not <code>pruout</code>. This is because
-are are using the OCP interface to the pin, not the usual PRU interface.</p>
-</div>
-<div class="paragraph">
-<p>Set your exports and make.</p>
-</div>
-<div class="listingblock">
-<div class="content">
-<pre class="CodeRay highlight"><code data-lang="bash">bone$ <strong>source setup.sh</strong>
-TARGET=gpio.pru0
-...
-bone$ <strong>make</strong>
-/var/lib/cloud9/common/Makefile:29: MODEL=TI_AM335x_BeagleBone_Black,TARGET=gpio.pru0
--    Stopping PRU 0
--   copying firmware file /tmp/cloud9-examples/gpio.pru0.out to /lib/firmware/am335x-pru0-fw
-write_init_pins.sh
--    Starting PRU 0
-MODEL   = TI_AM335x_BeagleBone_Black
-PROC    = pru
-PRUN    = 0
-PRU_DIR = /sys/class/remoteproc/remoteproc1</code></pre>
-</div>
-</div>
-</div>
-<div class="sect3">
-<h4 id="_discussion"><a class="link" href="#_discussion">Discussion</a></h4>
-<div class="paragraph">
-<p>When you run the code you see <code>P9_11</code> toggling on and off.  Let&#8217;s go through
-the code line-by-line to see what&#8217;s happening.</p>
-</div>
-<table class="tableblock frame-all grid-all stretch">
-<caption class="title">Table 1. gpio.pru0.c line-by-line</caption>
-<colgroup>
-<col style="width: 10%;">
-<col style="width: 90%;">
-</colgroup>
-<thead>
-<tr>
-<th class="tableblock halign-left valign-top">Line</th>
-<th class="tableblock halign-left valign-top">Explanation</th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">2-5</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Standard includes</p></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">5</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">The AM335x has four 32-bit GPIO ports.  Lines 55-58 of <code>prugpio.h</code> define the addresses
-for each of the ports.  You can find these in Table 2-2 page 180 of the
-<a href="https://www.ti.com/lit/ug/spruh73p/spruh73p.pdf">AM335x Technical Reference Manual</a>.
-Look up <code>P9_11</code> in the <a href="https://github.com/derekmolloy/exploringBB/blob/master/chp06/docs/BeagleboneBlackP9HeaderTable.pdf">P9 Header Table</a>.
-Under the <em>Mode7</em> column you see <code>gpio0[30]</code>.  This means <code>P9_11</code> is bit 30
-on GPIO port 0.  Therefore we will use <code>GPIO0</code> in this code.</p>
-<p class="tableblock">You can also run
-<code>gpioinfo</code> and look for P9_11.</p></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">5</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Line 103 of <code>prugpio.h</code> defines the address offset from <code>GIO0</code> that will
-allow us to <em>clear</em>
-any (or all) bits in GPIO port 0. Other architectures require you to read a port,
-then change some bit, then write it out again, three steps.  Here we can do the same by writing to one location, just one step.</p></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">5</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Line 104 of <code>prugpio.h</code> is like above, but for <em>setting</em> bits.</p></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">5</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Using this offset  of line 105 of <code>prugpio.h</code> lets us just read the bits
-without changing them.</p></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">7,8</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">This shifts <code>0x1</code> to the 30<sup>th</sup> bit position, which is the one corresponding
-to <code>P9_11</code>.</p></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">15</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Here we initialize <code>gpio0</code> to point to the start of GPIO port 0&#8217;s control
-registers.</p></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">18</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock"><code>gpio0[GPIO_SETDATAOUT]</code> refers to the <code>SETDATAOUT</code> register of port 0.
-Writing to this register turns on the bits where 1&#8217;s are written,
-but leaves alone the bits where 0&#8217;s are.</p></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">19</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Wait 100,000,000 cycles, which is 0.5 seconds.</p></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">20</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">This is line 18, but the output bit is set to 0 where 1&#8217;s are written.</p></td>
-</tr>
-</tbody>
-</table>
-<div class="sect4">
-<h5 id="_how_fast_can_it_go"><a class="link" href="#_how_fast_can_it_go">How fast can it go?</a></h5>
-<div class="paragraph">
-<p>This approach to GPIO goes through the slower OCP interface.  If you set <code>__delay_cycles(0)</code> you can see how fast it is.</p>
-</div>
-<div class="paragraph">
-<div class="title">gpio.pru0.c with __delay_cycles(0)</div>
-<p><span class="image"><img src="figures/gpio0delay.png" alt="gpio.pru0.c with __delay_cycles(0)"></span></p>
-</div>
-<div class="paragraph">
-<p>The period is 80ns which is 12.MHz.  That&#8217;s about one forth the speed of the
-<code>__R30</code> method, but still not bad.</p>
-</div>
-<div class="paragraph">
-<p>If you are using an oscilloscope, look closely and you&#8217;ll see the following.</p>
-</div>
-<div class="paragraph">
-<div class="title">PWM with jitter</div>
-<p><span class="image"><img src="figures/jitter.png" alt="PWM with jitter"></span></p>
-</div>
-<div class="paragraph">
-<p>The PRU is still as solid as before in it&#8217;s timing, but now it&#8217;s going through
-the OCP interface.  This interface is shared with other parts of the system,
-therefore the sometimes the PRU must wait for the other parts to finish.
-When this happens the pulse width is a bit longer than usual thus adding
-jitter to the output.</p>
-</div>
-<div class="paragraph">
-<p>For many applications a few nanoseconds of jitter is unimportant and this
-GPIO interface can be used.  If your application needs better timing,
-use the <code>__R30</code> interface.</p>
-</div>
-</div>
-</div>
-</div>
-<div class="sect2">
-<h3 id="io_uio"><a class="link" href="#io_uio">1.3. Configuring for UIO Instead of RemoteProc</a></h3>
-<div class="sect3">
-<h4 id="_problem_3"><a class="link" href="#_problem_3">Problem</a></h4>
-<div class="paragraph">
-<p>You have some legacy PRU code that uses UIO instead of remoteproc and
-you want to switch to UIO.</p>
-</div>
-</div>
-<div class="sect3">
-<h4 id="_solution_3"><a class="link" href="#_solution_3">Solution</a></h4>
-<div class="paragraph">
-<p>Edit <code>/boot/uEnt.txt</code> and search for <code>uio</code>.  I find</p>
-</div>
-<div class="listingblock">
-<div class="content">
-<pre>###pru_uio (4.4.x-ti, 4.9.x-ti, 4.14.x-ti &amp; mainline/bone kernel)
-uboot_overlay_pru=/lib/firmware/AM335X-PRU-UIO-00A0.dtbo</pre>
-</div>
-</div>
-<div class="paragraph">
-<p>Uncomment the <code>uboot</code> line.  Look for other lines with
-<code>uboot_overlay_pru=</code> and be sure they are commented out.</p>
-</div>
-<div class="paragraph">
-<p>Reboot your Bone.</p>
-</div>
-<div class="listingblock">
-<div class="content">
-<pre>bone$ <strong>sudo reboot</strong></pre>
-</div>
-</div>
-<div class="paragraph">
-<p>Check that UIO is running.</p>
-</div>
-<div class="listingblock">
-<div class="content">
-<pre>bone$ <strong>lsmod | grep uio</strong>
-uio_pruss              16384  0
-uio_pdrv_genirq        16384  0
-uio                    20480  2 uio_pruss,uio_pdrv_genirq</pre>
-</div>
-</div>
-<div class="paragraph">
-<p>You are now ready to run the legacy PRU code.</p>
-</div>
-</div>
-</div>
-<div class="sect2">
-<h3 id="_converting_pasm_assembly_code_to_clpru"><a class="link" href="#_converting_pasm_assembly_code_to_clpru">1.4. Converting pasm Assembly Code to clpru</a></h3>
-<div class="sect3">
-<h4 id="_problem_4"><a class="link" href="#_problem_4">Problem</a></h4>
-<div class="paragraph">
-<p>You have some legacy assembly code written in pasm and it won&#8217;t assemble
-with clpru.</p>
-</div>
-</div>
-<div class="sect3">
-<h4 id="_solution_4"><a class="link" href="#_solution_4">Solution</a></h4>
-<div class="paragraph">
-<p>Generally there is a simple mapping from pasm to clpru.
-<a href="http://processors.wiki.ti.com/index.php/PRU_Assembly_Instructions#pasm_vs._clpru">pasm vs. clpru</a>
-notes what needs to be changed. I have a less complete version on my
-<a href="https://elinux.org/EBC_Exercise_30_PRU_porting_pasm_to_clpru">eLinux.org site</a>.</p>
-</div>
-</div>
-<div class="sect3">
-<h4 id="_discussion_2"><a class="link" href="#_discussion_2">Discussion</a></h4>
-<div class="paragraph">
-<p>The clpru assembly can be found in <a href="http://www.ti.com/lit/ug/spruhv6a/spruhv6a.pdf">PRU Assembly Language Tools</a>.</p>
-</div>
-</div>
-</div>
-</div>
-</div>
-</div>
-<div id="footer">
-<div id="footer-text">
-Last updated 2021-08-04 14:38:24 -0400
-</div>
-</div>
-</body>
-</html>
\ No newline at end of file
diff --git a/books/pru-cookbook/06io/io.rst b/books/pru-cookbook/06io/io.rst
index 3548d5e0a4330f10a7a06d4f94856bac5ba1a89c..80f20a5398e1a92a1e3877d5bc5489136bb06b62 100644
--- a/books/pru-cookbook/06io/io.rst
+++ b/books/pru-cookbook/06io/io.rst
@@ -3,32 +3,29 @@
 Accessing More I/O
 ####################
 
-So far the examples have shown how to access the GPIO pins on the BeagleBone Black's 
-``P9`` header and through the ``pass:[__]R30`` register.  Below shows how more GPIO pins
-can be accessed.
+So far the examples have shown how to access the GPIO pins on the BeagleBone Black's ``P9`` header and 
+through the ``pass:[__]R30`` register.  Below shows how more GPIO pins can be accessed.
 
 The following are resources used in this chapter.
 
-Resources
-~~~~~~~~~~
+.. note::
 
-* `P8 Header Table <https://github.com/derekmolloy/exploringBB/blob/master/chp06/docs/BeagleboneBlackP8HeaderTable.pdf>`_
-* `P9 Header Table <https://github.com/derekmolloy/exploringBB/blob/master/chp06/docs/BeagleboneBlackP9HeaderTable.pdf>`_
-* `AM572x Technical Reference Manual<http://www.ti.com/lit/pdf/spruhz6l>`_ (AI)
-* `AM335x Technical Reference Manual <http://www.ti.com/lit/pdf/spruh73>`_ (All others)
-* `PRU Assembly Language Tools<http://www.ti.com/lit/ug/spruhv6a/spruhv6a.pdf>`_
+   *Resources*
+
+   * `P8 Header Table <https://github.com/derekmolloy/exploringBB/blob/master/chp06/docs/BeagleboneBlackP8HeaderTable.pdf>`_
+   * `P9 Header Table <https://github.com/derekmolloy/exploringBB/blob/master/chp06/docs/BeagleboneBlackP9HeaderTable.pdf>`_
+   * `AM572x Technical Reference Manual <http://www.ti.com/lit/pdf/spruhz6l>`_ (AI)
+   * `AM335x Technical Reference Manual <http://www.ti.com/lit/pdf/spruh73>`_ (All others)
+   * `PRU Assembly Language Tools <http://www.ti.com/lit/ug/spruhv6a/spruhv6a.pdf>`_
 
 Editing /boot/uEnv.txt to Access the P8 Header on the Black
-============================================================
+************************************************************
 
 Problem
 --------
 
 When I try to configure some pins on the `P8` header of the Black I get an error.
 
-config-pin
-~~~~~~~~~~~
-
 .. code-block:: bash
     :linenos:
 
@@ -36,7 +33,7 @@ config-pin
     ERROR: open() for /sys/devices/platform/ocp/ocp:P8_28_pinmux/state failed, No such file or directory
 
 Solution
---------
+---------
 
 On the images for the BeagleBone Black, the HDMI display driver is enabled by default 
 and uses many of the ``P8`` pins.  If you are not using HDMI video (or the HDI audio, 
@@ -44,10 +41,8 @@ or even the eMMC) you can disable it by editing ``/boot/uEnv.txt``
 
 Open ``/boot/uEnv.txt`` and scroll down aways until you see:
 
-/boot/uEnv.txt
-~~~~~~~~~~~~~~~~
-
 .. code-block:: bash
+    :caption: /boot/uEnv.txt
     :linenos:
 
     ###Disable auto loading of virtual capes (emmc/video/wireless/adc)
@@ -65,7 +60,7 @@ Uncomment the lines that correspond to the devices you want to disable and free
 Save the file and reboot.  You now have access to the ``P8`` pins.
 
 Accessing gpio
-================
+****************
 
 Problem
 --------
@@ -73,36 +68,38 @@ Problem
 I've used up all the GPIO in ``pass:[__]R30``, where can I get more?
 
 Solution
---------
+---------
 
 So far we have focused on using PRU 0.  
-:ref:`../05blocks/blocks.html#blocks_mapping_bits,Mapping bit positions to pin names PRU` shows 
+:ref:`blocks_mapping_bits` shows 
 that PRU 0 can access ten GPIO pins on the BeagleBone Black.  If you use
 PRU 1 you can get to an additional 14 pins (if they aren't in use for other things.)
 
 What if you need even more GPIO pins? You can access **any** GPIO pin by going
-through the **O**pen-**C**ore **P**rotocol (OCP) port.
+through the **O**\ pen-\ **C**\ ore **P**\ rotocol (OCP) port.
 
-PRU Integration
-~~~~~~~~~~~~~~~~~
 
 .. figure:: figures/pruIntegration.png
     :align: center
     :alt: PRU Integration
 
+    PRU Integration
+
 The figure above shows we've been using the _Enhanced **GPIO** interface when using
 ``pass:[__]R30``, but it also shows you can use the OCP.  You get access to many more
 GPIO pins, but it's a slower access.
 
-gpio.pru0.c
-~~~~~~~~~~~~
+.. literalinclude:: code/gpio.pru0.c
+   :caption: gpio.pru0.c
+   :linenos:
 
 :download:`gpio.pru0.c <code/gpio.pru0.c>`
 
 This code will toggle ``P9_11`` on and off. Here's the setup file.
 
-setup.sh
-~~~~~~~~~
+.. literalinclude:: code/setup.sh
+   :caption: setup.sh
+   :linenos:
 
 :download:`setup.sh <code/setup.sh>`
 
@@ -134,10 +131,8 @@ Discussion
 When you run the code you see ``P9_11`` toggling on and off.  Let's go through
 the code line-by-line to see what's happening.
 
-gpio.pru0.c line-by-line
-~~~~~~~~~~~~~~~~~~~~~~~~~~
 
-.. table::
+.. table:: gpio.pru0.c line-by-line
 
     +-------+-----------------------------------------------------------------------------------------------------------------------------------------------+
     |Line   |   Explanation                                                                                                                                 |
@@ -146,8 +141,8 @@ gpio.pru0.c line-by-line
     +-------+-----------------------------------------------------------------------------------------------------------------------------------------------+
     |5      |   The AM335x has four 32-bit GPIO ports.  Lines 55-58 of `prugpio.h` define the addresses                                                     |
     |       |   for each of the ports.  You can find these in Table 2-2 page 180 of the                                                                     |
-    |       |   https://www.ti.com/lit/ug/spruh73p/spruh73p.pdf[AM335x Technical Reference Manual].                                                         |
-    |       |   Look up `P9_11` in the https://github.com/derekmolloy/exploringBB/blob/master/chp06/docs/BeagleboneBlackP9HeaderTable.pdf[P9 Header Table]. |
+    |       |   `AM335x TRM 180 <https://www.ti.com/lit/ug/spruh73p/spruh73p.pdf>`_.                                                                        |
+    |       |   Look up `P9_11` in the `P9 header <https://github.com/derekmolloy/exploringBB/blob/master/chp06/docs/BeagleboneBlackP9HeaderTable.pdf>`_.   |
     |       |   Under the _Mode7_ column you see `gpio0[30]`.  This means `P9_11` is bit 30                                                                 |
     |       |   on GPIO port 0.  Therefore we will use `GPIO0` in this code. You can also run ``gpioinfo`` and look for P9_11.                              |
     +-------+-----------------------------------------------------------------------------------------------------------------------------------------------+
@@ -172,30 +167,28 @@ gpio.pru0.c line-by-line
     +-------+-----------------------------------------------------------------------------------------------------------------------------------------------+
 
 How fast can it go?
-~~~~~~~~~~~~~~~~~~~~
+--------------------
 
 This approach to GPIO goes through the slower OCP interface.  If you set 
 ``pass:[__]delay_cycles(0)`` you can see how fast it is.
 
-gpio.pru0.c with pass:[__]delay_cycles(0)
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/gpio0delay.png
     :align: center
     :alt: gpio.pru0.c with pass:[__]delay_cycles(0)
 
+    gpio.pru0.c with pass:[__]delay_cycles(0)
+
 The period is 80ns which is 12.MHz.  That's about one forth the speed of the
 ``pass:[__]R30`` method, but still not bad.
 
 If you are using an oscilloscope, look closely and you'll see the following.
 
-PWM with jitter
-~~~~~~~~~~~~~~~~
-
 .. figure:: figures/jitter.png
     :align: center
     :alt: PWM with jitter
 
+    PWM with jitter
+
 The PRU is still as solid as before in it's timing, but now it's going through
 the OCP interface.  This interface is shared with other parts of the system,
 therefore the sometimes the PRU must wait for the other parts to finish.  
@@ -206,11 +199,10 @@ For many applications a few nanoseconds of jitter is unimportant and this
 GPIO interface can be used.  If your application needs better timing,
 use the ``pass:[__]R30`` interface.
  
-
 .. _io_uio:
 
 Configuring for UIO Instead of RemoteProc
-========================================
+*******************************************
 
 Problem
 --------
@@ -249,7 +241,7 @@ Check that UIO is running.
 You are now ready to run the legacy PRU code.
 
 Converting pasm Assembly Code to clpru
-========================================
+***************************************
 
 Problem
 --------
@@ -257,7 +249,7 @@ Problem
 You have some legacy assembly code written in pasm and it won't assemble with clpru.
 
 Solution
---------
+---------
 
 Generally there is a simple mapping from pasm to clpru. 
 `pasm vs. clpru <http://processors.wiki.ti.com/index.php/PRU_Assembly_Instructions#pasm_vs._clpru>`_
@@ -265,7 +257,7 @@ notes what needs to be changed. I have a less complete version on my
 `eLinux.org site <https://elinux.org/EBC_Exercise_30_PRU_porting_pasm_to_clpru>`_.
 
 Discussion
---------
+-----------
 
 The clpru assembly can be found in 
 `PRU Assembly Language Tools <http://www.ti.com/lit/ug/spruhv6a/spruhv6a.pdf>`_.
diff --git a/books/pru-cookbook/07more/more.rst b/books/pru-cookbook/07more/more.rst
index ae3abcf84c1598a23f54a2a0ea044952809d38ce..f70501a89114ba2cc339e882ae638fa806035618 100644
--- a/books/pru-cookbook/07more/more.rst
+++ b/books/pru-cookbook/07more/more.rst
@@ -14,23 +14,24 @@ C. Detailing on how to program in assembly are beyond the scope of this text.
 
 The following are resources used in this chapter.
 
-Resources
-~~~~~~~~~~
+.. note::
 
-* `PRU Optimizing C/C++ Compiler, v2.2, User's Guide <http://www.ti.com/lit/ug/spruhv7b/spruhv7b.pdf>`_
-* `PRU Assembly Language Tools User's Guide <http://www.ti.com/lit/ug/spruhv6b/spruhv6b.pdf>`_
-* `PRU Assembly Instruction User Guide <http://www.ti.com/lit/ug/spruij2/spruij2.pdf>`_
+   *Resources*
+
+   * `PRU Optimizing C/C++ Compiler, v2.2, User's Guide <http://www.ti.com/lit/ug/spruhv7b/spruhv7b.pdf>`_
+   * `PRU Assembly Language Tools User's Guide <http://www.ti.com/lit/ug/spruhv6b/spruhv6b.pdf>`_
+   * `PRU Assembly Instruction User Guide <http://www.ti.com/lit/ug/spruij2/spruij2.pdf>`_
 
 Calling Assembly from C
--------------------------
+************************
 
 Problem
-~~~~~~~~~
+--------
 
 You have some C code and you want to call an assembly language routine from it.
 
 Solution
-~~~~~~~~~
+---------
 
 You need to do two things, write the assembler file and modify the ``Makefile``
 to include it. For example, let's write our own ``my_delay_cycles`` routine in
@@ -42,28 +43,30 @@ constant.  Our new ``delay_cycles`` can take a runtime delay value.
 
 .. _more_delay-test:
 
-delay-test.pru0.c
-~~~~~~~~~~~~~~~~~~~
+.. literalinclude:: code/delay-test.pru0.c
+   :caption: delay-test.pru0.c
+   :linenos:
 
-:download:`code/delay-test.pru0.c <code/delay-test.pru0.c>`
+:download:`delay-test.pru0.c <code/delay-test.pru0.c>`
 
 :ref:`more_delay` is the assembly code.
 
 .. _more_delay:
 
-delay.pru0.asm
-~~~~~~~~~~~~~~~
+.. literalinclude:: code/delay.pru0.asm
+   :caption: delay.pru0.asm
+   :linenos:
 
 :download:`delay.pru0.asm <code/delay.pru0.asm>`
 
 The ``Makefile`` has one addition that needs to be made to compile both :ref:`more_delay-test`
-and :ref:`more_delay`.
-If you look in the local ``Makefile`` you'll see:
+and :ref:`more_delay`. If you look in the local ``Makefile`` you'll see:
 
 .. _more_makefile:
 
-Makefile
-~~~~~~~~~
+.. literalinclude:: code/Makefile
+   :caption: Makefile
+   :linenos:
 
 :download:`Makefile <code/Makefile>`
 
@@ -102,23 +105,20 @@ The resulting output is shown in :ref:`more_my_delay_cycles`.
 
 .. _more_my_delay_cycles:
 
-Output of my_delay_cycles()
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
 .. figure:: figures/my_delay_cycles.png
   :align: center
   :alt: Output of my_delay_cycles()
 
+  Output of my_delay_cycles()
+
 Notice the on time is about 35ns and the off time is 30ns.
 
 Discission
-~~~~~~~~~~~~
+-----------
 
 There is much to explain here.  Let's start with :ref:`more_delay`.
 
-Line-by-line of delay.pru0.asm
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-.. table::
+.. table:: Line-by-line of delay.pru0.asm
 
   +-------+-------------------------------------------------------------------------------------------------------+
   |Line   | Explanation                                                                                           |
@@ -152,22 +152,23 @@ The extra instruction is the branch at the bottom of the ``while`` loop.
 
 
 Returning a Value from Assembly
---------------------------------
+********************************
 
 Problem
-~~~~~~~~~
+--------
 
 Your assembly code needs to return a value.
 
 Solution
-~~~~~~~~~
+--------
 
 ``R14`` is how the return value is passed back.  :ref:`more_test2` shows the c code.
 
 .. _more_test2:
 
-delay-test2.pru0.c
-~~~~~~~~~~~~~~~~~~~
+.. literalinclude:: code/delay-test2.pru0.c
+   :caption: delay-test2.pru0.c
+   :linenos:
 
 :download:`delay-test2.pru0.c <code/delay-test2.pru0.c>`
 
@@ -175,8 +176,9 @@ delay-test2.pru0.c
 
 .. _more_delay2:
 
-delay2.pru0.asm
-~~~~~~~~~~~~~~~~~
+.. literalinclude:: code/delay2.pru0.asm
+   :caption: delay2.pru0.asm
+   :linenos:
 
 :download:`delay2.pru0.asm <code/delay2.pru0.asm>`
 
@@ -187,15 +189,15 @@ In this example, line 6 of :ref:`more_test2` `#defines` TEST and line 12 of
 
 
 Using the Built-In Counter for Timing
----------------------------------------
+***************************************
 
 Problem
-~~~~~~~~~
+--------
 
 I want to count how many cycles my routine takes.
 
 Solution
-~~~~~~~~~
+---------
 
 Each PRU has a ``CYCLE`` register which counts the number of cycles since
 the PRU was enabled. They also have a ``STALL`` register that counts how
@@ -204,23 +206,21 @@ many times the PRU stalled fetching an instruction.
 
 .. _more_cycle:
 
-cycle.pru0.c - Code to count cycles.
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+.. literalinclude:: code/cycle.pru0.c
+   :caption: cycle.pru0.c - Code to count cycles.
+   :linenos:
 
-:download:`delay2.pru0.asm <code/cycle.pru0.c>`
+:download:`cycle.pru0.c <code/cycle.pru0.c>`
 
 Discission
-~~~~~~~~~~~~
+------------
 
 The code is mostly the same as other examples. ``cycle`` and ``stall`` end up in registers which
 we can read using prudebug. :ref:`more_cycle_lines` is the Line-by-line.
 
 .. _more_cycle_lines:
 
-Line-by-line for cycle.pru0.c
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-.. table::
+.. table:: Line-by-line for cycle.pru0.c
 
   +-------+---------------------------------------------------------------------------------------+
   |Line   | Explanation                                                                           |
@@ -244,20 +244,26 @@ You can see where ``cycle`` and ``stall`` are stored by looking into :ref:`more_
 
 .. _more_cycle_list0:
 
-/tmp/cloud9-examples/cycle.pru0.lst Lines 113..119
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+.. literalinclude:: code/cycle.pru0.lst
+   :caption: /tmp/cloud9-examples/cycle.pru0.lst Lines 113..119
+   :lines: 113-119
+   :lineno-start: 113
+   :linenos:
 
-:download:`cycle.pru0.lst lines=113..119 <code/cycle.pru0.lst>`
+:download:`cycle.pru0.lst <code/cycle.pru0.lst>`
 
 Here the ``LDI32`` instruction loads the address ``0x22000`` into ``r0``. This is the offset to 
 the ``CTRL`` registers. Later in the file we see :ref:`more_cycle_list1`.
  
 .. _more_cycle_list1:
 
-/tmp/cloud9-examples/cycle.pru0.lst Lines 146..152
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+.. literalinclude:: code/cycle.pru0.lst
+   :caption: /tmp/cloud9-examples/cycle.pru0.lst Lines 146..152
+   :lines: 146-152
+   :lineno-start: 146
+   :linenos:
 
-:download:`lines=146..152 <code/cycle.pru0.lst>`
+:download:`cycle.pru0.lst <code/cycle.pru0.lst>`
 
 
 The first ``LBBO`` takes the contents of ``r0`` and adds the offset 12 to it and copies 4 bytes 
@@ -298,23 +304,24 @@ If you switch the order of lines 30 and 31 you'll see ``cycle`` is 7 and ``stall
 time needed to read ``stall`` and ``stall`` no longer includes the time to read ``cycle``.
 
 Xout and Xin - Transfering Between PRUs
----------------------------------------
+*****************************************
 
 Problem
-~~~~~~~~~
+--------
 
 I need to transfer data between PRUs quickly.
 
 Solution
-~~~~~~~~~
+---------
 
 The ``pass:[__]xout()`` and ``pass:[__]xin()`` intrinsics are able to transfer up to 30 registers between PRU 0 and PRU 1 quickly. 
 :ref:`more_xout` shows how ``xout()`` running on PRU 0 transfers six registers to PRU 1.
 
 .. _more_xout:
 
-xout.pru0.c
-~~~~~~~~~~~~
+.. literalinclude:: code/xout.pru0.c
+   :caption: xout.pru0.c
+   :linenos:
 
 :download:`xout.pru0.c <code/xout.pru0.c>`
 
@@ -323,8 +330,9 @@ interupt to PRU 0 and waits for it to send the data.
 
 .. _more_xin:
 
-xin.pru1.c
-~~~~~~~~~~~
+.. literalinclude:: code/xin.pru1.c
+   :caption: xin.pru1.c
+   :linenos:
 
 :download:`xin.pru1.c <code/xin.pru1.c>`
 
@@ -373,15 +381,13 @@ Use ``prudebug`` to see registers R5-R10 are transfered from PRU 0 to PRU 1.
 
 
 Discussion
-~~~~~~~~~
+-----------
 
 :ref:`more_zout_lines` shows the line-by-line for ``xout.pru0.c``
 
 .. _more_zout_lines:
 
-xout.pru0.c Line-by-line
-~~~~~~~~~~~~~~~~~~~~~~~~~
-.. table::
+.. table:: xout.pru0.c Line-by-line
 
   +-------+---------------------------------------------------------------------------------------------------------+
   |Line   | Explanation                                                                                             |
@@ -415,9 +421,7 @@ xout.pru0.c Line-by-line
 
 .. _more_xin_lines:
 
-xin.pru1.c Line-by-line
-~~~~~~~~~~~~~~~~~~~~~~~~
-.. table::
+.. table:: xin.pru1.c Line-by-line
 
   +-------+-----------------------------------------------------------+
   |Line   | Explanation                                               |
@@ -435,9 +439,10 @@ xin.pru1.c Line-by-line
 If you really need speed, considering using ``pass:[__]xout()`` and ``pass:[__]xin()`` in assembly.
 
 Copyright
-----------
+==========
 
-copyright.c
-~~~~~~~~~~~~~
+.. literalinclude:: code/copyright.c
+   :caption: copyright.c
+   :linenos:
 
 :download:`copyright.c <code/copyright.c>`
diff --git a/books/pru-cookbook/08ai/ai.rst b/books/pru-cookbook/08ai/ai.rst
index db36f383f27b505f3f613a471bae81e0525db48e..d2e055c07bbeb80cc9334210f4db78e3503c589e 100644
--- a/books/pru-cookbook/08ai/ai.rst
+++ b/books/pru-cookbook/08ai/ai.rst
@@ -11,14 +11,15 @@ four PRUs.
 
 The following are resources used in this chapter.
 
-Resources
-~~~~~~~~~~~
+.. note::
 
-* `AM572x Technical Reference Manual <http://www.ti.com/lit/pdf/spruhz6l>`_ (AI)
-* `BeagleBone AI PRU pins <https://docs.google.com/spreadsheets/d/1dFSBVem86vAUD7MLXvqdS-N0Efi8_g_O1iTqzql8DAo/edit#gid=0>`_
+   *Resources*
+
+   * `AM572x Technical Reference Manual <http://www.ti.com/lit/pdf/spruhz6l>`_ (AI)
+   * `BeagleBone AI PRU pins <https://docs.google.com/spreadsheets/d/1dFSBVem86vAUD7MLXvqdS-N0Efi8_g_O1iTqzql8DAo/edit#gid=0>`_
 
 Moving from two to four PRUs
-=============================
+*****************************
 
 Problem
 --------
@@ -37,21 +38,18 @@ Things to consider when moving to the AI are:
 Knowing which pins to use impacts the PRU you'll use.
 
 Discission
---------
+-----------
 
 The various System Reference Manuals (SRM's) list which pins go to the PRUs.
 Here the tables are combined into one to make it easier to see what goes where.
 
 .. _aimapping_bits:
 
-Mapping bit positions to pin names
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-.. table::
+.. table:: Mapping bit positions to pin names
 
 	+---+---+---------+-----------+-----------+-------------+
 	|PRU|Bit|Black pin|AI PRU1 pin|AI PRU2 pin|Pocket pin	|
-	|0  |0  |P9_31    |           |P8_44      |P1.36		|
+	|0  |0  |P9_31    |           |P8_44      |P1.36        |
 	+---+---+---------+-----------+-----------+-------------+
 	|0  |1  |P9_29    |           |P8_41      |P1.33     	|
 	+---+---+---------+-----------+-----------+-------------+
@@ -67,31 +65,31 @@ Mapping bit positions to pin names
 	+---+---+---------+-----------+-----------+-------------+
 	|0  |7  |P9_25    |           |P8_36/P8_6 |P1.29     	|
 	+---+---+---------+-----------+-----------+-------------+
-	|0  |8  |         |           |P8_34/P8_23|     		|
+	|0  |8  |         |           |P8_34/P8_23|             |
 	+---+---+---------+-----------+-----------+-------------+
-	|0  |9  |         |           |P8_35/P8_22|     		|
+	|0  |9  |         |           |P8_35/P8_22|             |
 	+---+---+---------+-----------+-----------+-------------+
-	|0  |19 |         |           |P8_33/P8_3 |     		|
+	|0  |19 |         |           |P8_33/P8_3 |             |
 	+---+---+---------+-----------+-----------+-------------+
-	|0  |11 |         |           |P8_31/P8_4 |     		|
+	|0  |11 |         |           |P8_31/P8_4 |             |
 	+---+---+---------+-----------+-----------+-------------+
-	|0  |12 |         |           |P8_32      |     		|
+	|0  |12 |         |           |P8_32      |             |
 	+---+---+---------+-----------+-----------+-------------+
-	|0  |13 |         |           |P8_45      |     		|
+	|0  |13 |         |           |P8_45      |             |
 	+---+---+---------+-----------+-----------+-------------+
 	|0  |14 |P8_12(out) P8_16(in)||P9_11      |P2.24     	|
 	+---+---+---------+-----------+-----------+-------------+
 	|0  |15 |P8_11(out) P8_15(in)||P8_17/P9_13|P2.33     	|
 	+---+---+---------+-----------+-----------+-------------+
-	|0  |16 |P9_41(in) P9_26(in)| |P8_27	  |				|
+	|0  |16 |P9_41(in) P9_26(in)| |P8_27	  |             |
 	+---+---+---------+-----------+-----------+-------------+
-	|0  |17 |         |P9_26      |P8_28      |				|
+	|0  |17 |         |P9_26      |P8_28      |             |
 	+---+---+---------+-----------+-----------+-------------+
-	|0  |18 |         |           |P8_29      |				|
+	|0  |18 |         |           |P8_29      |             |
 	+---+---+---------+-----------+-----------+-------------+
-	|0  |19 |         |           |P8_30      |				|
+	|0  |19 |         |           |P8_30      |             |
 	+---+---+---------+-----------+-----------+-------------+
-	|0  |20 |         |           |P8_46/P8_8 |				|
+	|0  |20 |         |           |P8_46/P8_8 |             |
 	+---+---+---------+-----------+-----------+-------------+
 	|   |   |         |           |           |             |
 	+---+---+---------+-----------+-----------+-------------+
@@ -127,15 +125,15 @@ Mapping bit positions to pin names
 	+---+---+---------+-----------+-----------+-------------+
 	|1  |15 |         |*P9_16*    |P8_10      |P1.30     	|
 	+---+---+---------+-----------+-----------+-------------+
-	|1  |16 |P9_26(in)|*P8_15*    |P8_7       |     		|
+	|1  |16 |P9_26(in)|*P8_15*    |P8_7       |             |
 	+---+---+---------+-----------+-----------+-------------+
-	|1  |17 |         |*P8_26*    |P8_27      |     		|
+	|1  |17 |         |*P8_26*    |P8_27      |             |
 	+---+---+---------+-----------+-----------+-------------+
-	|1  |18 |         |*P8_16*    |P8_45      |     		|
+	|1  |18 |         |*P8_16*    |P8_45      |             |
 	+---+---+---------+-----------+-----------+-------------+
-	|1  |19 |         |           |P8_46      |     		|
+	|1  |19 |         |           |P8_46      |             |
 	+---+---+---------+-----------+-----------+-------------+
-	|1  |19 |         |           |P8_43      |     		|
+	|1  |19 |         |           |P8_43      |             |
 	+---+---+---------+-----------+-----------+-------------+
 
 The pins in *bold* are already configured as pru pins.  See :ref:`ai_config` to
@@ -145,7 +143,7 @@ configure pins.
 .. _ai_config:
 
 Seeing how pins are configured
-===============================
+*******************************
 
 Problem
 --------
@@ -231,7 +229,7 @@ Five are input pins and four are out.
 .. _ai_device_tree:
 
 Configuring pins on the AI via device trees
-============================================
+********************************************
 
 Problem
 --------
@@ -274,6 +272,7 @@ We see that when ``P9_31a`` is set to ``MODE13`` it will be a PRU **out** pin.
 Next, find which kernel you are running.
 
 .. code-block:: bash
+
 	bone$ uname -a
 	Linux ai 4.14.108-ti-r131 #1buster SMP PREEMPT Tue Mar 24 19:18:36 UTC 2020 armv7l GNU/Linux
 
@@ -335,7 +334,7 @@ There it is.  `P9_31` is now a PRU output pin on PRU1_0, bit 3.
 .. _ai_using_pru_pins:
 
 Using the PRU pins
-====================
+*********************
 
 Problem
 --------
@@ -350,7 +349,7 @@ that it appears at ``pr2_pru1_gpo10``, which means pru2_1 accesses it using
 bit 10 of register ``R30``.
 
 Discission
---------
+-----------
 
 It's easy to modify the pwm example from :ref:`blocks_pwm` to use this pin.
 First copy the example you want to modify to ``pwm1.pru2_1.c``.  The ``pru2_1`` in
@@ -359,8 +358,9 @@ the adapted code.
 
 .. _ai_pwm1:
 
-pwm1.pru2_1.c
-~~~~~~~~~~~~~~
+.. literalinclude:: code/pwm1.pru2_1.c
+   :caption: pwm1.pru2_1.c
+   :linenos:
 
 :download:`pwm1.pru2_1.c <code/pwm1.pru2_1.c>`
 
diff --git a/pru-cookbook/03details/code/am335x_pru.cmd b/books/pru-cookbook/common/am335x_pru.cmd
similarity index 100%
rename from pru-cookbook/03details/code/am335x_pru.cmd
rename to books/pru-cookbook/common/am335x_pru.cmd
diff --git a/pru-cookbook/common/am57xx_pru.cmd b/books/pru-cookbook/common/am57xx_pru.cmd
similarity index 100%
rename from pru-cookbook/common/am57xx_pru.cmd
rename to books/pru-cookbook/common/am57xx_pru.cmd
diff --git a/books/pru-cookbook/projects.rst b/books/pru-cookbook/projects.rst
index 39263b91e03c611604c1e60d416f92e1db44e1b3..60a2482b22bcb7942b2a6a9cf66657b4077436c1 100644
--- a/books/pru-cookbook/projects.rst
+++ b/books/pru-cookbook/projects.rst
@@ -7,9 +7,6 @@ Users of TI processors with PRU-ICSS have created application for many different
 A list of a few are shared below. For additional support resources, software and 
 documentation visit the PRU-ICSS wiki.
 
-PRU projects
-~~~~~~~~~~~~~~
-
 .. dropdown:: **LEDscape** 
     :open:
 
@@ -158,7 +155,7 @@ PRU projects
     **Type:** Code Library Reference
     
     **References:**
-        * http://processors.wiki.ti.com/index.php/Soft-UART_Implementation_on_AM335X_PRU_-_Software_Users_Guide
+        * https://software-dl.ti.com/processor-sdk-linux/esd/docs/latest/linux/Foundational_Components/PRU-ICSS/Linux_Drivers/pru-sw-uart.html
 
 .. dropdown:: **Deviant LCD**
     :open:
@@ -308,4 +305,4 @@ PRU projects
     **Type:**  Code Library
     
     **References:**
-        * https://github.com/deepakkarki/pruspeak
\ No newline at end of file
+        * https://github.com/deepakkarki/pruspeak
diff --git a/conf.py b/conf.py
index 270e686fd5217ba355102753d0700bd13f173e15..7a1c10cb32d0b5a742849f3d014ca0a8474da102 100644
--- a/conf.py
+++ b/conf.py
@@ -23,7 +23,10 @@ author = 'BeagleBoard.org Foundation'
 
 # -- General configuration ---------------------------------------------------
 
+sys.path.append(os.path.abspath("./_ext"))
+
 extensions = [
+    "callouts",
     "sphinxcontrib.rsvgconverter",
     "sphinx_design"
 ]
@@ -71,7 +74,7 @@ with open(BBDOCS_BASE  / "VERSION") as f:
     )
 
     if not m:
-        sys.stderr.write("Warning: Could not extract kernel version\n")
+        sys.stderr.write("Warning: Could not extract docs version\n")
         version = "Unknown"
     else:
         major, minor, patch, extra = m.groups(1)
@@ -82,28 +85,61 @@ with open(BBDOCS_BASE  / "VERSION") as f:
 
 release = version
 
-is_release = tags.has("release")  # pylint: disable=undefined-variable
-reference_prefix = ""
-if tags.has("publish"):  # pylint: disable=undefined-variable
-    reference_prefix = f"/{version}" if is_release else "/latest"
-docs_title = "Docs / {}".format(version if is_release else "Latest")
+# Variables here holds default settings
+pages_url = "http://docs.beagleboard.io"
+pages_slug = "latest"
+gitlab_user = "docs"
+gitlab_version = "main"
+gitlab_host = "git.beagleboard.org"
+gitlab_repo = "docs.beagleboard.io"
+docs_url = "https://docs.beagleboard.io/latest/"
+
+# parse pages details from 'PAGES' file
+with open(BBDOCS_BASE  / "PAGES") as f:
+    m = re.match(
+        (
+            r"^PAGES_URL\s*=\s*(\S+)$\n"
+            + r"^PAGES_SLUG\s*=\s*(\S+)$\n"
+            + r"^GITLAB_USER\s*=\s*(\S+)$\n"
+            + r"^PROJECT_BRANCH\s*=\s*(\S+)$\n"
+            + r"^GITLAB_HOST\s*=\s*(\S+)$\n"
+            + r"^PROJECT_REPO\s*=\s*(\S+)$\n"
+        ),
+        f.read(),
+        re.MULTILINE,
+    )
+
+    if not m:
+        sys.stderr.write("Warning: Could not extract pages information\n")
+    else:
+        url, slug, user, branch, host, repo = m.groups(1)
+        slug = "latest" if slug == "main" else slug
+        pages_url = url
+        pages_slug = slug
+        gitlab_user = user
+        gitlab_version = branch
+        gitlab_host = host
+        gitlab_repo = repo
+        docs_url = "/".join((url, slug))
 
 html_context = {
     "display_gitlab": True,
-    "gitlab_host": "git.beagleboard.org",
-    "gitlab_user": "docs",
-    "gitlab_repo": "docs.beagleboard.io",
-    "gitlab_version": "main",
+    "gitlab_host": gitlab_host,
+    "gitlab_user": gitlab_user,
+    "gitlab_repo": gitlab_repo,
+    "gitlab_version": gitlab_version,
     "conf_py_path": "/",
     "show_license": True,
-    "docs_title": docs_title,
-    "is_release": is_release,
+    "pages_url": pages_url,
+    "pages_slug": pages_slug,
+    "docs_url": docs_url,
     "current_version": version,
-    "versions": (
-        ("latest", "/"),
-        ("0.0.7", "/0.0.7/"),
-        ("0.1.0", "/0.1.0/")
-    ),
+    "versions": ("latest", "0.0"),
+    "reference_links": {
+        "About": "https://beagleboard.org/about",
+        "Donate": "https://beagleboard.org/donate",
+        "FAQ": "https://forum.beagleboard.org/c/faq"
+    }
 }
 
 # -- Options for LaTeX output ---------------------------------------------
@@ -112,7 +148,6 @@ latex_elements = {
     "papersize": "a4paper",
     "maketitle": open(BBDOCS_BASE / "_static" / "latex" / "title.tex").read(),
     "preamble": open(BBDOCS_BASE / "_static" / "latex" / "preamble.tex").read(),
-    "fontpkg": r"\usepackage{charter}",
     "sphinxsetup": ",".join(
         (
             "verbatimwithframe=false",
@@ -124,14 +159,15 @@ latex_elements = {
         )
     ),
 }
+latex_engine = "xelatex"
 latex_logo = str(BBDOCS_BASE / "_static" / "images" / "logo-latex.pdf")
 latex_documents = [
     ("index-tex", "beagleboard-docs.tex", "BeagleBoard Docs", author, "manual"),
 ]
 
-vcs_link_version = f"v{version}" if is_release else "main"
-vcs_link_base_url = f"https://git.beagleboard.org/docs/docs.beagleboard.io/blob/{vcs_link_version}"
-
+#language = 'en'
+#locales_dir = ['locale/']
+#gettext_compact = True
 
 def setup(app):
     # theme customizations
diff --git a/gitlab-build.sh b/gitlab-build.sh
new file mode 100755
index 0000000000000000000000000000000000000000..2325aa8f435b02c928b3dcbe0122e5b29dabe971
--- /dev/null
+++ b/gitlab-build.sh
@@ -0,0 +1,117 @@
+#!/bin/bash
+
+apk add git
+apk add rsync
+apk add date
+
+export VER_LATEST_MAJOR=1
+export VER_LATEST_MINOR=0
+export VER_LATEST_EXTRA=wip
+export PATCHLEVEL=$(date +%Y%m%d)
+export VERSION_TWEAK=$(( $(date "+10#%H * 60 + 10#%M") ))
+
+function do_build() {
+	cat << EOF > PAGES
+PAGES_URL =  $PAGES_URL
+PAGES_SLUG = $PAGES_SLUG
+GITLAB_USER = $GITLAB_USER
+PROJECT_BRANCH = $PROJECT_BRANCH
+GITLAB_HOST = $GITLAB_HOST
+PROJECT_REPO = $PROJECT_REPO
+EOF
+
+	cat << EOF > VERSION
+VERSION_MAJOR = $VERSION_MAJOR
+VERSION_MINOR = $VERSION_MINOR
+PATCHLEVEL = $PATCHLEVEL
+VERSION_TWEAK = $VERSION_TWEAK
+EXTRAVERSION = $EXTRAVERSION
+EOF
+
+	mkdir -p public
+	cat <<HERE > public/index.html
+<!DOCTYPE html>
+<html>
+  <head>
+    <meta http-equiv="refresh" content="0; url='latest/'" />
+  </head>
+  <body>
+    <p>Please follow <a href="latest/">this link</a>.</p>
+  </body>
+</html>
+HERE
+
+	echo "**** Updating $PAGES_URL/$VER_DIR ****"
+
+	sphinx-build -b html . public/$VER_DIR/
+	sphinx-build -M latexpdf . public/$VER_DIR/
+	mv public/$VER_DIR/latex/beagleboard-docs.pdf public/$VER_DIR/
+	rm -rf public/$VER_DIR/latex
+
+	if [ "$CI_COMMIT_TAG" != "" ]; then
+		if [ "$VER_DIR" = "latest" ]; then
+			cp public/index.html /var/www/docs
+		fi
+		rsync -v -a --delete public/$VER_DIR/. /var/www/docs/$VER_DIR
+	fi
+}
+
+if [ "$CI_COMMIT_BRANCH" == "$CI_DEFAULT_BRANCH" ]; then
+	export VER_DIR=latest
+	export PAGES_URL=$CI_PAGES_URL
+	export PAGES_SLUG=$CI_COMMIT_BRANCH
+	export GITLAB_USER=$CI_PROJECT_NAMESPACE
+	export GITLAB_HOST=$CI_SERVER_HOST
+	export PROJECT_BRANCH=$CI_COMMIT_BRANCH
+	export PROJECT_REPO=$CI_PROJECT_NAME
+	export VERSION_MAJOR=$VER_LATEST_MAJOR
+	export VERSION_MINOR=$VER_LATEST_MINOR
+	export EXTRAVERSION=$VER_LATEST_EXTRA
+	do_build
+elif [ "$CI_COMMIT_BRANCH" != "" ]; then
+	export VER_DIR=$CI_COMMIT_BRANCH
+	export PAGES_URL=$CI_PAGES_URL
+	export PAGES_SLUG=$CI_COMMIT_BRANCH
+	export GITLAB_USER=$CI_PROJECT_NAMESPACE
+	export GITLAB_HOST=$CI_SERVER_HOST
+	export PROJECT_BRANCH=$CI_COMMIT_BRANCH
+	export PROJECT_REPO=$CI_PROJECT_NAME
+	export BRANCH_VER=($(echo $CI_COMMIT_BRANCH | tr "." "\n"))
+	export VERSION_MAJOR=${BRANCH_VER[0]}
+	export VERSION_MINOR=${BRANCH_VER[1]}
+	export EXTRAVERSION=wip
+	do_build
+elif [ "$CI_COMMIT_TAG" != "" ]; then
+	export TAG_SPLIT=($(echo $CI_COMMIT_TAG | tr "-" "\n"))
+	export TAG_VER=($(echo ${TAG_SPLIT[0]} | tr "." "\n"))
+	export VERSION_MAJOR=${TAG_VER[0]}
+	export VERSION_MINOR=${TAG_VER[1]}
+	export EXTRAVERSION=${TAG_SPLIT[1]}
+	export GIT_BRANCH=$(git branch -a --contains tags/$CI_COMMIT_TAG | grep origin | sed 's/.*origin\///')
+	if [ "$GIT_BRANCH" == "$CI_DEFAULT_BRANCH" ]; then
+		export VER_DIR=latest
+		export PAGES_URL=https://docs.beagleboard.org
+		export PAGES_SLUG=latest
+		export GITLAB_USER=docs
+		export GITLAB_HOST=$CI_SERVER_HOST
+		export PROJECT_BRANCH=$GIT_BRANCH
+		export PROJECT_REPO=docs.beagleboard.io
+		do_build
+	elif [ "$GIT_BRANCH" != "" ]; then
+		export VER_DIR=$GIT_BRANCH
+		export PAGES_URL=https://docs.beagleboard.org
+		export PAGES_SLUG=$GIT_BRANCH
+		export GITLAB_USER=docs
+		export GITLAB_HOST=$CI_SERVER_HOST
+		export PROJECT_BRANCH=$GIT_BRANCH
+		export PROJECT_REPO=docs.beagleboard.io
+		do_build
+	else
+		echo "***** Branch not found for tag *****"
+	fi
+else
+	echo "***** Not on a branch or tag *****"
+fi
+
+env
+
diff --git a/index.rst b/index.rst
index 873e6540fc681a62f7007fd364d705c6f8085be9..6c3f25c55edc13ae243a5bbfe3d0444067f81946 100644
--- a/index.rst
+++ b/index.rst
@@ -8,17 +8,22 @@ BeagleBoard Documentation
 
 Welcome to the `BeagleBoard project documentation <https://git.beagleboard.org/docs/docs.beagleboard.io>`__.
 
-.. note:: BeagleBoard.org is a US-based 501(c)3 non-profit organization providing open hardware
+Official documentation releases are provided at https://docs.beagle.cc (cached with local proxies) and
+https://docs.beagleboard.org (non-cached, without proxies).
+
+.. note:: 
+   The BeagleBoard.org Foundation is a US-based 501(c)3 non-profit organization providing open hardware
    computing solutions for a community of makers, educators and professionals that enable
-   rapid prototyping without barriers to creating real-world embedded systems.
+   rapid prototyping without barriers to creating real-world embedded systems. The BeagleBoard.org Foundation
+   supports the BeagleBoard community through efforts like developing this documentation.
 
 Introduction
 ************
 
-Get started by `engaging the BealgeBoard.org developer community </intro/>`__.
+Get started engaging the BeagleBoard.org developer community by reading our :ref:`introduction` page.
 
-* Read about how to: `get started and get help </intro/support>`__
-* Learn how to: `contribute to the project </intro/contribution>`__
+* Read about how to get started and get help on our :ref:`support` page.
+* Learn how to contribute to the project on our :ref:`contribution` page.
 
 .. toctree::
    :maxdepth: 2
@@ -26,6 +31,7 @@ Get started by `engaging the BealgeBoard.org developer community </intro/>`__.
    :caption: Introduction
 
    /intro/support/index
+   /intro/bone101/index
    /intro/contribution/index
 
 
@@ -39,9 +45,270 @@ design, including the
 `materials <https://git.beagleboard.org/explore/projects/topics/boards>`__ to modify the designs
 from source using appropriate design tools.
 
-* Check out our most popular board at: `BeagleBone Black </boards/beaglebone/black>`__
-* Check out our latest board at: `BeagleBone AI-64 </boards/beaglebone/ai-64>`__
-* Find all of our on: `our boards page </boards/index>`__
+* Check out our most popular board at: :ref:`beagleboneblack-home`
+* Check out our latest board at: :ref:`bbai64-home`
+* Find all of our on: :ref:`boards`
+
+.. grid:: 1 1 2 3
+   :margin: 4 4 0 0
+   :gutter: 4
+
+   .. grid-item-card::
+      :link: bbai64-home
+      :link-type: ref
+
+      **BeagleBone® AI-64**
+      ^^^
+
+      .. image:: boards/images/beaglebone-ai-64-400x.webp
+         :align: center
+      +++
+
+      A complete 64-bit AI and Machine Learning System with the convenience
+      and expandability of the BeagleBone® platform with the peripherals on
+      board to get started right away learning and building applications.
+
+
+   .. grid-item-card::
+      :link: beagleboneblack-home
+      :link-type: ref
+
+      **BeagleBone® Black**
+      ^^^
+
+      .. image:: boards/images/beaglebone-black-400x400.png
+         :align: center
+      +++
+
+      1GHz Single-Board Linux Computer based on ARM Cortex-A8 with PRU 
+      microcontrollers and tons of features like Ethernet and HDMI – 
+      credit card sized with over a decade of support, software and 
+      materials behind it making it ready for any application.
+
+   .. grid-item-card:: 
+      :link: beagleboneblack-home
+      :link-type: ref
+
+      **BeagleBone® Black Industrial**
+      ^^^
+
+      .. image:: boards/images/bb-industrial-400x356.png
+         :align: center
+      +++
+
+      Answer the need for an industrial rated single board computer with extended 
+      temperature range with the same functionality as the popular BeagleBone Black®
+
+   .. grid-item-card:: 
+      :link: beagleboneblack-home
+      :link-type: ref
+
+      **BeagleBone® Black Wireless**
+      ^^^
+
+      .. image:: boards/images/BeagleBoneBlackWireless-Angled-400x268.png
+         :align: center
+      +++
+
+      With built-in 802.11 b/g/n 2.4GHz Wi-Fi and Bluetooth wireless networking capability, 
+      the popular open source BeagleBone® Black computer goes anywhere. Take your IoT and 
+      IIoT projects to the next level with a full Linux computer the size of a mint tin.
+
+   .. grid-item-card:: 
+      :link: beaglebone-ai-home
+      :link-type: ref
+
+      **BeagleBone® AI**
+      ^^^
+
+      .. image:: boards/images/beaglebone-ai-400x208.png
+         :align: center
+      +++
+
+      Filling the gap between small SBCs and more powerful industrial computers, 
+      BeagleBone® AI, based on the AM5729, makes it easy to explore how artificial 
+      intelligence can be used in every day life. Powerful compute performance and software support.
+
+   .. grid-item-card:: 
+      :link: pocketbeagle-home
+      :link-type: ref
+
+      **PocketBeagle®**
+      ^^^
+
+      .. image:: boards/images/pocketBeagle-hero-hand-400x222.png
+         :align: center
+      +++
+
+      This ultra-tiny-yet-complete open-source USB-key-fob computer has the same processor 
+      as the BeagleBone® Black at one third the size. Give small projects the Linux computer 
+      they deserve. Hundreds of example projects to help you get started.
+
+   .. grid-item-card:: 
+      :link: beaglebone-blue-home
+      :link-type: ref
+
+      BeagleBone® Blue
+      ^^^
+
+      .. image:: boards/images/beaglebone-blue-400x279.png
+         :align: center
+      +++
+
+      An all-in-one Linux-based robotics computer with compatibility to BeagleBone® Black and 
+      tons of integration including Wi-Fi, Bluetooth, IMU/barometer, power regulation, H-Bridges, 
+      motor connectors and more. Robotics made streamlined, affordable and fun.
+
+Capes
+******
+
+.. grid:: 1 1 2 3
+   :margin: 4 4 0 0
+   :gutter: 4
+
+   .. grid-item-card::
+
+      **BeagleBone® Servo Cape**
+      ^^^
+
+      .. image:: boards/capes/images/BeagleBoneServoCapeA2_Top_NEW-400x332.png
+         :align: center
+      +++
+
+      Control up to 16 servos for many remote control, robotics or automation projects
+
+   .. grid-item-card::
+
+      **BeagleBone® Fan Cape**
+      ^^^
+
+      .. image:: boards/capes/images/fan-cape-400x299.png
+         :align: center
+      +++
+
+      Keeps BeagleBone® cool under heavy operating loads while still providing easy 
+      access to the headers. Essential for BeagleBone® AI Projects
+
+   .. grid-item-card::
+
+      **BeagleBone® Robotics Cape**
+      ^^^
+
+      .. image:: boards/capes/images/BBB_RoboticsCape-400x368.png
+         :align: center
+      +++
+
+      Loaded with features needed for mobile robotics supporting 
+      movement, sensing, power management and communication
+
+   .. grid-item-card::
+      :link: bone-cape-relay
+      :link-type: ref
+
+      **BeagleBone® Relay Cape**
+      ^^^
+
+      .. image:: boards/capes/images/BeagleBoneRelayCapeA2-400x274.png
+         :align: center
+      +++
+
+      Control things like lights, pumps and more in any home 
+      automation project quickly with 4 relay switches
+
+   .. grid-item-card::
+
+      **BeagleBone® Proto Cape**
+      ^^^
+
+      .. image:: boards/capes/images/BeagleBoneProtoCapeA2-e1622405187534.png
+         :align: center
+      +++
+
+      Provides a blank slate including a grid of plated through-holes for external 
+      components and supportive buttons and LEDs
+
+   .. grid-item-card::
+
+      **BeagleBone® Power Cape**
+      ^^^
+
+      .. image:: boards/capes/images/BeagleBonePowerCapeA2-400x285.png
+         :align: center
+      +++
+
+      Provides a complete power interface with regulated 3.3V and 5V out as well as up to 30V input voltage
+
+   .. grid-item-card::
+
+      **BeagleBone® Load Cape**
+      ^^^
+
+      .. image:: boards/capes/images/BeagleBoneLoadCapeA2-400x290.png
+         :align: center
+      +++
+
+      Drive high-current loads like relays, motors, solenoids, and high current LEDs
+
+   .. grid-item-card::
+
+      **BeagleBone® Motor Cape**
+      ^^^
+
+      .. image:: boards/capes/images/BeagleBoneMotorCapeA2-400x281.png
+         :align: center
+      +++
+
+      Drive up to 4 DC motors with direction and PWM control
+
+
+   .. grid-item-card::
+
+      **BeagleBone® Comms Cape**
+      ^^^
+
+      .. image:: boards/capes/images/BeagleBoneCommsCapeA2-400x279.png
+         :align: center
+      +++
+
+      Quickly develop industrial communication applications with an array of protocols including RS485 and CAN
+
+   .. grid-item-card::
+
+      **BeagleBone® GamePup Cape**
+      ^^^
+
+      .. image:: boards/capes/images/PocketBeagle_GamePup-400x410.png
+         :align: center
+      +++
+
+      For making a handheld arcade emulator, your own games or otherwise taking your PocketBeagle 
+      on the go, PocketBeagle® GamePup provides all the features you need in a slick shape for gaming
+
+   .. grid-item-card::
+
+      **BeagleBone® Grove Kit**
+      ^^^
+
+      .. image:: boards/capes/images/pb-grove-kit-400x267.png
+         :align: center
+      +++
+
+      A complete kit for developing projects with PocketBeagle® and Grove modules. Great for 
+      teaching embedded processing and Linux development. Comes complete with PocketBeagle® 
+      as well as Grove Cape and 10 modules to get started.
+
+   .. grid-item-card::
+
+      **BeagleBone® TechLab Cape**
+      ^^^
+
+      .. image:: boards/capes/images/PocketBeagle_TechLab-400x212.png
+         :align: center
+      +++
+
+      Designed with years of educational lessons-learned in mind, PocketBeagle® TechLab 
+      Cape delivers easy introduction to programming, Linux and even hacking the kernel 
+      itself. Supported by teaching materials from the Linux Foundation and eALE.
 
 .. toctree::
    :maxdepth: 1
@@ -62,8 +329,8 @@ from source using appropriate design tools.
 Projects
 ********
 
-A number of software projects, like `SimpPRU </projects/simppru/index>`__ exist to help Beagle
-developers. Some developers choose to host documentation for their projects `here </projects/index>`__.
+A number of software projects, like :ref:`simppru_home` exist to help Beagle
+developers. Some developers choose to host documentation for their :ref:`projects-home` .
 
 .. toctree::
    :maxdepth: 1
@@ -71,16 +338,16 @@ developers. Some developers choose to host documentation for their projects `her
    :caption: Projects
 
    /projects/simppru/index
-   /boards/beagleconnect/technology/index
+   /projects/bb-config/index
+   /boards/beagleconnect/index
 
 Books
 *****
 
-This project hosts a
-`collection of open-source books written to help Beagle developers </books/index>`__.
+This project hosts a collection of open-source :ref:`books-home` books written to help Beagle developers.
 
-* Find a great introduction to BeagleBone at: `BeagleBone Cookbook </books/beaglebone-cookbook>`__
-* Learn one of the most amazing Beagle features at: `PRU Cookbook </books/pru-cookbook>`__
+* Find a great introduction to BeagleBone at: :ref:`bone-cook-book-home`
+* Learn one of the most amazing Beagle features at: :ref:`pru-cookbook-home`
 
 .. toctree::
    :maxdepth: 1
diff --git a/intro/bone101/index.rst b/intro/bone101/index.rst
new file mode 100644
index 0000000000000000000000000000000000000000..ee0950382a25bc7bb45f884a6b124c92499df24d
--- /dev/null
+++ b/intro/bone101/index.rst
@@ -0,0 +1,23 @@
+.. _intro_bone101:
+
+Bone101
+#######
+
+.. note::
+   This page is under construction. Most of the information here is drastically out of date.
+
+This is a collection of articles to aide in quickly understanding how to make use of BeagleBone boards
+and other Beagles running Linux. Most of the useful information has moved to :ref:`bone-cook-book-home`, but some articles
+are being built here from a different perspective.
+
+Articles under construction or to be imported and updated:
+
+* :ref:`qwiic_stemma_grove_addons`
+* https://beagleboard.github.io/bone101/Support/bone101/
+
+.. toctree::
+   :maxdepth: 1
+   :hidden:
+
+   /intro/bone101/qwiic-stemma-grove-addons.rst
+
diff --git a/intro/bone101/qwiic-stemma-grove-addons.rst b/intro/bone101/qwiic-stemma-grove-addons.rst
new file mode 100644
index 0000000000000000000000000000000000000000..ad24074babfadd390104c12528be57acc10b9c79
--- /dev/null
+++ b/intro/bone101/qwiic-stemma-grove-addons.rst
@@ -0,0 +1,182 @@
+.. _qwiic_stemma_grove_addons:
+
+QWIIC, STEMMA and Grove Add-ons in Linux
+########################################
+
+.. note::
+
+   This article is under construction.
+
+I'm creating a place for me to start taking notes on how to load drivers for I2C devices (mostly), but also other Grove add-ons.
+
+For simplicity sake, I'll use these definitions
+
+* **add-on**: the QWIIC, STEMMA (QT) or Grove add-on separate from your Linux computer
+* **device**: the "smart" IC on the add-on to which we will interface from your Linux computer
+* **board**: the Linux single board computer with the embedded interface controller you are using
+* **module**: a kernel module that might contain the driver
+
+.. _bone101_i2c:
+
+Using I2C with Linux drivers
+****************************
+
+Linux has a ton of drivers for I2C devices. We just need a few parameters to load them.
+
+Using a Linux I2C kernel driver module can be super simple, like in the below example for
+monitoring a digital light sensor.
+
+.. code-block:: bash
+
+  cd /dev/bone/i2c/2
+  echo tsl2561 0x29 > new_device
+  watch -n0 cat "2-0029/iio:device0/in_illuminance0_input"
+
+Once you issue this, your screen continuously refresh with luminance values from the
+add-on sensor.
+
+In the above example, `/dev/bone/i2c/2` comes from which I2C controller
+we are using on the board and there are specific pins on the board where you can
+access it. On BeagleBone boards, there is often a symbolic link to the controller
+based upon the cape expansion header pins being used. See :ref:`bone-i2c` for the
+cape expansion header pin assignments.
+
+`tsl2561` is the name of the driver we want to load and `0x29` is the address of the
+device on the I2C bus. If you want to know about I2C device addresses, the
+`Sparkfun I2C tutorial <https://learn.sparkfun.com/tutorials/i2c>`__ isn't a bad
+place to start. The `new_device` virtual file is documented in the
+`Linux kernel documentation on instantiating I2C devices <https://www.kernel.org/doc/html/v5.19/i2c/instantiating-devices.html>`__.
+
+On the last line, `watch <https://manpages.debian.org/bullseye/procps/watch.1.en.html>`__
+is a program that will repeatedly run the command that follows. The `-n0` sets the refresh 
+rate. The program `cat <https://manpages.debian.org/bullseye/coreutils/cat.1.en.html>`__
+will share the contents of the file `2-0029/iio\:device0/in_illuminance0_input`.
+
+`2-0029/iio:device0/in_illuminance0_input` is not a file on a disk, but output directly
+from the driver. The leading 2 in `2-0029` represents the I2C controller index. The `0029`
+represents the device I2C address. Most small sensor and actuator drivers will show up as
+`Industrial I/O (IIO) devices <https://www.kernel.org/doc/html/v5.19/driver-api/iio/index.html>`__.
+New IIO devices get incrementing indexes. In this case, `iio:device0` is the first IIO device
+driver loaded. Finally, `in_illuminance0_input` comes from the
+`SYSFS <https://www.kernel.org/doc/html/v5.19/filesystems/sysfs.html>`__ 
+`application binary interface <https://www.kernel.org/doc/html/v5.19/admin-guide/abi.html>`__
+for this type of device, a light sensor. The
+`Linux kernel ABI documentation for sysfs-bus-iio <https://www.kernel.org/doc/html/v5.19/admin-guide/abi-testing.html#abi-sys-iio-devicex-in-illuminance-input>`__ provides the definition of available data often provided by light sensor drivers.
+
+.. code-block::
+
+  What:		/sys/.../iio:deviceX/in_illuminance_input
+  What:		/sys/.../iio:deviceX/in_illuminance_raw
+  What:		/sys/.../iio:deviceX/in_illuminanceY_input
+  What:		/sys/.../iio:deviceX/in_illuminanceY_raw
+  What:		/sys/.../iio:deviceX/in_illuminanceY_mean_raw
+  What:		/sys/.../iio:deviceX/in_illuminance_ir_raw
+  What:		/sys/.../iio:deviceX/in_illuminance_clear_raw
+  KernelVersion:	3.4
+  Contact:	linux-iio@vger.kernel.org
+  Description:
+		Illuminance measurement, units after application of scale
+		and offset are lux.
+
+Read further to discover how to find these bits of magic text used above.
+
+The generic steps are fairly simple:
+
+1. :ref:`Identify the name and address used to load the appropriate driver for your add-on <bone101_i2c_driver_name>`
+2. :ref:`Ensure the driver is included in your kernel build <bone101_i2c_kernel_cfg>`
+3. :ref:`Identify the location of the I2C signals on the board and the controller link in Linux <bone101_i2c_dev>`
+4. :ref:`Ensure the board pinmux is set properly to expose the I2C peripheral <bone101_i2c_pinmux>`
+5. :ref:`Ensure the board to add-on connection is good <bone101_i2c_wiring>`
+6. :ref:`Issue the Linux command to load the driver <bone101_i2c_command>`
+7. :ref:`Identify and utilize the interface provided by the driver <bone101_i2c_iio>`
+
+.. _bone101_i2c_driver_name:
+
+Driver name
+===========
+
+One resource that is very helpful is the list that Vaishnav put together for supporting
+Mikroelektronika Click add-ons. His `list of Click add-ons with driver information <https://git.beagleboard.org/jkridner/manifesto/-/blob/main/click_info.csv>`__ can help a lot with matching
+a device to the driver name, device address, and kernel configuration setting.
+
+.. note::
+
+  Documentation for your particular add-on might indicate a different device address than is
+  configured on Click add-ons.
+
+I'm not aware of a trivial way of discovering the mapping that Vaishnav created outside
+of looking at the kernel sources. As an example, let's look at the 
+`Grove Digital Light Sensor add-on <https://wiki.seeedstudio.com/Grove-Digital_Light_Sensor/>`__ 
+which is documented to utilize a TSL2561.
+
+Searching through the kernel sources, we can find the driver code at
+`drivers/iio/light/tsl2563.c`. There is a list of driver names in a
+`i2c_device_id table <https://elixir.bootlin.com/linux/v5.19.5/source/drivers/iio/light/tsl2563.c#L862>`__:
+
+.. code-block::
+
+  static const struct i2c_device_id tsl2563_id[] = {
+  	{ "tsl2560", 0 },
+  	{ "tsl2561", 1 },
+  	{ "tsl2562", 2 },
+  	{ "tsl2563", 3 },
+  	{}
+  };
+
+.. important::
+
+  Don't miss that the driver, `tsl2561` , is actually part of a a superset driver, `tsl2563` . This can make things a bit trickier to find, so you have to look
+  within the text of the driver source, not just the filenames.
+
+
+.. _bone101_i2c_kernel_cfg:
+
+Kernel configuration
+====================
+
+.. _bone101_i2c_dev:
+
+I2C signals and controller
+==========================
+
+.. _bone101_i2c_pinmux:
+
+Pinmuxing
+=========
+
+.. _bone101_i2c_wiring:
+
+Wiring
+======
+
+.. _bone101_i2c_command:
+
+Load driver
+===========
+
+.. _bone101_i2c_iio:
+
+Interface
+=========
+
+.. _bone101_i2c_addons:
+
+Finding I2C add-on modules
+==========================
+
+.. note::
+
+  There are some great resources out there:
+
+  * `Adafruit list of I2C devices <https://learn.adafruit.com/i2c-addresses/the-list>`__
+  * `Sparkfun list of QWIIC devices <https://www.sparkfun.com/qwiic>`__
+  * `Adafruit STEMMA QT introduction <https://learn.adafruit.com/introducing-adafruit-stemma-qt/sparkfun-qwiic>`__
+
+.. _bone101_i2c_pitfalls:
+
+Pitfalls
+========
+
+Not all I2C devices with drivers in the Linux kernel can be loaded this way. The most common
+reason is that the device driver expects an interrupt signal or other GPIO along with the I2C
+communication. In these cases, a device tree overlay or driver modification may be necessary.
diff --git a/intro/contribution/git-usage.rst b/intro/contribution/git-usage.rst
index 3eceec05b6c3fee42be4bcf67838ae3b49add449..cf6f936c6dbba95fa5e2a25a68ef1f1c5270a33e 100644
--- a/intro/contribution/git-usage.rst
+++ b/intro/contribution/git-usage.rst
@@ -468,7 +468,7 @@ typically do this using a new integration branch, then fetch it to your
 local machine to test everything, before merging it to your main branch.
 
 Committing changes to main branch
----------------
+---------------------------------
 
 This section is intended for BeagleBoard developers, who are allowed to
 commit changes to the BeagleBoard main "official" branch. It describes the
@@ -574,7 +574,7 @@ And push it to GitLab:
     git push --tags origin main
 
 Additional Resources
----------------
+--------------------
 
 There are a lot of different nice guides to using Git on the web:
 
diff --git a/intro/contribution/index.rst b/intro/contribution/index.rst
index 3a1cb77acfa5a5b5e8d49eb2290b4e758f1b7ee5..b1ac606d37fe3e3e2c96641cca3e588d863205e8 100644
--- a/intro/contribution/index.rst
+++ b/intro/contribution/index.rst
@@ -1,12 +1,91 @@
-.. _beagleboard-contributoin:
+.. _contribution:
 
 Contribution 
 ###############
 
-.. note:: This section is under developmement right now.
+.. note::
+   This section is under developmement right now.
+
+.. important::
+   First off, thanks for taking the time to think about contributing!
+
+.. note::
+   For donations, see `BeagleBoard.org - Donate <https://beagleboard.org/donate>`__.
+
+The BeagleBoard.org Foundation maintains source for many open source projects.
+
+Example projects suitable for first contributions:
+
+* `BeagleBoard project documentation <https://git.beagleboard.org/docs/docs.beagleboard.io>`__
+* `Debian image bug repository <https://git.beagleboard.org/beagleboard/Latest-Images>`__
+* `Debian image builder <https://git.beagleboard.org/beagleboard/image-builder>`__
+
+These guidelines are mostly suggestions, not hard-set rules. Use your best judgment, and feel free
+to propose changes to this document in a pull request.
+
+Code of Conduct
+***************
+
+This project and everyone participating are governed by the same code of conduct.
+
+.. note::
+   Check out https://forum.beagleboard.org/faq as a starting place for our code of conduct.
+
+By participating, you are expected to
+uphold this code. Please report unacceptable behavior to
+contact one of our administrators or moderators on https://forum.beagleboard.org/about.
+
+Frequently Asked Questions
+**************************
+
+Please refer to the technical and contribution frequently asked questions pages before posting any of your own questions. Please
+feel encouraged to ask follow-up questions if any of the answers are not clear enough.
+
+* `Frequently asked questions contribution category on the BeagleBoard.org Forum <https://forum.beagleboard.org/c/faq>`__
+
+What should I know before I get started?
+****************************************
+
+The more you know about Linux and contributing to upstream projects, the better, but this knowledge isn't strictly required. Simply
+reading about contributing to Linux and upstream projects can help build your vocabulary in a meaningful way to help out. Learn about
+the skills required for Linux contributions in the :ref:`beagleboard-linux-upstream` section.
+
+The most useful thing to know is how to ask smart questions. Read about this in the :ref:`intro-getting-support` section. If you ask
+smart questions on the issue trackers and forum, you'll be doing a lot to help us improve the designs and documentation.
+
+.. toctree::
+   :maxdepth: 1
+   :hidden:
+
+   /intro/contribution/linux-upstream
+
+How can I contribute?
+*********************
+
+The most obvious way to contribute is using the `git.beagleboard.org Gitlab server <https://git.beagleboard.org>`_ to report
+bugs, suggest enhancements and providing merge requests, also called pull requests, the provide fixes to software, hardware
+designs and documentation.
+
+Reporting bugs
+===============
+
+Suggesting enhancements
+=======================
+
+Submitting merge requests
+=========================
+
+Style and usage guidelines
+**************************
+
+* :ref:`beagleboard-git-usage`
+* Git commit messages
+* :ref:`beagleboard-doc-style`
 
 .. toctree::
    :maxdepth: 1
+   :hidden:
 
    /intro/contribution/git-usage
    /intro/contribution/style
+   /intro/contribution/rst-cheat-sheet
diff --git a/intro/contribution/linux-upstream.rst b/intro/contribution/linux-upstream.rst
new file mode 100644
index 0000000000000000000000000000000000000000..267f4698dacfca7e3ebc9c4cf186aea372d56fd5
--- /dev/null
+++ b/intro/contribution/linux-upstream.rst
@@ -0,0 +1,187 @@
+.. _beagleboard-linux-upstream:
+
+Upstream Kernel Contributions
+#############################
+
+.. note::
+    For detailed information on Kernel Developmement checkout the official
+    `kernel.org <https://www.kernel.org/doc/html/latest/>`_
+    kernel docs.
+
+For a person or company who wishes to submit a change to the Linux kernel,
+the process can sometimes be daunting if you’re not familiar with “the system.”
+This text is a collection of suggestions which can help you get started and greatly increase the chances
+of your change being accepted.
+
+.. note:: This version is an unofficial draft and is subject to change.
+
+Pre-requisites
+***************
+
+The following are the skills that are needed before you actually start to contribute to the linux kernel:
+
+    - :ref:`linux-upstream-more-git`
+    - :ref:`linux-upstream-c-programming`
+    - :ref:`linux-upstream-cross-arch`
+    - :ref:`linux-upstream-embedded-busses`
+    - :ref:`linux-upstream-drivers`
+    - :ref:`linux-upstream-device-trees`
+
+For more guidance, check out the :ref:`linux-upstream-additional-resources`.
+
+.. _linux-upstream-more-git:
+
+More Git!
+*********
+
+It is highly recommended that you go through :ref:`beagleboard-git-usage` before starting
+to read and follow these guidelines. You will need to have a proper git setup on your
+computer inorder to effectively follow these steps.
+
+Creating your first patch
+=========================
+
+When you first enter the world of Linux Kernel development from a background in
+contributing over gitlab or github, the terminologies slightly change.
+
+Your Pull Requests (PRs) now become Patches or Patch Series. You no longer just
+go to some website and click on a "Create Pull Request" button. Whatever code/changes you
+want to add will have to be sent as patches via emails.
+
+As an example, let's consider a commit to add the git section to these docs.
+I stage these changes first using ``git add -p``.
+
+.. code-block::
+
+    diff --git a/contribution/contribute.rst b/contribution/contribute.rst
+    index def100b..0af08c5 100644
+    --- a/contribution/contribute.rst
+    +++ b/contribution/contribute.rst
+
+Then, commit the above changes.
+
+**Note:** Don't forget to make your commit message descriptive of the feature
+you are adding or the work that you have done in that commit. The commit
+has to be self explanatory in itself. Link any references if you have used
+and paste any logs to prove your code works or if there is a fix.
+
+.. code-block::
+
+    git commit -vs
+
+    [linux-contrib 3bc0821] contribute.rst: Add git section
+     1 file changed, 27 insertions(+), 1 deletion(-)
+
+Now, let's say we want to send this new feature to upstream kernel. You then have to create
+a patch file using the following command:
+
+.. code-block::
+
+    git format-patch -1 HEAD
+
+    0001-contribute.rst-Add-git-section.patch
+
+This will generate one file that is generally referred to as the patch file.
+This is what you will now be sending upstream inorder to get your patch merged.
+But wait, there are a few more things we need to setup for sending a patch via e-mail.
+That is, ofcourse your email!
+
+For configuring your email ID for sending patches refer to this excellent stackoverflow thread,
+`configure git-send-email
+<https://stackoverflow.com/questions/68238912/how-to-configure-and-use-git-send-email-to-work-with-gmail-to-email-patches-to>`_.
+
+Finally, after you have configured you email properly, you can send out a patch using:
+
+.. code-block::
+
+    git send-email 0001-contribute.rst-Add-git-section.patch
+
+replacing ofcourse the above patchfile name with whatever was your own patch.
+This command will then ask you ``To whom should the emails be sent (if anyone)?``
+Here, you have to write the email address of the list you want to send out the patch to.
+
+``git send-email`` also has command line options like ``--to`` and ``--cc`` that you can also use
+to add more email addresses of whoever you want to keep in CC. Generally it is a good idea to keep yourself
+in CC.
+
+.. _linux-upstream-c-programming:
+
+C-Programming
+*************
+
+It is highly recommended that you have proficiency in C-Programming, because well the kernel is mostly
+written in C! For starters, you can go through Dennis Ritchie's C Programming book to understand
+the language and also solve the excercises given there for getting hands on.
+
+.. _linux-upstream-cross-arch:
+
+Cross-arch Development
+**********************
+
+While working with the kernel, you'll most likely not be compiling it on the machine
+that you intend to actually boot it on.
+For example if you are compiling the Kernel for BeageBone Black it's probably not ideal
+for you to actually clone the entire kernel on BBB and then compile it there.
+What you'd do instead is pick a much powerful machine like a Desktop PC or laptop and
+then use cross arch compilers like the arm-gcc for instance to compile the kernel for your
+target device.
+
+.. _linux-upstream-embedded-busses:
+
+Basics of embedded busses (I2C, UART, SPI, etc.)
+************************************************
+
+In the world of embedded, you often need to communicate with peripherals over very low level protocols.
+To name a few, I2C, UART, SPI, etc. are all serial protocols used to communicate with a variety of devices and
+peripherals.
+
+It's recommended to understand atleast the basics of each of the protocol so you know what's actually going
+on when you write for instance an I2C or SPI driver to communicate with let's say a sensor.
+
+.. _linux-upstream-drivers:
+
+Device Drivers in Embedded Systems
+**********************************
+
+I used the term "Drivers" in the above section, but what does it really mean?
+
+**Why "device" drivers?**
+
+TODO
+
+**Why do we need drivers?**
+
+TODO
+
+**What do drivers look like?**
+
+TODO
+
+.. _linux-upstream-device-trees:
+
+Device Trees
+************
+
+We just learned about drivers, and it's time that once you have written a driver in the kernel,
+you obviously want it to work! So how do we really tell the kernel which drivers to load?
+How do we, at boot time, instruct which devices are present on the board you are booting on?
+
+The kernel does not contain the description of the hardware,
+it is located in a separate binary: the device tree blob.
+
+**What is a Device Tree?**
+
+A device tree is used to describe system hardware. A boot program loads a device tree into a
+client program’s memory and passes a pointer to the device tree to the client.
+
+A device tree is a tree data structure with nodes that describe
+the physical devices in a system.
+
+.. _linux-upstream-additional-resources:
+
+Additional Resources
+********************
+
+1. `Device Trees for Dummies PDF <https://elinux.org/images/f/f9/Petazzoni-device-tree-dummies_0.pdf>`_
+2. `What are Device Drivers <https://tldp.org/LDP/tlk/dd/drivers.html>`_
+3. `Submitting your patches upstream <https://www.kernel.org/doc/html/v4.17/process/submitting-patches.html>`_
diff --git a/intro/contribution/rst-cheat-sheet.rst b/intro/contribution/rst-cheat-sheet.rst
new file mode 100644
index 0000000000000000000000000000000000000000..db3626dac75aebc243d43e7f1353d7f388951037
--- /dev/null
+++ b/intro/contribution/rst-cheat-sheet.rst
@@ -0,0 +1,43 @@
+.. _rst-cheat-sheet:
+
+ReStructuredText Cheat Sheet
+############################
+
+BeagleBoard docs is mostly writted with ReStructuredText (r)
+
+Headings
+*********
+
+For each document we divide sections with headings and in ReStructuredText we can use 
+matching overline and underline to indicate a heading. 
+
+1. Document heading (H1) use ``#``.
+2. First heading (H2) use ``*``.
+3. First heading (H2) use ``=``.
+4. First heading (H2) use ``-``.
+5. First heading (H2) use ``~``.
+
+.. note::
+    You can include only one (H1) ``#`` in a single documentation page.
+
+Make sure the length of your heading symbol is atleast (or 
+more) the lenth of the heading text, for example:
+
+
+.. callout::
+
+    .. code-block:: ReStructuredText
+
+        incorrect H1
+        ##### <1>
+
+        correct H1
+        ############ <2>
+    
+    .. annotations::
+
+        <1> Length of heading sybol ``#`` is smaller than the content above.
+
+        <2> Shows the correct way of setting the document title (H1) with ``#``.
+
+    
diff --git a/intro/index.rst b/intro/index.rst
index 2e2e5e9143a527235c5f4f3eef0d7536a3f8338c..8001002d4a5959de10a5989b680e70d44a462bd2 100644
--- a/intro/index.rst
+++ b/intro/index.rst
@@ -1,19 +1,27 @@
+.. _introduction:
+
 Introduction
 #############
 
 Welcome to the BeagleBoard documentation project. If you are looking for help with your Beagle
 open-hardware development platform, you've found the right place!
 
-Please check out our `Support Page <support>`__ to find out how to get started, resolve issues,
+For the latest versions of this documentation, be sure to check the official release sites:
+
+* https://docs.beagle.cc (cached with local proxies)
+* https://docs.beagleboard.org (non-cached, without proxies)
+
+Please check out our :ref:`support` page` to find out how to get started, resolve issues,
 and engage the developer community.
 
 Don't forget that this is an open-source project! Your contributions are welcome. Learn about how
 to contribute to the BeagleBoard documentation project and any of the many open-source Beagle
-projects on-going on our `Contribution Page <contribution>`__.
+projects on-going on our :ref:`contribution` page.
 
 .. toctree::
    :maxdepth: 2
 
    /intro/support/index
+   /intro/bone101/index
    /intro/contribution/index
 
diff --git a/intro/support/index.rst b/intro/support/index.rst
index 40ec9248384513ffdc8a0c4cdc89c9882bfc78f7..b0d37435d9ca37ff17987be18720a5d4ebeda4f8 100644
--- a/intro/support/index.rst
+++ b/intro/support/index.rst
@@ -10,13 +10,14 @@ Getting started
 
 The starting experience for all Beagles has been made to be as
 consistent as is possible. For any of the Beagle Linux-based open
-hardware computers, visit our `getting started guide <getting-started>`__.
+hardware computers, visit :ref:`beagleboard-getting-started`.
 
 .. toctree::
    :maxdepth: 2
 
    /intro/support/getting-started
 
+.. _intro-getting-support:
 
 Getting support
 ***************
@@ -36,16 +37,16 @@ there.
 Be sure to ask `smart questions <http://www.catb.org/~esr/faqs/smart-questions.html>`__
 that provide the following:
 
-*  What am I trying to accomplish?
-*  What did find when researching how to accomplish it?
-*  What are the detailed results of what I tried?
-*  How did these results differ from what I expected?
-*  What would I consider to be a success?
+*  What are you trying to accomplish?
+*  What did you find when researching how to accomplish it?
+*  What are the detailed results of what you tried?
+*  How did these results differ from what you expected?
+*  What would you consider to be a success?
 
-.. note::
-   Remember that community developers are volunteering their expertise. If you
-   want paid support, there are options for that. Respect developers time and
-   expertise and they might be happy to share with you.
+.. important::
+   Remember that community developers are volunteering their expertise. Respect
+   developers time and expertise and they might be happy to share with you. If you
+   want paid support, there are :ref:`consulting-resources` options for that. 
 
 Diagnostic tools
 ================
@@ -53,9 +54,6 @@ Diagnostic tools
 Best to be prepared with good diagnostic information to aide with
 support.
 
-.. todo::
-   Need a reference to how to run `beagle-version`.
-
 .. note::
    #TODO#: Need a reference to how to run `beagle-version`.
 
@@ -75,6 +73,8 @@ of the entire community.
 -  `Mailing List <https://forum.beagleboard.org>`__
 -  `Live Chat <https://beagleboard.org/chat>`__
 
+.. _consulting-resources:
+
 Consulting and other resources
 ==============================
 
@@ -109,7 +109,7 @@ Understanding Your Beagle
 Working with Cape Add-on Boards
 *******************************
 
-- `Cape Documentation </boards/capes/>`__
-- `BeagleBone Cape Interface Specification </boards/capes/cape-interface-spec.html>`__
+- :ref:`capes`
+- :ref:`beaglebone-cape-interface-spec`
 
 
diff --git a/projects/bb-config/build.rst b/projects/bb-config/build.rst
new file mode 100644
index 0000000000000000000000000000000000000000..d7f83f4a09d7980e5522deacf3ac8b8f39a76f98
--- /dev/null
+++ b/projects/bb-config/build.rst
@@ -0,0 +1,29 @@
+Build from Source
+###################
+
+Dependencies
+**************
+
+-  g++
+-  cmake
+-  glib-2.0
+-  libnm
+
+Build
+******
+
+.. code:: bash
+
+   git clone https://git.beagleboard.org/gsoc/bb-config
+   cd bb-config
+   mkdir build
+   cd build
+   cmake ..
+   make -j$(nproc)
+
+Install
+********
+
+.. code:: bash
+
+   sudo make install
diff --git a/projects/bb-config/detail.rst b/projects/bb-config/detail.rst
new file mode 100644
index 0000000000000000000000000000000000000000..ff983d8d3f656f631ff3ce25a9da6c6c90fdc47a
--- /dev/null
+++ b/projects/bb-config/detail.rst
@@ -0,0 +1,28 @@
+.. _bb_config_detail:
+
+BB-Config Detail
+#################
+Configure your beagle devices easily.
+
+`Github <https://git.beagleboard.org/gsoc/bb-config>`_
+
+.. image:: images/bb-config.png
+   :alt: BB-Config Logo
+
+
+What is BB-Config
+******************
+
+BB-Config is a software that makes the most common low-level 
+configuration changes in beagle devices easily and provides a 
+terminal UI.
+
+BB-Config is using `FTXUI <https://github.com/ArthurSonzogni/FTXUI>`_ (C++ Functional Terminal User Interface)
+which have simple and elegant UI looking.
+
+Look Like
+==========
+
+.. image:: images/about.png
+   :align: center
+   :alt: bb-config about
\ No newline at end of file
diff --git a/projects/bb-config/features.rst b/projects/bb-config/features.rst
new file mode 100644
index 0000000000000000000000000000000000000000..4786467aa6a215eccceadab4465c741170ed8d22
--- /dev/null
+++ b/projects/bb-config/features.rst
@@ -0,0 +1,191 @@
+Features
+#########
+
+BB-Config v1.x
+***************
+
+PRU Enable/Disable
+===================
+- Enable/Disable PRU
+
+.. image:: images/pru.png
+   :align: center
+   :alt: pru
+
+
+GPIO
+=====
+- Turn On/Off gpio
+
+GPIO Menu
+----------
+
+.. image:: images/gpio.png
+   :align: center
+   :alt: gpio menu
+
+
+GPIO Setting
+-------------
+
+.. image:: images/gpio2.png
+   :align: center
+   :alt: gpio setting
+
+
+EMMC and MicroSD Stats
+=======================
+- Storage stats & grow partition
+
+.. image:: images/emmc.png
+   :align: center
+   :alt: emmc
+
+
+LEDs
+=====
+- Config board build in LEDs
+
+.. image:: images/leds.png
+   :align: center
+   :alt: leds
+
+
+Password
+=========
+- Change users password
+
+.. image:: images/password.png
+   :align: center
+   :alt: password
+
+
+SSH
+====
+- Enable/Disable SSH
+
+.. image:: images/ssh.png
+   :align: center
+   :alt: ssh
+
+
+WiFi
+=====
+- Connect to Wi-Fi
+
+.. image:: images/wifi.png
+   :align: center
+   :alt: WiFi
+
+
+Internet Sharing and Client Config
+===================================
+
+.. image:: images/ics.png
+   :align: center
+   :alt: ics
+
+
+- Note: You'll have to configure your host Following is an example script:
+
+.. code:: bash
+    echo 1 > /proc/sys/net/ipv4/ip_forward
+    iptables --table nat --append POSTROUTING --out-interface wlp4s0 -j MASQUERADE
+    iptables --append FORWARD --in-interface wlp4s0 -j ACCEPT
+
+About
+======
+
+.. image:: images/about.png
+   :align: center
+   :alt: about
+
+
+BB-Config v2.x
+***************
+
+ADC (Graph)
+============
+- Plot graph for Analogue pin
+
+.. image:: images/adc2.png
+   :align: center
+   :alt: adc page
+
+
+.. image:: images/adc.png
+   :align: center
+   :alt: adc graph
+
+
+DAC (PWM)
+==========
+- Generate PWM waveform
+
+.. image:: images/pwm.png
+   :align: center
+   :alt: pwm
+
+
+uEnv
+=====
+- Enable/Disable boot configuration
+
+.. image:: images/uEnv.png
+   :align: center
+   :alt: uEnv
+
+
+services
+=========
+- Enable/Disable services startup at boot
+
+.. image:: images/service.png
+   :align: center
+   :alt: service
+
+
+PINMUX
+=======
+- Display PIN I/O detail
+- Config PINMUX
+
+Hardware Display
+-----------------
+.. image:: images/pinmux.png
+   :align: center
+   :alt: pinmux hardware
+
+
+Pin Table Refernce
+--------------------
+.. image:: images/pinmux2.png
+   :align: center
+   :alt: pinmux table references
+
+
+Pin Config
+--------------
+.. image:: images/pinmux3.png
+   :align: center
+   :alt: pinmux config
+
+
+Overlay (dts)
+==============
+- Enable/Disable Device Tree Overlay in Boot option
+- Select dtbo file and automate update in uEnv.txt 
+
+.. image:: images/overlay.png
+   :align: center
+   :alt: overlay
+
+
+WiFi (D-Bus)
+=============
+- Connect to WiFi with wpa_supplicant
+- Support for Debian 11
+
+.. image:: images/wifi-dbus.png
+   :align: center
+   :alt: WiFi D-Bus
\ No newline at end of file
diff --git a/projects/bb-config/gif/ADC.gif b/projects/bb-config/gif/ADC.gif
new file mode 100644
index 0000000000000000000000000000000000000000..547f6646684fb5c854d2b156b8558e82cdbf0e86
Binary files /dev/null and b/projects/bb-config/gif/ADC.gif differ
diff --git a/projects/bb-config/gif/UI.gif b/projects/bb-config/gif/UI.gif
new file mode 100644
index 0000000000000000000000000000000000000000..2929782380ec4ef9f438757729d9b1995ec97b2c
Binary files /dev/null and b/projects/bb-config/gif/UI.gif differ
diff --git a/projects/bb-config/gif/emmc.gif b/projects/bb-config/gif/emmc.gif
new file mode 100644
index 0000000000000000000000000000000000000000..24684ae3634d49226906427cec841781f9661e43
Binary files /dev/null and b/projects/bb-config/gif/emmc.gif differ
diff --git a/projects/bb-config/gif/emmc2.gif b/projects/bb-config/gif/emmc2.gif
new file mode 100644
index 0000000000000000000000000000000000000000..5aebba9b6ec374b4aa96f432dbadff86c1d36705
Binary files /dev/null and b/projects/bb-config/gif/emmc2.gif differ
diff --git a/projects/bb-config/gif/ics.gif b/projects/bb-config/gif/ics.gif
new file mode 100644
index 0000000000000000000000000000000000000000..789e3a2f8d6d29a1fb4e05fe33b344f7e00199f6
Binary files /dev/null and b/projects/bb-config/gif/ics.gif differ
diff --git a/projects/bb-config/gif/pinmux.gif b/projects/bb-config/gif/pinmux.gif
new file mode 100644
index 0000000000000000000000000000000000000000..ed59687498f477cc524b54557c1e4c4c8ae70fe7
Binary files /dev/null and b/projects/bb-config/gif/pinmux.gif differ
diff --git a/projects/bb-config/gif/services.gif b/projects/bb-config/gif/services.gif
new file mode 100644
index 0000000000000000000000000000000000000000..1b4ebb437e478580b8625bc5cbe9c4463ac74098
Binary files /dev/null and b/projects/bb-config/gif/services.gif differ
diff --git a/projects/bb-config/gif/uEnv.gif b/projects/bb-config/gif/uEnv.gif
new file mode 100644
index 0000000000000000000000000000000000000000..412614e50d72b755268807eddb31bb60fbfd1abc
Binary files /dev/null and b/projects/bb-config/gif/uEnv.gif differ
diff --git a/projects/bb-config/gif/wifi.gif b/projects/bb-config/gif/wifi.gif
new file mode 100644
index 0000000000000000000000000000000000000000..71a11ca96b66801a2482b1d34319ae95f603c1b5
Binary files /dev/null and b/projects/bb-config/gif/wifi.gif differ
diff --git a/projects/bb-config/images/about.png b/projects/bb-config/images/about.png
new file mode 100644
index 0000000000000000000000000000000000000000..05432d914c595b02e021b673cc21c40ef7a76c9e
Binary files /dev/null and b/projects/bb-config/images/about.png differ
diff --git a/projects/bb-config/images/adc.png b/projects/bb-config/images/adc.png
new file mode 100644
index 0000000000000000000000000000000000000000..efde6b6f1cfd6ab1b993ce61b784d0767f355f1f
Binary files /dev/null and b/projects/bb-config/images/adc.png differ
diff --git a/projects/bb-config/images/adc2.png b/projects/bb-config/images/adc2.png
new file mode 100644
index 0000000000000000000000000000000000000000..21b52a3bad7412493ad5bc7f32554f1d5617aa8c
Binary files /dev/null and b/projects/bb-config/images/adc2.png differ
diff --git a/projects/bb-config/images/bb-config.png b/projects/bb-config/images/bb-config.png
new file mode 100644
index 0000000000000000000000000000000000000000..da2531d598f57776194a1e8c37d7dca3f9d7757c
Binary files /dev/null and b/projects/bb-config/images/bb-config.png differ
diff --git a/projects/bb-config/images/emmc.png b/projects/bb-config/images/emmc.png
new file mode 100644
index 0000000000000000000000000000000000000000..c68f54048faa4eb2d4d47ddbebef5da8f1747430
Binary files /dev/null and b/projects/bb-config/images/emmc.png differ
diff --git a/projects/bb-config/images/gpio.png b/projects/bb-config/images/gpio.png
new file mode 100644
index 0000000000000000000000000000000000000000..83be126ddbac5236945582767e5ed7d29f84fef9
Binary files /dev/null and b/projects/bb-config/images/gpio.png differ
diff --git a/projects/bb-config/images/gpio2.png b/projects/bb-config/images/gpio2.png
new file mode 100644
index 0000000000000000000000000000000000000000..1697d3ce92c1b53abfc283bf3eb2f60775c0f5ee
Binary files /dev/null and b/projects/bb-config/images/gpio2.png differ
diff --git a/projects/bb-config/images/ics.png b/projects/bb-config/images/ics.png
new file mode 100644
index 0000000000000000000000000000000000000000..84a76888970adc6cdc819dfdc027bc7d1624b8b2
Binary files /dev/null and b/projects/bb-config/images/ics.png differ
diff --git a/projects/bb-config/images/leds.png b/projects/bb-config/images/leds.png
new file mode 100644
index 0000000000000000000000000000000000000000..c69a7db13428cf6e5cd29a7eec9a1096fb4d0f4a
Binary files /dev/null and b/projects/bb-config/images/leds.png differ
diff --git a/projects/bb-config/images/logo.png b/projects/bb-config/images/logo.png
new file mode 100644
index 0000000000000000000000000000000000000000..a54161b20e9083e0663561c6cb03cb88b9ec81fd
Binary files /dev/null and b/projects/bb-config/images/logo.png differ
diff --git a/projects/bb-config/images/overlay.png b/projects/bb-config/images/overlay.png
new file mode 100644
index 0000000000000000000000000000000000000000..51f420631647be097e10967dc1c8dddf74e4de37
Binary files /dev/null and b/projects/bb-config/images/overlay.png differ
diff --git a/projects/bb-config/images/password.png b/projects/bb-config/images/password.png
new file mode 100644
index 0000000000000000000000000000000000000000..b894f6416c44a5b1106fdc26abcec7374aec5da2
Binary files /dev/null and b/projects/bb-config/images/password.png differ
diff --git a/projects/bb-config/images/pinmux.png b/projects/bb-config/images/pinmux.png
new file mode 100644
index 0000000000000000000000000000000000000000..bee7ac0a427023b6a7d94c3ab3a93bc05d6f6622
Binary files /dev/null and b/projects/bb-config/images/pinmux.png differ
diff --git a/projects/bb-config/images/pinmux2.png b/projects/bb-config/images/pinmux2.png
new file mode 100644
index 0000000000000000000000000000000000000000..a8950202279b1f89192064294b47a5183e24790f
Binary files /dev/null and b/projects/bb-config/images/pinmux2.png differ
diff --git a/projects/bb-config/images/pinmux3.png b/projects/bb-config/images/pinmux3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e4f7d4a4da1a5d962093fc61e37ff0c07c9dc0aa
Binary files /dev/null and b/projects/bb-config/images/pinmux3.png differ
diff --git a/projects/bb-config/images/pru.png b/projects/bb-config/images/pru.png
new file mode 100644
index 0000000000000000000000000000000000000000..f648f4eb47ed8a908b73d6cb83bafda1a68c97f8
Binary files /dev/null and b/projects/bb-config/images/pru.png differ
diff --git a/projects/bb-config/images/pwm.png b/projects/bb-config/images/pwm.png
new file mode 100644
index 0000000000000000000000000000000000000000..2d9e61cab63705bd63e4bbfc707f9803d0634f41
Binary files /dev/null and b/projects/bb-config/images/pwm.png differ
diff --git a/projects/bb-config/images/service.png b/projects/bb-config/images/service.png
new file mode 100644
index 0000000000000000000000000000000000000000..0262c8556589622a14d7f8ab5b33c8bd4122c0d0
Binary files /dev/null and b/projects/bb-config/images/service.png differ
diff --git a/projects/bb-config/images/ssh.png b/projects/bb-config/images/ssh.png
new file mode 100644
index 0000000000000000000000000000000000000000..cbf792fe0cb3d2c7d0dbb9c84ee3022a849786b8
Binary files /dev/null and b/projects/bb-config/images/ssh.png differ
diff --git a/projects/bb-config/images/uEnv.png b/projects/bb-config/images/uEnv.png
new file mode 100644
index 0000000000000000000000000000000000000000..da06f2500c6793e8695c4ed9e461cb3806b9920b
Binary files /dev/null and b/projects/bb-config/images/uEnv.png differ
diff --git a/projects/bb-config/images/wifi-dbus.png b/projects/bb-config/images/wifi-dbus.png
new file mode 100644
index 0000000000000000000000000000000000000000..02771aa306fe87cf0ae4861c82adef69662462c3
Binary files /dev/null and b/projects/bb-config/images/wifi-dbus.png differ
diff --git a/projects/bb-config/images/wifi.png b/projects/bb-config/images/wifi.png
new file mode 100644
index 0000000000000000000000000000000000000000..2eaacb90c131c1281b65e09e6ad0de9bea1fc9ab
Binary files /dev/null and b/projects/bb-config/images/wifi.png differ
diff --git a/projects/bb-config/index.rst b/projects/bb-config/index.rst
new file mode 100644
index 0000000000000000000000000000000000000000..772366ba801c46c948fa0e9393775f244f03f6e2
--- /dev/null
+++ b/projects/bb-config/index.rst
@@ -0,0 +1,12 @@
+.. _bb_config_home:
+
+BB-Config
+########
+
+.. toctree::
+   :maxdepth: 1
+
+   detail.rst
+   build.rst
+   features.rst
+   version.rst
diff --git a/projects/bb-config/version.rst b/projects/bb-config/version.rst
new file mode 100644
index 0000000000000000000000000000000000000000..72e607221ff9e82b1d3bc1436b1d3c930975202a
--- /dev/null
+++ b/projects/bb-config/version.rst
@@ -0,0 +1,23 @@
+Version
+#######
+
+GSOC@21 BB-Config v1.x
+***********************
+- Name: Shreyas Atre
+- Mentors: Arthur Sonzogni, Abhishek Kumar, Deepak Khatri.
+- Organization: BeagleBoard.org
+- Code: https://github.com/SAtacker/beagle-config
+- Project Page: https://summerofcode.withgoogle.com/projects/#6718016412188672
+- Progress Log: https://satacker.github.io/gsoc-log/
+- Kanban: https://github.com/SAtacker/beagle-config/projects/1
+- Initial Video: https://youtu.be/vFUWCzqE6xI
+ 
+GSOC@22 BB-Config v2.x
+***********************
+- Name: Seak Jian De
+- Mentors: Shreyas Atre, Vedant Paranjape, Vaishnav Achath.
+- Organization: BeagleBoard.org
+- Code: https://git.beagleboard.org/gsoc/bb-config
+- Project Page: https://summerofcode.withgoogle.com/programs/2022/projects/2DbiYPlY
+- Progress Log: https://forum.beagleboard.org/t/weekly-progress-report-bb-config-improvements-gpio-benchmark/32357/2
+- Initial Video: https://youtu.be/V_Euk5uWY1o 
\ No newline at end of file
diff --git a/projects/index.rst b/projects/index.rst
index 78b5def7b3e4b558d70d830a8aeedfbb790fd212..4e6376466a62d78264f560e2ea0f780851ce539e 100644
--- a/projects/index.rst
+++ b/projects/index.rst
@@ -1,3 +1,5 @@
+.. _projects-home:
+
 Projects
 ********
 
@@ -7,4 +9,5 @@ This is a collection of reasonably well-supported projects useful to Beagle deve
    :maxdepth: 1
 
    /projects/simppru/index.rst
-   /boards/beagleconnect/technology/index.rst
+   /projects/bb-config/index.rst
+   /boards/beagleconnect/index.rst
diff --git a/pru-cookbook/common/am335x_pru.cmd b/pru-cookbook/common/am335x_pru.cmd
deleted file mode 100644
index 67005475fe282d8711b96425bc05f44d5ed6ad98..0000000000000000000000000000000000000000
--- a/pru-cookbook/common/am335x_pru.cmd
+++ /dev/null
@@ -1,87 +0,0 @@
-/****************************************************************************/
-/*  AM335x_PRU.cmd                                                          */
-/*  Copyright (c) 2015  Texas Instruments Incorporated                      */
-/*                                                                          */
-/*    Description: This file is a linker command file that can be used for  */
-/*                 linking PRU programs built with the C compiler and       */
-/*                 the resulting .out file on an AM335x device.             */
-/****************************************************************************/
-
--cr								/* Link using C conventions */
-
-/* Specify the System Memory Map */
-MEMORY
-{
-      PAGE 0:
-	PRU_IMEM		: org = 0x00000000 len = 0x00002000  /* 8kB PRU0 Instruction RAM */
-
-      PAGE 1:
-
-	/* RAM */
-
-	PRU_DMEM_0_1	: org = 0x00000000 len = 0x00002000 CREGISTER=24 /* 8kB PRU Data RAM 0_1 */
-	PRU_DMEM_1_0	: org = 0x00002000 len = 0x00002000	CREGISTER=25 /* 8kB PRU Data RAM 1_0 */
-
-	  PAGE 2:
-	PRU_SHAREDMEM	: org = 0x00010000 len = 0x00003000 CREGISTER=28 /* 12kB Shared RAM */
-
-	DDR			    : org = 0x80000000 len = 0x00000100	CREGISTER=31
-	L3OCMC			: org = 0x40000000 len = 0x00010000	CREGISTER=30
-
-
-	/* Peripherals */
-
-	PRU_CFG			: org = 0x00026000 len = 0x00000044	CREGISTER=4
-	PRU_ECAP		: org = 0x00030000 len = 0x00000060	CREGISTER=3
-	PRU_IEP			: org = 0x0002E000 len = 0x0000031C	CREGISTER=26
-	PRU_INTC		: org = 0x00020000 len = 0x00001504	CREGISTER=0
-	PRU_UART		: org = 0x00028000 len = 0x00000038	CREGISTER=7
-
-	DCAN0			: org = 0x481CC000 len = 0x000001E8	CREGISTER=14
-	DCAN1			: org = 0x481D0000 len = 0x000001E8	CREGISTER=15
-	DMTIMER2		: org = 0x48040000 len = 0x0000005C	CREGISTER=1
-	PWMSS0			: org = 0x48300000 len = 0x000002C4	CREGISTER=18
-	PWMSS1			: org = 0x48302000 len = 0x000002C4	CREGISTER=19
-	PWMSS2			: org = 0x48304000 len = 0x000002C4	CREGISTER=20
-	GEMAC			: org = 0x4A100000 len = 0x0000128C	CREGISTER=9
-	I2C1			: org = 0x4802A000 len = 0x000000D8	CREGISTER=2
-	I2C2			: org = 0x4819C000 len = 0x000000D8	CREGISTER=17
-	MBX0			: org = 0x480C8000 len = 0x00000140	CREGISTER=22
-	MCASP0_DMA		: org = 0x46000000 len = 0x00000100	CREGISTER=8
-	MCSPI0			: org = 0x48030000 len = 0x000001A4	CREGISTER=6
-	MCSPI1			: org = 0x481A0000 len = 0x000001A4	CREGISTER=16
-	MMCHS0			: org = 0x48060000 len = 0x00000300	CREGISTER=5
-	SPINLOCK		: org = 0x480CA000 len = 0x00000880	CREGISTER=23
-	TPCC			: org = 0x49000000 len = 0x00001098	CREGISTER=29
-	UART1			: org = 0x48022000 len = 0x00000088	CREGISTER=11
-	UART2			: org = 0x48024000 len = 0x00000088	CREGISTER=12
-
-	RSVD10			: org = 0x48318000 len = 0x00000100	CREGISTER=10
-	RSVD13			: org = 0x48310000 len = 0x00000100	CREGISTER=13
-	RSVD21			: org = 0x00032400 len = 0x00000100	CREGISTER=21
-	RSVD27			: org = 0x00032000 len = 0x00000100	CREGISTER=27
-
-}
-
-/* Specify the sections allocation into memory */
-SECTIONS {
-	/* Forces _c_int00 to the start of PRU IRAM. Not necessary when loading
-	   an ELF file, but useful when loading a binary */
-	.text:_c_int00*	>  0x0, PAGE 0
-
-	.text		>  PRU_IMEM, PAGE 0
-	.stack		>  PRU_DMEM_0_1, PAGE 1
-	.bss		>  PRU_DMEM_0_1, PAGE 1
-	.cio		>  PRU_DMEM_0_1, PAGE 1
-	.data		>  PRU_DMEM_0_1, PAGE 1
-	.switch		>  PRU_DMEM_0_1, PAGE 1
-	.sysmem		>  PRU_DMEM_0_1, PAGE 1
-	.cinit		>  PRU_DMEM_0_1, PAGE 1
-	.rodata		>  PRU_DMEM_0_1, PAGE 1
-	.rofardata	>  PRU_DMEM_0_1, PAGE 1
-	.farbss		>  PRU_DMEM_0_1, PAGE 1
-	.fardata	>  PRU_DMEM_0_1, PAGE 1
-
-	.resource_table > PRU_DMEM_0_1, PAGE 1
-	.init_pins > PRU_DMEM_0_1, PAGE 1
-}
\ No newline at end of file