diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2456a8eae11b75c50ddcfffc8271ea71e8181b8e..b0556203f4c23468d3894dbb106533c057d81ab3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -20,6 +20,7 @@ mkdocs:
   - bash add_version.sh
   - bash get_modules.sh
   - mkdocs build
+  - bash clean_json.sh site/mkdocs/search_index.json
   artifacts:
     paths:
     - site
diff --git a/add_version.sh b/add_version.sh
index ba0740be3d21b10b40145c676abc0511ddaa235f..075d054c3b83df6a27d6c4819f648be345442b58 100755
--- a/add_version.sh
+++ b/add_version.sh
@@ -1,3 +1,3 @@
 #!/bin/bash
-VER=$(git log --pretty=format:'%h / %ai' -n 1)
-sed "s,__VERSION__,\<\/BR\>ver. $VER," mkdocs.yml -i
+VER=$(git log --pretty=format:'/ ver. %h / %ai' -n 1)
+sed "s,__VERSION__, $VER," mkdocs.yml -i
diff --git a/clean_json.sh b/clean_json.sh
new file mode 100755
index 0000000000000000000000000000000000000000..c460ef3149b8d120a41e94bb3d31cc4c46b0561f
--- /dev/null
+++ b/clean_json.sh
@@ -0,0 +1,6 @@
+#!/bin/bash
+sed 's/\\u00a0/ /g' -i "$@"
+sed 's,\\n\\n, ,g' -i "$@"
+sed 's,\\n , ,g' -i "$@"
+sed 's, \\n, ,g' -i "$@"
+sed -e 's/^[ \t]*//' -i "$@"
diff --git a/cluster_modules.py b/cluster_modules.py
new file mode 100755
index 0000000000000000000000000000000000000000..3826d9d11d678a519ace12593568fc03590252a0
--- /dev/null
+++ b/cluster_modules.py
@@ -0,0 +1,45 @@
+#!/usr/bin/python
+import csv
+import collections
+
+def get_data(filename):
+    '''function to read the data form the input csv file to use in the analysis'''
+    reader = [] # Just in case the file open fails
+    with open(filename, 'rb') as f:
+        reader = csv.reader(f,delimiter=',')                      
+        #returns all the data from the csv file in list form
+        #f.close() # May need to close the file when done
+        return list(reader)  # only return the reader when you have finished.
+
+your_list = []
+your_list += get_data('modules-anselm.csv')
+your_list += get_data('modules-salomon.csv')
+#print your_list
+
+a=[["python/2.8.1",1],["python/2.9.1",2],["python/2.8.1",4],["python/3.0.1",4]]
+counts = dict()
+for i in your_list:
+  #print i[0]
+  #print int(i[1])
+  counts[i[0]]=counts.get(i[0], 0) + int(i[1])
+
+#print sorted(counts.items())
+
+c=[
+"---",
+"--A",
+"-S-",
+"-SA",
+"U--",
+"U-A",
+"US-",
+"USA",
+]
+
+print "| Module | Clusters |"
+print "| ------ | -------- |"
+
+
+for m,i in sorted(counts.items()):
+  print "| %s | ``%s`` |" % (m,c[i])
+
diff --git a/docs.it4i/all_modules.md b/docs.it4i/all_modules.md
new file mode 100644
index 0000000000000000000000000000000000000000..8947556dfb420a261118bc16e5a63390c979d302
--- /dev/null
+++ b/docs.it4i/all_modules.md
@@ -0,0 +1,1231 @@
+| Module | Clusters |
+| ------ | -------- |
+| 1.0.3 | ``--A`` |
+| 2.0 | ``--A`` |
+| ABINIT/7.10.1-foss-2015b | ``-S-`` |
+| ABINIT/7.10.1-intel-2015b | ``-S-`` |
+| ANSYS/16.1 | ``-S-`` |
+| ANSYS/17.0 | ``-S-`` |
+| APR-util/1.5.4 | ``-SA`` |
+| APR-util/1.5.4-foss-2015g | ``-SA`` |
+| APR/1.5.2 | ``-SA`` |
+| APR/1.5.2-foss-2015g | ``-SA`` |
+| ATLAS/3.10.1-GCC-4.9.3-2.25-LAPACK-3.4.2 | ``--A`` |
+| Adams/2013.2 | ``-S-`` |
+| Advisor/2016_update2 | ``-S-`` |
+| Advisor/2017 | ``-S-`` |
+| Amber/14 | ``-SA`` |
+| Armadillo/7.500.0-foss-2016a-Python-3.5.2 | ``-SA`` |
+| Autoconf/2.69 | ``-SA`` |
+| Autoconf/2.69-GCC-4.9.3-2.25 | ``-S-`` |
+| Autoconf/2.69-GNU-4.9.3-2.25 | ``-SA`` |
+| Autoconf/2.69-GNU-5.1.0-2.25 | ``-SA`` |
+| Autoconf/2.69-foss-2015g | ``-S-`` |
+| Autoconf/2.69-foss-2016a | ``-SA`` |
+| Autoconf/2.69-intel-2015b | ``-SA`` |
+| Autoconf/2.69-intel-2016.01 | ``-S-`` |
+| Autoconf/2.69-intel-2016a | ``-S-`` |
+| Autoconf/2.69-intel-2017.00 | ``-SA`` |
+| Automake/1.15 | ``-SA`` |
+| Automake/1.15-GCC-4.9.3-2.25 | ``-S-`` |
+| Automake/1.15-GNU-4.9.3-2.25 | ``-SA`` |
+| Automake/1.15-GNU-5.1.0-2.25 | ``-SA`` |
+| Automake/1.15-foss-2015g | ``-S-`` |
+| Automake/1.15-foss-2016a | ``-SA`` |
+| Automake/1.15-intel-2015b | ``-SA`` |
+| Automake/1.15-intel-2016.01 | ``-S-`` |
+| Automake/1.15-intel-2016a | ``-S-`` |
+| Automake/1.15-intel-2017.00 | ``-SA`` |
+| Autotools/20150215 | ``-SA`` |
+| Autotools/20150215-GCC-4.9.3-2.25 | ``-S-`` |
+| Autotools/20150215-GNU-4.9.3-2.25 | ``-SA`` |
+| Autotools/20150215-GNU-5.1.0-2.25 | ``-SA`` |
+| Autotools/20150215-foss-2016a | ``-SA`` |
+| Autotools/20150215-intel-2015b | ``-SA`` |
+| Autotools/20150215-intel-2016.01 | ``-S-`` |
+| Autotools/20150215-intel-2016a | ``-S-`` |
+| Autotools/20150215-intel-2017.00 | ``-SA`` |
+| BCFtools/1.3-foss-2015g | ``-S-`` |
+| BWA/0.7.5a-foss-2015g | ``-S-`` |
+| Bash/4.2-intel-2015b | ``-S-`` |
+| Bash/4.3 | ``-SA`` |
+| BerkeleyUPC/2.16.2-gompi-2015b | ``-S-`` |
+| Bison/3.0.4-GCC-4.9.3 | ``--A`` |
+| Bison/3.0.4-intel-2015b | ``--A`` |
+| Boost/1.58.0-Python-2.7.9 | ``-S-`` |
+| Boost/1.58.0-foss-2015g-Python-2.7.9 | ``-SA`` |
+| Boost/1.58.0-gompi-2015e-Python-2.7.9 | ``-S-`` |
+| Boost/1.58.0-ictce-7.3.5-Python-2.7.9 | ``-S-`` |
+| Boost/1.58.0-intel-2015b-Python-2.7.9 | ``-S-`` |
+| Boost/1.58.0-intel-2016.01-Python-2.7.9 | ``-S-`` |
+| Boost/1.59.0-intel-2015b | ``--A`` |
+| Boost/1.59.0-intel-2015b-Python-2.7.11 | ``-S-`` |
+| Boost/1.59.0-intel-2016.01 | ``-S-`` |
+| Boost/1.60.0-foss-2015g-Python-2.7.9 | ``-SA`` |
+| Boost/1.60.0-intel-2015b-Python-2.7.11 | ``-S-`` |
+| Boost/1.60.0-intel-2016a | ``--A`` |
+| Boost/1.61.0-foss-2016a | ``-S-`` |
+| Boost/1.61.0-foss-2016a-serial | ``-SA`` |
+| CMake/3.0.0-foss-2015g | ``-S-`` |
+| CMake/3.0.0-ictce-7.3.5 | ``-S-`` |
+| CMake/3.0.0-intel-2015b | ``-S-`` |
+| CMake/3.0.0-intel-2016.01 | ``-S-`` |
+| CMake/3.3.1-GCC-4.9.3-2.25 | ``--A`` |
+| CMake/3.3.1-GCC-5.3.0-2.25 | ``-S-`` |
+| CMake/3.3.1-GCC-5.3.1-snapshot-20160419-2.25 | ``-S-`` |
+| CMake/3.3.1-GNU-4.9.3-2.25 | ``-S-`` |
+| CMake/3.3.1-GNU-5.1.0-2.25 | ``-S-`` |
+| CMake/3.3.1-foss-2015g | ``-SA`` |
+| CMake/3.3.1-foss-2016a | ``--A`` |
+| CMake/3.3.1-intel-2016.01 | ``-S-`` |
+| CMake/3.3.2-GNU-4.9.3-2.25 | ``-S-`` |
+| CMake/3.3.2-intel-2016.01 | ``-S-`` |
+| CMake/3.4.1-GCCcore-4.9.3 | ``-S-`` |
+| CMake/3.4.1-foss-2015b | ``-S-`` |
+| CMake/3.4.1-foss-2016a | ``--A`` |
+| CMake/3.4.1-intel-2015b | ``-SA`` |
+| CMake/3.4.3-intel-2016a | ``-S-`` |
+| CMake/3.5.1-intel-2016a | ``-S-`` |
+| CMake/3.5.2 | ``-SA`` |
+| CMake/3.5.2-GCC-4.9.3-2.25 | ``-S-`` |
+| CMake/3.5.2-foss-2016a | ``-SA`` |
+| CMake/3.5.2-intel-2016a | ``--A`` |
+| CMake/3.5.2-intel-2017.00 | ``-S-`` |
+| CMake/3.6.2 | ``-SA`` |
+| COMSOL/51-COM | ``-S-`` |
+| COMSOL/51-EDU | ``-S-`` |
+| CP2K/2.6.0-intel-2015b | ``-S-`` |
+| CUDA/7.5.18 | ``--A`` |
+| Clang/3.7.0-GNU-5.1.0-2.25 | ``-S-`` |
+| Code_Saturne/3.0.5 | ``--A`` |
+| Cube/4.3.4-intel-2015b | ``-S-`` |
+| DCW/1.1.2 | ``-S-`` |
+| DDT/4.2 | ``-S-`` |
+| DDT/5.0.1 | ``-S-`` |
+| Digimat/5.0.1-COM | ``-S-`` |
+| Digimat/5.0.1-EDU | ``-S-`` |
+| Discovery_Studio/4.0 | ``--A`` |
+| Doxygen/1.8.10-foss-2015b | ``-S-`` |
+| Doxygen/1.8.10-intel-2017.00 | ``-S-`` |
+| Doxygen/1.8.11 | ``-SA`` |
+| Doxygen/1.8.11-intel-2017.00 | ``-S-`` |
+| Doxygen/1.8.7-foss-2015g | ``-S-`` |
+| Doxygen/1.8.7-intel-2015b | ``-S-`` |
+| Doxygen/1.8.7-intel-2016.01 | ``-S-`` |
+| EasyBuild/2.8.0 | ``-SA`` |
+| EasyBuild/2.8.1 | ``--A`` |
+| EasyBuild/2.9.0 | ``-S-`` |
+| EasyBuild/3.0.0 | ``-SA`` |
+| EasyBuild/3.0.1 | ``-S-`` |
+| EasyBuild/3.0.2 | ``-SA`` |
+| FFTW/2.1.5-gompi-2015b | ``-S-`` |
+| FFTW/2.1.5-iimpi-7.3.5-GNU-5.1.0-2.25 | ``-S-`` |
+| FFTW/3.3.4-gompi-2015b | ``-S-`` |
+| FFTW/3.3.4-gompi-2015e | ``-S-`` |
+| FFTW/3.3.4-gompi-2015g | ``-SA`` |
+| FFTW/3.3.4-gompi-2016.04 | ``-SA`` |
+| FFTW/3.3.4-gompi-2016a | ``-SA`` |
+| FFTW/3.3.4-intel-2015b | ``-SA`` |
+| FFTW/3.3.4-intel-2016.01 | ``-S-`` |
+| FFTW/3.3.5-foss-2016a | ``-S-`` |
+| FFTW/3.3.5-gompi-2016a | ``-S-`` |
+| FFTW/3.3.5-intel-2016.01 | ``-S-`` |
+| FFTW/3.3.5-intel-2016a | ``-S-`` |
+| FFTW/3.3.5-intel-2017.00 | ``-SA`` |
+| FIAT/1.6.0-intel-2015b-Python-2.7.11 | ``-S-`` |
+| FIAT/1.6.0-intel-2015b-Python-2.7.9 | ``-S-`` |
+| FIAT/1.6.0-intel-2016.01-Python-2.7.9 | ``-S-`` |
+| FLTK/1.3.2 | ``-SA`` |
+| FLTK/1.3.2-intel-2015b | ``-S-`` |
+| FOX/1.6.51-foss-2015g | ``-S-`` |
+| FastQC/0.11.3 | ``-S-`` |
+| Forge/5.1-43967 | ``-SA`` |
+| Forge/5.7 | ``--A`` |
+| Forge/6.0.5 | ``-SA`` |
+| Forge/6.0.6 | ``-SA`` |
+| Forge/6.1.2 | ``-SA`` |
+| FreeFem++/3.45-intel-2015b | ``-S-`` |
+| GATK/2.6-5-Java-1.7.0_79 | ``-S-`` |
+| GATK/3.5-Java-1.7.0_79 | ``-S-`` |
+| GCC/4.4.7-system | ``-S-`` |
+| GCC/4.7.4 | ``-S-`` |
+| GCC/4.8.3 | ``-S-`` |
+| GCC/4.9.2 | ``-S-`` |
+| GCC/4.9.2-binutils-2.25 | ``-S-`` |
+| GCC/4.9.3 | ``-SA`` |
+| GCC/4.9.3-2.25 | ``-SA`` |
+| GCC/4.9.3-binutils-2.25 | ``-SA`` |
+| GCC/5.1.0-binutils-2.25 | ``-SA`` |
+| GCC/5.2.0 | ``-S-`` |
+| GCC/5.3.0-2.25 | ``-S-`` |
+| GCC/5.3.0-2.26 | ``-SA`` |
+| GCC/5.3.0-binutils-2.25 | ``-SA`` |
+| GCC/5.3.1-snapshot-20160419-2.25 | ``-S-`` |
+| GCC/5.4.0-2.26 | ``-S-`` |
+| GCC/6.2.0-2.27 | ``-S-`` |
+| GCCcore/4.9.3 | ``-SA`` |
+| GCCcore/5.3.0 | ``-SA`` |
+| GCCcore/5.3.1-snapshot-20160419 | ``-S-`` |
+| GCCcore/5.4.0 | ``-SA`` |
+| GCCcore/6.2.0 | ``-S-`` |
+| GDAL/1.9.2-foss-2015g | ``-SA`` |
+| GDAL/2.0.1-foss-2015b | ``-S-`` |
+| GDAL/2.0.2-intel-2017.00 | ``-S-`` |
+| GDAL/2.1.0-GNU-5.1.0-2.25 | ``-S-`` |
+| GDAL/2.1.0-GNU-5.1.0-2.25-intel-2015b | ``-S-`` |
+| GDAL/2.1.0-foss-2015g | ``-SA`` |
+| GDAL/2.1.0-intel-2015b | ``-S-`` |
+| GEOS/3.5.0-foss-2015g | ``-S-`` |
+| GLOBUS/globus | ``--A`` |
+| GLib/2.40.0 | ``-SA`` |
+| GLib/2.40.0-foss-2015g | ``-S-`` |
+| GLib/2.40.0-intel-2015b | ``-S-`` |
+| GLib/2.40.0-intel-2016.01 | ``-S-`` |
+| GMP/5.0.5 | ``-SA`` |
+| GMP/5.0.5-foss-2015b | ``-S-`` |
+| GMP/5.0.5-foss-2015g | ``-SA`` |
+| GMP/5.0.5-intel-2015b | ``-S-`` |
+| GMP/6.0.0a | ``-SA`` |
+| GMP/6.0.0a-GNU-4.9.3-2.25 | ``-S-`` |
+| GMP/6.0.0a-GNU-5.1.0-2.25 | ``-S-`` |
+| GMP/6.0.0a-foss-2015b | ``-S-`` |
+| GMP/6.0.0a-intel-2015b | ``--A`` |
+| GMP/6.1.0-GCC-4.9.3-2.25 | ``-S-`` |
+| GMP/6.1.0-foss-2016a | ``-SA`` |
+| GMP/6.1.0-intel-2015b | ``-SA`` |
+| GMP/6.1.0-intel-2016.01 | ``-S-`` |
+| GMP/6.1.0-intel-2016a | ``-S-`` |
+| GMP/6.1.0-intel-2017.00 | ``-SA`` |
+| GMP/6.1.1-intel-2017.00 | ``-S-`` |
+| GMT/5.2.1-foss-2015g | ``-S-`` |
+| GNU/4.9.3-2.25 | ``-SA`` |
+| GNU/5.1.0-2.25 | ``-SA`` |
+| GNU/5.1.0-2.25-intel-2015b | ``-S-`` |
+| GPI-2/1.1.1-gompi-2015e | ``-S-`` |
+| GPI-2/1.1.1-gompi-2015e-MPI | ``-S-`` |
+| GROMACS/4.6.7-foss-2015g-hybrid-single-PLUMED | ``-S-`` |
+| GROMACS/5.0.4-foss-2015e-hybrid-single-PLUMED | ``-S-`` |
+| GROMACS/5.0.4-foss-2015g-hybrid-single | ``-S-`` |
+| GROMACS/5.0.4-foss-2015g-hybrid-single-PLUMED | ``-S-`` |
+| GROMACS/5.0.4-ictce-7.3.5-hybrid-single | ``-S-`` |
+| GROMACS/5.1.2-foss-2015g-hybrid-single-PLUMED | ``-S-`` |
+| GROMACS/5.1.2-intel-2015b-hybrid-single-CUDA-7.5-PLUMED-2.2.1 | ``--A`` |
+| GROMACS/5.1.2-intel-2015b-hybrid-single-CUDA-7.5-PLUMED-2.2.1-test | ``--A`` |
+| GROMACS/5.1.2-intel-2015b-hybrid-single-cuda | ``--A`` |
+| GROMACS/5.1.2-intel-2016a-hybrid | ``--A`` |
+| GSL/1.16-intel-2015b | ``-SA`` |
+| GSL/1.16-intel-2016.01 | ``--A`` |
+| GSL/2.1-intel-2015b | ``--A`` |
+| HDF5/1.10.0-patch1-intel-2016.01-mic | ``-S-`` |
+| HDF5/1.8.13-foss-2015g | ``-S-`` |
+| HDF5/1.8.13-intel-2015b | ``-S-`` |
+| HDF5/1.8.13-intel-2015b-no-mpi | ``-S-`` |
+| HDF5/1.8.13-intel-2016.01 | ``-S-`` |
+| HDF5/1.8.14-ictce-7.3.5-serial | ``-S-`` |
+| HDF5/1.8.15-patch1-foss-2015b | ``-S-`` |
+| HDF5/1.8.16-foss-2015g | ``-S-`` |
+| HDF5/1.8.16-foss-2016a | ``-SA`` |
+| HDF5/1.8.16-intel-2015b | ``-SA`` |
+| HDF5/1.8.16-intel-2015b-threadsafe | ``-S-`` |
+| HDF5/1.8.16-intel-2016.01 | ``--A`` |
+| HDF5/1.8.16-intel-2017.00 | ``-S-`` |
+| HPL/2.1-foss-2015b | ``-S-`` |
+| HPL/2.1-intel-2015b | ``-S-`` |
+| HTSlib/1.3-foss-2015g | ``-S-`` |
+| Harminv/1.4-intel-2015b | ``-S-`` |
+| HyperWorks/13.0 | ``-S-`` |
+| Hypre/2.10.0b-intel-2015b | ``-S-`` |
+| Hypre/2.10.0b-intel-2016.01 | ``-S-`` |
+| Hypre/2.10.1-intel-2015b | ``-S-`` |
+| ISL/0.14-GNU-5.1.0-2.25 | ``-S-`` |
+| ISL/0.15 | ``-SA`` |
+| ISL/0.15-GCC-4.9.3-2.25 | ``-S-`` |
+| ISL/0.15-GNU-4.9.3-2.25 | ``-S-`` |
+| Inspector/2016_update1 | ``-S-`` |
+| JOE/4.2 | ``-SA`` |
+| JUnit/4.11-Java-1.7.0_79 | ``-S-`` |
+| JasPer/1.900.1-intel-2015b | ``-S-`` |
+| Java/1.7.0_79 | ``-SA`` |
+| Java/1.8.0_112 | ``-S-`` |
+| Java/1.8.0_51 | ``-SA`` |
+| Java/1.8.0_72 | ``-S-`` |
+| LAMMPS/28Jun14-intel-2015b | ``-S-`` |
+| LAPACKE/3.5.0-LAPACK-3.5.0 | ``-S-`` |
+| LLVM/3.7.1-foss-2015g | ``-S-`` |
+| LLVM/3.7.1-intel-2016a | ``-S-`` |
+| LLVM/3.8.0-foss-2016a | ``-S-`` |
+| LLVM/3.8.0-intel-2016a | ``-S-`` |
+| LLVM/3.9.0-intel-2017.00 | ``-S-`` |
+| LibTIFF/4.0.3 | ``-SA`` |
+| LibTIFF/4.0.3-intel-2015b | ``-S-`` |
+| Libint/1.1.4-foss-2015b | ``-S-`` |
+| Libint/1.1.4-gompi-2015b | ``-S-`` |
+| Libint/1.1.4-intel-2015b | ``-S-`` |
+| Lmod/6.4.2 | ``--A`` |
+| Lmod/7.0.6 | ``-SA`` |
+| Lmod/7.2.2 | ``-SA`` |
+| Lua/5.1.4-8 | ``-SA`` |
+| M4/1.4.16-foss-2015g | ``-S-`` |
+| M4/1.4.16-intel-2015b | ``-SA`` |
+| M4/1.4.17 | ``-SA`` |
+| M4/1.4.17-GCC-4.9.3 | ``--A`` |
+| M4/1.4.17-GCC-4.9.3-2.25 | ``-S-`` |
+| M4/1.4.17-GCC-4.9.3-binutils-2.25 | ``-SA`` |
+| M4/1.4.17-GCC-5.1.0-binutils-2.25 | ``-SA`` |
+| M4/1.4.17-GCCcore-4.9.3 | ``-SA`` |
+| M4/1.4.17-GCCcore-5.3.0 | ``-SA`` |
+| M4/1.4.17-GCCcore-5.3.1-snapshot-20160419 | ``-S-`` |
+| M4/1.4.17-GCCcore-5.4.0 | ``-SA`` |
+| M4/1.4.17-GCCcore-6.2.0 | ``-S-`` |
+| M4/1.4.17-GNU-4.9.3-2.25 | ``-SA`` |
+| M4/1.4.17-GNU-5.1.0-2.25 | ``-SA`` |
+| M4/1.4.17-foss-2015b | ``-S-`` |
+| M4/1.4.17-foss-2015g | ``-S-`` |
+| M4/1.4.17-foss-2016a | ``-SA`` |
+| M4/1.4.17-intel-2015b | ``-SA`` |
+| M4/1.4.17-intel-2016.01 | ``-S-`` |
+| M4/1.4.17-intel-2016a | ``-S-`` |
+| M4/1.4.17-intel-2017.00 | ``-SA`` |
+| MAP/4.2 | ``-S-`` |
+| MAP/5.0.1 | ``-S-`` |
+| MATLAB/2015a-COM | ``-SA`` |
+| MATLAB/2015a-EDU | ``-SA`` |
+| MATLAB/2015b-COM | ``-SA`` |
+| MATLAB/2015b-EDU | ``-SA`` |
+| METIS/5.1.0-intel-2015b | ``-S-`` |
+| METIS/5.1.0-intel-2016.01 | ``-S-`` |
+| METIS/5.1.0-intel-2016.01-32bitIDX | ``-S-`` |
+| METIS/5.1.0-intel-2017.00 | ``-S-`` |
+| MIKE/2014 | ``-SA`` |
+| MIKE/2016 | ``-SA`` |
+| MIKE/2016-SP2 | ``-SA`` |
+| MIKE/default | ``--A`` |
+| MLD2P4/2.0-rc4-GCC-4.9.3-2.25 | ``--A`` |
+| MPC/1.0.2-intel-2017.00 | ``-S-`` |
+| MPFR/3.1.5-intel-2017.00 | ``-S-`` |
+| MPICH/3.2-GCC-4.9.3-2.25 | ``--A`` |
+| MPICH/3.2-GCC-5.3.0-2.25 | ``-S-`` |
+| MPICH/3.2-GCC-5.3.1-snapshot-20160419-2.25 | ``-S-`` |
+| MPI_NET/1.2.0-gompi-2015e | ``-S-`` |
+| MPI_NET/1.2.0-intel-2016.01 | ``-S-`` |
+| MVAPICH2/2.1-GCC-4.4.7-system | ``-S-`` |
+| MVAPICH2/2.1-GNU-5.1.0-2.25 | ``-S-`` |
+| MVAPICH2/2.1-iccifort-2015.3.187-GNU-5.1.0-2.25 | ``-S-`` |
+| Marc/2013.1.0 | ``-S-`` |
+| Maven/3.3.9 | ``-SA`` |
+| Meep/1.3-intel-2015b | ``-S-`` |
+| Mercurial/3.5-Python-2.7.9 | ``-S-`` |
+| Mercurial/3.7.3-foss-2015g-Python-2.7.9 | ``-SA`` |
+| Mesa/11.0.8-foss-2015g-Python-2.7.9 | ``-S-`` |
+| Mesa/11.2.1-foss-2016a | ``-S-`` |
+| Molpro/2010.1-patch-57-intel2015b | ``-S-`` |
+| Mono/3.12.1 | ``-S-`` |
+| Mono/3.12.1-GCC-4.4.7-system | ``-S-`` |
+| Mono/4.0.3.20-GNU-5.1.0-2.25 | ``-S-`` |
+| Mono/4.2.2.10-intel-2016.01 | ``-S-`` |
+| NAMD/2.9-mpi | ``-S-`` |
+| NASM/2.11.05 | ``-SA`` |
+| NASM/2.11.05-foss-2015b | ``-S-`` |
+| NASM/2.11.05-foss-2015g | ``-S-`` |
+| NASM/2.11.05-intel-2015b | ``-S-`` |
+| NASM/2.11.06-intel-2015b | ``-S-`` |
+| NASM/2.11.08-foss-2015b | ``-S-`` |
+| NASM/2.11.08-intel-2017.00 | ``-S-`` |
+| NWChem/6.3.revision2-2013-10-17-Python-2.7.8 | ``-S-`` |
+| NWChem/6.5.revision26243-intel-2015b-2014-09-10-Python-2.7.8 | ``-S-`` |
+| OPARI2/1.1.4-intel-2015b | ``-S-`` |
+| OPARI2/2.0 | ``-SA`` |
+| ORCA/3_0_3-linux_x86-64 | ``-SA`` |
+| OSPRay/0.9.1 | ``-S-`` |
+| OTF2/1.4-intel-2015b | ``-S-`` |
+| OTF2/2.0 | ``-SA`` |
+| OTF2/2.0-intel-2015b-mic | ``-S-`` |
+| Octave/3.8.2-foss-2015g | ``-S-`` |
+| Octave/3.8.2-gimkl-2.11.5 | ``--A`` |
+| Octave/3.8.2-intel-2015b | ``-S-`` |
+| Octave/4.0.0-foss-2015g | ``-SA`` |
+| Octave/4.0.1-gimkl-2.11.5 | ``--A`` |
+| OpenBLAS/0.2.14-GNU-4.9.3-2.25-LAPACK-3.5.0 | ``-SA`` |
+| OpenBLAS/0.2.14-GNU-5.1.0-2.25-LAPACK-3.5.0 | ``-SA`` |
+| OpenBLAS/0.2.14-LAPACK-3.5.0 | ``-S-`` |
+| OpenBLAS/0.2.14-gompi-2015e-LAPACK-3.5.0 | ``-S-`` |
+| OpenBLAS/0.2.15-GCC-4.9.3-2.25-LAPACK-3.6.0 | ``-SA`` |
+| OpenBLAS/0.2.15-GCC-5.1.0-binutils-2.25-LAPACK-3.6.0 | ``--A`` |
+| OpenBLAS/0.2.15-GCC-5.1.0-binutils-2.25-LAPACK-3.6.0-gompi-2016a | ``--A`` |
+| OpenBLAS/0.2.18-GCC-5.3.0-2.26-LAPACK-3.6.0 | ``-SA`` |
+| OpenBLAS/0.2.19-GCC-5.4.0-2.26-LAPACK-3.6.0 | ``-S-`` |
+| OpenCL-builder/2015 | ``-S-`` |
+| OpenCL-runtime/15.1 | ``-S-`` |
+| OpenCV/2.4.9-intel-2015b | ``-S-`` |
+| OpenCV/3.0.0-intel-2015b | ``-S-`` |
+| OpenCoarrays/1.0.0-GNU-5.1.0-2.25 | ``-S-`` |
+| OpenCoarrays/1.0.1-GNU-5.1.0-2.25 | ``-S-`` |
+| OpenCoarrays/1.4.0-GCC-5.3.0-2.25 | ``-S-`` |
+| OpenCoarrays/1.4.0-GCC-5.3.1-snapshot-20160419-2.25 | ``-S-`` |
+| OpenDX/4.4.4-foss-2015g | ``-S-`` |
+| OpenFOAM/2.2.2-intel-2015b | ``-S-`` |
+| OpenFOAM/2.3.0-intel-2015b | ``-S-`` |
+| OpenFOAM/3.0.0-intel-2016.01 | ``-S-`` |
+| OpenMPI/1.10.1-GCC-4.9.3-2.25 | ``-S-`` |
+| OpenMPI/1.10.1-GNU-4.9.3-2.25 | ``-S-`` |
+| OpenMPI/1.10.2-GCC-4.9.3-2.25 | ``-SA`` |
+| OpenMPI/1.10.2-GCC-5.3.0-2.26 | ``-SA`` |
+| OpenMPI/1.8.6-GCC-4.4.7-system | ``-S-`` |
+| OpenMPI/1.8.6-GNU-5.1.0-2.25 | ``-S-`` |
+| OpenMPI/1.8.6-iccifort-2015.3.187-GNU-5.1.0-2.25 | ``-S-`` |
+| OpenMPI/1.8.8-GNU-4.9.3-2.25 | ``-SA`` |
+| OpenMPI/1.8.8-GNU-5.1.0-2.25 | ``-S-`` |
+| OpenMPI/1.8.8-iccifort-2015.3.187-GNU-4.9.3-2.25 | ``-SA`` |
+| PAPI/5.4.0-intel-2015b | ``-S-`` |
+| PAPI/5.4.0-mic | ``-S-`` |
+| PAPI/5.4.0-p-mic | ``-S-`` |
+| PAPI/5.4.3 | ``-SA`` |
+| PAPI/5.4.3-intel-2015b-mic | ``-S-`` |
+| PAPI/5.4.3-pic | ``-S-`` |
+| PCRE/8.36-foss-2015g | ``-S-`` |
+| PCRE/8.36-intel-2015b | ``-S-`` |
+| PCRE/8.36-intel-2016.01 | ``-S-`` |
+| PCRE/8.37 | ``-SA`` |
+| PCRE/8.37-foss-2015g | ``-SA`` |
+| PCRE/8.37-gimkl-2.11.5 | ``--A`` |
+| PCRE/8.37-intel-2016.01 | ``--A`` |
+| PCRE/8.39-intel-2017.00 | ``-S-`` |
+| PCRE2/10.22-intel-2017.00 | ``-S-`` |
+| PETSc/3.6.1-intel-2015b-Python-2.7.9 | ``-S-`` |
+| PETSc/3.6.1-intel-2016.01-Python-2.7.9 | ``-S-`` |
+| PETSc/3.6.3-intel-2015b-Python-2.7.11 | ``-S-`` |
+| PGI/15.7 | ``-S-`` |
+| PGI/16.10-GNU-4.9.3-2.25 | ``-S-`` |
+| PLUMED/2.1.3-foss-2015g | ``-S-`` |
+| PLUMED/2.2.1-intel-2015b | ``--A`` |
+| PLUMED/2.3b-foss-2015g | ``-S-`` |
+| PLUMED/2.3b-foss-2016a | ``--A`` |
+| PRACE/20150630-intel-2015b | ``-S-`` |
+| PRACE/prace | ``--A`` |
+| PROJ/4.8.0-foss-2015b | ``-S-`` |
+| PROJ/4.9.2-intel-2017.00 | ``-S-`` |
+| PROJ_4/4.9.2-foss-2015g | ``-S-`` |
+| PSBLAS-ext/1.0-4-GCC-4.9.3-2.25 | ``--A`` |
+| PSBLAS/3.3.4-3-GCC-4.9.3-2.25 | ``--A`` |
+| ParMETIS/4.0.3-intel-2015b | ``-S-`` |
+| ParMETIS/4.0.3-intel-2016.01 | ``-S-`` |
+| ParaView/4.3-OSPRay | ``-S-`` |
+| ParaView/5.0.0-binary | ``-S-`` |
+| PerfReports/5.0.1 | ``-S-`` |
+| PerformanceReports/5.1-43967 | ``-S-`` |
+| PerformanceReports/6.0.6 | ``-SA`` |
+| Perl/5.16.3-intel-2015b | ``-S-`` |
+| Perl/5.20.2-GNU-4.9.3-2.25-bare | ``-SA`` |
+| Perl/5.20.2-bare | ``-S-`` |
+| Perl/5.22.2-intel-2017.00 | ``-S-`` |
+| Perl/5.24.0-GCC-4.9.3-2.25-bare | ``--A`` |
+| PrgEnv-gnu/4.4.6 | ``--A`` |
+| PrgEnv-gnu/4.4.6-test | ``--A`` |
+| PrgEnv-gnu/4.8.1 | ``--A`` |
+| PrgEnv-intel/13.5.192 | ``--A`` |
+| PrgEnv-intel/14.0.1 | ``--A`` |
+| PrgEnv-intel/15.0.3 | ``--A`` |
+| PyQt/4.11.3-foss-2015g-Python-2.7.9 | ``-S-`` |
+| PyQt/4.11.4-foss-2015g-Python-2.7.9 | ``-S-`` |
+| PyYAML/3.11-intel-2015b-Python-2.7.9 | ``-S-`` |
+| Python/2.7.10-GCC-4.9.3-2.25-bare | ``-S-`` |
+| Python/2.7.10-GNU-4.9.3-2.25-bare | ``-S-`` |
+| Python/2.7.11-GCC-4.9.3-2.25-bare | ``-S-`` |
+| Python/2.7.11-foss-2016a | ``-S-`` |
+| Python/2.7.11-intel-2015b | ``-SA`` |
+| Python/2.7.11-intel-2016a | ``-S-`` |
+| Python/2.7.11-intel-2017.00 | ``-S-`` |
+| Python/2.7.8-intel-2015b | ``-S-`` |
+| Python/2.7.8-intel-2016.01 | ``-S-`` |
+| Python/2.7.9 | ``-SA`` |
+| Python/2.7.9-GNU-5.1.0-2.25 | ``-S-`` |
+| Python/2.7.9-foss-2015b | ``-S-`` |
+| Python/2.7.9-foss-2015g | ``-SA`` |
+| Python/2.7.9-gompi-2015e | ``-S-`` |
+| Python/2.7.9-ictce-7.3.5 | ``-S-`` |
+| Python/2.7.9-intel-2015b | ``-SA`` |
+| Python/2.7.9-intel-2016.01 | ``-SA`` |
+| Python/3.4.3-intel-2015b | ``-S-`` |
+| Python/3.5.1 | ``-S-`` |
+| Python/3.5.1-intel-2016.01 | ``-S-`` |
+| Python/3.5.1-intel-2017.00 | ``-S-`` |
+| Python/3.5.2 | ``-S-`` |
+| Python/3.5.2-foss-2016a | ``-SA`` |
+| Python/3.5.2-intel-2017.00 | ``-SA`` |
+| QCA/2.1.0-foss-2015g | ``-S-`` |
+| QEMU/2.1.2-GCC-4.4.7-system | ``-S-`` |
+| QEMU/2.1.2-GCC-4.4.7-system-VDE2 | ``-S-`` |
+| QGIS/2.12.3-foss-2015g | ``-S-`` |
+| Qt/4.8.6 | ``-SA`` |
+| Qt/4.8.6-foss-2015g | ``-S-`` |
+| QuantumESPRESSO/5.4.0-intel-2017.00 | ``-SA`` |
+| Qwt/6.1.2-foss-2015g | ``-S-`` |
+| R/3.0.1 | ``--A`` |
+| R/3.1.1 | ``--A`` |
+| R/3.1.1-intel-2015b | ``-S-`` |
+| R/3.2.3-foss-2015b | ``-S-`` |
+| R/3.2.3-intel-2016.01 | ``-S-`` |
+| RELION/1.3-intel-2015b | ``-S-`` |
+| RStudio/0.98.1103 | ``-S-`` |
+| Racket/6.1.1-GNU-5.1.0-2.25 | ``-S-`` |
+| Rstudio/0.97 | ``--A`` |
+| Ruby/2.1.5-intel-2015b | ``-S-`` |
+| Ruby/2.3.1 | ``-SA`` |
+| S4MPLE/1.0.0 | ``-S-`` |
+| SAMtools/1.3-foss-2015g | ``-S-`` |
+| SCOTCH/5.1.12b_esmumps-foss-2015b | ``-S-`` |
+| SCOTCH/6.0.0_esmumps-intel-2015b | ``-S-`` |
+| SCOTCH/6.0.3-intel-2015b | ``-S-`` |
+| SCOTCH/6.0.3-intel-2016.01 | ``-S-`` |
+| SCOTCH/6.0.4-intel-2015b | ``-S-`` |
+| SCOTCH/6.0.4-intel-2016.01 | ``-S-`` |
+| SCons/2.3.6-Python-2.7.9 | ``-S-`` |
+| SCons/2.3.6-foss-2015g-Python-2.7.9 | ``-SA`` |
+| SDE/7.41.0 | ``-S-`` |
+| SIONlib/1.6.1-intel-2015b-tools | ``-S-`` |
+| SIONlib/1.6.1-tools | ``-SA`` |
+| SIP/4.16.4-foss-2015g-Python-2.7.9 | ``-S-`` |
+| SIP/4.17-Python-2.7.9 | ``-S-`` |
+| SIP/4.17-foss-2015g-Python-2.7.9 | ``-S-`` |
+| SQLite/3.8.8.1-foss-2016a | ``--A`` |
+| SUMO/0.25.0-foss-2015g | ``-S-`` |
+| SUMO/0.26.0-foss-2015g | ``-S-`` |
+| SUMO/0.27.1-foss-2015g | ``-S-`` |
+| SWIG/2.0.12-Python-2.7.9 | ``-S-`` |
+| SWIG/2.0.12-intel-2015b-Python-2.7.9 | ``-S-`` |
+| SWIG/3.0.7-Python-2.7.9 | ``-S-`` |
+| ScaLAPACK/2.0.2-OpenBLAS-0.2.14-LAPACK-3.5.0 | ``-S-`` |
+| ScaLAPACK/2.0.2-gompi-2015b-OpenBLAS-0.2.14-LAPACK-3.5.0 | ``-S-`` |
+| ScaLAPACK/2.0.2-gompi-2015e-OpenBLAS-0.2.14-LAPACK-3.5.0 | ``-S-`` |
+| ScaLAPACK/2.0.2-gompi-2015g-OpenBLAS-0.2.14-LAPACK-3.5.0 | ``-SA`` |
+| ScaLAPACK/2.0.2-gompi-2016.04-OpenBLAS-0.2.18-LAPACK-3.6.0 | ``-SA`` |
+| ScaLAPACK/2.0.2-gompi-2016a-OpenBLAS-0.2.15-LAPACK-3.6.0 | ``-SA`` |
+| Scalasca/2.3.1-intel-2015b | ``-S-`` |
+| ScientificPython/2.9.4-intel-2015b-Python-2.7.11 | ``-SA`` |
+| ScientificPython/2.9.4-intel-2015b-Python-2.7.9 | ``-SA`` |
+| ScientificPython/2.9.4-intel-2016.01-Python-2.7.9 | ``-SA`` |
+| Scipion/1.0.1-Java-8u112-intel-2017.00 | ``-S-`` |
+| Score-P/3.0-intel-2015b | ``-S-`` |
+| Serf/1.3.8-foss-2015g | ``-SA`` |
+| Siesta/4.1-b2-intel-2017.00 | ``-S-`` |
+| SnpEff/4.1_G | ``-S-`` |
+| SnuCL/1.3.3-gompi-2015e | ``-S-`` |
+| Spark/1.5.2 | ``-S-`` |
+| SpatiaLite/4.3.0a-foss-2015g | ``-S-`` |
+| Subversion/1.8.16-foss-2015g | ``-SA`` |
+| SuiteSparse/4.4.3-intel-2015b-ParMETIS-4.0.3 | ``-S-`` |
+| SuiteSparse/4.4.3-intel-2016.01-ParMETIS-4.0.3 | ``-S-`` |
+| SuiteSparse/4.4.5-intel-2015b-METIS-5.1.0 | ``-S-`` |
+| SuiteSparse/4.4.6-intel-2015b-ParMETIS-4.0.3 | ``-S-`` |
+| SuiteSparse/4.5.3-intel-2017.00-METIS-5.1.0 | ``-S-`` |
+| Szip/2.1 | ``-SA`` |
+| Szip/2.1-foss-2015b | ``-S-`` |
+| Szip/2.1-foss-2015g | ``-S-`` |
+| Szip/2.1-foss-2016a | ``-SA`` |
+| Szip/2.1-ictce-7.3.5 | ``-S-`` |
+| Szip/2.1-intel-2015b | ``-SA`` |
+| Szip/2.1-intel-2016.01 | ``-SA`` |
+| Szip/2.1-intel-2017.00 | ``-S-`` |
+| Tcl/8.6.3-foss-2016a | ``--A`` |
+| TotalView/8.15.4-6-linux-x86-64 | ``-S-`` |
+| Trimmomatic/0.35-Java-1.7.0_79 | ``-S-`` |
+| VASP/5.4.1-intel-2015b-24Jun15 | ``-SA`` |
+| VASP/5.4.1-intel-2017.00-24Jun15 | ``-SA`` |
+| VDE2/2.3.2-GCC-4.4.7-system | ``-S-`` |
+| VTune/2016_update1 | ``-SA`` |
+| Valgrind/3.11.0-foss-2015b | ``-S-`` |
+| Valgrind/3.11.0-intel-2015b | ``-S-`` |
+| Vampir/8.5.0 | ``-SA`` |
+| Vampir/9.0.0 | ``-S-`` |
+| VampirServer/8.5.0-intel-2015b | ``-S-`` |
+| VampirServer/9.0.0-intel-2015b | ``-S-`` |
+| VirtualGL/2.4.1 | ``-S-`` |
+| VisIt/2.10.0 | ``-S-`` |
+| Wine/1.7.29-GCC-4.4.7-system | ``-S-`` |
+| Wine/1.7.29-GNU-5.1.0-2.25 | ``-S-`` |
+| XZ/5.2.2 | ``-SA`` |
+| XZ/5.2.2-foss-2016a | ``-SA`` |
+| XZ/5.2.2-intel-2016.01 | ``-S-`` |
+| XZ/5.2.2-intel-2017.00 | ``-SA`` |
+| abinit/7.10.1-gcc-openmpi | ``--A`` |
+| abinit/7.10.1-icc-impi | ``--A`` |
+| abinit/7.6.2 | ``--A`` |
+| adams/2013.2 | ``--A`` |
+| adios/1.8.0 | ``--A`` |
+| advisor_xe/2013.5 | ``--A`` |
+| advisor_xe/2015.1.10.380555 | ``--A`` |
+| aislinn/20160105-Python-2.7.9-gompi-2015e | ``-S-`` |
+| almost/2.1.0-foss-2015b | ``-S-`` |
+| almost/2.1.0-foss-2015g | ``-SA`` |
+| almost/2.1.0-foss-2016a | ``--A`` |
+| almost/2.1.0-intel-2015b | ``-S-`` |
+| ansys/14.5.x | ``--A`` |
+| ansys/15.0.x | ``--A`` |
+| ansys/16.0.x | ``--A`` |
+| ant/1.9.3-Java-1.7.0_79 | ``-S-`` |
+| arpack-ng/3.3.0-foss-2016a | ``-SA`` |
+| arpack-ng/3.3.0-intel-2015b | ``-S-`` |
+| arpack-ng/3.3.0-intel-2017.00 | ``-S-`` |
+| arpack-ng/3.4.0-intel-2017.00 | ``-S-`` |
+| beopest/12.0.1 | ``--A`` |
+| beopest/12.2 | ``--A`` |
+| beopest/13.3 | ``--A`` |
+| binutils/2.25-GCC-4.9.3 | ``--A`` |
+| blender/2.71 | ``--A`` |
+| boost/1.56-gcc-openmpi | ``--A`` |
+| boost/1.56-icc-impi | ``--A`` |
+| bowtie2/2.2.3 | ``--A`` |
+| bullxde/2.0 | ``-S-`` |
+| bullxmpi-1.2.4.3 | ``--A`` |
+| bullxmpi/bullxmpi-1.2.4.3 | ``--A`` |
+| bullxmpi/bullxmpi_1.2.4.1 | ``--A`` |
+| bupc/2.16.2 | ``--A`` |
+| byacc/20120526 | ``-SA`` |
+| byacc/20120526-foss-2015b | ``-S-`` |
+| byacc/20120526-foss-2015g | ``-SA`` |
+| byacc/20120526-foss-2016a | ``--A`` |
+| byacc/20120526-intel-2015b | ``-SA`` |
+| byacc/20150711-intel-2015b | ``--A`` |
+| cURL/7.37.1 | ``-SA`` |
+| cURL/7.37.1-foss-2015g | ``-SA`` |
+| cURL/7.37.1-intel-2015b | ``-S-`` |
+| cURL/7.37.1-intel-2016.01 | ``-S-`` |
+| cURL/7.45.0-foss-2015b | ``-S-`` |
+| cURL/7.47.0-intel-2017.00 | ``-S-`` |
+| cURL/7.51.0 | ``--A`` |
+| cURL/7.51.0-intel-2017.00 | ``-S-`` |
+| cairo/1.12.18 | ``-SA`` |
+| cairo/1.12.18-foss-2015b | ``-S-`` |
+| chicken/4.8.0.6 | ``--A`` |
+| cmake/2.8.11 | ``--A`` |
+| cmake/2.8.11-mic | ``--A`` |
+| comsol/43b-COM | ``--A`` |
+| comsol/43b-EDU | ``--A`` |
+| comsol/44-COM | ``--A`` |
+| comsol/44-EDU | ``--A`` |
+| comsol/50-COM | ``--A`` |
+| comsol/50-EDU | ``--A`` |
+| cp2k-mpi/2.5.1-gcc | ``--A`` |
+| cube/4.2.3-gcc | ``--A`` |
+| cube/4.2.3-icc | ``--A`` |
+| cuda/6.0.37 | ``--A`` |
+| cuda/6.5.14 | ``--A`` |
+| cuda/7.5 | ``--A`` |
+| dataspaces/1.4.0 | ``--A`` |
+| dhi-mike/2014 | ``--A`` |
+| dhi-mike/2016 | ``--A`` |
+| dhi-mike/2016-SP2 | ``--A`` |
+| dhi-mike/default | ``--A`` |
+| digimat/5.0.1 | ``--A`` |
+| dytran/2013.0.1 | ``--A`` |
+| elmer/7.0-r6695-dbg | ``--A`` |
+| elmer/7.0-r6695-opt | ``--A`` |
+| eudev/3.1.5-foss-2016a | ``-S-`` |
+| eudev/3.1.5-intel-2016a | ``-S-`` |
+| expat/2.1.0 | ``-SA`` |
+| expat/2.1.0-foss-2015b | ``-S-`` |
+| expat/2.1.0-foss-2015g | ``-SA`` |
+| expat/2.1.0-intel-2015b | ``-S-`` |
+| expat/2.1.0-intel-2017.00 | ``-S-`` |
+| fastqc/0.11.2 | ``--A`` |
+| fds/5.5.3 | ``--A`` |
+| fds/5.5.3-omp | ``--A`` |
+| fds/6.svn | ``--A`` |
+| ffmpeg/2.4 | ``-SA`` |
+| ffmpeg/2.4-foss-2015g | ``-S-`` |
+| ffmpeg/2.4-intel-2015b | ``-S-`` |
+| fftw2-mpi/2.1.5-gcc | ``--A`` |
+| fftw2-mpi/2.1.5-icc | ``--A`` |
+| fftw2/2.1.5-gcc | ``--A`` |
+| fftw2/2.1.5-icc | ``--A`` |
+| fftw3-mpi/3.3.3-gcc | ``--A`` |
+| fftw3-mpi/3.3.3-icc | ``--A`` |
+| fftw3/3.3.3-gcc | ``--A`` |
+| fftw3/3.3.3-icc | ``--A`` |
+| fixesproto/5.0 | ``-SA`` |
+| fixesproto/5.0-foss-2015g | ``-S-`` |
+| fixesproto/5.0-foss-2016a | ``-S-`` |
+| fixesproto/5.0-intel-2016a | ``-S-`` |
+| flex/2.5.39-GCC-4.9.3 | ``--A`` |
+| flex/2.5.39-foss-2016a | ``--A`` |
+| fontconfig/2.11.1 | ``-SA`` |
+| fontconfig/2.11.1-foss-2015b | ``-S-`` |
+| fontconfig/2.11.1-intel-2015b | ``-S-`` |
+| fontconfig/2.11.94-intel-2017.00 | ``-S-`` |
+| fontsproto/2.1.3 | ``-SA`` |
+| fontsproto/2.1.3-foss-2015g | ``-S-`` |
+| fontsproto/2.1.3-foss-2016a | ``-S-`` |
+| fontsproto/2.1.3-intel-2016a | ``-S-`` |
+| foss/2015b | ``-S-`` |
+| foss/2015e | ``-S-`` |
+| foss/2015g | ``-SA`` |
+| foss/2016.04 | ``-SA`` |
+| foss/2016a | ``-SA`` |
+| freetype/2.5.3 | ``-SA`` |
+| freetype/2.5.3-foss-2015b | ``-S-`` |
+| freetype/2.5.3-foss-2015g | ``-S-`` |
+| freetype/2.5.3-intel-2015b | ``-S-`` |
+| freetype/2.5.5-intel-2015b | ``-S-`` |
+| freetype/2.6.2-intel-2016a | ``-S-`` |
+| freetype/2.6.2-intel-2017.00 | ``-S-`` |
+| freetype/2.6.3-foss-2016a | ``-S-`` |
+| freetype/2.6.3-intel-2016a | ``-S-`` |
+| gatk/2.6-4 | ``--A`` |
+| gcc/4.8.1 | ``--A`` |
+| gcc/4.9.0 | ``--A`` |
+| gcc/5.4.0 | ``--A`` |
+| gettext/0.19.4 | ``--A`` |
+| gettext/0.19.6-intel-2017.00 | ``--A`` |
+| gimkl/2.11.5 | ``--A`` |
+| gimpi/2.11.5 | ``--A`` |
+| git/2.11.0 | ``-S-`` |
+| git/2.11.0-GNU-4.9.3-2.25 | ``--A`` |
+| git/2.8.0-GNU-4.9.3-2.25 | ``-SA`` |
+| git/2.8.0-intel-2017.00 | ``-S-`` |
+| git/2.9.0 | ``-S-`` |
+| git/2.9.2 | ``-S-`` |
+| globus | ``--A`` |
+| globus/globus | ``-S-`` |
+| glproto/1.4.16-foss-2015g | ``-S-`` |
+| glproto/1.4.17-foss-2016a | ``-S-`` |
+| glproto/1.4.17-intel-2016a | ``-S-`` |
+| gnuplot/4.6.5 | ``--A`` |
+| gompi/2015b | ``-S-`` |
+| gompi/2015e | ``-S-`` |
+| gompi/2015g | ``-SA`` |
+| gompi/2016.04 | ``-SA`` |
+| gompi/2016a | ``-SA`` |
+| gperf/3.0.4-foss-2015g | ``-S-`` |
+| gperf/3.0.4-foss-2016a | ``-S-`` |
+| gperf/3.0.4-intel-2016a | ``-S-`` |
+| gpi2/1.0.2 | ``--A`` |
+| gpi2/1.1.0 | ``--A`` |
+| gpi2/1.1.1 | ``--A`` |
+| grace/5.1.23 | ``--A`` |
+| grace/5.1.25-intel-2015b | ``-S-`` |
+| gsl/1.16-gcc | ``--A`` |
+| gsl/1.16-icc | ``--A`` |
+| guile/1.8.8 | ``-SA`` |
+| guile/1.8.8-foss-2015b | ``-S-`` |
+| guile/1.8.8-foss-2015g | ``-S-`` |
+| guile/1.8.8-foss-2016a | ``--A`` |
+| guile/1.8.8-intel-2015b | ``-SA`` |
+| gupc/4.8.0.3 | ``--A`` |
+| gzip/1.6 | ``-SA`` |
+| gzip/1.6-foss-2015g | ``-SA`` |
+| gzip/1.6-foss-2016a | ``--A`` |
+| gzip/1.6-intel-2015b | ``-SA`` |
+| h5py/2.4.0-ictce-7.3.5-Python-2.7.9-serial | ``-S-`` |
+| hdf5-parallel/1.8.11 | ``--A`` |
+| hdf5-parallel/1.8.11-gcc | ``--A`` |
+| hdf5-parallel/1.8.13 | ``--A`` |
+| hdf5-parallel/1.8.13-gcc | ``--A`` |
+| hdf5-parallel/1.8.13-gcc49 | ``--A`` |
+| hdf5/1.8.11 | ``--A`` |
+| hdf5/1.8.13 | ``--A`` |
+| hpg-aligner/1.0.0 | ``--A`` |
+| hpg-fastq/1.0.0 | ``--A`` |
+| hpg-variant/1.0.0 | ``--A`` |
+| hwloc/1.11.0 | ``-SA`` |
+| hwloc/1.11.0-GNU-4.9.3-2.25 | ``-SA`` |
+| hwloc/1.11.0-GNU-5.1.0-2.25 | ``-SA`` |
+| hwloc/1.11.1-iccifort-2015.3.187-GNU-4.9.3-2.25 | ``-SA`` |
+| hwloc/1.11.2-GCC-4.9.3-2.25 | ``-SA`` |
+| hwloc/1.11.3-GCC-5.3.0-2.26 | ``-SA`` |
+| hwloc/1.5-GCC-4.4.7-system | ``-S-`` |
+| hypermesh/12.0.110 | ``--A`` |
+| hyperworks/13.0 | ``--A`` |
+| icc/2013.5.192 | ``-S-`` |
+| icc/2013.5.192-GCC-4.8.3 | ``-S-`` |
+| icc/2015.3.187 | ``-S-`` |
+| icc/2015.3.187-GNU-4.9.3-2.25 | ``-SA`` |
+| icc/2015.3.187-GNU-5.1.0-2.25 | ``-SA`` |
+| icc/2016.0.109-GCC-4.9.3 | ``-S-`` |
+| icc/2016.1.150 | ``-S-`` |
+| icc/2016.1.150-GCC-4.9.3 | ``-S-`` |
+| icc/2016.1.150-GCC-4.9.3-2.25 | ``-SA`` |
+| icc/2016.3.210-GCC-5.3.0-2.26 | ``-S-`` |
+| icc/2017.0.098-GCC-5.4.0-2.26 | ``-SA`` |
+| iccifort/2013.5.192 | ``-S-`` |
+| iccifort/2013.5.192-GCC-4.8.3 | ``-S-`` |
+| iccifort/2015.3.187 | ``-S-`` |
+| iccifort/2015.3.187-GNU-4.9.3-2.25 | ``-SA`` |
+| iccifort/2015.3.187-GNU-5.1.0-2.25 | ``-SA`` |
+| iccifort/2016.0.109-GCC-4.9.3 | ``-S-`` |
+| iccifort/2016.1.150 | ``-S-`` |
+| iccifort/2016.1.150-GCC-4.9.3 | ``-S-`` |
+| iccifort/2016.1.150-GCC-4.9.3-2.25 | ``-SA`` |
+| iccifort/2016.3.210-GCC-5.3.0-2.26 | ``-S-`` |
+| iccifort/2017.0.098-GCC-5.4.0-2.26 | ``-SA`` |
+| ictce/5.5.0 | ``-S-`` |
+| ictce/7.3.5 | ``-S-`` |
+| ictce/8.3.5 | ``-S-`` |
+| ifort/2013.5.192 | ``-S-`` |
+| ifort/2013.5.192-GCC-4.8.3 | ``-S-`` |
+| ifort/2015.3.187 | ``-S-`` |
+| ifort/2015.3.187-GNU-4.9.3-2.25 | ``-SA`` |
+| ifort/2015.3.187-GNU-5.1.0-2.25 | ``-SA`` |
+| ifort/2016.0.109-GCC-4.9.3 | ``-S-`` |
+| ifort/2016.1.150 | ``-S-`` |
+| ifort/2016.1.150-GCC-4.9.3 | ``-S-`` |
+| ifort/2016.1.150-GCC-4.9.3-2.25 | ``-SA`` |
+| ifort/2016.3.210-GCC-5.3.0-2.26 | ``-S-`` |
+| ifort/2017.0.098-GCC-5.4.0-2.26 | ``-SA`` |
+| iimpi/2016.00-GCC-4.9.3 | ``-S-`` |
+| iimpi/2016.01-GCC-4.9.3 | ``-S-`` |
+| iimpi/2016.01-GCC-4.9.3-2.25 | ``-SA`` |
+| iimpi/2016.03-GCC-5.3.0-2.26 | ``-S-`` |
+| iimpi/2017.00-GCC-5.4.0-2.26 | ``-SA`` |
+| iimpi/5.5.0 | ``-S-`` |
+| iimpi/5.5.0-GCC-4.8.3 | ``-S-`` |
+| iimpi/7.3.5 | ``-S-`` |
+| iimpi/7.3.5-GNU-5.1.0-2.25 | ``-SA`` |
+| iimpi/8.1.5-GCC-4.9.3-2.25 | ``-SA`` |
+| iimpi/8.3.5 | ``-S-`` |
+| imkl/11.0.5.192-iimpi-5.5.0 | ``-S-`` |
+| imkl/11.0.5.192-iimpi-5.5.0-GCC-4.8.3 | ``-S-`` |
+| imkl/11.2.3.187 | ``-S-`` |
+| imkl/11.2.3.187-gimpi-2.11.5 | ``--A`` |
+| imkl/11.2.3.187-iimpi-7.3.5 | ``-S-`` |
+| imkl/11.2.3.187-iimpi-7.3.5-GNU-5.1.0-2.25 | ``-SA`` |
+| imkl/11.2.3.187-iompi-2015.03 | ``-S-`` |
+| imkl/11.3.0.109-iimpi-2016.00-GCC-4.9.3 | ``-S-`` |
+| imkl/11.3.1.150-iimpi-2016.00-GCC-4.9.3 | ``-S-`` |
+| imkl/11.3.1.150-iimpi-2016.01-GCC-4.9.3-2.25 | ``-SA`` |
+| imkl/11.3.1.150-iimpi-8.1.5-GCC-4.9.3-2.25 | ``-SA`` |
+| imkl/11.3.1.150-iimpi-8.3.5 | ``-S-`` |
+| imkl/11.3.3.210-iimpi-2016.03-GCC-5.3.0-2.26 | ``-S-`` |
+| imkl/2017.0.098-iimpi-2017.00-GCC-5.4.0-2.26 | ``-SA`` |
+| impi/2017-BETA.ENG | ``-S-`` |
+| impi/2017.0.098-iccifort-2017.0.098-GCC-5.4.0-2.26 | ``-SA`` |
+| impi/4.1.1.036 | ``--A`` |
+| impi/4.1.1.036-iccifort-2013.5.192 | ``-S-`` |
+| impi/4.1.1.036-iccifort-2013.5.192-GCC-4.8.3 | ``-S-`` |
+| impi/5.0.3.048 | ``-SA`` |
+| impi/5.0.3.048-GCC-4.9.3 | ``--A`` |
+| impi/5.0.3.048-iccifort-2015.3.187 | ``-S-`` |
+| impi/5.0.3.048-iccifort-2015.3.187-GNU-5.1.0-2.25 | ``-SA`` |
+| impi/5.1.1.109-iccifort-2016.0.109-GCC-4.9.3 | ``-S-`` |
+| impi/5.1.2.150-iccifort-2016.1.150 | ``-S-`` |
+| impi/5.1.2.150-iccifort-2016.1.150-GCC-4.9.3 | ``-S-`` |
+| impi/5.1.2.150-iccifort-2016.1.150-GCC-4.9.3-2.25 | ``-SA`` |
+| impi/5.1.3.181-iccifort-2016.3.210-GCC-5.3.0-2.26 | ``-S-`` |
+| inputproto/2.3 | ``-SA`` |
+| inputproto/2.3-foss-2015g | ``-S-`` |
+| inputproto/2.3-intel-2015b | ``-S-`` |
+| inputproto/2.3.1-foss-2016a | ``-S-`` |
+| inputproto/2.3.1-intel-2016a | ``-S-`` |
+| inspector_xe/2013.5 | ``--A`` |
+| inspector_xe/2015.1.2.379161 | ``--A`` |
+| intel/13.5.192 | ``--A`` |
+| intel/14.0.1 | ``--A`` |
+| intel/15.2.164 | ``--A`` |
+| intel/15.3.187 | ``--A`` |
+| intel/2014.06 | ``-S-`` |
+| intel/2015b | ``-SA`` |
+| intel/2015b-intel-2015b | ``-S-`` |
+| intel/2016.00 | ``-S-`` |
+| intel/2016.01 | ``-SA`` |
+| intel/2016.03-GCC-5.3 | ``-S-`` |
+| intel/2016a | ``-SA`` |
+| intel/2017.00 | ``-SA`` |
+| intelpcm/2.6 | ``--A`` |
+| ipm/0.983-icc-impi | ``--A`` |
+| ipp/13.5.192 | ``--A`` |
+| ipp/14.0.1 | ``--A`` |
+| ipp/15.2.164 | ``--A`` |
+| ipp/15.3.187 | ``--A`` |
+| ipp/9.0.1.150 | ``-S-`` |
+| itac/8.1.4.045 | ``--A`` |
+| itac/9.0.3.051 | ``--A`` |
+| itac/9.1.2.024 | ``-S-`` |
+| java/1.7 | ``--A`` |
+| kbproto/1.0.6 | ``-SA`` |
+| kbproto/1.0.6-foss-2015g | ``-S-`` |
+| kbproto/1.0.6-intel-2015b | ``-S-`` |
+| kbproto/1.0.7 | ``-S-`` |
+| kbproto/1.0.7-foss-2016a | ``-S-`` |
+| kbproto/1.0.7-intel-2016a | ``-S-`` |
+| lam/7.1.4-icc | ``--A`` |
+| lammps/28Jun14 | ``--A`` |
+| libGLU/9.0.0-foss-2015g | ``-S-`` |
+| libICE/1.0.9 | ``-SA`` |
+| libICE/1.0.9-foss-2015g | ``-S-`` |
+| libICE/1.0.9-intel-2015b | ``-S-`` |
+| libMesh/0.9.5-intel-2016.01 | ``-S-`` |
+| libSM/1.2.2 | ``-SA`` |
+| libSM/1.2.2-foss-2015g | ``-S-`` |
+| libSM/1.2.2-intel-2015b | ``-S-`` |
+| libX11/1.6.2-Python-2.7.8 | ``-S-`` |
+| libX11/1.6.2-Python-2.7.9 | ``-SA`` |
+| libX11/1.6.2-foss-2015g-Python-2.7.9 | ``-S-`` |
+| libX11/1.6.2-intel-2015b-Python-2.7.9 | ``-S-`` |
+| libX11/1.6.3-foss-2016a | ``-S-`` |
+| libX11/1.6.3-intel-2016a | ``-S-`` |
+| libXau/1.0.8 | ``-SA`` |
+| libXau/1.0.8-foss-2015g | ``-S-`` |
+| libXau/1.0.8-foss-2016a | ``-S-`` |
+| libXau/1.0.8-intel-2015b | ``-S-`` |
+| libXau/1.0.8-intel-2016a | ``-S-`` |
+| libXdamage/1.1.4-foss-2015g-Python-2.7.9 | ``-S-`` |
+| libXdamage/1.1.4-foss-2016a | ``-S-`` |
+| libXdamage/1.1.4-intel-2016a | ``-S-`` |
+| libXdmcp/1.1.2 | ``-SA`` |
+| libXdmcp/1.1.2-foss-2015g | ``-S-`` |
+| libXdmcp/1.1.2-foss-2016a | ``-S-`` |
+| libXdmcp/1.1.2-intel-2015b | ``-S-`` |
+| libXdmcp/1.1.2-intel-2016a | ``-S-`` |
+| libXext/1.3.2-Python-2.7.8 | ``-S-`` |
+| libXext/1.3.3 | ``-SA`` |
+| libXext/1.3.3-foss-2015g | ``-S-`` |
+| libXext/1.3.3-foss-2015g-Python-2.7.9 | ``-S-`` |
+| libXext/1.3.3-foss-2016a | ``-S-`` |
+| libXext/1.3.3-intel-2015b | ``-S-`` |
+| libXext/1.3.3-intel-2016a | ``-S-`` |
+| libXfixes/5.0.1 | ``-SA`` |
+| libXfixes/5.0.1-foss-2015g | ``-S-`` |
+| libXfixes/5.0.1-foss-2016a | ``-S-`` |
+| libXfixes/5.0.1-intel-2016a | ``-S-`` |
+| libXfont/1.5.1-Python-2.7.9 | ``-SA`` |
+| libXfont/1.5.1-foss-2015g-Python-2.7.9 | ``-S-`` |
+| libXfont/1.5.1-foss-2016a-freetype-2.6.3 | ``-S-`` |
+| libXfont/1.5.1-intel-2016a | ``-S-`` |
+| libXfont/1.5.1-intel-2016a-freetype-2.6.3 | ``-S-`` |
+| libXft/2.3.2-intel-2015b | ``-S-`` |
+| libXinerama/1.1.3-intel-2015b | ``-S-`` |
+| libXrender/0.9.8 | ``-S-`` |
+| libXrender/0.9.8-intel-2015b | ``-S-`` |
+| libXt/1.1.4-foss-2015g-libX11-1.6.2 | ``-S-`` |
+| libXt/1.1.4-intel-2015b-libX11-1.6.2 | ``-S-`` |
+| libXt/1.1.4-libX11-1.6.2 | ``-SA`` |
+| libXt/1.1.5-foss-2015g | ``-S-`` |
+| libctl/3.2.2-intel-2015b | ``-S-`` |
+| libdrm/2.4.27 | ``-SA`` |
+| libdrm/2.4.27-foss-2015g | ``-S-`` |
+| libdrm/2.4.67-intel-2016a | ``-S-`` |
+| libdrm/2.4.68-foss-2016a | ``-S-`` |
+| libdrm/2.4.68-intel-2016a | ``-S-`` |
+| libffi/3.0.13 | ``-SA`` |
+| libffi/3.0.13-foss-2015b | ``-S-`` |
+| libffi/3.0.13-foss-2015g | ``-S-`` |
+| libffi/3.0.13-intel-2015b | ``-SA`` |
+| libffi/3.1-GNU-5.1.0-2.25 | ``-S-`` |
+| libffi/3.1-foss-2015b | ``-S-`` |
+| libffi/3.1-intel-2015b | ``-SA`` |
+| libffi/3.1-intel-2016.01 | ``-SA`` |
+| libffi/3.2.1-foss-2016a | ``--A`` |
+| libffi/3.2.1-intel-2017.00 | ``-S-`` |
+| libfontenc/1.1.3 | ``-SA`` |
+| libfontenc/1.1.3-foss-2015g | ``-S-`` |
+| libfontenc/1.1.3-foss-2016a | ``-S-`` |
+| libfontenc/1.1.3-intel-2016a | ``-S-`` |
+| libgdiplus/3.12 | ``-SA`` |
+| libgdiplus/3.12-GCC-4.4.7-system | ``-S-`` |
+| libgdiplus/3.12-GNU-5.1.0-2.25 | ``-S-`` |
+| libgdiplus/3.12-intel-2016.01 | ``-S-`` |
+| libjpeg-turbo/1.3.1-foss-2015b | ``-S-`` |
+| libjpeg-turbo/1.3.1-intel-2015b | ``-S-`` |
+| libjpeg-turbo/1.4.0 | ``-SA`` |
+| libjpeg-turbo/1.4.0-foss-2015g | ``-S-`` |
+| libjpeg-turbo/1.4.0-intel-2015b | ``-S-`` |
+| libjpeg-turbo/1.4.1-foss-2015b | ``-S-`` |
+| libjpeg-turbo/1.4.2-intel-2017.00 | ``-S-`` |
+| libmatheval/1.1.11-intel-2015b | ``--A`` |
+| libmatheval/1.1.8 | ``-SA`` |
+| libmatheval/1.1.8-foss-2015b | ``-S-`` |
+| libmatheval/1.1.8-foss-2015g | ``-S-`` |
+| libmatheval/1.1.8-foss-2016a | ``--A`` |
+| libmatheval/1.1.8-intel-2015b | ``-SA`` |
+| libmesh/0.9.3-petsc-3.4.4-icc-impi-mkl-dbg | ``--A`` |
+| libmesh/0.9.3-petsc-3.4.4-icc-impi-mkl-dbg-2d | ``--A`` |
+| libmesh/0.9.3-petsc-3.4.4-icc-impi-mkl-opt | ``--A`` |
+| libpciaccess/0.13.1 | ``-SA`` |
+| libpciaccess/0.13.1-foss-2015g | ``-S-`` |
+| libpciaccess/0.13.4-foss-2016a | ``-S-`` |
+| libpciaccess/0.13.4-intel-2016a | ``-S-`` |
+| libpng/1.6.16-intel-2015b | ``-S-`` |
+| libpthread-stubs/0.3 | ``-SA`` |
+| libpthread-stubs/0.3-foss-2015g | ``-S-`` |
+| libpthread-stubs/0.3-foss-2016a | ``-S-`` |
+| libpthread-stubs/0.3-intel-2015b | ``-S-`` |
+| libpthread-stubs/0.3-intel-2016a | ``-S-`` |
+| libreadline/6.3-gimkl-2.11.5 | ``--A`` |
+| libunistring/0.9.3 | ``-SA`` |
+| libunistring/0.9.3-foss-2015b | ``-S-`` |
+| libunistring/0.9.3-foss-2015g | ``-S-`` |
+| libunistring/0.9.3-foss-2016a | ``--A`` |
+| libunistring/0.9.3-intel-2015b | ``-SA`` |
+| libunwind/1.1-GCC-5.4.0-2.26 | ``-S-`` |
+| libxc/2.2.0-foss-2015b | ``-S-`` |
+| libxc/2.2.0-gompi-2015b | ``-S-`` |
+| libxc/2.2.1-intel-2015b | ``-S-`` |
+| libxcb/1.10-Python-2.7.8 | ``-S-`` |
+| libxcb/1.11-Python-2.7.9 | ``-SA`` |
+| libxcb/1.11-foss-2015g-Python-2.7.9 | ``-S-`` |
+| libxcb/1.11-intel-2015b-Python-2.7.9 | ``-S-`` |
+| libxcb/1.11.1-foss-2016a | ``-S-`` |
+| libxcb/1.11.1-intel-2016a | ``-S-`` |
+| libxml2/2.9.2 | ``-S-`` |
+| libxml2/2.9.2-GCC-4.9.3-2.25 | ``-S-`` |
+| libxml2/2.9.2-GNU-4.9.3-2.25 | ``-S-`` |
+| libxml2/2.9.2-GNU-5.1.0-2.25 | ``-S-`` |
+| libxml2/2.9.2-foss-2015b | ``-S-`` |
+| libxml2/2.9.2-foss-2015g | ``-S-`` |
+| libxml2/2.9.2-foss-2015g-Python-2.7.9 | ``-S-`` |
+| libxml2/2.9.2-gompi-2015e | ``-S-`` |
+| libxml2/2.9.2-ictce-7.3.5 | ``-S-`` |
+| libxml2/2.9.2-intel-2015b | ``-SA`` |
+| libxml2/2.9.3-foss-2016a | ``-SA`` |
+| libxml2/2.9.3-intel-2016a | ``-SA`` |
+| libxml2/2.9.3-intel-2017.00 | ``-S-`` |
+| libxslt/1.1.28-intel-2015b | ``-S-`` |
+| libyaml/0.1.6-intel-2015b | ``-S-`` |
+| likwid/3.1.1-icc | ``--A`` |
+| likwid/3.1.1-mic | ``--A`` |
+| likwid/3.1.2-gcc | ``--A`` |
+| likwid/3.1.2-icc | ``--A`` |
+| likwid/3.1.2-mic | ``--A`` |
+| likwid/4.1.2-gcc | ``-S-`` |
+| likwid/4.1.2-intel | ``-S-`` |
+| llvm/3.6.0 | ``--A`` |
+| lmod/7.2.2 | ``-SA`` |
+| lsdyna/7.x.x | ``--A`` |
+| lsprepost/4.2 | ``--A`` |
+| lux/1.3.1 | ``--A`` |
+| lxml/3.4.4-intel-2015b-Python-2.7.9 | ``-S-`` |
+| magma/1.1.0-mic | ``--A`` |
+| magma/1.3.0-mic | ``--A`` |
+| make/3.82 | ``-SA`` |
+| make/3.82-intel-2015b | ``-S-`` |
+| makedepend/1.0.4 | ``-SA`` |
+| makedepend/1.0.4-foss-2015g | ``-S-`` |
+| makedepend/1.0.5-foss-2016a | ``-S-`` |
+| makedepend/1.0.5-intel-2016a | ``-S-`` |
+| marc/2011 | ``--A`` |
+| marc/2013.1 | ``--A`` |
+| matlab/R2013a-COM | ``--A`` |
+| matlab/R2013a-EDU | ``--A`` |
+| matlab/R2014a-COM | ``--A`` |
+| matlab/R2014a-EDU | ``--A`` |
+| matplotlib/1.4.3-intel-2015b-Python-2.7.9 | ``-S-`` |
+| maxwell/3.0 | ``--A`` |
+| memoryscape/3.4 | ``--A`` |
+| mercurial/2.9.1 | ``--A`` |
+| mkl/13.5.192 | ``--A`` |
+| mkl/14.0.1 | ``--A`` |
+| mkl/15.2.164 | ``--A`` |
+| mkl/15.3.187 | ``--A`` |
+| modflow-2005/1.11.00 | ``--A`` |
+| modflow-nwt/1.0.9 | ``--A`` |
+| modflow-nwt/1.0.9-aquaveo | ``--A`` |
+| molpro/2010.1-p45-intel | ``--A`` |
+| mono/3.12.1 | ``--A`` |
+| mono/3.2.3 | ``--A`` |
+| motif/2.3.4-foss-2015g-libX11-1.6.2 | ``-S-`` |
+| motif/2.3.4-intel-2015b-libX11-1.6.2 | ``-S-`` |
+| mpi.net/1.0.0 | ``--A`` |
+| mpi.net/1.0.0-impi | ``--A`` |
+| mpi.net/1.0.0-mono-3.12.1 | ``--A`` |
+| mpt/2.12 | ``-S-`` |
+| mvapich2/1.9-gcc | ``--A`` |
+| mvapich2/1.9-gcc46 | ``--A`` |
+| mvapich2/1.9-icc | ``--A`` |
+| mxml/2.9 | ``--A`` |
+| namd/2.8 | ``--A`` |
+| nastran/2013.1.1 | ``--A`` |
+| ncurses/5.9-GCC-4.9.3-2.25 | ``--A`` |
+| ncurses/5.9-gimkl-2.11.5 | ``--A`` |
+| netCDF-Fortran/4.4.0-intel-2016.01 | ``-S-`` |
+| netCDF/4.3.2-foss-2015g | ``-S-`` |
+| netCDF/4.3.2-intel-2015b | ``-S-`` |
+| netCDF/4.3.2-intel-2016.01 | ``-S-`` |
+| netCDF/4.3.3.1-foss-2015b | ``-S-`` |
+| netCDF/4.3.3.1-intel-2017.00 | ``-S-`` |
+| netCDF/4.4.0-intel-2017.00 | ``-S-`` |
+| netcdf-cxx/4.2 | ``--A`` |
+| netcdf-fortran/4.2 | ``--A`` |
+| netcdf-parallel/4.3.0 | ``--A`` |
+| netcdf/4.2.1.1 | ``--A`` |
+| netcdf/4.3.0 | ``--A`` |
+| ngsPipeline/1.0.0 | ``--A`` |
+| numactl/2.0.10 | ``-SA`` |
+| numactl/2.0.10-GNU-4.9.3-2.25 | ``-SA`` |
+| numactl/2.0.10-GNU-5.1.0-2.25 | ``-SA`` |
+| numactl/2.0.10-iccifort-2015.3.187-GNU-4.9.3-2.25 | ``-SA`` |
+| numactl/2.0.11 | ``-SA`` |
+| numactl/2.0.11-GCC-4.9.3-2.25 | ``-SA`` |
+| numactl/2.0.11-GCC-5.3.0-2.26 | ``-SA`` |
+| numactl/2.0.9 | ``--A`` |
+| numactl/2.0.9-GCC-4.4.7-system | ``-S-`` |
+| numpy/1.8.2-intel-2015b-Python-2.7.11 | ``-SA`` |
+| numpy/1.8.2-intel-2015b-Python-2.7.9 | ``-SA`` |
+| numpy/1.8.2-intel-2016.01-Python-2.7.9 | ``-SA`` |
+| numpy/1.9.1-intel-2015b-Python-2.7.9 | ``-S-`` |
+| nwchem/6.1.1 | ``--A`` |
+| nwchem/6.3-rev2-patch1 | ``--A`` |
+| nwchem/6.3-rev2-patch1-openmpi | ``--A`` |
+| nwchem/6.3-rev2-patch1-venus | ``--A`` |
+| opari2/1.1.2-gcc | ``--A`` |
+| opari2/1.1.2-icc | ``--A`` |
+| opencl-rt/4.5.0.8 | ``--A`` |
+| opencl-sdk/4.6.0.92 | ``--A`` |
+| openfoam/2.2.1-gcc481-openmpi1.6.5-DP | ``--A`` |
+| openfoam/2.2.1-gcc481-openmpi1.6.5-SP | ``--A`` |
+| openfoam/2.2.1-icc-impi4.1.1.036-DP | ``--A`` |
+| openfoam/2.2.1-icc-openmpi1.6.5-DP | ``--A`` |
+| openfoam/2.2.2-icc-openmpi1.8.1-DP | ``--A`` |
+| openmpi/1.6.5-gcc | ``--A`` |
+| openmpi/1.6.5-gcc46 | ``--A`` |
+| openmpi/1.6.5-icc | ``--A`` |
+| openmpi/1.8.1-gcc | ``--A`` |
+| openmpi/1.8.1-gcc46 | ``--A`` |
+| openmpi/1.8.1-gcc49 | ``--A`` |
+| openmpi/1.8.1-icc | ``--A`` |
+| openssh-x509/6.2p2 | ``--A`` |
+| oscar-modules/1.0.3 | ``-S-`` |
+| otf2/1.2.1-gcc | ``--A`` |
+| otf2/1.2.1-icc | ``--A`` |
+| otf2/1.4-gcc | ``--A`` |
+| otf2/1.4-icc | ``--A`` |
+| p4vasp/0.3.29-GNU-4.9.3-2.25 | ``-S-`` |
+| papi/5.3.0 | ``--A`` |
+| papi/5.3.2 | ``--A`` |
+| papi/5.3.2-mic | ``--A`` |
+| papi/5.4.0 | ``--A`` |
+| papi/5.4.0-mic | ``--A`` |
+| parallel/20141122 | ``--A`` |
+| parallel/20150322 | ``-S-`` |
+| parallel/20150322-GNU-5.1.0-2.25 | ``-S-`` |
+| paraview/4.0.1-gcc481-bullxmpi1.2.4.1-osmesa10.0 | ``--A`` |
+| perfboost/1.0 | ``-S-`` |
+| perfcatcher/1.0 | ``-S-`` |
+| perfsuite/1a5.3 | ``-S-`` |
+| pest/13.0 | ``--A`` |
+| petsc/3.5.3-icc15-impi-mkl-dbg | ``--A`` |
+| petsc/3.5.3-icc15-impi-mkl-opt | ``--A`` |
+| petsc/3.5.3-icc15-impi-mkl-threads-dbg | ``--A`` |
+| petsc/3.5.3-icc15-impi-mkl-threads-opt | ``--A`` |
+| petsc/3.7.3-icc16-impi5-mkl-dbg | ``--A`` |
+| petsc/3.7.3-icc16-impi5-mkl-opt | ``--A`` |
+| phono3py/1.11.7.8-intel-2015b-Python-2.7.9 | ``-S-`` |
+| phonopy/1.11.6.7-intel-2015b-Python-2.7.9 | ``-S-`` |
+| picard/1.117 | ``--A`` |
+| picard/1.119 | ``-S-`` |
+| picard/2.1.0 | ``-S-`` |
+| pigz/2.3.3-GCC-6.2.0-2.27 | ``-S-`` |
+| pixman/0.32.6 | ``-SA`` |
+| pixman/0.32.6-foss-2015b | ``-S-`` |
+| pixman/0.32.6-intel-2015b | ``-S-`` |
+| pkg-config/0.27.1 | ``-SA`` |
+| pkg-config/0.27.1-foss-2015b | ``-S-`` |
+| pkg-config/0.27.1-foss-2015g | ``-S-`` |
+| pkg-config/0.27.1-intel-2015b | ``-SA`` |
+| pkg-config/0.29 | ``-S-`` |
+| pkg-config/0.29-foss-2016a | ``-SA`` |
+| pkg-config/0.29-intel-2016a | ``-S-`` |
+| pkg-config/0.29.1-foss-2016a | ``-S-`` |
+| pkg-config/0.29.1-intel-2016a | ``-S-`` |
+| plasma/2.6.0 | ``--A`` |
+| prace | ``--A`` |
+| prace/20160107-intel-2016.01 | ``-S-`` |
+| python-meep/1.4.2-intel-2015b-Python-2.7.9-Meep-1.3 | ``-S-`` |
+| python/2.7.5 | ``--A`` |
+| python/2.7.6 | ``--A`` |
+| python/3.3.2 | ``--A`` |
+| python/3.3.5 | ``--A`` |
+| python/3.4.2 | ``--A`` |
+| qemu/2.1.0 | ``--A`` |
+| qemu/2.1.0-vde2 | ``--A`` |
+| qemu/2.1.2 | ``--A`` |
+| qemu/2.1.2-vde2 | ``--A`` |
+| racket/6.0.1 | ``--A`` |
+| relion/1.2 | ``--A`` |
+| relion/1.3 | ``--A`` |
+| renderproto/0.11 | ``-SA`` |
+| renderproto/0.11-intel-2015b | ``-S-`` |
+| ruby/2.0.0-p247 | ``--A`` |
+| samtools/0.1.19 | ``--A`` |
+| scalasca2/2.0-gcc-openmpi | ``--A`` |
+| scalasca2/2.0-icc-impi | ``--A`` |
+| scite/3.4.3 | ``--A`` |
+| scorep/1.2.3-gcc-openmpi | ``--A`` |
+| scorep/1.2.3-icc-impi | ``--A`` |
+| settarg/7.2.2 | ``-SA`` |
+| slepc/3.4.4-icc15-impi-mkl-dbg | ``--A`` |
+| slepc/3.4.4-icc15-impi-mkl-opt | ``--A`` |
+| slepc/3.7.2-icc16-impi5-mkl-dbg | ``--A`` |
+| slepc/3.7.2-icc16-impi5-mkl-opt | ``--A`` |
+| snpEff/3.6 | ``--A`` |
+| spGPU/master-GCC-4.9.3-2.25 | ``--A`` |
+| spatialindex/1.8.5-foss-2015g | ``-S-`` |
+| sympy/0.7.6-intel-2015b-Python-2.7.9 | ``-S-`` |
+| sympy/0.7.6-intel-2016.01-Python-2.7.9 | ``-S-`` |
+| sympy/0.7.6.1-intel-2015b-Python-2.7.11 | ``-S-`` |
+| szip/2.1 | ``--A`` |
+| tbb/13.5.192 | ``--A`` |
+| tbb/14.0.1 | ``--A`` |
+| tbb/15.2.164 | ``--A`` |
+| tbb/15.3.187 | ``--A`` |
+| tbb/4.3.5.187 | ``-S-`` |
+| tbb/4.4.2.152 | ``-SA`` |
+| tcl/8.5.15 | ``--A`` |
+| tcsh/6.18.01-intel-2015b | ``-S-`` |
+| tcsh/6.19.00 | ``-SA`` |
+| tk/8.5.15 | ``--A`` |
+| totalview/8.12 | ``--A`` |
+| totalview/8.13 | ``--A`` |
+| trilinos/11.2.3-gcc-openmpi-mkl-dbg | ``--A`` |
+| trilinos/11.2.3-gcc-openmpi-mkl-opt | ``--A`` |
+| trilinos/11.2.3-icc | ``--A`` |
+| turbovnc/1.2.2 | ``--A`` |
+| turbovnc/1.2.3 | ``-S-`` |
+| use.own | ``--A`` |
+| util-linux/2.26.1 | ``-SA`` |
+| util-linux/2.26.1-foss-2015g | ``-S-`` |
+| util-linux/2.28-intel-2016a | ``--A`` |
+| valgrind/3.9.0-impi | ``--A`` |
+| vampir/8.2 | ``--A`` |
+| vde2/2.3.2 | ``--A`` |
+| virtualgl/2.4 | ``--A`` |
+| vtune_xe/2013.15 | ``--A`` |
+| vtune_xe/2015.3.0.403110 | ``--A`` |
+| wien2k/13.1 | ``--A`` |
+| wien2k/14.2 | ``--A`` |
+| wine/1.7.29 | ``--A`` |
+| xbitmaps/1.1.1 | ``-SA`` |
+| xbitmaps/1.1.1-foss-2015g | ``-S-`` |
+| xbitmaps/1.1.1-intel-2015b | ``-S-`` |
+| xcb-proto/1.10-Python-2.7.8 | ``-S-`` |
+| xcb-proto/1.11 | ``-S-`` |
+| xcb-proto/1.11-Python-2.7.9 | ``-SA`` |
+| xcb-proto/1.11-foss-2015g-Python-2.7.9 | ``-S-`` |
+| xcb-proto/1.11-intel-2015b-Python-2.7.9 | ``-S-`` |
+| xdrfile/1.1.4-foss-2015g | ``-SA`` |
+| xdrfile/1.1.4-foss-2016a | ``--A`` |
+| xdrfile/1.1.4-intel-2015b | ``--A`` |
+| xextproto/7.3.0 | ``-SA`` |
+| xextproto/7.3.0-foss-2015g | ``-S-`` |
+| xextproto/7.3.0-foss-2016a | ``-S-`` |
+| xextproto/7.3.0-intel-2015b | ``-S-`` |
+| xextproto/7.3.0-intel-2016a | ``-S-`` |
+| xineramaproto/1.2.1 | ``-SA`` |
+| xineramaproto/1.2.1-intel-2015b | ``-S-`` |
+| xorg-macros/1.17 | ``-SA`` |
+| xorg-macros/1.17-foss-2015g | ``-S-`` |
+| xorg-macros/1.19.0-foss-2016a | ``-S-`` |
+| xorg-macros/1.19.0-intel-2016a | ``-S-`` |
+| xproto/7.0.26 | ``-SA`` |
+| xproto/7.0.26-foss-2015g | ``-S-`` |
+| xproto/7.0.26-intel-2015b | ``-S-`` |
+| xproto/7.0.28 | ``-S-`` |
+| xproto/7.0.28-foss-2016a | ``-S-`` |
+| xproto/7.0.28-intel-2016a | ``-S-`` |
+| xtrans/1.3.4 | ``--A`` |
+| xtrans/1.3.4-intel-2015b | ``-S-`` |
+| xtrans/1.3.5 | ``-SA`` |
+| xtrans/1.3.5-foss-2015g | ``-S-`` |
+| xtrans/1.3.5-foss-2016a | ``-S-`` |
+| xtrans/1.3.5-intel-2015b | ``-S-`` |
+| xtrans/1.3.5-intel-2016a | ``-S-`` |
+| zlib/1.2.5 | ``--A`` |
+| zlib/1.2.8-GCC-4.9.3 | ``--A`` |
diff --git a/docs.it4i/anselm-cluster-documentation/software/intel-xeon-phi.md b/docs.it4i/anselm-cluster-documentation/software/intel-xeon-phi.md
index 8ea1ba38a2798804b67e164d9e97eeed623bb5d8..80e76efecfacbe0a7158a13c0ca4658a695053ff 100644
--- a/docs.it4i/anselm-cluster-documentation/software/intel-xeon-phi.md
+++ b/docs.it4i/anselm-cluster-documentation/software/intel-xeon-phi.md
@@ -19,7 +19,7 @@ To set up the environment module "Intel" has to be loaded
     $ module load intel/13.5.192
 ```
 
-Information about the hardware can be obtained by running the micinfo program on the host.
+Information about the hardware can be obtained by running the micinfo program on the host.
 
 ```bash
     $ /usr/bin/micinfo
@@ -32,61 +32,61 @@ The output of the "micinfo" utility executed on one of the Anselm node is as fol
 
     Created Mon Jul 22 00:23:50 2013
 
-            System Info
-                    HOST OS                 : Linux
-                    OS Version              : 2.6.32-279.5.2.bl6.Bull.33.x86_64
-                    Driver Version          : 6720-15
-                    MPSS Version            : 2.1.6720-15
-                    Host Physical Memory    : 98843 MB
+            System Info
+                    HOST OS                 : Linux
+                    OS Version              : 2.6.32-279.5.2.bl6.Bull.33.x86_64
+                    Driver Version          : 6720-15
+                    MPSS Version            : 2.1.6720-15
+                    Host Physical Memory    : 98843 MB
 
     Device No: 0, Device Name: mic0
 
-            Version
-                    Flash Version            : 2.1.03.0386
-                    SMC Firmware Version     : 1.15.4830
-                    SMC Boot Loader Version  : 1.8.4326
-                    uOS Version              : 2.6.38.8-g2593b11
-                    Device Serial Number     : ADKC30102482
-
-            Board
-                    Vendor ID                : 0x8086
-                    Device ID                : 0x2250
-                    Subsystem ID             : 0x2500
-                    Coprocessor Stepping ID  : 3
-                    PCIe Width               : x16
-                    PCIe Speed               : 5 GT/s
-                    PCIe Max payload size    : 256 bytes
-                    PCIe Max read req size   : 512 bytes
-                    Coprocessor Model        : 0x01
-                    Coprocessor Model Ext    : 0x00
-                    Coprocessor Type         : 0x00
-                    Coprocessor Family       : 0x0b
-                    Coprocessor Family Ext   : 0x00
-                    Coprocessor Stepping     : B1
-                    Board SKU                : B1PRQ-5110P/5120D
-                    ECC Mode                 : Enabled
-                    SMC HW Revision          : Product 225W Passive CS
-
-            Cores
-                    Total No of Active Cores : 60
-                    Voltage                  : 1032000 uV
-                    Frequency                : 1052631 kHz
-
-            Thermal
-                    Fan Speed Control        : N/A
-                    Fan RPM                  : N/A
-                    Fan PWM                  : N/A
-                    Die Temp                 : 49 C
-
-            GDDR
-                    GDDR Vendor              : Elpida
-                    GDDR Version             : 0x1
-                    GDDR Density             : 2048 Mb
-                    GDDR Size                : 7936 MB
-                    GDDR Technology          : GDDR5
-                    GDDR Speed               : 5.000000 GT/s
-                    GDDR Frequency           : 2500000 kHz
-                    GDDR Voltage             : 1501000 uV
+            Version
+                    Flash Version            : 2.1.03.0386
+                    SMC Firmware Version     : 1.15.4830
+                    SMC Boot Loader Version  : 1.8.4326
+                    uOS Version              : 2.6.38.8-g2593b11
+                    Device Serial Number     : ADKC30102482
+
+            Board
+                    Vendor ID                : 0x8086
+                    Device ID                : 0x2250
+                    Subsystem ID             : 0x2500
+                    Coprocessor Stepping ID  : 3
+                    PCIe Width               : x16
+                    PCIe Speed               : 5 GT/s
+                    PCIe Max payload size    : 256 bytes
+                    PCIe Max read req size   : 512 bytes
+                    Coprocessor Model        : 0x01
+                    Coprocessor Model Ext    : 0x00
+                    Coprocessor Type         : 0x00
+                    Coprocessor Family       : 0x0b
+                    Coprocessor Family Ext   : 0x00
+                    Coprocessor Stepping     : B1
+                    Board SKU                : B1PRQ-5110P/5120D
+                    ECC Mode                 : Enabled
+                    SMC HW Revision          : Product 225W Passive CS
+
+            Cores
+                    Total No of Active Cores : 60
+                    Voltage                  : 1032000 uV
+                    Frequency                : 1052631 kHz
+
+            Thermal
+                    Fan Speed Control        : N/A
+                    Fan RPM                  : N/A
+                    Fan PWM                  : N/A
+                    Die Temp                 : 49 C
+
+            GDDR
+                    GDDR Vendor              : Elpida
+                    GDDR Version             : 0x1
+                    GDDR Density             : 2048 Mb
+                    GDDR Size                : 7936 MB
+                    GDDR Technology          : GDDR5
+                    GDDR Speed               : 5.000000 GT/s
+                    GDDR Frequency           : 2500000 kHz
+                    GDDR Voltage             : 1501000 uV
 ```
 
 Offload Mode
@@ -113,16 +113,16 @@ A very basic example of code that employs offload programming technique is shown
 
     int main(int argc, char* argv[])
     {
-        const int niter = 100000;
-        double result = 0;
-
-     #pragma offload target(mic)
-        for (int i = 0; i < niter; ++i) {
-            const double t = (i + 0.5) / niter;
-            result += 4.0 / (t * t + 1.0);
-        }
-        result /= niter;
-        std::cout << "Pi ~ " << result << 'n';
+        const int niter = 100000;
+        double result = 0;
+
+     #pragma offload target(mic)
+        for (int i = 0; i < niter; ++i) {
+            const double t = (i + 0.5) / niter;
+            result += 4.0 / (t * t + 1.0);
+        }
+        result /= niter;
+        std::cout << "Pi ~ " << result << 'n';
     }
 ```
 
@@ -159,63 +159,63 @@ One way of paralelization a code for Xeon Phi is using OpenMP directives. The fo
 
     // MIC function to add two vectors
     __attribute__((target(mic))) add_mic(T *a, T *b, T *c, int size) {
-      int i = 0;
-      #pragma omp parallel for
-        for (i = 0; i < size; i++)
-          c[i] = a[i] + b[i];
+      int i = 0;
+      #pragma omp parallel for
+        for (i = 0; i < size; i++)
+          c[i] = a[i] + b[i];
     }
 
     // CPU function to add two vectors
     void add_cpu (T *a, T *b, T *c, int size) {
-      int i;
-      for (i = 0; i < size; i++)
-        c[i] = a[i] + b[i];
+      int i;
+      for (i = 0; i < size; i++)
+        c[i] = a[i] + b[i];
     }
 
     // CPU function to generate a vector of random numbers
     void random_T (T *a, int size) {
-      int i;
-      for (i = 0; i < size; i++)
-        a[i] = rand() % 10000; // random number between 0 and 9999
+      int i;
+      for (i = 0; i < size; i++)
+        a[i] = rand() % 10000; // random number between 0 and 9999
     }
 
     // CPU function to compare two vectors
     int compare(T *a, T *b, T size ){
-      int pass = 0;
-      int i;
-      for (i = 0; i < size; i++){
-        if (a[i] != b[i]) {
-          printf("Value mismatch at location %d, values %d and %dn",i, a[i], b[i]);
-          pass = 1;
-        }
-      }
-      if (pass == 0) printf ("Test passedn"); else printf ("Test Failedn");
-      return pass;
+      int pass = 0;
+      int i;
+      for (i = 0; i < size; i++){
+        if (a[i] != b[i]) {
+          printf("Value mismatch at location %d, values %d and %dn",i, a[i], b[i]);
+          pass = 1;
+        }
+      }
+      if (pass == 0) printf ("Test passedn"); else printf ("Test Failedn");
+      return pass;
     }
 
     int main()
     {
-      int i;
-      random_T(in1, SIZE);
-      random_T(in2, SIZE);
+      int i;
+      random_T(in1, SIZE);
+      random_T(in2, SIZE);
 
-      #pragma offload target(mic) in(in1,in2)  inout(res)
-      {
+      #pragma offload target(mic) in(in1,in2)  inout(res)
+      {
 
-        // Parallel loop from main function
-        #pragma omp parallel for
-        for (i=0; i<SIZE; i++)
-          res[i] = in1[i] + in2[i];
+        // Parallel loop from main function
+        #pragma omp parallel for
+        for (i=0; i<SIZE; i++)
+          res[i] = in1[i] + in2[i];
 
-        // or parallel loop is called inside the function
-        add_mic(in1, in2, res, SIZE);
+        // or parallel loop is called inside the function
+        add_mic(in1, in2, res, SIZE);
 
-      }
+      }
 
-      //Check the results with CPU implementation
-      T res_cpu[SIZE];
-      add_cpu(in1, in2, res_cpu, SIZE);
-      compare(res, res_cpu, SIZE);
+      //Check the results with CPU implementation
+      T res_cpu[SIZE];
+      add_cpu(in1, in2, res_cpu, SIZE);
+      compare(res, res_cpu, SIZE);
 
     }
 ```
@@ -282,48 +282,48 @@ Following example show how to automatically offload an SGEMM (single precision -
 
     int main(int argc, char **argv)
     {
-            float *A, *B, *C; /* Matrices */
+            float *A, *B, *C; /* Matrices */
 
-            MKL_INT N = 2560; /* Matrix dimensions */
-            MKL_INT LD = N; /* Leading dimension */
-            int matrix_bytes; /* Matrix size in bytes */
-            int matrix_elements; /* Matrix size in elements */
+            MKL_INT N = 2560; /* Matrix dimensions */
+            MKL_INT LD = N; /* Leading dimension */
+            int matrix_bytes; /* Matrix size in bytes */
+            int matrix_elements; /* Matrix size in elements */
 
-            float alpha = 1.0, beta = 1.0; /* Scaling factors */
-            char transa = 'N', transb = 'N'; /* Transposition options */
+            float alpha = 1.0, beta = 1.0; /* Scaling factors */
+            char transa = 'N', transb = 'N'; /* Transposition options */
 
-            int i, j; /* Counters */
+            int i, j; /* Counters */
 
-            matrix_elements = N * N;
-            matrix_bytes = sizeof(float) * matrix_elements;
+            matrix_elements = N * N;
+            matrix_bytes = sizeof(float) * matrix_elements;
 
-            /* Allocate the matrices */
-            A = malloc(matrix_bytes); B = malloc(matrix_bytes); C = malloc(matrix_bytes);
+            /* Allocate the matrices */
+            A = malloc(matrix_bytes); B = malloc(matrix_bytes); C = malloc(matrix_bytes);
 
-            /* Initialize the matrices */
-            for (i = 0; i < matrix_elements; i++) {
-                    A[i] = 1.0; B[i] = 2.0; C[i] = 0.0;
-            }
+            /* Initialize the matrices */
+            for (i = 0; i < matrix_elements; i++) {
+                    A[i] = 1.0; B[i] = 2.0; C[i] = 0.0;
+            }
 
-            printf("Computing SGEMM on the hostn");
-            sgemm(&transa, &transb, &N, &N, &N, &alpha, A, &N, B, &N, &beta, C, &N);
+            printf("Computing SGEMM on the hostn");
+            sgemm(&transa, &transb, &N, &N, &N, &alpha, A, &N, B, &N, &beta, C, &N);
 
-            printf("Enabling Automatic Offloadn");
-            /* Alternatively, set environment variable MKL_MIC_ENABLE=1 */
-            mkl_mic_enable();
+            printf("Enabling Automatic Offloadn");
+            /* Alternatively, set environment variable MKL_MIC_ENABLE=1 */
+            mkl_mic_enable();
 
-            int ndevices = mkl_mic_get_device_count(); /* Number of MIC devices */
-            printf("Automatic Offload enabled: %d MIC devices presentn",   ndevices);
+            int ndevices = mkl_mic_get_device_count(); /* Number of MIC devices */
+            printf("Automatic Offload enabled: %d MIC devices presentn",   ndevices);
 
-            printf("Computing SGEMM with automatic workdivisionn");
-            sgemm(&transa, &transb, &N, &N, &N, &alpha, A, &N, B, &N, &beta, C, &N);
+            printf("Computing SGEMM with automatic workdivisionn");
+            sgemm(&transa, &transb, &N, &N, &N, &alpha, A, &N, B, &N, &beta, C, &N);
 
-            /* Free the matrix memory */
-            free(A); free(B); free(C);
+            /* Free the matrix memory */
+            free(A); free(B); free(C);
 
-            printf("Donen");
+            printf("Donen");
 
-        return 0;
+        return 0;
     }
 ```
 
@@ -349,10 +349,10 @@ The output of a code should look similar to following listing, where lines start
     Enabling Automatic Offload
     Automatic Offload enabled: 1 MIC devices present
     Computing SGEMM with automatic workdivision
-    [MKL] [MIC --] [AO Function]    SGEMM
-    [MKL] [MIC --] [AO SGEMM Workdivision]  0.00 1.00
-    [MKL] [MIC 00] [AO SGEMM CPU Time]      0.463351 seconds
-    [MKL] [MIC 00] [AO SGEMM MIC Time]      0.179608 seconds
+    [MKL] [MIC --] [AO Function]    SGEMM
+    [MKL] [MIC --] [AO SGEMM Workdivision]  0.00 1.00
+    [MKL] [MIC 00] [AO SGEMM CPU Time]      0.463351 seconds
+    [MKL] [MIC 00] [AO SGEMM MIC Time]      0.179608 seconds
     [MKL] [MIC 00] [AO SGEMM CPU->MIC Data] 52428800 bytes
     [MKL] [MIC 00] [AO SGEMM MIC->CPU Data] 26214400 bytes
     Done
@@ -479,23 +479,23 @@ After executing the complied binary file, following output should be displayed.
 
     Number of available platforms: 1
     Platform names:
-        [0] Intel(R) OpenCL [Selected]
+        [0] Intel(R) OpenCL [Selected]
     Number of devices available for each type:
-        CL_DEVICE_TYPE_CPU: 1
-        CL_DEVICE_TYPE_GPU: 0
-        CL_DEVICE_TYPE_ACCELERATOR: 1
+        CL_DEVICE_TYPE_CPU: 1
+        CL_DEVICE_TYPE_GPU: 0
+        CL_DEVICE_TYPE_ACCELERATOR: 1
 
     ** Detailed information for each device ***
 
     CL_DEVICE_TYPE_CPU[0]
-        CL_DEVICE_NAME:        Intel(R) Xeon(R) CPU E5-2470 0 @ 2.30GHz
-        CL_DEVICE_AVAILABLE: 1
+        CL_DEVICE_NAME:        Intel(R) Xeon(R) CPU E5-2470 0 @ 2.30GHz
+        CL_DEVICE_AVAILABLE: 1
 
     ...
 
     CL_DEVICE_TYPE_ACCELERATOR[0]
-        CL_DEVICE_NAME: Intel(R) Many Integrated Core Acceleration Card
-        CL_DEVICE_AVAILABLE: 1
+        CL_DEVICE_NAME: Intel(R) Many Integrated Core Acceleration Card
+        CL_DEVICE_AVAILABLE: 1
 
     ...
 ```
@@ -579,23 +579,23 @@ An example of basic MPI version of "hello-world" example in C language, that can
     #include <mpi.h>
 
     int main (argc, argv)
-         int argc;
-         char *argv[];
+         int argc;
+         char *argv[];
     {
-      int rank, size;
+      int rank, size;
 
-      int len;
-      char node[MPI_MAX_PROCESSOR_NAME];
+      int len;
+      char node[MPI_MAX_PROCESSOR_NAME];
 
-      MPI_Init (&argc, &argv);      /* starts MPI */
-      MPI_Comm_rank (MPI_COMM_WORLD, &rank);        /* get current process id */
-      MPI_Comm_size (MPI_COMM_WORLD, &size);        /* get number of processes */
+      MPI_Init (&argc, &argv);      /* starts MPI */
+      MPI_Comm_rank (MPI_COMM_WORLD, &rank);        /* get current process id */
+      MPI_Comm_size (MPI_COMM_WORLD, &size);        /* get number of processes */
 
-      MPI_Get_processor_name(node,&len);
+      MPI_Get_processor_name(node,&len);
 
-      printf( "Hello world from process %d of %d on host %s n", rank, size, node );
-      MPI_Finalize();
-      return 0;
+      printf( "Hello world from process %d of %d on host %s n", rank, size, node );
+      MPI_Finalize();
+      return 0;
     }
 ```
 
@@ -722,8 +722,8 @@ The output should be again similar to:
 	Please note that the **"mpiexec.hydra"** requires a file the MIC filesystem. If the file is missing please contact the system administrators. A simple test to see if the file is present is to execute:
 
 ```bash
-      $ ssh mic0 ls /bin/pmi_proxy
-      /bin/pmi_proxy
+      $ ssh mic0 ls /bin/pmi_proxy
+      /bin/pmi_proxy
 ```
 
 **Execution on host - MPI processes distributed over multiple accelerators on multiple nodes**
@@ -769,8 +769,8 @@ The launch the MPI program use:
 ```bash
     $ mpiexec.hydra -genv LD_LIBRARY_PATH /apps/intel/impi/4.1.1.036/mic/lib/
      -genv I_MPI_FABRICS_LIST tcp
-     -genv I_MPI_FABRICS shm:tcp
-     -genv I_MPI_TCP_NETMASK=10.1.0.0/16
+     -genv I_MPI_FABRICS shm:tcp
+     -genv I_MPI_TCP_NETMASK=10.1.0.0/16
      -host cn204-mic0 -n 4 ~/mpi-test-mic
     : -host cn205-mic0 -n 6 ~/mpi-test-mic
 ```
@@ -779,8 +779,8 @@ or using mpirun:
 ```bash
     $ mpirun -genv LD_LIBRARY_PATH /apps/intel/impi/4.1.1.036/mic/lib/
      -genv I_MPI_FABRICS_LIST tcp
-     -genv I_MPI_FABRICS shm:tcp
-     -genv I_MPI_TCP_NETMASK=10.1.0.0/16
+     -genv I_MPI_FABRICS shm:tcp
+     -genv I_MPI_TCP_NETMASK=10.1.0.0/16
      -host cn204-mic0 -n 4 ~/mpi-test-mic
     : -host cn205-mic0 -n 6 ~/mpi-test-mic
 ```
@@ -805,8 +805,8 @@ The same way MPI program can be executed on multiple hosts:
 ```bash
     $ mpiexec.hydra -genv LD_LIBRARY_PATH /apps/intel/impi/4.1.1.036/mic/lib/
      -genv I_MPI_FABRICS_LIST tcp
-     -genv I_MPI_FABRICS shm:tcp
-     -genv I_MPI_TCP_NETMASK=10.1.0.0/16
+     -genv I_MPI_FABRICS shm:tcp
+     -genv I_MPI_TCP_NETMASK=10.1.0.0/16
      -host cn204 -n 4 ~/mpi-test
     : -host cn205 -n 6 ~/mpi-test
 ```
@@ -822,7 +822,7 @@ In the previous section we have compiled two binary files, one for hosts "**mpi-
     $ mpiexec.hydra
      -genv I_MPI_FABRICS_LIST tcp
      -genv I_MPI_FABRICS shm:tcp
-     -genv I_MPI_TCP_NETMASK=10.1.0.0/16
+     -genv I_MPI_TCP_NETMASK=10.1.0.0/16
      -genv LD_LIBRARY_PATH /apps/intel/impi/4.1.1.036/mic/lib/
      -host cn205 -n 2 ~/mpi-test
     : -host cn205-mic0 -n 2 ~/mpi-test-mic
@@ -851,7 +851,7 @@ An example of a machine file that uses 2 >hosts (**cn205** and **cn206**) and 2
     cn206-mic0:2
 ```
 
-In addition if a naming convention is set in a way that the name of the binary for host is **"bin_name"**  and the name of the binary for the accelerator is **"bin_name-mic"** then by setting up the environment variable **I_MPI_MIC_POSTFIX** to **"-mic"** user do not have to specify the names of booth binaries. In this case mpirun needs just the name of the host binary file (i.e. "mpi-test") and uses the suffix to get a name of the binary for accelerator (i..e. "mpi-test-mic").
+In addition if a naming convention is set in a way that the name of the binary for host is **"bin_name"**  and the name of the binary for the accelerator is **"bin_name-mic"** then by setting up the environment variable **I_MPI_MIC_POSTFIX** to **"-mic"** user do not have to specify the names of booth binaries. In this case mpirun needs just the name of the host binary file (i.e. "mpi-test") and uses the suffix to get a name of the binary for accelerator (i..e. "mpi-test-mic").
 
 ```bash
     $ export I_MPI_MIC_POSTFIX=-mic
@@ -864,8 +864,8 @@ To run the MPI code using mpirun and the machine file "hosts_file_mix" use:
      -genv I_MPI_FABRICS shm:tcp
      -genv LD_LIBRARY_PATH /apps/intel/impi/4.1.1.036/mic/lib/
      -genv I_MPI_FABRICS_LIST tcp
-     -genv I_MPI_FABRICS shm:tcp
-     -genv I_MPI_TCP_NETMASK=10.1.0.0/16
+     -genv I_MPI_FABRICS shm:tcp
+     -genv I_MPI_TCP_NETMASK=10.1.0.0/16
      -machinefile hosts_file_mix
      ~/mpi-test
 ```
@@ -901,4 +901,4 @@ Please note each host or accelerator is listed only per files. User has to speci
 
 Optimization
 ------------
-For more details about optimization techniques please read Intel document [Optimization and Performance Tuning for Intel® Xeon Phi™ Coprocessors](http://software.intel.com/en-us/articles/optimization-and-performance-tuning-for-intel-xeon-phi-coprocessors-part-1-optimization "http://software.intel.com/en-us/articles/optimization-and-performance-tuning-for-intel-xeon-phi-coprocessors-part-1-optimization")
+For more details about optimization techniques please read Intel document [Optimization and Performance Tuning for Intel® Xeon Phi™ Coprocessors](http://software.intel.com/en-us/articles/optimization-and-performance-tuning-for-intel-xeon-phi-coprocessors-part-1-optimization "http://software.intel.com/en-us/articles/optimization-and-performance-tuning-for-intel-xeon-phi-coprocessors-part-1-optimization")
diff --git a/docs.it4i/colors.md b/docs.it4i/colors.md
new file mode 100644
index 0000000000000000000000000000000000000000..568ebd2e4d42ff5ab4514224e469a30c1d07cc6f
--- /dev/null
+++ b/docs.it4i/colors.md
@@ -0,0 +1,62 @@
+## Primary colors
+
+Click on a tile to change the primary color of the theme:
+
+<button data-md-color-primary="red">Red</button>
+<button data-md-color-primary="pink">Pink</button>
+<button data-md-color-primary="purple">Purple</button>
+<button data-md-color-primary="deep-purple">Deep Purple</button>
+<button data-md-color-primary="indigo">Indigo</button>
+<button data-md-color-primary="blue">Blue</button>
+<button data-md-color-primary="light-blue">Light Blue</button>
+<button data-md-color-primary="cyan">Cyan</button>
+<button data-md-color-primary="teal">Teal</button>
+<button data-md-color-primary="green">Green</button>
+<button data-md-color-primary="light-green">Light Green</button>
+<button data-md-color-primary="lime">Lime</button>
+<button data-md-color-primary="yellow">Yellow</button>
+<button data-md-color-primary="amber">Amber</button>
+<button data-md-color-primary="orange">Orange</button>
+<button data-md-color-primary="deep-orange">Deep Orange</button>
+<button data-md-color-primary="brown">Brown</button>
+<button data-md-color-primary="grey">Grey</button>
+<button data-md-color-primary="blue-grey">Blue Grey</button>
+
+<script>
+  var buttons = document.querySelectorAll("button[data-md-color-primary]");
+  Array.prototype.forEach.call(buttons, function(button) {
+    button.addEventListener("click", function() {
+      document.body.dataset.mdColorPrimary = this.dataset.mdColorPrimary;
+    })
+  })
+</script>
+
+## Accent colors
+
+Click on a tile to change the accent color of the theme:
+
+<button data-md-color-accent="red">Red</button>
+<button data-md-color-accent="pink">Pink</button>
+<button data-md-color-accent="purple">Purple</button>
+<button data-md-color-accent="deep-purple">Deep Purple</button>
+<button data-md-color-accent="indigo">Indigo</button>
+<button data-md-color-accent="blue">Blue</button>
+<button data-md-color-accent="light-blue">Light Blue</button>
+<button data-md-color-accent="cyan">Cyan</button>
+<button data-md-color-accent="teal">Teal</button>
+<button data-md-color-accent="green">Green</button>
+<button data-md-color-accent="light-green">Light Green</button>
+<button data-md-color-accent="lime">Lime</button>
+<button data-md-color-accent="yellow">Yellow</button>
+<button data-md-color-accent="amber">Amber</button>
+<button data-md-color-accent="orange">Orange</button>
+<button data-md-color-accent="deep-orange">Deep Orange</button>
+
+<script>
+  var buttons = document.querySelectorAll("button[data-md-color-accent]");
+  Array.prototype.forEach.call(buttons, function(button) {
+    button.addEventListener("click", function() {
+      document.body.dataset.mdColorAccent = this.dataset.mdColorAccent;
+    })
+  })
+</script>
diff --git a/docs.it4i/modules-anselm.md b/docs.it4i/modules-anselm.md
index 0228c7703745e279211ac599ee4fec88caee8f0e..b4f8e8406a6296a71e2f533018f3bf38ccd04eda 100644
--- a/docs.it4i/modules-anselm.md
+++ b/docs.it4i/modules-anselm.md
@@ -1,3 +1,371 @@
-| Name | Version |
-| ---- | ------: |
-| modulename  | 1.0.1 |
\ No newline at end of file
+# List of Available Modules
+
+## Core
+
+|Module|Description|Available versions|
+|--|--|--|
+|**lmod**|&nbsp;|<nobr>7.2.2.lua</nobr>|
+|**settarg**|&nbsp;|<nobr>7.2.2.lua</nobr>|
+
+## All
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[almost](http://www-almost.ch.cam.ac.uk/site)**|all atom molecular simulation toolkit - is a fast and flexible molecular modeling environment that provides powerful and efficient algorithms for molecular simulation, homology modeling, de novo design and ab-initio calculations.|<nobr>2.1.0-foss-2015g</br>2.1.0-foss-2016a</nobr>|
+|**[Amber](http://ambermd.org)**|A set of molecular mechanical force fields for the simulation of biomolecules|<nobr>14</nobr>|
+|**[APR](http://apr.apache.org/)**|Apache Portable Runtime (APR) libraries.|<nobr>1.5.2-foss-2015g</br>1.5.2</nobr>|
+|**[APR-util](http://apr.apache.org/)**|Apache Portable Runtime (APR) util libraries.|<nobr>1.5.4</br>1.5.4-foss-2015g</nobr>|
+|**[Armadillo](http://arma.sourceforge.net/)**|Armadillo is an open-source C++ linear algebra library (matrix maths) aiming towards a good balance between speed and ease of use. Integer, floating point and complex numbers are supported, as well as a subset of trigonometric and statistics functions.|<nobr>7.500.0-foss-2016a-Python-3.5.2</nobr>|
+|**[arpack-ng](http://forge.scilab.org/index.php/p/arpack-ng/)**|ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems.|<nobr>3.3.0-foss-2016a</nobr>|
+|**[ATLAS](http://math-atlas.sourceforge.net)**|ATLAS (Automatically Tuned Linear Algebra Software) is the application of the AEOS (Automated Empirical Optimization of Software) paradigm, with the present emphasis on the Basic Linear Algebra Subprograms (BLAS), a widely used, performance-critical, linear algebra kernel library.|<nobr>3.10.1-GCC-4.9.3-2.25-LAPACK-3.4.2</nobr>|
+|**[Autoconf](http://www.gnu.org/software/autoconf/)**|Autoconf is an extensible package of M4 macros that produce shell scripts to automatically configure software source code packages. These scripts can adapt the packages to many kinds of UNIX-like systems without manual user intervention. Autoconf creates a configuration script for a package from a template file that lists the operating system features that the package can use, in the form of M4 macro calls.|<nobr>2.69</br>2.69-GNU-4.9.3-2.25</br>2.69-intel-2015b</br>2.69-intel-2017.00</br>2.69-foss-2016a</br>2.69-GNU-5.1.0-2.25</nobr>|
+|**[Automake](http://www.gnu.org/software/automake/automake.html)**|Automake: GNU Standards-compliant Makefile generator|<nobr>1.15-GNU-5.1.0-2.25</br>1.15-foss-2016a</br>1.15-GNU-4.9.3-2.25</br>1.15-intel-2015b</br>1.15</br>1.15-intel-2017.00</nobr>|
+|**[Autotools](http://autotools.io)**|This bundle collect the standard GNU build tools: Autoconf, Automake and libtool|<nobr>20150215-GNU-4.9.3-2.25</br>20150215-intel-2017.00</br>20150215-GNU-5.1.0-2.25</br>20150215-intel-2015b</br>20150215-foss-2016a</br>20150215</nobr>|
+|**[Bash](http://www.gnu.org/software/bash)**|Bash is an sh-compatible command language interpreter that executes commands read from the standard input or from a file. Bash also incorporates useful features from the Korn and C shells (ksh and csh).|<nobr>4.3</nobr>|
+|**[binutils](http://directory.fsf.org/project/binutils/)**|binutils: GNU binary utilities|<nobr>2.25</br>2.26-GCCcore-5.4.0</br>2.26</br>2.25-GCC-5.1.0-binutils-2.25</br>2.25-GCCcore-4.9.3</br>2.26-GCCcore-5.3.0</br>2.25-GCC-4.9.3</br>2.25-GCC-4.9.3-binutils-2.25</nobr>|
+|**[Bison](http://www.gnu.org/software/bison)**|Bison is a general-purpose parser generator that converts an annotated context-free grammar into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables.|<nobr>3.0.4-foss-2016a</br>3.0.4-GCC-4.9.3</br>3.0.4</br>2.7-foss-2015g</br>3.0.2</br>3.0.4-GCCcore-5.4.0</br>2.7</br>3.0.4-intel-2015b</br>2.5-intel-2015b</br>3.0.4-GCC-4.9.3-binutils-2.25</br>3.0.4-GCC-5.1.0-binutils-2.25</br>3.0.4-GCCcore-4.9.3</br>3.0.4-GCCcore-5.3.0</nobr>|
+|**[Boost](http://www.boost.org/)**|Boost provides free peer-reviewed portable C++ source libraries.|<nobr>1.58.0-foss-2015g-Python-2.7.9</br>1.60.0-intel-2016a</br>1.59.0-intel-2015b</br>1.60.0-foss-2015g-Python-2.7.9</br>1.61.0-foss-2016a-serial</br>1.60.0-foss-2015g-Python-2.7.9.lua</nobr>|
+|**[byacc](http://invisible-island.net/byacc/byacc.html)**|Berkeley Yacc (byacc) is generally conceded to be the best yacc variant available. In contrast to bison, it is written to avoid dependencies upon a particular compiler.|<nobr>20150711-intel-2015b</br>20120526</br>20120526-foss-2016a</br>20120526-foss-2015g</br>20120526-intel-2015b</nobr>|
+|**[bzip2](http://www.bzip.org/)**|bzip2 is a freely available, patent free, high-quality data compressor. It typically compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical compressors), whilst being around twice as fast at compression and six times faster at decompression.|<nobr>1.0.6-intel-2017.00</br>1.0.6-intel-2016.01</br>1.0.6</br>1.0.6-foss-2016a</br>1.0.6-intel-2016a</br>1.0.6-intel-2015b</br>.1.0.6-foss-2015g.lua</br>1.0.6-foss-2015g</nobr>|
+|**[cairo](http://cairographics.org)**|Cairo is a 2D graphics library with support for multiple output devices. Currently supported output targets include the X Window System (via both Xlib and XCB), Quartz, Win32, image buffers, PostScript, PDF, and SVG file output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB|<nobr>1.12.18</nobr>|
+|**[CMake](http://www.cmake.org)**|CMake, the cross-platform, open-source build system. CMake is a family of tools designed to build, test and package software.|<nobr>3.5.2-intel-2016a</br>3.6.2.lua</br>3.4.1-foss-2016a</br>3.5.2-foss-2016a</br>3.3.1-GCC-4.9.3-2.25</br>3.4.1-intel-2015b</br>3.3.1-foss-2016a</br>3.3.1-foss-2015g</br>3.5.2</nobr>|
+|**[CUDA](https://developer.nvidia.com/cuda-toolkit)**|CUDA (formerly Compute Unified Device Architecture) is a parallel computing platform and programming model created by NVIDIA and implemented by the graphics processing units (GPUs) that they produce. CUDA gives developers access to the virtual instruction set and memory of the parallel computational elements in CUDA GPUs.|<nobr>7.5.18</nobr>|
+|**[cURL](http://curl.haxx.se)**|libcurl is a free and easy-to-use client-side URL transfer library, supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, Kerberos), file transfer resume, http proxy tunneling and more.|<nobr>7.51.0</br>7.37.1-foss-2015g</br>7.37.1</nobr>|
+|**[Doxygen](http://www.doxygen.org)**|Doxygen is a documentation system for C++, C, Java, Objective-C, Python, IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D.|<nobr>1.8.11</nobr>|
+|**[EasyBuild](http://hpcugent.github.com/easybuild/)**|EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.|<nobr>2.6.0</br>2.8.1</br>3.0.0</br>2.7.0</br>3.0.2.lua</br>2.8.0</nobr>|
+|**[expat](http://expat.sourceforge.net/)**|Expat is an XML parser library written in C. It is a stream-oriented parser in which an application registers handlers for things the parser might find in the XML document (like start tags)|<nobr>2.1.0-foss-2015g</br>2.1.0</nobr>|
+|**[ffmpeg](https://www.ffmpeg.org/)**|A complete, cross-platform solution to record, convert and stream audio and video.|<nobr>2.4</nobr>|
+|**[FFTW](http://www.fftw.org)**|FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) in one or more dimensions, of arbitrary input size, and of both real and complex data.|<nobr>3.3.4-intel-2015b</br>3.3.4-gompi-2016.04</br>3.3.4-gompi-2016a</br>3.3.5-intel-2017.00</br>3.3.4-gompi-2015g</nobr>|
+|**[fixesproto](http://www.freedesktop.org/wiki/Software/xlibs)**|X.org FixesProto protocol headers.|<nobr>5.0</nobr>|
+|**[flex](http://flex.sourceforge.net/)**|Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner, sometimes called a tokenizer, is a program which recognizes lexical patterns in text.|<nobr>2.5.39-foss-2015g</br>2.5.39-GCC-5.1.0-binutils-2.25</br>2.6.0</br>2.5.39-GCC-4.9.3-binutils-2.25</br>2.5.39-GCC-4.9.3</br>2.6.0-GCCcore-5.3.0</br>2.5.35-intel-2015b</br>2.6.0-GCCcore-5.4.0</br>2.5.39</br>2.5.39-foss-2016a</br>2.5.39-GCCcore-4.9.3</br>2.5.39-intel-2015b</nobr>|
+|**[FLTK](http://www.fltk.org)**|FLTK is a cross-platform C++ GUI toolkit for UNIX/Linux (X11), Microsoft Windows, and MacOS X. FLTK provides modern GUI functionality without the bloat and supports 3D graphics via OpenGL and its built-in GLUT emulation.|<nobr>1.3.2</nobr>|
+|**[fontconfig](http://www.freedesktop.org/software/fontconfig)**|Fontconfig is a library designed to provide system-wide font configuration, customization and application access.|<nobr>2.11.1</nobr>|
+|**[fontsproto](http://www.freedesktop.org/wiki/Software/xlibs)**|X11 font extension wire protocol|<nobr>2.1.3</nobr>|
+|**[Forge](http://www.allinea.com/products/develop-allinea-forge)**|Allinea Forge is the complete toolsuite for software development - with everything needed to debug, profile, optimize, edit and build C, C++ and FORTRAN applications on Linux for high performance - from single threads through to complex parallel HPC codes with MPI, OpenMP, threads or CUDA.|<nobr>6.0.6</br>5.7</br>6.1.2.lua</br>6.0.5</br>5.1-43967</nobr>|
+|**[foss]((none))**|GNU Compiler Collection (GCC) based compiler toolchain, including OpenMPI for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK.|<nobr>2016a</br>2016.04</br>2015g</nobr>|
+|**[freetype](http://freetype.org)**|FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display servers, font conversion tools, text image generation tools, and many other products as well.|<nobr>2.5.3</nobr>|
+|**[GCC](http://gcc.gnu.org/)**|The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...).|<nobr>4.9.3-binutils-2.25</br>5.1.0-binutils-2.25</br>5.3.0-2.26</br>4.9.3</br>4.9.3-2.25</br>5.3.0-binutils-2.25</nobr>|
+|**[GCCcore](http://gcc.gnu.org/)**|The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...).|<nobr>5.3.0</br>4.9.3</br>5.4.0</nobr>|
+|**[GDAL](http://www.gdal.org/)**|GDAL is a translator library for raster geospatial data formats that is released under an X/MIT style Open Source license by the Open Source Geospatial Foundation. As a library, it presents a single abstract data model to the calling application for all supported formats. It also comes with a variety of useful commandline utilities for data translation and processing.|<nobr>2.1.0-foss-2015g</br>1.9.2-foss-2015g</nobr>|
+|**gettext**|&nbsp;|<nobr>.0.19.2.lua</br>0.19.6-intel-2017.00</br>0.19.6-foss-2016a</br>0.19.4.lua</br>0.19.2</br>0.19.2-foss-2015g</nobr>|
+|**[gimkl]((none))**|GNU Compiler Collection (GCC) based compiler toolchain, next to Intel MPI and Intel MKL (BLAS, (Sca)LAPACK, FFTW).|<nobr>2.11.5</nobr>|
+|**[gimpi]((none))**|GNU Compiler Collection (GCC) based compiler toolchain, next to Intel MPI.|<nobr>2.11.5</nobr>|
+|**git**|&nbsp;|<nobr>2.11.0-GNU-4.9.3-2.25.lua</br>2.8.0-GNU-4.9.3-2.25</nobr>|
+|**[GLib](http://www.gtk.org/)**|GLib is one of the base libraries of the GTK+ project|<nobr>2.40.0</nobr>|
+|**[GMP](http://gmplib.org/)**|GMP is a free library for arbitrary precision arithmetic, operating on signed integers, rational numbers, and floating point numbers.|<nobr>6.1.0-intel-2015b</br>5.0.5</br>6.1.0-foss-2016a</br>6.0.0a</br>6.0.0a-intel-2015b</br>6.1.0-intel-2017.00</br>5.0.5-foss-2015g</nobr>|
+|**[GNU](http://www.gnu.org/software/)**|Compiler-only toolchain with GCC and binutils.|<nobr>4.9.3-2.25</br>5.1.0-2.25</nobr>|
+|**[gompi]((none))**|GNU Compiler Collection (GCC) based compiler toolchain, including OpenMPI for MPI support.|<nobr>2016a</br>2016.04</br>2015g</nobr>|
+|**[GROMACS](http://www.gromacs.org)**|GROMACS is a versatile package to perform molecular dynamics, i.e. simulate the Newtonian equations of motion for systems with hundreds to millions of particles.|<nobr>5.1.2-intel-2015b-hybrid-single-cuda</br>5.1.2-intel-2016a-hybrid</br>5.1.2-intel-2015b-hybrid-single-CUDA-7.5-PLUMED-2.2.1</br>5.1.2-intel-2015b-hybrid-single-CUDA-7.5-PLUMED-2.2.1-test</nobr>|
+|**[GSL](http://www.gnu.org/software/gsl/)**|The GNU Scientific Library (GSL) is a numerical library for C and C++ programmers. The library provides a wide range of mathematical routines such as random number generators, special functions and least-squares fitting.|<nobr>2.1-intel-2015b</br>1.16-intel-2015b</br>1.16-intel-2016.01</nobr>|
+|**[guile](http://www.gnu.org/software/guile)**|Guile is the GNU Ubiquitous Intelligent Language for Extensions, the official extension language for the GNU operating system.|<nobr>1.8.8</br>1.8.8-intel-2015b</br>1.8.8-foss-2016a</nobr>|
+|**[gzip](http://www.gnu.org/software/gzip/)**|gzip (GNU zip) is a popular data compression program as a replacement for compress|<nobr>1.6-foss-2015g</br>1.6</br>1.6-foss-2016a</br>1.6-intel-2015b</nobr>|
+|**[HDF5](http://www.hdfgroup.org/HDF5/)**|HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.|<nobr>1.8.16-foss-2016a</br>1.8.16-intel-2016.01</br>1.8.16-intel-2015b</nobr>|
+|**[hwloc](http://www.open-mpi.org/projects/hwloc/)**|The Portable Hardware Locality (hwloc) software package provides a portable abstraction (across OS, versions, architectures, ...) of the hierarchical topology of modern architectures, including NUMA memory nodes, sockets, shared caches, cores and simultaneous multithreading. It also gathers various system attributes such as cache and memory information as well as the locality of I/O devices such as network interfaces, InfiniBand HCAs or GPUs. It primarily aims at helping applications with gathering information about modern computing hardware so as to exploit it accordingly and efficiently.|<nobr>1.11.0</br>1.11.3-GCC-5.3.0-2.26</br>1.11.1-iccifort-2015.3.187-GNU-4.9.3-2.25</br>1.11.0-GNU-4.9.3-2.25</br>1.11.2-GCC-4.9.3-2.25</br>1.11.0-GNU-5.1.0-2.25</nobr>|
+|**[icc](http://software.intel.com/en-us/intel-compilers/)**|C and C++ compiler from Intel|<nobr>2015.3.187-GNU-5.1.0-2.25</br>2017.0.098-GCC-5.4.0-2.26</br>2016.1.150-GCC-4.9.3-2.25</br>2015.3.187-GNU-4.9.3-2.25</nobr>|
+|**[iccifort](http://software.intel.com/en-us/intel-cluster-toolkit-compiler/)**|Intel C, C++ and Fortran compilers|<nobr>2015.3.187-GNU-5.1.0-2.25</br>2017.0.098-GCC-5.4.0-2.26</br>2016.1.150-GCC-4.9.3-2.25</br>2015.3.187-GNU-4.9.3-2.25</nobr>|
+|**[ifort](http://software.intel.com/en-us/intel-compilers/)**|Fortran compiler from Intel|<nobr>2015.3.187-GNU-5.1.0-2.25</br>2017.0.098-GCC-5.4.0-2.26</br>2016.1.150-GCC-4.9.3-2.25</br>2015.3.187-GNU-4.9.3-2.25</nobr>|
+|**[iimpi](http://software.intel.com/en-us/intel-cluster-toolkit-compiler/)**|Intel C/C++ and Fortran compilers, alongside Intel MPI.|<nobr>8.1.5-GCC-4.9.3-2.25</br>7.3.5-GNU-5.1.0-2.25</br>2017.00-GCC-5.4.0-2.26</br>2016.01-GCC-4.9.3-2.25</nobr>|
+|**[imkl](http://software.intel.com/en-us/intel-mkl/)**|Intel Math Kernel Library is a library of highly optimized, extensively threaded math routines for science, engineering, and financial applications that require maximum performance. Core math functions include BLAS, LAPACK, ScaLAPACK, Sparse Solvers, Fast Fourier Transforms, Vector Math, and more.|<nobr>11.2.3.187-gimpi-2.11.5</br>11.3.1.150-iimpi-2016.01-GCC-4.9.3-2.25</br>2017.0.098-iimpi-2017.00-GCC-5.4.0-2.26</br>11.2.3.187-iimpi-7.3.5-GNU-5.1.0-2.25</br>11.3.1.150-iimpi-8.1.5-GCC-4.9.3-2.25</nobr>|
+|**[impi](http://software.intel.com/en-us/intel-mpi-library/)**|The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.|<nobr>2017.0.098-iccifort-2017.0.098-GCC-5.4.0-2.26</br>5.1.2.150-iccifort-2016.1.150-GCC-4.9.3-2.25</br>5.0.3.048-iccifort-2015.3.187-GNU-5.1.0-2.25</br>5.0.3.048-GCC-4.9.3</nobr>|
+|**[inputproto](http://www.freedesktop.org/wiki/Software/xlibs)**|X.org InputProto protocol headers.|<nobr>2.3</nobr>|
+|**[intel](http://software.intel.com/en-us/intel-cluster-toolkit-compiler/)**|Intel Cluster Toolkit Compiler Edition provides Intel C/C++ and Fortran compilers, Intel MPI & Intel MKL.|<nobr>2017.00</br>2015b</br>2016.01</br>2016a</nobr>|
+|**[ISL](http://isl.gforge.inria.fr/)**|isl is a library for manipulating sets and relations of integer points bounded by linear constraints.|<nobr>0.15</nobr>|
+|**[Java](http://java.com/)**|Java Platform, Standard Edition (Java SE) lets you develop and deploy Java applications on desktops and servers.|<nobr>1.8.0_51</br>1.7.0_79.lua</br>1.7.0_79</nobr>|
+|**[JOE](http://joe-editor.sourceforge.net)**|JOE is a full featured terminal-based screen editor which is distributed under the GNU General Public License (GPL)|<nobr>4.2</nobr>|
+|**[kbproto](http://www.freedesktop.org/wiki/Software/xlibs)**|X.org KBProto protocol headers.|<nobr>1.0.6</nobr>|
+|**[libdrm](http://dri.freedesktop.org)**|Direct Rendering Manager runtime library.|<nobr>2.4.27</nobr>|
+|**[libffi](http://sourceware.org/libffi/)**|The libffi library provides a portable, high level programming interface to various calling conventions. This allows a programmer to call any function specified by a call interface description at run-time.|<nobr>3.2.1-foss-2016a</br>3.0.13</br>3.1-intel-2015b</br>3.0.13-intel-2015b</br>3.1-intel-2016.01</nobr>|
+|**[libfontenc](http://www.freedesktop.org/wiki/Software/xlibs/)**|X11 font encoding library|<nobr>1.1.3</nobr>|
+|**[libgdiplus](https://github.com/mono/libgdiplus)**|An Open Source implementation of the GDI+ API.|<nobr>3.12</nobr>|
+|**[libICE](http://www.freedesktop.org/wiki/Software/xlibs)**|X Inter-Client Exchange library for freedesktop.org|<nobr>1.0.9</nobr>|
+|**[libjpeg-turbo](http://sourceforge.net/projects/libjpeg-turbo/)**|libjpeg-turbo is a fork of the original IJG libjpeg which uses SIMD to accelerate baseline JPEG compression and decompression. libjpeg is a library that implements JPEG image encoding, decoding and transcoding.|<nobr>1.4.0</nobr>|
+|**[libmatheval](http://www.gnu.org/software/libmatheval/)**|GNU libmatheval is a library (callable from C and Fortran) to parse and evaluate symbolic expressions input as text.|<nobr>1.1.8</br>1.1.8-foss-2016a</br>1.1.8-intel-2015b</br>1.1.11-intel-2015b</nobr>|
+|**[libpciaccess](http://cgit.freedesktop.org/xorg/lib/libpciaccess/)**|Generic PCI access library.|<nobr>0.13.1</nobr>|
+|**[libpng](http://www.libpng.org/pub/png/libpng.html)**|libpng is the official PNG reference library|<nobr>1.6.12</nobr>|
+|**[libpthread-stubs](http://xcb.freedesktop.org/)**|The X protocol C-language Binding (XCB) is a replacement for Xlib featuring a small footprint, latency hiding, direct access to the protocol, improved threading support, and extensibility.|<nobr>0.3</nobr>|
+|**[libreadline](http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html)**|The GNU Readline library provides a set of functions for use by applications that allow users to edit command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes additional functions to maintain a list of previously-entered command lines, to recall and perhaps reedit those lines, and perform csh-like history expansion on previous commands.|<nobr>.6.3</br>6.3-intel-2016.01</br>6.3-foss-2015g</br>6.3-foss-2016a</br>6.3-intel-2017.00</br>6.3-gimkl-2.11.5</br>6.3-intel-2015b</br>6.3</nobr>|
+|**[libSM](http://www.freedesktop.org/wiki/Software/xlibs)**|X11 Session Management library, which allows for applications to both manage sessions, and make use of session managers to save and restore their state for later use.|<nobr>1.2.2</nobr>|
+|**[LibTIFF](http://www.remotesensing.org/libtiff/)**|tiff: Library and tools for reading and writing TIFF data files|<nobr>4.0.3</nobr>|
+|**[libtool](http://www.gnu.org/software/libtool)**|GNU libtool is a generic library support script. Libtool hides the complexity of using shared libraries behind a consistent, portable interface.|<nobr>2.4.2</br>2.4.6-foss-2016a</br>2.4.2-foss-2015g</br>2.4.6-intel-2017.00</br>2.4.6-intel-2015b</br>2.4.6-GNU-5.1.0-2.25</br>2.4.6</br>2.4.6-GNU-4.9.3-2.25</nobr>|
+|**[libunistring](http://www.gnu.org/software/libunistring/)**|This library provides functions for manipulating Unicode strings and for manipulating C strings according to the Unicode standard.|<nobr>0.9.3</br>0.9.3-foss-2016a</br>0.9.3-intel-2015b</nobr>|
+|**[libX11](http://www.freedesktop.org/wiki/Software/xlibs)**|X11 client-side library|<nobr>1.6.2-Python-2.7.9</nobr>|
+|**[libXau](http://www.freedesktop.org/wiki/Software/xlibs)**|The libXau package contains a library implementing the X11 Authorization Protocol. This is useful for restricting client access to the display.|<nobr>1.0.8</nobr>|
+|**[libxcb](http://xcb.freedesktop.org/)**|The X protocol C-language Binding (XCB) is a replacement for Xlib featuring a small footprint, latency hiding, direct access to the protocol, improved threading support, and extensibility.|<nobr>1.11-Python-2.7.9</nobr>|
+|**[libXdmcp](http://www.freedesktop.org/wiki/Software/xlibs)**|The libXdmcp package contains a library implementing the X Display Manager Control Protocol. This is useful for allowing clients to interact with the X Display Manager.|<nobr>1.1.2</nobr>|
+|**[libXext](http://www.freedesktop.org/wiki/Software/xlibs)**|Common X Extensions library|<nobr>1.3.3</nobr>|
+|**[libXfixes](http://www.freedesktop.org/wiki/Software/xlibs)**|X Fixes extension library|<nobr>5.0.1</nobr>|
+|**[libXfont](http://www.freedesktop.org/wiki/Software/xlibs)**|X font libary|<nobr>1.5.1-Python-2.7.9</nobr>|
+|**[libxml2](http://xmlsoft.org/)**|Libxml2 is the XML C parser and toolchain developed for the Gnome project (but usable outside of the Gnome platform).|<nobr>2.9.3-intel-2016a</br>2.9.3-foss-2016a</br>2.9.2-intel-2015b</nobr>|
+|**[libXt](http://www.freedesktop.org/wiki/Software/xlibs)**|libXt provides the X Toolkit Intrinsics, an abstract widget library upon which other toolkits are based. Xt is the basis for many toolkits, including the Athena widgets (Xaw), and LessTif (a Motif implementation).|<nobr>1.1.4-libX11-1.6.2</nobr>|
+|**Lmod**|&nbsp;|<nobr>7.2.2.lua</br>7.0.6</br>6.4.2</nobr>|
+|**[Lua](http://www.lua.org/)**|Lua is a powerful, fast, lightweight, embeddable scripting language. Lua combines simple procedural syntax with powerful data description constructs based on associative arrays and extensible semantics. Lua is dynamically typed, runs by interpreting bytecode for a register-based virtual machine, and has automatic memory management with incremental garbage collection, making it ideal for configuration, scripting, and rapid prototyping.|<nobr>.5.1.4-8</br>5.1.4-8.lua</nobr>|
+|**[M4](http://www.gnu.org/software/m4/m4.html)**|GNU M4 is an implementation of the traditional Unix macro processor. It is mostly SVR4 compatible although it has some extensions (for example, handling more than 9 positional parameters to macros). GNU M4 also has built-in functions for including files, running shell commands, doing arithmetic, etc.|<nobr>1.4.17</br>1.4.17-GCCcore-5.3.0</br>1.4.17-GCC-4.9.3</br>1.4.17-GCC-4.9.3-binutils-2.25</br>1.4.17-GCCcore-5.4.0</br>1.4.17-foss-2016a</br>1.4.16-intel-2015b</br>1.4.17-GNU-4.9.3-2.25</br>1.4.17-GCCcore-4.9.3</br>1.4.17-GNU-5.1.0-2.25</br>1.4.17-intel-2015b</br>1.4.17-intel-2017.00</br>1.4.17-GCC-5.1.0-binutils-2.25</nobr>|
+|**[make](http://www.gnu.org/software/make/make.html)**|make-3.82: GNU version of make utility|<nobr>3.82</nobr>|
+|**[makedepend](http://www.linuxfromscratch.org/blfs/view/svn/x/makedepend.html)**|The makedepend package contains a C-preprocessor like utility to determine build-time dependencies.|<nobr>1.0.4</nobr>|
+|**MATLAB**|&nbsp;|<nobr>2015b-EDU</br>2015a-EDU</br>2015b-COM</br>2015a-COM</nobr>|
+|**Maven**|&nbsp;|<nobr>3.3.9.lua</br>3.3.9</nobr>|
+|**[Mercurial](http://mercurial.selenic.com/)**|Mercurial is a free, distributed source control management tool. It efficiently handles projects of any size and offers an easy and intuitive interface.|<nobr>3.7.3-foss-2015g-Python-2.7.9</nobr>|
+|**[MLD2P4](http://www.mld2p4.it)**|MLD2P4 (Multi-Level Domain Decomposition Parallel Preconditioners Package based on PSBLAS) is a package of parallel algebraic multi-level preconditioners. It implements various versions of one-level additive and of multi-level additive and hybrid Schwarz algorithms. In the multi-level case, a purely algebraic approach is applied to generate coarse-level corrections, so that no geometric background is needed concerning the matrix to be preconditioned. The matrix is assumed to be square, real or complex, with a symmetric sparsity pattern.|<nobr>2.0-rc4-GCC-4.9.3-2.25</nobr>|
+|**[MPICH](http://www.mpich.org/)**|MPICH v3.x is an open source high-performance MPI 3.0 implementation. It does not support InfiniBand (use MVAPICH2 with InfiniBand devices).|<nobr>3.2-GCC-4.9.3-2.25</nobr>|
+|**[NASM](http://www.nasm.us/)**|NASM: General-purpose x86 assembler|<nobr>2.11.05</nobr>|
+|**[ncurses](http://www.gnu.org/software/ncurses/)**|The Ncurses (new curses) library is a free software emulation of curses in System V Release 4.0, and more. It uses Terminfo format, supports pads and color and multiple highlights and forms characters and function-key mapping, and has all the other SYSV-curses enhancements over BSD Curses.|<nobr>5.9-intel-2016.01</br>5.9-intel-2015b</br>.6.0</br>5.9-gimkl-2.11.5</br>6.0-foss-2016a</br>5.9-foss-2015g</br>5.9</br>.6.0-intel-2016a.lua</br>5.9-GCC-4.9.3-2.25</br>6.0-intel-2016a</br>6.0-intel-2017.00</br>6.0</br>5.9-GNU-4.9.3-2.25</nobr>|
+|**[numactl](http://oss.sgi.com/projects/libnuma/)**|The numactl program allows you to run your application program on specific cpu's and memory nodes. It does this by supplying a NUMA memory policy to the operating system before running your program. The libnuma library provides convenient ways for you to add NUMA memory policies into your own program.|<nobr>2.0.10-GNU-5.1.0-2.25</br>2.0.11-GCC-5.3.0-2.26</br>2.0.11-GCC-4.9.3-2.25</br>2.0.10-iccifort-2015.3.187-GNU-4.9.3-2.25</br>2.0.11</br>2.0.10-GNU-4.9.3-2.25</br>2.0.10</nobr>|
+|**[numpy](http://www.numpy.org)**|NumPy is the fundamental package for scientific computing with Python. It contains among other things: a powerful N-dimensional array object, sophisticated (broadcasting) functions, tools for integrating C/C++ and Fortran code, useful linear algebra, Fourier transform, and random number capabilities. Besides its obvious scientific uses, NumPy can also be used as an efficient multi-dimensional container of generic data. Arbitrary data-types can be defined. This allows NumPy to seamlessly and speedily integrate with a wide variety of databases.|<nobr>1.8.2-intel-2015b-Python-2.7.9</br>1.8.2-intel-2015b-Python-2.7.11</br>1.8.2-intel-2016.01-Python-2.7.9</nobr>|
+|**[Octave](http://www.gnu.org/software/octave/)**|GNU Octave is a high-level interpreted language, primarily intended for numerical computations.|<nobr>3.8.2-gimkl-2.11.5</br>4.0.0-foss-2015g</br>4.0.1-gimkl-2.11.5</nobr>|
+|**[OPARI2](http://www.score-p.org)**|OPARI2, the successor of Forschungszentrum Juelich's OPARI, is a source-to-source instrumentation tool for OpenMP and hybrid codes. It surrounds OpenMP directives and runtime library calls with calls to the POMP2 measurement interface.|<nobr>2.0</nobr>|
+|**[OpenBLAS](http://xianyi.github.com/OpenBLAS/)**|OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version.|<nobr>0.2.14-GNU-4.9.3-2.25-LAPACK-3.5.0</br>0.2.15-GCC-5.1.0-binutils-2.25-LAPACK-3.6.0</br>0.2.15-GCC-5.1.0-binutils-2.25-LAPACK-3.6.0-gompi-2016a</br>0.2.18-GCC-5.3.0-2.26-LAPACK-3.6.0</br>0.2.15-GCC-4.9.3-2.25-LAPACK-3.6.0</br>0.2.14-GNU-5.1.0-2.25-LAPACK-3.5.0</nobr>|
+|**[OpenMPI](http://www.open-mpi.org/)**|The Open MPI Project is an open source MPI-2 implementation.|<nobr>1.10.2-GCC-5.3.0-2.26</br>1.8.8-iccifort-2015.3.187-GNU-4.9.3-2.25</br>1.8.8-GNU-4.9.3-2.25</br>1.10.2-GCC-4.9.3-2.25</nobr>|
+|**[ORCA](http://cec.mpg.de/forum/)**|ORCA is a flexible, efficient and easy-to-use general purpose tool for quantum chemistry with specific emphasis on spectroscopic properties of open-shell molecules. It features a wide variety of standard quantum chemical methods ranging from semiempirical methods to DFT to single- and multireference correlated ab initio methods. It can also treat environmental and relativistic effects.|<nobr>3_0_3-linux_x86-64</nobr>|
+|**[OTF2](http://www.score-p.org)**|The Open Trace Format 2 is a highly scalable, memory efficient event trace data format plus support library. It is the new standard trace format for Scalasca, Vampir, and TAU and is open for other tools.|<nobr>2.0</nobr>|
+|**[PAPI](http://icl.cs.utk.edu/projects/papi/)**|PAPI provides the tool designer and application engineer with a consistent interface and methodology for use of the performance counter hardware found in most major microprocessors. PAPI enables software engineers to see, in near real time, the relation between software performance and processor events. In addition Component PAPI provides access to a collection of components that expose performance measurement opportunites across the hardware and software stack.|<nobr>5.4.3</nobr>|
+|**[PCRE](http://www.pcre.org/)**|The PCRE library is a set of functions that implement regular expression pattern matching using the same syntax and semantics as Perl 5.|<nobr>8.37</br>8.37-intel-2016.01</br>8.37-gimkl-2.11.5</br>8.37-foss-2015g</nobr>|
+|**[PerformanceReports](http://www.allinea.com/products/allinea-performance-reports)**|Allinea Performance Reports are the most effective way to characterize and understand the performance of HPC application runs. One single-page HTML report elegantly answers a range of vital questions for any HPC site. - Is this application well-optimized for the system and the processors it is running on? - Does it benefit from running at this scale? - Are there I/O, networking or threading bottlenecks affecting performance? - Which hardware, software or configuration changes can we make to improve performance further. - How much energy did this application use?|<nobr>6.0.6</nobr>|
+|**Perl**|&nbsp;|<nobr>5.24.0-GCC-4.9.3-2.25-bare.lua</br>5.20.2-GNU-4.9.3-2.25-bare</nobr>|
+|**[pixman](http://www.pixman.org/)**|Pixman is a low-level software library for pixel manipulation, providing features such as image compositing and trapezoid rasterization. Important users of pixman are the cairo graphics library and the X server.|<nobr>0.32.6</nobr>|
+|**[pkg-config](http://www.freedesktop.org/wiki/Software/pkg-config/)**|pkg-config is a helper tool used when compiling applications and libraries. It helps you insert the correct compiler options on the command line so an application can use gcc -o test test.c `pkg-config --libs --cflags glib-2.0` for instance, rather than hard-coding values on where to find glib (or other libraries).|<nobr>0.27.1</br>0.27.1-intel-2015b</br>0.29-foss-2016a</nobr>|
+|**[PLUMED](http://www.plumed-code.org)**|PLUMED is an open source library for free energy calculations in molecular systems which works together with some of the most popular molecular dynamics engines. Free energy calculations can be performed as a function of many order parameters with a particular focus on biological problems, using state of the art methods such as metadynamics, umbrella sampling and Jarzynski-equation based steered MD. The software, written in C++, can be easily interfaced with both fortran and C/C++ codes.|<nobr>2.2.1-intel-2015b</br>2.3b-foss-2016a</nobr>|
+|**[PSBLAS](http://people.uniroma2.it/salvatore.filippone/psblas/)**|Most computationally intensive applications work on irregular and sparse domains that complicate their implementation on parallel machines. The major goal of the Parallel Sparse Basic Linear Algebra Subroutines (PSBLAS) project is to provide a framework to enable easy, efficient and portable implementations of iterative solvers for linear systems, while shielding the user from most details of their parallelization. The interface is designed keeping in view a Single Program Multiple Data programming model on distributed memory machines.|<nobr>3.3.4-3-GCC-4.9.3-2.25</nobr>|
+|**[PSBLAS-ext](http://people.uniroma2.it/salvatore.filippone/psblas/)**|PSBLAS - Extended formats and NVIDIA GPU support|<nobr>1.0-4-GCC-4.9.3-2.25</nobr>|
+|**[Python](http://python.org/)**|Python is a programming language that lets you work more quickly and integrate your systems more effectively.|<nobr>3.5.2-foss-2016a</br>2.7.9-intel-2015b</br>2.7.9-foss-2015g</br>2.7.9-intel-2016.01</br>3.5.2-intel-2017.00</br>2.7.11-intel-2015b</br>2.7.9</nobr>|
+|**[Qt](http://qt-project.org/)**|Qt is a comprehensive cross-platform C++ application framework.|<nobr>4.8.6</nobr>|
+|**[QuantumESPRESSO](http://www.pwscf.org/)**|Quantum ESPRESSO is an integrated suite of computer codes for electronic-structure calculations and materials modeling at the nanoscale. It is based on density-functional theory, plane waves, and pseudopotentials (both norm-conserving and ultrasoft).|<nobr>5.4.0-intel-2017.00</nobr>|
+|**[renderproto](http://www.freedesktop.org/wiki/Software/xlibs)**|Xrender protocol and ancillary headers|<nobr>0.11</nobr>|
+|**[Ruby](https://www.ruby-lang.org)**|Ruby is a dynamic, open source programming language with a focus on simplicity and productivity. It has an elegant syntax that is natural to read and easy to write.|<nobr>2.3.1</nobr>|
+|**[ScaLAPACK](http://www.netlib.org/scalapack/)**|The ScaLAPACK (or Scalable LAPACK) library includes a subset of LAPACK routines redesigned for distributed memory MIMD parallel computers.|<nobr>2.0.2-gompi-2015g-OpenBLAS-0.2.14-LAPACK-3.5.0</br>2.0.2-gompi-2016.04-OpenBLAS-0.2.18-LAPACK-3.6.0</br>2.0.2-gompi-2016a-OpenBLAS-0.2.15-LAPACK-3.6.0</nobr>|
+|**[ScientificPython](https://sourcesup.cru.fr/projects/scientific-py/)**|ScientificPython is a collection of Python modules for scientific computing. It contains support for geometry, mathematical functions, statistics, physical units, IO, visualization, and parallelization.|<nobr>2.9.4-intel-2016.01-Python-2.7.9</br>2.9.4-intel-2015b-Python-2.7.9</br>2.9.4-intel-2015b-Python-2.7.11</nobr>|
+|**[SCons](http://www.scons.org/)**|SCons is a software construction tool.|<nobr>2.3.6-foss-2015g-Python-2.7.9</nobr>|
+|**[Serf](http://serf.apache.org/)**|The serf library is a high performance C-based HTTP client library built upon the Apache Portable Runtime (APR) library|<nobr>1.3.8-foss-2015g</nobr>|
+|**[SIONlib](http://www.fz-juelich.de/ias/jsc/EN/Expertise/Support/Software/SIONlib/_node.html)**|SIONlib is a scalable I/O library for parallel access to task-local files. The library not only supports writing and reading binary data to or from several thousands of processors into a single or a small number of physical files, but also provides global open and close functions to access SIONlib files in parallel. This package provides a stripped-down installation of SIONlib for use with performance tools (e.g., Score-P), with renamed symbols to avoid conflicts when an application using SIONlib itself is linked against a tool requiring a different SIONlib version.|<nobr>1.6.1-tools</nobr>|
+|**[spGPU](https://github.com/davidebarbieri/spgpu)**|spGPU is a set of custom matrix storages and CUDA kernels for sparse linear algebra computing on GPU. It isn't a replacement for cuBLAS/cuSPARSE that should be used for a full featured linear algebra environment on GPU.|<nobr>master-GCC-4.9.3-2.25</nobr>|
+|**[SQLite](http://www.sqlite.org/)**|SQLite: SQL Database Engine in a C Library|<nobr>3.8.8.1-intel-2015b</br>3.8.8.1-foss-2015g</br>3.8.8.1-foss-2016a</br>3.9.2-intel-2017.00</br>3.8.8.1</br>3.9.2-intel-2015b</br>3.8.8.1-intel-2016.01</br>3.9.2-foss-2016a</nobr>|
+|**[Subversion](http://subversion.apache.org/)**|Subversion is an open source version control system.|<nobr>1.8.16-foss-2015g</nobr>|
+|**[Szip](http://www.hdfgroup.org/doc_resource/SZIP/)**|Szip compression software, providing lossless compression of scientific data|<nobr>2.1-intel-2015b</br>2.1-intel-2016.01</br>2.1-foss-2016a</br>2.1</nobr>|
+|**tbb**|&nbsp;|<nobr>4.4.2.152.lua</br>4.4.2.152</nobr>|
+|**[Tcl](http://www.tcl.tk/)**|Tcl (Tool Command Language) is a very powerful but easy to learn dynamic programming language, suitable for a very wide range of uses, including web and desktop applications, networking, administration, testing and many more.|<nobr>8.6.4</br>8.6.4-intel-2017.00</br>8.6.3-intel-2016.01</br>8.6.3-foss-2016a</br>8.6.3-intel-2015b</br>8.6.4-foss-2016a</br>8.6.4-intel-2015b</br>8.6.3</br>8.6.3-foss-2015g</br>8.5.12</nobr>|
+|**[tcsh](http://www.tcsh.org)**|Tcsh is an enhanced, but completely compatible version of the Berkeley UNIX C shell (csh). It is a command language interpreter usable both as an interactive login shell and a shell script command processor. It includes a command-line editor, programmable word completion, spelling correction, a history mechanism, job control and a C-like syntax.|<nobr>6.19.00</nobr>|
+|**[Tk](http://www.tcl.tk/)**|Tk is an open source, cross-platform widget toolchain that provides a library of basic elements for building a graphical user interface (GUI) in many different programming languages.|<nobr>8.6.4-foss-2016a-no-X11</br>8.6.4-intel-2017.00-no-X11</br>8.6.4-intel-2015b-no-X11</br>8.6.4-no-X11</br>8.5.12</nobr>|
+|**[util-linux](http://www.kernel.org/pub/linux/utils/util-linux)**|Set of Linux utilities|<nobr>2.26.1</br>2.28-intel-2016a.lua</nobr>|
+|**[Vampir](http://www.vampir.eu)**|The Vampir software tool provides an easy-to-use framework that enables developers to quickly display and analyze arbitrary program behavior at any level of detail. The tool suite implements optimized event analysis algorithms and customizable displays that enable fast and interactive rendering of very complex performance monitoring data.|<nobr>8.5.0</nobr>|
+|**VASP**|&nbsp;|<nobr>5.4.1-intel-2015b-24Jun15</br>5.4.1-intel-2017.00-24Jun15</nobr>|
+|**[VTune](http://software.intel.com/en-us/intel-vtune-amplifier-xe)**|Intel VTune Amplifier XE 2016 is the premier performance profiler for C, C++, C#, Fortran, Assembly and Java.|<nobr>2016_update1</nobr>|
+|**[xbitmaps](http://www.freedesktop.org/wiki/Software/xlibs)**|provides bitmaps for x|<nobr>1.1.1</nobr>|
+|**[xcb-proto](http://xcb.freedesktop.org/)**|The X protocol C-language Binding (XCB) is a replacement for Xlib featuring a small footprint, latency hiding, direct access to the protocol, improved threading support, and extensibility.|<nobr>1.11-Python-2.7.9</nobr>|
+|**[xdrfile](http://www.gromacs.org/Developer_Zone/Programming_Guide/XTC_Library)**|XTC library|<nobr>1.1.4-foss-2016a</br>1.1.4-foss-2015g</br>1.1.4-intel-2015b</nobr>|
+|**[xextproto](http://www.freedesktop.org/wiki/Software/xlibs)**|XExtProto protocol headers.|<nobr>7.3.0</nobr>|
+|**[xineramaproto](http://www.freedesktop.org/wiki/Software/xlibs)**|X protocol and ancillary headers for xinerama|<nobr>1.2.1</nobr>|
+|**[xorg-macros](http://cgit.freedesktop.org/xorg/util/macros)**|X.org macros utilities.|<nobr>1.17</nobr>|
+|**[xproto](http://www.freedesktop.org/wiki/Software/xlibs)**|X protocol and ancillary headers|<nobr>7.0.26</nobr>|
+|**[xtrans](http://www.freedesktop.org/wiki/Software/xlibs)**|xtrans includes a number of routines to make X implementations transport-independent; at time of writing, it includes support for UNIX sockets, IPv4, IPv6, and DECnet.|<nobr>1.3.5</br>1.3.4</nobr>|
+|**[XZ](http://tukaani.org/xz/)**|xz: XZ utilities|<nobr>5.2.2-foss-2016a</br>5.2.2-intel-2017.00</br>5.2.2.lua</nobr>|
+|**zlib**|&nbsp;|<nobr>.1.2.8-foss-2015g.lua</br>1.2.8-intel-2015b</br>1.2.8-GCC-5.1.0-binutils-2.25</br>1.2.8-foss-2016a</br>1.2.8-intel-2017.00</br>1.2.8-GCC-4.9.3-binutils-2.25</br>1.2.8-GCCcore-4.9.3</br>1.2.8-foss-2015g</br>1.2.8</br>1.2.8-intel-2016a</br>1.2.8-intel-2016.01</br>1.2.8-GCC-4.9.3</br>1.2.8-GCCcore-5.3.0</br>1.2.8-GCCcore-5.4.0</nobr>|
+
+## Bio
+
+|Module|Description|Available versions|
+|--|--|--|
+|**bowtie2**|&nbsp;|<nobr>2.2.3</nobr>|
+
+## Bullxde
+
+|Module|Description|Available versions|
+|--|--|--|
+|**bullxde**|&nbsp;|<nobr>2.0</nobr>|
+
+## Bullxmpi
+
+|Module|Description|Available versions|
+|--|--|--|
+|**bullxmpi**|&nbsp;|<nobr>bullxmpi-1.2.4.3</nobr>|
+
+## Chem
+
+|Module|Description|Available versions|
+|--|--|--|
+|**abinit**|&nbsp;|<nobr>7.10.1-icc-impi</br>7.10.1-gcc-openmpi</br>7.6.2</nobr>|
+|**cp2k-mpi**|&nbsp;|<nobr>2.5.1-gcc</nobr>|
+|**lammps**|&nbsp;|<nobr>28Jun14</nobr>|
+|**molpro**|&nbsp;|<nobr>2010.1-p45-intel</nobr>|
+|**namd**|&nbsp;|<nobr>2.8</nobr>|
+|**nwchem**|&nbsp;|<nobr>6.1.1</br>6.3-rev2-patch1-openmpi</br>6.3-rev2-patch1-venus</br>6.3-rev2-patch1</nobr>|
+
+## Compilers
+
+|Module|Description|Available versions|
+|--|--|--|
+|**bupc**|&nbsp;|<nobr>2.16.2</nobr>|
+|**chicken**|&nbsp;|<nobr>4.8.0.6</nobr>|
+|**gcc**|&nbsp;|<nobr>4.9.0</br>5.4.0</br>4.8.1</nobr>|
+|**gupc**|&nbsp;|<nobr>4.8.0.3</nobr>|
+|**intel**|&nbsp;|<nobr>13.5.192</br>15.3.187</br>14.0.1</br>15.2.164</nobr>|
+|**java**|&nbsp;|<nobr>1.7</nobr>|
+|**llvm**|&nbsp;|<nobr>3.6.0</nobr>|
+
+## Engineering
+
+|Module|Description|Available versions|
+|--|--|--|
+|**adams**|&nbsp;|<nobr>2013.2</nobr>|
+|**ansys**|&nbsp;|<nobr>15.0.x</br>16.0.x</br>14.5.x</nobr>|
+|**beopest**|&nbsp;|<nobr>12.0.1</br>13.3</br>12.2</nobr>|
+|**blender**|&nbsp;|<nobr>2.71</nobr>|
+|**Code_Saturne**|&nbsp;|<nobr>3.0.5</nobr>|
+|**comsol**|&nbsp;|<nobr>43b-EDU</br>44-EDU</br>50-EDU</br>50-COM</br>44-COM</br>43b-COM</nobr>|
+|**digimat**|&nbsp;|<nobr>5.0.1</nobr>|
+|**Discovery_Studio**|&nbsp;|<nobr>4.0</nobr>|
+|**dytran**|&nbsp;|<nobr>2013.0.1</nobr>|
+|**fds**|&nbsp;|<nobr>5.5.3</br>6.svn</br>5.5.3-omp</nobr>|
+|**hypermesh**|&nbsp;|<nobr>12.0.110</nobr>|
+|**hyperworks**|&nbsp;|<nobr>13.0</nobr>|
+|**lsdyna**|&nbsp;|<nobr>7.x.x</nobr>|
+|**lsprepost**|&nbsp;|<nobr>4.2</nobr>|
+|**lux**|&nbsp;|<nobr>1.3.1</nobr>|
+|**marc**|&nbsp;|<nobr>2011</br>2013.1</nobr>|
+|**matlab**|&nbsp;|<nobr>R2014a-COM</br>R2013a-COM</br>R2013a-EDU</br>R2014a-EDU</nobr>|
+|**maxwell**|&nbsp;|<nobr>3.0</nobr>|
+|**modflow-2005**|&nbsp;|<nobr>1.11.00</nobr>|
+|**modflow-nwt**|&nbsp;|<nobr>1.0.9-aquaveo</br>1.0.9</nobr>|
+|**nastran**|&nbsp;|<nobr>2013.1.1</nobr>|
+|**openfoam**|&nbsp;|<nobr>2.2.1-icc-openmpi1.6.5-DP</br>2.2.1-gcc481-openmpi1.6.5-SP</br>2.2.1-gcc481-openmpi1.6.5-DP</br>2.2.2-icc-openmpi1.8.1-DP</br>2.2.1-icc-impi4.1.1.036-DP</nobr>|
+|**paraview**|&nbsp;|<nobr>4.0.1-gcc481-bullxmpi1.2.4.1-osmesa10.0</nobr>|
+|**pest**|&nbsp;|<nobr>13.0</nobr>|
+|**wien2k**|&nbsp;|<nobr>13.1</br>14.2</nobr>|
+
+## Environments
+
+|Module|Description|Available versions|
+|--|--|--|
+|**bullxde**|&nbsp;|<nobr>2.0</nobr>|
+|**PrgEnv-gnu**|&nbsp;|<nobr>4.4.6</br>4.4.6-test</br>4.8.1</nobr>|
+|**PrgEnv-intel**|&nbsp;|<nobr>15.0.3</br>13.5.192</br>14.0.1</nobr>|
+
+## Libraries
+
+|Module|Description|Available versions|
+|--|--|--|
+|**adios**|&nbsp;|<nobr>1.8.0</nobr>|
+|**boost**|&nbsp;|<nobr>1.56-icc-impi</br>1.56-gcc-openmpi</nobr>|
+|**dataspaces**|&nbsp;|<nobr>1.4.0</nobr>|
+|**fftw2**|&nbsp;|<nobr>2.1.5-icc</br>2.1.5-gcc</nobr>|
+|**fftw2-mpi**|&nbsp;|<nobr>2.1.5-icc</br>2.1.5-gcc</nobr>|
+|**fftw3**|&nbsp;|<nobr>3.3.3-gcc</br>3.3.3-icc</nobr>|
+|**fftw3-mpi**|&nbsp;|<nobr>3.3.3-gcc</br>3.3.3-icc</nobr>|
+|**gpi2**|&nbsp;|<nobr>1.0.2</br>1.1.1</br>1.1.0</nobr>|
+|**gsl**|&nbsp;|<nobr>1.16-icc</br>1.16-gcc</nobr>|
+|**hdf5**|&nbsp;|<nobr>1.8.13</br>1.8.11</nobr>|
+|**hdf5-parallel**|&nbsp;|<nobr>1.8.11-gcc</br>1.8.13-gcc</br>1.8.13</br>1.8.13-gcc49</br>1.8.11</nobr>|
+|**ipp**|&nbsp;|<nobr>13.5.192</br>15.3.187</br>14.0.1</br>15.2.164</nobr>|
+|**libmesh**|&nbsp;|<nobr>0.9.3-petsc-3.4.4-icc-impi-mkl-dbg</br>0.9.3-petsc-3.4.4-icc-impi-mkl-dbg-2d</br>0.9.3-petsc-3.4.4-icc-impi-mkl-opt</nobr>|
+|**magma**|&nbsp;|<nobr>.common-mic</br>1.3.0-mic</br>1.1.0-mic</nobr>|
+|**mkl**|&nbsp;|<nobr>13.5.192</br>15.3.187</br>14.0.1</br>15.2.164</nobr>|
+|**mxml**|&nbsp;|<nobr>2.9</nobr>|
+|**netcdf**|&nbsp;|<nobr>4.2.1.1</br>4.3.0</nobr>|
+|**netcdf-cxx**|&nbsp;|<nobr>4.2</nobr>|
+|**netcdf-fortran**|&nbsp;|<nobr>4.2</nobr>|
+|**netcdf-parallel**|&nbsp;|<nobr>4.3.0</nobr>|
+|**opencl-rt**|&nbsp;|<nobr>4.5.0.8</nobr>|
+|**opencl-sdk**|&nbsp;|<nobr>4.6.0.92</nobr>|
+|**petsc**|&nbsp;|<nobr>3.5.3-icc15-impi-mkl-threads-dbg</br>3.5.3-icc15-impi-mkl-threads-opt</br>3.7.3-icc16-impi5-mkl-dbg</br>3.5.3-icc15-impi-mkl-opt</br>3.7.3-icc16-impi5-mkl-opt</br>3.5.3-icc15-impi-mkl-dbg</br>.common_help</br>.common_petsc_pre</br>.common_petsc_post</br>.common_functions</nobr>|
+|**plasma**|&nbsp;|<nobr>2.6.0</nobr>|
+|**slepc**|&nbsp;|<nobr>3.7.2-icc16-impi5-mkl-opt</br>3.7.2-icc16-impi5-mkl-dbg</br>3.4.4-icc15-impi-mkl-opt</br>3.4.4-icc15-impi-mkl-dbg</nobr>|
+|**szip**|&nbsp;|<nobr>2.1</nobr>|
+|**tbb**|&nbsp;|<nobr>13.5.192</br>15.3.187</br>14.0.1</br>15.2.164</nobr>|
+|**trilinos**|&nbsp;|<nobr>11.2.3-gcc-openmpi-mkl-dbg</br>11.2.3-icc</br>11.2.3-gcc-openmpi-mkl-opt</nobr>|
+|**zlib**|&nbsp;|<nobr>1.2.5</br>1.2.8</nobr>|
+
+## Mpi
+
+|Module|Description|Available versions|
+|--|--|--|
+|**bullxmpi**|&nbsp;|<nobr>bullxmpi_1.2.4.1</nobr>|
+|**impi**|&nbsp;|<nobr>5.0.3.048</br>4.1.1.036</nobr>|
+|**lam**|&nbsp;|<nobr>7.1.4-icc</nobr>|
+|**mvapich2**|&nbsp;|<nobr>1.9-gcc46</br>1.9-icc</br>1.9-gcc</nobr>|
+|**openmpi**|&nbsp;|<nobr>1.8.1-gcc46</br>1.8.1-gcc49</br>1.6.5-gcc</br>1.8.1-gcc</br>1.6.5-icc</br>1.6.5-gcc46</br>1.8.1-icc</nobr>|
+
+## Nvidia
+
+|Module|Description|Available versions|
+|--|--|--|
+|**cuda**|&nbsp;|<nobr>7.5</br>6.5.14</br>6.0.37</nobr>|
+
+## Omics
+
+|Module|Description|Available versions|
+|--|--|--|
+|**fastqc**|&nbsp;|<nobr>0.11.2</nobr>|
+|**gatk**|&nbsp;|<nobr>2.6-4</br>.2.6-4.swp</nobr>|
+|**hpg-aligner**|&nbsp;|<nobr>1.0.0</nobr>|
+|**hpg-fastq**|&nbsp;|<nobr>1.0.0</nobr>|
+|**hpg-variant**|&nbsp;|<nobr>1.0.0</nobr>|
+|**ngsPipeline**|&nbsp;|<nobr>.1.0.0.swp</br>1.0.0</nobr>|
+|**picard**|&nbsp;|<nobr>1.117</nobr>|
+|**samtools**|&nbsp;|<nobr>0.1.19</nobr>|
+|**snpEff**|&nbsp;|<nobr>3.6</nobr>|
+
+## Oscar-Modules
+
+|Module|Description|Available versions|
+|--|--|--|
+|**oscar-modules**|&nbsp;|<nobr>1.0.3</nobr>|
+
+## Prace
+
+|Module|Description|Available versions|
+|--|--|--|
+|**GLOBUS**|&nbsp;|<nobr>globus</nobr>|
+|**PRACE**|&nbsp;|<nobr>prace</nobr>|
+
+## Tools
+
+|Module|Description|Available versions|
+|--|--|--|
+|**advisor_xe**|&nbsp;|<nobr>2013.5</br>2015.1.10.380555</nobr>|
+|**cmake**|&nbsp;|<nobr>2.8.11</br>2.8.11-mic</nobr>|
+|**cube**|&nbsp;|<nobr>4.2.3-gcc</br>4.2.3-icc</nobr>|
+|**dhi-mike**|&nbsp;|<nobr>2016-SP2</br>2014</br>2016</br>default</nobr>|
+|**elmer**|&nbsp;|<nobr>7.0-r6695-dbg</br>7.0-r6695-opt</nobr>|
+|**gnuplot**|&nbsp;|<nobr>4.6.5</nobr>|
+|**grace**|&nbsp;|<nobr>5.1.23</nobr>|
+|**inspector_xe**|&nbsp;|<nobr>2015.1.2.379161</br>2013.5</nobr>|
+|**intelpcm**|&nbsp;|<nobr>2.6</nobr>|
+|**ipm**|&nbsp;|<nobr>0.983-icc-impi</nobr>|
+|**itac**|&nbsp;|<nobr>8.1.4.045</br>9.0.3.051</nobr>|
+|**likwid**|&nbsp;|<nobr>3.1.2-gcc</br>3.1.1-mic</br>3.1.2-icc</br>3.1.1-icc</br>3.1.2-mic</nobr>|
+|**memoryscape**|&nbsp;|<nobr>3.4</nobr>|
+|**mercurial**|&nbsp;|<nobr>2.9.1</nobr>|
+|**MIKE**|&nbsp;|<nobr>2016-SP2</br>2014</br>2016</br>default</nobr>|
+|**mono**|&nbsp;|<nobr>3.12.1</br>3.2.3</nobr>|
+|**mpi.net**|&nbsp;|<nobr>1.0.0-mono-3.12.1</br>1.0.0-impi</br>1.0.0</nobr>|
+|**numactl**|&nbsp;|<nobr>2.0.9</nobr>|
+|**octave**|&nbsp;|<nobr>.hg-20130730</br>.3.6.4</nobr>|
+|**opari2**|&nbsp;|<nobr>1.1.2-gcc</br>1.1.2-icc</nobr>|
+|**openssh-x509**|&nbsp;|<nobr>6.2p2</nobr>|
+|**oscar-modules**|&nbsp;|<nobr>1.0.3</nobr>|
+|**otf2**|&nbsp;|<nobr>1.4-icc</br>1.2.1-gcc</br>1.4-gcc</br>1.2.1-icc</nobr>|
+|**papi**|&nbsp;|<nobr>5.4.0-mic</br>5.3.0</br>5.3.2-mic</br>5.4.0</br>5.3.2</nobr>|
+|**parallel**|&nbsp;|<nobr>20141122</nobr>|
+|**python**|&nbsp;|<nobr>2.7.6</br>2.7.5</br>3.3.2</br>3.3.5</br>3.4.2</nobr>|
+|**R**|&nbsp;|<nobr>3.1.1</br>.old.3.0.1</br>3.0.1</nobr>|
+|**racket**|&nbsp;|<nobr>6.0.1</nobr>|
+|**relion**|&nbsp;|<nobr>1.3</br>1.2</nobr>|
+|**Rstudio**|&nbsp;|<nobr>0.97</nobr>|
+|**ruby**|&nbsp;|<nobr>2.0.0-p247</nobr>|
+|**scalasca2**|&nbsp;|<nobr>2.0-icc-impi</br>2.0-gcc-openmpi</nobr>|
+|**scite**|&nbsp;|<nobr>3.4.3</nobr>|
+|**scorep**|&nbsp;|<nobr>1.2.3-gcc-openmpi</br>1.2.3-icc-impi</nobr>|
+|**tcl**|&nbsp;|<nobr>8.5.15</nobr>|
+|**tk**|&nbsp;|<nobr>8.5.15</nobr>|
+|**totalview**|&nbsp;|<nobr>8.13</br>8.12</nobr>|
+|**turbovnc**|&nbsp;|<nobr>1.2.2</nobr>|
+|**valgrind**|&nbsp;|<nobr>3.9.0-impi</nobr>|
+|**vampir**|&nbsp;|<nobr>8.2</nobr>|
+|**virtualgl**|&nbsp;|<nobr>2.4</nobr>|
+|**vtune_xe**|&nbsp;|<nobr>2013.15</br>2015.3.0.403110</nobr>|
+
+## Virtualization
+
+|Module|Description|Available versions|
+|--|--|--|
+|**qemu**|&nbsp;|<nobr>2.1.2-vde2</br>2.1.2</br>2.1.0</br>2.1.0-vde2</nobr>|
+|**vde2**|&nbsp;|<nobr>2.3.2</nobr>|
+|**wine**|&nbsp;|<nobr>1.7.29</nobr>|
diff --git a/docs.it4i/modules-salomon-uv.md b/docs.it4i/modules-salomon-uv.md
index 3553cf37ac250455380087e155174d5298647c15..480df9881ffddd5046a6b2b0bf1e98e4866fd7a4 100644
--- a/docs.it4i/modules-salomon-uv.md
+++ b/docs.it4i/modules-salomon-uv.md
@@ -1,3 +1,165 @@
-| Name | Version |
-| ---- | ------: |
-| modulename  | 3.0.3 |
+# List of Available UV Modules
+
+## Bio
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[FastQC](http://www.bioinformatics.babraham.ac.uk/projects/download.html)**|A quality control application for high throughput sequence data|<nobr>0.11.3</nobr>|
+|**[GATK](http://www.broadinstitute.org/gatk/)**|The Genome Analysis Toolkit or GATK is a software package developed at the Broad Institute to analyse next-generation resequencing data. The toolkit offers a wide variety of tools, with a primary focus on variant discovery and genotyping as well as strong emphasis on data quality assurance. Its robust architecture, powerful processing engine and high-performance computing features make it capable of taking on projects of any size.|<nobr>2.6-5-Java-1.7.0_79</nobr>|
+|**[SnpEff](http://snpeff.sourceforge.net/)**|Genetic variant annotation and effect prediction toolbox.|<nobr>4.1_G</nobr>|
+
+## Cae
+
+|Module|Description|Available versions|
+|--|--|--|
+|**ANSYS**|&nbsp;|<nobr>16.1</br>17.0</nobr>|
+|**[OpenFOAM](http://www.openfoam.com/)**|OpenFOAM is a free, open source CFD software package. OpenFOAM has an extensive range of features to solve anything from complex fluid flows involving chemical reactions, turbulence and heat transfer, to solid dynamics and electromagnetics.|<nobr>2.2.2-intel-2015b</br>2.3.0-intel-2015b</nobr>|
+
+## Chem
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[ABINIT](http://www.abinit.org/)**|Abinit is a plane wave pseudopotential code for doing condensed phase electronic structure calculations using DFT.|<nobr>7.10.1-foss-2015b</br>7.10.1-intel-2015b</nobr>|
+|**[Libint](https://sourceforge.net/p/libint/)**|Libint library is used to evaluate the traditional (electron repulsion) and certain novel two-body matrix elements (integrals) over Cartesian Gaussian functions used in modern atomic and molecular theory.|<nobr>1.1.4-intel-2015b</nobr>|
+|**[libxc](http://www.tddft.org/programs/octopus/wiki/index.php/Libxc)**|Libxc is a library of exchange-correlation functionals for density-functional theory. The aim is to provide a portable, well tested and reliable set of exchange and correlation functionals.|<nobr>2.2.1-intel-2015b</nobr>|
+
+## Compiler
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[GCC](http://gcc.gnu.org/)**|The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...).|<nobr>4.9.3-binutils-2.25</br>5.1.0-binutils-2.25</br>4.4.7-system</br>4.9.3</br>6.2.0-2.27.lua</br>4.9.3-2.25.lua</nobr>|
+|**GCCcore**|&nbsp;|<nobr>5.4.0.lua</br>6.2.0.lua</br>4.9.3.lua</nobr>|
+|**[icc](http://software.intel.com/en-us/intel-compilers/)**|C and C++ compiler from Intel|<nobr>2015.3.187-GNU-5.1.0-2.25</br>2017.0.098-GCC-5.4.0-2.26.lua</nobr>|
+|**[ifort](http://software.intel.com/en-us/intel-compilers/)**|Fortran compiler from Intel|<nobr>2015.3.187-GNU-5.1.0-2.25</br>2017.0.098-GCC-5.4.0-2.26.lua</nobr>|
+|**LLVM**|&nbsp;|<nobr>3.9.0-intel-2017.00.lua</br>3.8.0-foss-2016a.lua</nobr>|
+
+## Data
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[GDAL](http://www.gdal.org/)**|GDAL is a translator library for raster geospatial data formats that is released under an X/MIT style Open Source license by the Open Source Geospatial Foundation. As a library, it presents a single abstract data model to the calling application for all supported formats. It also comes with a variety of useful commandline utilities for data translation and processing.|<nobr>2.0.1-foss-2015b</nobr>|
+|**[HDF5](http://www.hdfgroup.org/HDF5/)**|HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.|<nobr>1.8.13-intel-2015b</br>1.8.16-intel-2015b</br>1.8.15-patch1-foss-2015b</br>1.8.16-foss-2016a.lua</nobr>|
+|**[netCDF](http://www.unidata.ucar.edu/software/netcdf/)**|NetCDF (network Common Data Form) is a set of software libraries and machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data.|<nobr>4.3.2-intel-2015b</br>4.3.3.1-foss-2015b</nobr>|
+
+## Devel
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[Autoconf](http://www.gnu.org/software/autoconf/)**|Autoconf is an extensible package of M4 macros that produce shell scripts to automatically configure software source code packages. These scripts can adapt the packages to many kinds of UNIX-like systems without manual user intervention. Autoconf creates a configuration script for a package from a template file that lists the operating system features that the package can use, in the form of M4 macro calls.|<nobr>2.69-GNU-4.9.3-2.25</br>2.69-GNU-5.1.0-2.25</br>2.69.lua</br>2.69-intel-2017.00.lua</br>2.69-foss-2016a.lua</nobr>|
+|**[Automake](http://www.gnu.org/software/automake/automake.html)**|Automake: GNU Standards-compliant Makefile generator|<nobr>1.15-GNU-4.9.3-2.25</br>1.15-GNU-5.1.0-2.25</br>1.15.lua</br>1.15-intel-2017.00.lua</br>1.15-foss-2016a.lua</nobr>|
+|**[Autotools](http://autotools.io)**|This bundle collect the standard GNU build tools: Autoconf, Automake and libtool|<nobr>20150215-GNU-4.9.3-2.25</br>20150215-GNU-5.1.0-2.25</br>20150215.lua</br>20150215-intel-2017.00.lua</br>20150215-foss-2016a.lua</nobr>|
+|**[Boost](http://www.boost.org/)**|Boost provides free peer-reviewed portable C++ source libraries.|<nobr>1.58.0-intel-2015b-Python-2.7.9</br>1.60.0-foss-2015g-Python-2.7.9.lua</nobr>|
+|**[CMake](http://www.cmake.org)**|CMake, the cross-platform, open-source build system. CMake is a family of tools designed to build, test and package software.|<nobr>3.0.0-intel-2015b</br>3.4.1-foss-2015b</br>3.6.2.lua</br>3.5.2-foss-2016a.lua</br>3.6.2-intel-2017.00.lua</nobr>|
+|**[Doxygen](http://www.doxygen.org)**|Doxygen is a documentation system for C++, C, Java, Objective-C, Python, IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D.|<nobr>1.8.7-intel-2015b</br>1.8.10-foss-2015b</nobr>|
+|**[M4](http://www.gnu.org/software/m4/m4.html)**|GNU M4 is an implementation of the traditional Unix macro processor. It is mostly SVR4 compatible although it has some extensions (for example, handling more than 9 positional parameters to macros). GNU M4 also has built-in functions for including files, running shell commands, doing arithmetic, etc.|<nobr>1.4.17-GCC-4.9.3-binutils-2.25</br>1.4.17-GNU-4.9.3-2.25</br>1.4.17</br>1.4.17-GNU-5.1.0-2.25</br>1.4.17-intel-2015b</br>1.4.17-foss-2015b</br>1.4.17-GCCcore-5.4.0.lua</br>1.4.17-GCCcore-6.2.0.lua</br>1.4.17-intel-2017.00.lua</br>1.4.17-GCCcore-4.9.3.lua</br>1.4.17-foss-2016a.lua</nobr>|
+|**[make](http://www.gnu.org/software/make/make.html)**|make-3.82: GNU version of make utility|<nobr>3.82-intel-2015b</nobr>|
+|**[Maven](http://maven.apache.org/index.html)**|Binary maven install, Apache Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information.|<nobr>3.3.9</nobr>|
+|**[ncurses](http://www.gnu.org/software/ncurses/)**|The Ncurses (new curses) library is a free software emulation of curses in System V Release 4.0, and more. It uses Terminfo format, supports pads and color and multiple highlights and forms characters and function-key mapping, and has all the other SYSV-curses enhancements over BSD Curses.|<nobr>5.9-intel-2015b</br>5.9-foss-2015g</br>5.9-foss-2015b</br>6.0.lua</br>6.0</br>6.0-intel-2017.00.lua</br>6.0-foss-2016a.lua</nobr>|
+|**[SQLite](http://www.sqlite.org/)**|SQLite: SQL Database Engine in a C Library|<nobr>3.8.8.1-foss-2015g</br>3.8.8.1-intel-2015b</br>3.8.8.1-foss-2015b</br>3.9.2-intel-2017.00.lua</br>3.9.2-foss-2016a.lua</nobr>|
+
+## Lang
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[Bison](http://www.gnu.org/software/bison)**|Bison is a general-purpose parser generator that converts an annotated context-free grammar into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables.|<nobr>3.0.4-GCC-4.9.3-binutils-2.25</br>3.0.2-intel-2015b</br>3.0.4-foss-2015b</br>3.0.4.lua</br>3.0.4-GCCcore-5.4.0.lua</br>3.0.4-GCCcore-6.2.0.lua</br>3.0.4-GCCcore-4.9.3.lua</nobr>|
+|**[flex](http://flex.sourceforge.net/)**|Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner, sometimes called a tokenizer, is a program which recognizes lexical patterns in text.|<nobr>2.5.39-GCC-4.9.3-binutils-2.25</br>2.5.39-intel-2015b</br>2.5.37-intel-2015b</br>2.5.39-foss-2015b</br>2.6.0.lua</br>2.6.0-GCCcore-5.4.0.lua</br>2.6.0-GCCcore-6.2.0.lua</br>2.5.39-GCCcore-4.9.3.lua</nobr>|
+|**[Java](http://java.com/)**|Java Platform, Standard Edition (Java SE) lets you develop and deploy Java applications on desktops and servers.|<nobr>1.8.0_51</br>1.7.0_79</br>1.8.0_72</nobr>|
+|**[Lua](http://www.lua.org/)**|Lua is a powerful, fast, lightweight, embeddable scripting language. Lua combines simple procedural syntax with powerful data description constructs based on associative arrays and extensible semantics. Lua is dynamically typed, runs by interpreting bytecode for a register-based virtual machine, and has automatic memory management with incremental garbage collection, making it ideal for configuration, scripting, and rapid prototyping.|<nobr>5.1.4-8</nobr>|
+|**[NASM](http://www.nasm.us/)**|NASM: General-purpose x86 assembler|<nobr>2.11.08-foss-2015b</nobr>|
+|**[Perl](http://www.perl.org/)**|Larry Wall's Practical Extraction and Report Language|<nobr>5.16.3-intel-2015b</br>5.22.2-intel-2017.00.lua</nobr>|
+|**[Python](http://python.org/)**|Python is a programming language that lets you work more quickly and integrate your systems more effectively.|<nobr>2.7.9-intel-2015b</br>2.7.9-foss-2015g</br>2.7.9-foss-2015b</br>3.5.2-intel-2017.00.lua</br>3.5.2-foss-2016a.lua</br>2.7.11-foss-2016a.lua</nobr>|
+|**[R](http://www.r-project.org/)**|R is a free software environment for statistical computing and graphics.|<nobr>3.1.1-intel-2015b</br>3.2.3-foss-2015b</nobr>|
+|**[Tcl](http://www.tcl.tk/)**|Tcl (Tool Command Language) is a very powerful but easy to learn dynamic programming language, suitable for a very wide range of uses, including web and desktop applications, networking, administration, testing and many more.|<nobr>8.5.12-intel-2015b</br>8.6.3-foss-2015g</br>8.6.3-intel-2015b</br>8.6.3-foss-2015b</br>8.6.4-foss-2015b</br>8.6.4-intel-2017.00.lua</br>8.6.4-foss-2016a.lua</nobr>|
+
+## Lib
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[libffi](http://sourceware.org/libffi/)**|The libffi library provides a portable, high level programming interface to various calling conventions. This allows a programmer to call any function specified by a call interface description at run-time.|<nobr>3.1-intel-2015b</br>3.0.13-foss-2015b</br>3.2.1-GCC-4.4.7-system</nobr>|
+|**[libjpeg-turbo](http://sourceforge.net/libjpeg-turbo/)**|libjpeg-turbo is a fork of the original IJG libjpeg which uses SIMD to accelerate baseline JPEG compression and decompression. libjpeg is a library that implements JPEG image encoding, decoding and transcoding.|<nobr>1.4.1-foss-2015b</nobr>|
+|**[libpng](http://www.libpng.org/pub/png/libpng.html)**|libpng is the official PNG reference library|<nobr>1.6.9-intel-2015b</br>1.6.17-foss-2015b</nobr>|
+|**[libreadline](http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html)**|The GNU Readline library provides a set of functions for use by applications that allow users to edit command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes additional functions to maintain a list of previously-entered command lines, to recall and perhaps reedit those lines, and perform csh-like history expansion on previous commands.|<nobr>6.3-foss-2015g</br>6.3-intel-2015b</br>6.2-intel-2015b</br>6.3-foss-2015b</br>6.3</br>6.3-intel-2017.00.lua</br>6.3-foss-2016a.lua</nobr>|
+|**[libtool](http://www.gnu.org/software/libtool)**|GNU libtool is a generic library support script. Libtool hides the complexity of using shared libraries behind a consistent, portable interface.|<nobr>2.4.6-GNU-4.9.3-2.25</br>2.4.6-GNU-5.1.0-2.25</br>2.4.6.lua</br>2.4.6-intel-2017.00.lua</br>2.4.6-foss-2016a.lua</nobr>|
+|**[libxml2](http://xmlsoft.org/)**|Libxml2 is the XML C parser and toolchain developed for the Gnome project (but usable outside of the Gnome platform).|<nobr>2.9.2-GCC-4.4.7-system</br>2.9.2-foss-2015b</br>2.9.3-intel-2017.00.lua</nobr>|
+|**[PROJ](http://trac.osgeo.org/proj/)**|Program proj is a standard Unix filter function which converts geographic longitude and latitude coordinates into cartesian coordinates|<nobr>4.8.0-foss-2015b</nobr>|
+|**[tbb](http://software.intel.com/en-us/articles/intel-tbb/)**|Intel Threading Building Blocks 4.0 (Intel TBB) is a widely used, award-winning C++ template library for creating reliable, portable, and scalable parallel applications. Use Intel TBB for a simple and rapid way of developing robust task-based parallel applications that scale to available processor cores, are compatible with multiple environments, and are easier to maintain. Intel TBB is the most proficient way to implement future-proof parallel applications that tap into the power and performance of multicore and manycore hardware platforms.|<nobr>4.4.2.152</nobr>|
+|**[zlib](http://www.zlib.net/)**|zlib is designed to be a free, general-purpose, legally unencumbered -- that is, not covered by any patents -- lossless data-compression library for use on virtually any computer hardware and operating system.|<nobr>1.2.8-GCC-4.9.3-binutils-2.25</br>1.2.8</br>1.2.8-GCC-5.1.0-binutils-2.25</br>1.2.8-intel-2015b</br>1.2.8-foss-2015g</br>1.2.7-intel-2015b</br>1.2.8-foss-2015b</br>1.2.8-GCC-4.4.7-system</br>1.2.8.lua</br>1.2.8-GCCcore-5.4.0.lua</br>1.2.8-GCCcore-6.2.0.lua</br>1.2.8-intel-2017.00.lua</br>1.2.8-GCCcore-4.9.3.lua</br>1.2.8-foss-2016a.lua</nobr>|
+
+## Math
+
+|Module|Description|Available versions|
+|--|--|--|
+|**GMP**|&nbsp;|<nobr>6.1.0-intel-2017.00.lua</br>6.1.0-foss-2016a.lua</nobr>|
+|**[SCOTCH](http://gforge.inria.fr/projects/scotch/)**|Software package and libraries for sequential and parallel graph partitioning, static mapping, and sparse matrix block ordering, and sequential mesh and hypergraph partitioning.|<nobr>6.0.3-intel-2015b</br>6.0.0_esmumps-intel-2015b</nobr>|
+
+## Mpi
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[impi](http://software.intel.com/en-us/intel-mpi-library/)**|The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.|<nobr>5.0.3.048-iccifort-2015.3.187-GNU-5.1.0-2.25</br>2017.0.098-iccifort-2017.0.098-GCC-5.4.0-2.26.lua</nobr>|
+|**[OpenMPI](http://www.open-mpi.org/)**|The Open MPI Project is an open source MPI-2 implementation.|<nobr>1.8.8-GNU-4.9.3-2.25</br>1.8.6-GNU-5.1.0-2.25</br>1.8.6-GCC-4.4.7-system</br>1.10.1-GNU-4.9.3-2.25</br>1.10.2-GCC-4.9.3-2.25.lua</nobr>|
+
+## Numlib
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[FFTW](http://www.fftw.org)**|FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) in one or more dimensions, of arbitrary input size, and of both real and complex data.|<nobr>3.3.4-gompi-2015b</br>3.3.4-gompi-2015e</br>3.3.4-gompi-2015g</br>3.3.4-intel-2015b</br>3.3.5-intel-2017.00.lua</br>3.3.4-gompi-2016a.lua</br>3.3.5-foss-2016a.lua</nobr>|
+|**[imkl](http://software.intel.com/en-us/intel-mkl/)**|Intel Math Kernel Library is a library of highly optimized, extensively threaded math routines for science, engineering, and financial applications that require maximum performance. Core math functions include BLAS, LAPACK, ScaLAPACK, Sparse Solvers, Fast Fourier Transforms, Vector Math, and more.|<nobr>11.2.3.187-iimpi-7.3.5-GNU-5.1.0-2.25</br>2017.0.098-iimpi-2017.00-GCC-5.4.0-2.26.lua</nobr>|
+|**[OpenBLAS](http://xianyi.github.com/OpenBLAS/)**|OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version.|<nobr>0.2.14-GNU-5.1.0-2.25-LAPACK-3.5.0</br>0.2.14-gompi-2015e-LAPACK-3.5.0</br>0.2.14-GNU-4.9.3-2.25-LAPACK-3.5.0</br>0.2.15-GCC-4.9.3-2.25-LAPACK-3.6.0.lua</nobr>|
+|**[ScaLAPACK](http://www.netlib.org/scalapack/)**|The ScaLAPACK (or Scalable LAPACK) library includes a subset of LAPACK routines redesigned for distributed memory MIMD parallel computers.|<nobr>2.0.2-gompi-2015b-OpenBLAS-0.2.14-LAPACK-3.5.0</br>2.0.2-gompi-2015e-OpenBLAS-0.2.14-LAPACK-3.5.0</br>2.0.2-gompi-2015g-OpenBLAS-0.2.14-LAPACK-3.5.0</br>2.0.2-gompi-2016a-OpenBLAS-0.2.15-LAPACK-3.6.0.lua</nobr>|
+
+## Phys
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[VASP](http://www.vasp.at)**|The Vienna Ab initio Simulation Package (VASP) is a computer program for atomic scale materials modelling, e.g. electronic structure calculations and quantum-mechanical molecular dynamics, from first principles.|<nobr>5.4.1-intel-2015b-24Jun15-UV</nobr>|
+
+## System
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[hwloc](http://www.open-mpi.org/projects/hwloc/)**|The Portable Hardware Locality (hwloc) software package provides a portable abstraction (across OS, versions, architectures, ...) of the hierarchical topology of modern architectures, including NUMA memory nodes, sockets, shared caches, cores and simultaneous multithreading. It also gathers various system attributes such as cache and memory information as well as the locality of I/O devices such as network interfaces, InfiniBand HCAs or GPUs. It primarily aims at helping applications with gathering information about modern computing hardware so as to exploit it accordingly and efficiently.|<nobr>1.11.0-GNU-4.9.3-2.25</br>1.11.0-GNU-5.1.0-2.25</br>1.11.2-GCC-4.9.3-2.25.lua</nobr>|
+
+## Toolchain
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[foss]((none))**|GNU Compiler Collection (GCC) based compiler toolchain, including OpenMPI for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK.|<nobr>2015b</br>2015e</br>2015g</br>2016a.lua</nobr>|
+|**[GNU](http://www.gnu.org/software/)**|Compiler-only toolchain with GCC and binutils.|<nobr>4.9.3-2.25</br>5.1.0-2.25</nobr>|
+|**[gompi]((none))**|GNU Compiler Collection (GCC) based compiler toolchain, including OpenMPI for MPI support.|<nobr>2015g</br>2015b</br>2015e</br>2016a.lua</nobr>|
+|**[iccifort](http://software.intel.com/en-us/intel-cluster-toolkit-compiler/)**|Intel C, C++ and Fortran compilers|<nobr>2015.3.187-GNU-5.1.0-2.25</br>2017.0.098-GCC-5.4.0-2.26.lua</nobr>|
+|**[iimpi](http://software.intel.com/en-us/intel-cluster-toolkit-compiler/)**|Intel C/C++ and Fortran compilers, alongside Intel MPI.|<nobr>7.3.5-GNU-5.1.0-2.25</br>2017.00-GCC-5.4.0-2.26.lua</nobr>|
+|**[intel](http://software.intel.com/en-us/intel-cluster-toolkit-compiler/)**|Intel Cluster Toolkit Compiler Edition provides Intel C/C++ and Fortran compilers, Intel MPI & Intel MKL.|<nobr>2015b</br>2017.00.lua</nobr>|
+|**[PRACE](http://www.prace-ri.eu/PRACE-Common-Production)**|The PRACE Common Production Environment (PCPE) is a set of software tools and libraries that are planned to be available on all PRACE execution sites. The PCPE also defines a set of environment variables that try to make compilation on all sites as homogeneous and simple as possible.|<nobr>20150630-intel-2015b</nobr>|
+
+## Tools
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[Bash](http://www.gnu.org/software/bash)**|Bash is an sh-compatible command language interpreter that executes commands read from the standard input or from a file. Bash also incorporates useful features from the Korn and C shells (ksh and csh).|<nobr>4.2-intel-2015b</nobr>|
+|**[binutils](http://directory.fsf.org/project/binutils/)**|binutils: GNU binary utilities|<nobr>2.25-GCC-4.9.3-binutils-2.25</br>2.25</br>2.25-GCC-5.1.0-binutils-2.25</br>2.26.lua</br>2.26-GCCcore-5.4.0.lua</br>2.27.lua</br>2.27-GCCcore-6.2.0.lua</br>2.25-GCCcore-4.9.3.lua</nobr>|
+|**[bzip2](http://www.bzip.org/)**|bzip2 is a freely available, patent free, high-quality data compressor. It typically compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical compressors), whilst being around twice as fast at compression and six times faster at decompression.|<nobr>1.0.6-intel-2015b</br>1.0.6-foss-2015g</br>1.0.6-foss-2015b</br>1.0.6-intel-2017.00.lua</br>1.0.6-foss-2016a.lua</nobr>|
+|**[cURL](http://curl.haxx.se)**|libcurl is a free and easy-to-use client-side URL transfer library, supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, Kerberos), file transfer resume, http proxy tunneling and more.|<nobr>7.37.1-intel-2015b</br>7.45.0-foss-2015b</br>7.37.1.lua</br>7.51.0-intel-2017.00.lua</nobr>|
+|**[EasyBuild](http://hpcugent.github.com/easybuild/)**|EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.|<nobr>3.0.2</nobr>|
+|**[expat](http://expat.sourceforge.net/)**|Expat is an XML parser library written in C. It is a stream-oriented parser in which an application registers handlers for things the parser might find in the XML document (like start tags)|<nobr>2.1.0-foss-2015b</br>2.1.0.lua</br>2.1.0-intel-2017.00.lua</nobr>|
+|**git**|&nbsp;|<nobr>2.8.0-intel-2017.00.lua</br>2.11.0-intel-2017.00.lua</nobr>|
+|**[gzip](http://www.gnu.org/software/gzip/)**|gzip (GNU zip) is a popular data compression program as a replacement for compress|<nobr>1.6-foss-2015g</nobr>|
+|**MATLAB**|&nbsp;|<nobr>2015a-COM</br>2015a-EDU</nobr>|
+|**[Mercurial](http://mercurial.selenic.com/)**|Mercurial is a free, distributed source control management tool. It efficiently handles projects of any size and offers an easy and intuitive interface.|<nobr>3.7.3-foss-2015g-Python-2.7.9</nobr>|
+|**[numactl](http://oss.sgi.com/projects/libnuma/)**|The numactl program allows you to run your application program on specific cpu's and memory nodes. It does this by supplying a NUMA memory policy to the operating system before running your program. The libnuma library provides convenient ways for you to add NUMA memory policies into your own program.|<nobr>2.0.10-GNU-4.9.3-2.25</br>2.0.10-GNU-5.1.0-2.25</br>2.0.11-GCC-4.9.3-2.25.lua</nobr>|
+|**pigz**|&nbsp;|<nobr>2.3.3-GCC-6.2.0-2.27.lua</nobr>|
+|**[QEMU](http://wiki.qemu.org/Main_Page)**|QEMU is a generic and open source machine emulator and virtualizer.|<nobr>2.1.2-foss-2015b</br>2.1.2-GCC-4.4.7-system</br>2.1.2-GCC-4.4.7-system-VDE2</nobr>|
+|**[Szip](http://www.hdfgroup.org/doc_resource/SZIP/)**|Szip compression software, providing lossless compression of scientific data|<nobr>2.1-intel-2015b</br>2.1-foss-2015b</br>2.1-foss-2016a.lua</nobr>|
+|**[tcsh](http://www.tcsh.org)**|Tcsh is an enhanced, but completely compatible version of the Berkeley UNIX C shell (csh). It is a command language interpreter usable both as an interactive login shell and a shell script command processor. It includes a command-line editor, programmable word completion, spelling correction, a history mechanism, job control and a C-like syntax.|<nobr>6.18.01-intel-2015b</nobr>|
+|**[VDE2](http://vde.sourceforge.net)**|VDE is an ethernet compliant virtual network that can be spawned over a set of physical computer over the Internet. VDE is part of virtualsquare project.|<nobr>2.3.2-GCC-4.4.7-system</nobr>|
+|**[VTune](http://software.intel.com/en-us/intel-vtune-amplifier-xe)**|Intel VTune Amplifier XE 2016 is the premier performance profiler for C, C++, C#, Fortran, Assembly and Java.|<nobr>2016_update1</nobr>|
+|**XZ**|&nbsp;|<nobr>5.2.2-intel-2017.00.lua</br>5.2.2-foss-2016a.lua</nobr>|
+
+## Vis
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[gettext](http://www.gnu.org/software/gettext/)**|GNU `gettext' is an important step for the GNU Translation Project, as it is an asset on which we may build many other steps. This package offers to programmers, translators, and even users, a well integrated set of tools and documentation|<nobr>0.19.2-intel-2015b</br>0.19.2-foss-2015b</br>0.19.4-GCC-4.4.7-system</br>0.19.2.lua</br>0.19.7-intel-2017.00.lua</br>0.19.6-foss-2016a.lua</nobr>|
+|**[GLib](http://www.gtk.org/)**|GLib is one of the base libraries of the GTK+ project|<nobr>2.40.0-intel-2015b</br>2.40.0-foss-2015b</br>2.40.0-GCC-4.4.7-system</nobr>|
+|**[Tk](http://www.tcl.tk/)**|Tk is an open source, cross-platform widget toolchain that provides a library of basic elements for building a graphical user interface (GUI) in many different programming languages.|<nobr>8.5.12-intel-2015b</br>8.6.3-foss-2015b-no-X11</br>8.6.4-foss-2015b-no-X11</br>8.6.4-intel-2017.00-no-X11.lua</br>8.6.4-foss-2016a-no-X11.lua</nobr>|
+|**[VisIt](https://wci.llnl.gov/simulation/computer-codes/visit)**|VisIt is an Open Source, interactive, scalable, visualization, animation and analysis tool|<nobr>2.10.0</nobr>|
diff --git a/docs.it4i/modules-salomon.md b/docs.it4i/modules-salomon.md
index 3553cf37ac250455380087e155174d5298647c15..72ccd2439153233cd3be2206a06be9d3a922eb60 100644
--- a/docs.it4i/modules-salomon.md
+++ b/docs.it4i/modules-salomon.md
@@ -1,3 +1,376 @@
-| Name | Version |
-| ---- | ------: |
-| modulename  | 3.0.3 |
+# List of Available Modules
+
+## Core
+
+|Module|Description|Available versions|Clusters|
+|--|--|--|--|
+|**lmod**|&nbsp;|<nobr>7.2.2.lua</nobr>|AS|
+|**settarg**|&nbsp;|<nobr>7.2.2.lua</nobr>|AU|
+
+## Bio
+
+|Module|Description|Available versions|Clusters|
+|--|--|--|--|
+|**[almost](http://www-almost.ch.cam.ac.uk/site)**|all atom molecular simulation toolkit - is a fast and flexible molecular modeling environment that provides powerful and efficient algorithms for molecular simulation, homology modeling, de novo design and ab-initio calculations.|<nobr>2.1.0-intel-2015b</br>2.1.0-foss-2015b</br>2.1.0-foss-2015g</nobr>|AS-</br>--S</br>A--|
+|**[Amber](http://ambermd.org)**|A set of molecular mechanical force fields for the simulation of biomolecules|<nobr>14</nobr>|-SU|
+|**[BCFtools](http://www.htslib.org/)**|Samtools is a suite of programs for interacting with high-throughput sequencing data. BCFtools - Reading/writing BCF2/VCF/gVCF files and calling/filtering/summarising SNP and short indel sequence variants|<nobr>1.3-foss-2015g</nobr>|ASU|
+|**[BWA](http://bio-bwa.sourceforge.net/)**|Burrows-Wheeler Aligner (BWA) is an efficient program that aligns relatively short nucleotide sequences against a long reference sequence such as the human genome.|<nobr>0.7.5a-foss-2015g</nobr>|--U|
+|**[FastQC](http://www.bioinformatics.babraham.ac.uk/projects/fastqc/)**|FastQC is a quality control application for high throughput sequence data. It reads in sequence data in a variety of formats and can either provide an interactive application to review the results of several different QC checks, or create an HTML based report which can be integrated into a pipeline.|<nobr>0.11.3</nobr>|---|
+
+## Cae
+
+|Module|Description|Available versions|
+|--|--|--|
+|**Adams**|&nbsp;|<nobr>2013.2</nobr>|
+|**ANSYS**|&nbsp;|<nobr>16.1</br>17.0</nobr>|
+|**COMSOL**|&nbsp;|<nobr>51-COM</br>51-EDU</nobr>|
+|**Digimat**|&nbsp;|<nobr>5.0.1-COM</br>5.0.1-EDU</nobr>|
+|**[FreeFem++](http://www.freefem.org)**|FreeFem++ is a partial differential equation solver. It has its own language. freefem scripts can solve multiphysics non linear systems in 2D and 3D. Problems involving PDE (2d, 3d) from several branches of physics such as fluid-structure interactions require interpolations of data on several meshes and their manipulation within one program. FreeFem++ includes a fast 2^d-tree-based interpolation algorithm and a language for the manipulation of data on multiple meshes (as a follow up of bamg (now a part of FreeFem++ ). FreeFem++ is written in C++ and the FreeFem++ language is a C++ idiom. It runs on Macs, Windows, Unix machines. FreeFem++ replaces the older freefem and freefem+.|<nobr>3.45-intel-2015b</nobr>|
+|**HyperWorks**|&nbsp;|<nobr>13.0</nobr>|
+|**Marc**|&nbsp;|<nobr>2013.1.0</nobr>|
+|**[OpenFOAM](http://www.openfoam.com/)**|OpenFOAM is a free, open source CFD software package. OpenFOAM has an extensive range of features to solve anything from complex fluid flows involving chemical reactions, turbulence and heat transfer, to solid dynamics and electromagnetics.|<nobr>2.3.0-intel-2015b</br>2.2.2-intel-2015b</br>3.0.0-intel-2016.01</nobr>|
+
+## Chem
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[ABINIT](http://www.abinit.org/)**|Abinit is a plane wave pseudopotential code for doing condensed phase electronic structure calculations using DFT.|<nobr>7.10.1-foss-2015b</br>7.10.1-intel-2015b</nobr>|
+|**[CP2K](http://www.cp2k.org/)**|CP2K is a freely available (GPL) program, written in Fortran 95, to perform atomistic and molecular simulations of solid state, liquid, molecular and biological systems. It provides a general framework for different methods such as e.g. density functional theory (DFT) using a mixed Gaussian and plane waves approach (GPW), and classical pair and many-body potentials.|<nobr>2.6.0-intel-2015b</nobr>|
+|**[LAMMPS](http://lammps.sandia.gov)**|LAMMPS is a classical molecular dynamics code, and an acronym for Large-scale Atomic/Molecular Massively Parallel Simulator. Has potentials for solid-state materials (metals, semiconductors) and soft matter (biomolecules, polymers) and coarse-grained or mesoscopic systems. It can be used to model atoms or, more generically, as a parallel particle simulator at the atomic, meso, or continuum scale.|<nobr>28Jun14-intel-2015b</nobr>|
+|**[libctl](http://ab-initio.mit.edu/libctl)**|libctl is a free Guile-based library implementing flexible control files for scientific simulations.|<nobr>3.2.2-intel-2015b</nobr>|
+|**[Libint](https://sourceforge.net/p/libint/)**|Libint library is used to evaluate the traditional (electron repulsion) and certain novel two-body matrix elements (integrals) over Cartesian Gaussian functions used in modern atomic and molecular theory.|<nobr>1.1.4-gompi-2015b</br>1.1.4-foss-2015b</br>1.1.4-intel-2015b</nobr>|
+|**[libxc](http://www.tddft.org/programs/octopus/wiki/index.php/Libxc)**|Libxc is a library of exchange-correlation functionals for density-functional theory. The aim is to provide a portable, well tested and reliable set of exchange and correlation functionals.|<nobr>2.2.0-gompi-2015b</br>2.2.0-foss-2015b</br>2.2.1-intel-2015b</nobr>|
+|**Molpro**|&nbsp;|<nobr>2010.1-patch-57-intel2015b</nobr>|
+|**[NAMD](http://www.ks.uiuc.edu/Research/namd/)**|NAMD is a parallel molecular dynamics code designed for high-performance simulation of large biomolecular systems.|<nobr>2.9-mpi</nobr>|
+|**[NWChem](http://www.nwchem-sw.org)**|NWChem aims to provide its users with computational chemistry tools that are scalable both in their ability to treat large scientific computational chemistry problems efficiently, and in their use of available parallel computing resources from high-performance parallel supercomputers to conventional workstation clusters. NWChem software can handle: biomolecules, nanostructures, and solid-state; from quantum to classical, and all combinations; Gaussian basis functions or plane-waves; scaling from one to thousands of processors; properties and relativity.|<nobr>6.3.revision2-2013-10-17-Python-2.7.8</br>6.5.revision26243-intel-2015b-2014-09-10-Python-2.7.8</nobr>|
+|**[ORCA](http://cec.mpg.de/forum/)**|ORCA is a flexible, efficient and easy-to-use general purpose tool for quantum chemistry with specific emphasis on spectroscopic properties of open-shell molecules. It features a wide variety of standard quantum chemical methods ranging from semiempirical methods to DFT to single- and multireference correlated ab initio methods. It can also treat environmental and relativistic effects.|<nobr>3_0_3-linux_x86-64</nobr>|
+|**[QuantumESPRESSO](http://www.pwscf.org/)**|Quantum ESPRESSO is an integrated suite of computer codes for electronic-structure calculations and materials modeling at the nanoscale. It is based on density-functional theory, plane waves, and pseudopotentials (both norm-conserving and ultrasoft).|<nobr>5.4.0-intel-2017.00</nobr>|
+|**[S4MPLE](http://infochim.u-strasbg.fr/spip.php?rubrique152)**|S4MPLE (Sampler For Multiple Protein-Ligand Entities) is a flexible molecular modeling tool, supporting empirical force field-driven conformational sampling and geometry optimization heuristics using a hybrid genetic algorithm (GA).|<nobr>1.0.0</nobr>|
+|**Scipion**|&nbsp;|<nobr>1.0.1-Java-8u112-intel-2017.00</nobr>|
+|**[xdrfile](http://www.gromacs.org/Developer_Zone/Programming_Guide/XTC_Library)**|XTC library|<nobr>1.1.4-foss-2015g</nobr>|
+
+## Compiler
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[BerkeleyUPC](http://upc.lbl.gov)**|The goal of the Berkeley UPC compiler group is to develop a portable, high performance implementation of UPC for large-scale multiprocessors, PC clusters, and clusters of shared memory multiprocessors.|<nobr>2.16.2-gompi-2015b</nobr>|
+|**[Clang](http://clang.llvm.org/)**|C, C++, Objective-C compiler, based on LLVM. Does not include C++ standard library -- use libstdc++ from GCC.|<nobr>3.7.0-GNU-5.1.0-2.25</nobr>|
+|**[GCC](http://gcc.gnu.org/)**|The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...).|<nobr>4.9.2-binutils-2.25</br>4.8.3</br>5.1.0-binutils-2.25</br>4.4.7-system</br>4.9.3-binutils-2.25</br>4.7.4</br>5.2.0</br>4.9.3</br>5.3.0-binutils-2.25</br>5.3.0-2.25</br>5.3.1-snapshot-20160419-2.25</br>4.9.3-2.25</br>5.3.0-2.26</br>4.9.2</br>5.4.0-2.26</br>6.2.0-2.27.lua</nobr>|
+|**[GCCcore](http://gcc.gnu.org/)**|The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...).|<nobr>4.9.3</br>5.3.0</br>5.3.1-snapshot-20160419</br>5.4.0</br>6.2.0.lua</nobr>|
+|**[icc](http://software.intel.com/en-us/intel-compilers/)**|C and C++ compiler from Intel|<nobr>2013.5.192</br>2013.5.192-GCC-4.8.3</br>2015.3.187</br>2015.3.187-GNU-5.1.0-2.25</br>2016.0.109-GCC-4.9.3</br>2016.1.150-GCC-4.9.3</br>2016.1.150</br>2016.3.210-GCC-5.3.0-2.26</br>2015.3.187-GNU-4.9.3-2.25</br>2016.1.150-GCC-4.9.3-2.25</br>2017.0.098-GCC-5.4.0-2.26</nobr>|
+|**[ifort](http://software.intel.com/en-us/intel-compilers/)**|Fortran compiler from Intel|<nobr>2013.5.192</br>2013.5.192-GCC-4.8.3</br>2015.3.187</br>2015.3.187-GNU-5.1.0-2.25</br>2016.0.109-GCC-4.9.3</br>2016.1.150-GCC-4.9.3</br>2016.1.150-GCC-4.9.3-2.25</br>2016.1.150</br>2016.3.210-GCC-5.3.0-2.26</br>2015.3.187-GNU-4.9.3-2.25</br>2017.0.098-GCC-5.4.0-2.26</nobr>|
+|**[LLVM](http://llvm.org/)**|The LLVM Core libraries provide a modern source- and target-independent optimizer, along with code generation support for many popular CPUs (as well as some less common ones!) These libraries are built around a well specified code representation known as the LLVM intermediate representation ("LLVM IR"). The LLVM Core libraries are well documented, and it is particularly easy to invent your own language (or port an existing compiler) to use LLVM as an optimizer and code generator.|<nobr>3.7.1-foss-2015g</br>3.7.1-intel-2016a</br>3.8.0-foss-2016a</br>3.8.0-intel-2016a</br>3.9.0-intel-2017.00</nobr>|
+|**[OpenCoarrays](http://www.opencoarrays.org/)**|A transport layer for coarray Fortran compilers.|<nobr>1.4.0-GCC-5.3.0-2.25</br>1.4.0-GCC-5.3.1-snapshot-20160419-2.25</nobr>|
+|**PGI**|&nbsp;|<nobr>15.7</br>16.10-GNU-4.9.3-2.25</nobr>|
+
+## Data
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[GDAL](http://www.gdal.org/)**|GDAL is a translator library for raster geospatial data formats that is released under an X/MIT style Open Source license by the Open Source Geospatial Foundation. As a library, it presents a single abstract data model to the calling application for all supported formats. It also comes with a variety of useful commandline utilities for data translation and processing.|<nobr>1.9.2-foss-2015g</br>2.1.0-foss-2015g</br>2.0.1-foss-2015b</br>2.1.0-GNU-5.1.0-2.25-intel-2015b</br>2.1.0-GNU-5.1.0-2.25</br>2.1.0-intel-2015b</br>2.0.2-intel-2017.00</nobr>|
+|**[h5py](http://www.h5py.org/)**|HDF5 for Python (h5py) is a general-purpose Python interface to the Hierarchical Data Format library, version 5. HDF5 is a versatile, mature scientific software library designed for the fast, flexible storage of enormous amounts of data.|<nobr>2.4.0-ictce-7.3.5-Python-2.7.9-serial</nobr>|
+|**[HDF5](http://www.hdfgroup.org/HDF5/)**|HDF5 is a unique technology suite that makes possible the management of extremely large and complex data collections.|<nobr>1.8.13-intel-2015b</br>1.8.13-intel-2015b-no-mpi</br>1.8.14-ictce-7.3.5-serial</br>1.8.13-intel-2016.01</br>1.8.13-foss-2015g</br>1.8.16-intel-2015b</br>1.8.16-intel-2015b-threadsafe</br>1.8.16-foss-2015g</br>1.10.0-patch1-intel-2016.01-mic</br>1.8.15-patch1-foss-2015b</br>1.8.16-foss-2016a</br>1.8.16-intel-2017.00</nobr>|
+|**[netCDF](http://www.unidata.ucar.edu/software/netcdf/)**|NetCDF (network Common Data Form) is a set of software libraries and machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data.|<nobr>4.3.2-intel-2015b</br>4.3.2-intel-2016.01</br>4.3.2-foss-2015g</br>4.3.3.1-foss-2015b</br>4.4.0-intel-2017.00</br>4.3.3.1-intel-2017.00</nobr>|
+|**[netCDF-Fortran](http://www.unidata.ucar.edu/software/netcdf/)**|NetCDF (network Common Data Form) is a set of software libraries and machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data.|<nobr>4.4.0-intel-2016.01</nobr>|
+
+## Debugger
+
+|Module|Description|Available versions|
+|--|--|--|
+|**aislinn**|&nbsp;|<nobr>20160105-Python-2.7.9-gompi-2015e</nobr>|
+|**DDT**|&nbsp;|<nobr>4.2</br>5.0.1</nobr>|
+|**[Forge](http://www.allinea.com/products/develop-allinea-forge)**|Allinea Forge is the complete toolsuite for software development - with everything needed to debug, profile, optimize, edit and build C, C++ and FORTRAN applications on Linux for high performance - from single threads through to complex parallel HPC codes with MPI, OpenMP, threads or CUDA.|<nobr>5.1-43967</br>6.0.6</br>6.0.5</br>6.1.2.lua</nobr>|
+|**[PerformanceReports](http://www.allinea.com/products/allinea-performance-reports)**|Allinea Performance Reports are the most effective way to characterize and understand the performance of HPC application runs. One single-page HTML report elegantly answers a range of vital questions for any HPC site. - Is this application well-optimized for the system and the processors it is running on? - Does it benefit from running at this scale? - Are there I/O, networking or threading bottlenecks affecting performance? - Which hardware, software or configuration changes can we make to improve performance further. - How much energy did this application use?|<nobr>5.1-43967</br>6.0.6</nobr>|
+|**TotalView**|&nbsp;|<nobr>8.15.4-6-linux-x86-64</nobr>|
+|**[Valgrind](http://valgrind.org/downloads/)**|Valgrind: Debugging and profiling tools|<nobr>3.11.0-foss-2015b</br>3.11.0-intel-2015b</nobr>|
+
+## Devel
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[ant](http://ant.apache.org/)**|Apache Ant is a Java library and command-line tool whose mission is to drive processes described in build files as targets and extension points dependent upon each other. The main known usage of Ant is the build of Java applications.|<nobr>1.9.3-Java-1.7.0_79</nobr>|
+|**[Autoconf](http://www.gnu.org/software/autoconf/)**|Autoconf is an extensible package of M4 macros that produce shell scripts to automatically configure software source code packages. These scripts can adapt the packages to many kinds of UNIX-like systems without manual user intervention. Autoconf creates a configuration script for a package from a template file that lists the operating system features that the package can use, in the form of M4 macro calls.|<nobr>2.69-GNU-5.1.0-2.25</br>2.69-GNU-4.9.3-2.25</br>2.69-foss-2015g</br>2.69-intel-2015b</br>2.69-GCC-4.9.3-2.25</br>2.69-intel-2016.01</br>2.69</br>2.69-intel-2017.00</br>2.69-intel-2016a</br>2.69-foss-2016a</nobr>|
+|**[Automake](http://www.gnu.org/software/automake/automake.html)**|Automake: GNU Standards-compliant Makefile generator|<nobr>1.15-GNU-5.1.0-2.25</br>1.15-GNU-4.9.3-2.25</br>1.15-intel-2015b</br>1.15-GCC-4.9.3-2.25</br>1.15-foss-2015g</br>1.15-intel-2016.01</br>1.15</br>1.15-intel-2017.00</br>1.15-intel-2016a</br>1.15-foss-2016a</nobr>|
+|**[Autotools](http://autotools.io)**|This bundle collect the standard GNU build tools: Autoconf, Automake and libtool|<nobr>20150215-GNU-5.1.0-2.25</br>20150215-GNU-4.9.3-2.25</br>20150215-intel-2015b</br>20150215-GCC-4.9.3-2.25</br>20150215-intel-2016.01</br>20150215</br>20150215-intel-2017.00</br>20150215-intel-2016a</br>20150215-foss-2016a</nobr>|
+|**[Boost](http://www.boost.org/)**|Boost provides free peer-reviewed portable C++ source libraries.|<nobr>1.58.0-Python-2.7.9</br>1.58.0-intel-2015b-Python-2.7.9</br>1.58.0-ictce-7.3.5-Python-2.7.9</br>1.58.0-gompi-2015e-Python-2.7.9</br>1.58.0-foss-2015g-Python-2.7.9</br>1.58.0-intel-2016.01-Python-2.7.9</br>1.59.0-intel-2015b-Python-2.7.11</br>1.59.0-intel-2016.01</br>1.60.0-foss-2015g-Python-2.7.9</br>1.60.0-intel-2015b-Python-2.7.11</br>1.61.0-foss-2016a</br>1.61.0-foss-2016a-serial</nobr>|
+|**[CMake](http://www.cmake.org)**|CMake, the cross-platform, open-source build system. CMake is a family of tools designed to build, test and package software.|<nobr>3.0.0-intel-2015b</br>3.0.0-ictce-7.3.5</br>3.3.1-GNU-5.1.0-2.25</br>3.3.1-GNU-4.9.3-2.25</br>3.3.1-foss-2015g</br>3.0.0-intel-2016.01</br>3.3.1-intel-2016.01</br>3.0.0-foss-2015g</br>3.4.1-intel-2015b</br>3.3.1-GCC-5.3.0-2.25</br>3.3.1-GCC-5.3.1-snapshot-20160419-2.25</br>3.3.2-intel-2016.01</br>3.3.2-GNU-4.9.3-2.25</br>3.4.1-GCCcore-4.9.3</br>3.4.1-foss-2015b</br>3.5.2</br>3.5.2-GCC-4.9.3-2.25</br>3.5.2-intel-2017.00</br>3.5.2-foss-2016a</br>3.4.3-intel-2016a</br>3.5.1-intel-2016a</br>3.6.2.lua</nobr>|
+|**[Doxygen](http://www.doxygen.org)**|Doxygen is a documentation system for C++, C, Java, Objective-C, Python, IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D.|<nobr>1.8.7-intel-2015b</br>1.8.7-intel-2016.01</br>1.8.7-foss-2015g</br>1.8.10-foss-2015b</br>1.8.11</br>1.8.10-intel-2017.00</br>1.8.11-intel-2017.00</nobr>|
+|**[fontsproto](http://www.freedesktop.org/wiki/Software/xlibs)**|X11 font extension wire protocol|<nobr>2.1.3-foss-2015g</br>2.1.3</br>2.1.3-intel-2016a</br>2.1.3-foss-2016a</nobr>|
+|**[glproto](http://www.freedesktop.org/wiki/Software/xlibs)**|X protocol and ancillary headers|<nobr>1.4.16-foss-2015g</br>1.4.17-intel-2016a</br>1.4.17-foss-2016a</nobr>|
+|**[gperf](http://www.gnu.org/software/gperf/)**|GNU gperf is a perfect hash function generator. For a given list of strings, it produces a hash function and hash table, in form of C or C++ code, for looking up a value depending on the input string. The hash function is perfect, which means that the hash table has no collisions, and the hash table lookup needs a single string comparison only.|<nobr>3.0.4-foss-2015g</br>3.0.4-intel-2016a</br>3.0.4-foss-2016a</nobr>|
+|**[guile](http://www.gnu.org/software/guile)**|Guile is the GNU Ubiquitous Intelligent Language for Extensions, the official extension language for the GNU operating system.|<nobr>1.8.8-intel-2015b</br>1.8.8-foss-2015b</br>1.8.8-foss-2015g</br>1.8.8</nobr>|
+|**[JUnit](http://sourceforge.net/projects/junit)**|A programmer-oriented testing framework for Java.|<nobr>4.11-Java-1.7.0_79</nobr>|
+|**[libSM](http://www.freedesktop.org/wiki/Software/xlibs)**|X11 Session Management library, which allows for applications to both manage sessions, and make use of session managers to save and restore their state for later use.|<nobr>1.2.2-intel-2015b</br>1.2.2-foss-2015g</br>1.2.2</nobr>|
+|**[M4](http://www.gnu.org/software/m4/m4.html)**|GNU M4 is an implementation of the traditional Unix macro processor. It is mostly SVR4 compatible although it has some extensions (for example, handling more than 9 positional parameters to macros). GNU M4 also has built-in functions for including files, running shell commands, doing arithmetic, etc.|<nobr>1.4.17</br>1.4.17-GNU-5.1.0-2.25</br>1.4.17-foss-2015b</br>1.4.17-intel-2015b</br>1.4.16-intel-2015b</br>1.4.17-GCC-4.9.3-binutils-2.25</br>1.4.17-GNU-4.9.3-2.25</br>1.4.17-GCCcore-4.9.3</br>1.4.17-intel-2016.01</br>1.4.16-foss-2015g</br>1.4.17-foss-2015g</br>1.4.17-GCC-5.1.0-binutils-2.25</br>1.4.17-GCCcore-5.3.0</br>1.4.17-GCCcore-5.3.1-snapshot-20160419</br>1.4.17-GCC-4.9.3-2.25</br>1.4.17-GCCcore-5.4.0</br>1.4.17-intel-2017.00</br>1.4.17-intel-2016a</br>1.4.17-foss-2016a</br>1.4.17-GCCcore-6.2.0.lua</nobr>|
+|**[make](http://www.gnu.org/software/make/make.html)**|make-3.82: GNU version of make utility|<nobr>3.82-intel-2015b</br>3.82</nobr>|
+|**[makedepend](http://www.linuxfromscratch.org/blfs/view/svn/x/makedepend.html)**|The makedepend package contains a C-preprocessor like utility to determine build-time dependencies.|<nobr>1.0.4-foss-2015g</br>1.0.4</br>1.0.5-intel-2016a</br>1.0.5-foss-2016a</nobr>|
+|**[Maven](http://maven.apache.org/index.html)**|Binary maven install, Apache Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information.|<nobr>3.3.9</nobr>|
+|**[ncurses](http://www.gnu.org/software/ncurses/)**|The Ncurses (new curses) library is a free software emulation of curses in System V Release 4.0, and more. It uses Terminfo format, supports pads and color and multiple highlights and forms characters and function-key mapping, and has all the other SYSV-curses enhancements over BSD Curses.|<nobr>5.9-intel-2015b</br>5.9-ictce-5.5.0</br>5.9-GNU-5.1.0-2.25</br>5.9-ictce-7.3.5</br>5.9-foss-2015b</br>5.9-gompi-2015e</br>5.9-foss-2015g</br>5.9-GNU-4.9.3-2.25</br>5.9-intel-2016.01</br>5.9-GCC-5.3.0-2.25</br>5.9-GCC-5.3.1-snapshot-20160419-2.25</br>6.0-GCCcore-4.9.3</br>6.0-foss-2015g</br>6.0-foss-2015b</br>6.0-intel-2016.01</br>6.0</br>5.9</br>6.0-intel-2016a</br>6.0-intel-2017.00</br>6.0-foss-2016a</br>.6.0</nobr>|
+|**[PCRE](http://www.pcre.org/)**|The PCRE library is a set of functions that implement regular expression pattern matching using the same syntax and semantics as Perl 5.|<nobr>8.36-intel-2015b</br>8.36-foss-2015g</br>8.37-foss-2015g</br>8.36-intel-2016.01</br>8.37</br>8.39-intel-2017.00</nobr>|
+|**[PCRE2](http://www.pcre.org/)**|The PCRE library is a set of functions that implement regular expression pattern matching using the same syntax and semantics as Perl 5.|<nobr>10.22-intel-2017.00</nobr>|
+|**[pkg-config](http://www.freedesktop.org/wiki/Software/pkg-config/)**|pkg-config is a helper tool used when compiling applications and libraries. It helps you insert the correct compiler options on the command line so an application can use gcc -o test test.c `pkg-config --libs --cflags glib-2.0` for instance, rather than hard-coding values on where to find glib (or other libraries).|<nobr>0.27.1-intel-2015b</br>0.27.1-foss-2015b</br>0.27.1-foss-2015g</br>0.27.1</br>0.29</br>0.29-intel-2016a</br>0.29-foss-2016a</br>0.29.1-intel-2016a</br>0.29.1-foss-2016a</nobr>|
+|**[python-meep](https://code.launchpad.net/python-meep)**|Python wrapper for the Meep FDTD solver.|<nobr>1.4.2-intel-2015b-Python-2.7.9-Meep-1.3</nobr>|
+|**[Qt](http://qt-project.org/)**|Qt is a comprehensive cross-platform C++ application framework.|<nobr>4.8.6-foss-2015g</br>4.8.6</nobr>|
+|**[renderproto](http://www.freedesktop.org/wiki/Software/xlibs)**|Xrender protocol and ancillary headers|<nobr>0.11-intel-2015b</br>0.11</nobr>|
+|**[SCons](http://www.scons.org/)**|SCons is a software construction tool.|<nobr>2.3.6-Python-2.7.9</br>2.3.6-foss-2015g-Python-2.7.9</nobr>|
+|**[Spark](http://spark.apache.org)**|Spark is Hadoop MapReduce done in memory|<nobr>1.5.2</nobr>|
+|**[SQLite](http://www.sqlite.org/)**|SQLite: SQL Database Engine in a C Library|<nobr>3.8.8.1-intel-2015b</br>3.8.8.1-ictce-7.3.5</br>3.8.8.1-foss-2015b</br>3.8.8.1-GNU-5.1.0-2.25</br>3.8.8.1-gompi-2015e</br>3.8.8.1-intel-2016.01</br>3.10.1-foss-2015g</br>3.9.2-intel-2015b</br>3.8.8.1-foss-2015g</br>3.8.10.2-GNU-4.9.3-2.25</br>3.8.10.2-GCC-4.9.3-2.25</br>3.9.2-foss-2015g</br>3.9.2-intel-2016.01</br>3.8.8.1</br>3.9.2-GCC-4.9.3-2.25</br>3.9.2-intel-2017.00</br>3.9.2-intel-2016a</br>3.9.2-foss-2016a</nobr>|
+|**[SWIG](http://www.swig.org/)**|SWIG is a software development tool that connects programs written in C and C++ with a variety of high-level programming languages.|<nobr>3.0.7-Python-2.7.9</br>2.0.12-Python-2.7.9</br>2.0.12-intel-2015b-Python-2.7.9</nobr>|
+|**[xbitmaps](http://www.freedesktop.org/wiki/Software/xlibs)**|provides bitmaps for x|<nobr>1.1.1-intel-2015b</br>1.1.1-foss-2015g</br>1.1.1</nobr>|
+|**[xcb-proto](http://xcb.freedesktop.org/)**|The X protocol C-language Binding (XCB) is a replacement for Xlib featuring a small footprint, latency hiding, direct access to the protocol, improved threading support, and extensibility.|<nobr>1.10-Python-2.7.8</br>1.11-intel-2015b-Python-2.7.9</br>1.11-foss-2015g-Python-2.7.9</br>1.11-Python-2.7.9</br>1.11</nobr>|
+|**[xextproto](http://www.freedesktop.org/wiki/Software/xlibs)**|XExtProto protocol headers.|<nobr>7.3.0-intel-2015b</br>7.3.0-foss-2015g</br>7.3.0</br>7.3.0-intel-2016a</br>7.3.0-foss-2016a</nobr>|
+|**[xineramaproto](http://www.freedesktop.org/wiki/Software/xlibs)**|X protocol and ancillary headers for xinerama|<nobr>1.2.1-intel-2015b</br>1.2.1</nobr>|
+|**[xorg-macros](http://cgit.freedesktop.org/xorg/util/macros)**|X.org macros utilities.|<nobr>1.17-foss-2015g</br>1.17</br>1.19.0-intel-2016a</br>1.19.0-foss-2016a</nobr>|
+|**[xproto](http://www.freedesktop.org/wiki/Software/xlibs)**|X protocol and ancillary headers|<nobr>7.0.26-foss-2015g</br>7.0.26-intel-2015b</br>7.0.26</br>7.0.28</br>7.0.28-intel-2016a</br>7.0.28-foss-2016a</nobr>|
+|**[xtrans](http://www.freedesktop.org/wiki/Software/xlibs)**|xtrans includes a number of routines to make X implementations transport-independent; at time of writing, it includes support for UNIX sockets, IPv4, IPv6, and DECnet.|<nobr>1.3.4-intel-2015b</br>1.3.5-intel-2015b</br>1.3.5-foss-2015g</br>1.3.5</br>1.3.5-intel-2016a</br>1.3.5-foss-2016a</nobr>|
+
+## Geo
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[DCW](http://gmt.soest.hawaii.edu/projects/gmt)**|country polygons for GMT|<nobr>1.1.2</nobr>|
+|**[GMT](http://gmt.soest.hawaii.edu/)**|GMT is an open source collection of about 80 command-line tools for manipulating geographic and Cartesian data sets (including filtering, trend fitting, gridding, projecting, etc.) and producing PostScript illustrations ranging from simple x-y plots via contour maps to artificially illuminated surfaces and 3D perspective views; the GMT supplements add another 40 more specialized and discipline-specific tools.|<nobr>5.2.1-foss-2015g</nobr>|
+|**[PROJ_4](http://proj.osgeo.org)**|PROJ.4 - Cartographic Projections Library originally written by Gerald Evenden then of the USGS.|<nobr>4.9.2-foss-2015g</nobr>|
+
+## Lang
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[Bison](http://www.gnu.org/software/bison)**|Bison is a general-purpose parser generator that converts an annotated context-free grammar into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables.|<nobr>2.7-foss-2015b</br>3.0.2-intel-2015b</br>2.7-GNU-5.1.0-2.25</br>2.7-intel-2015b</br>2.5-intel-2015b</br>3.0.4-GCC-4.9.3-binutils-2.25</br>2.7-foss-2015g</br>3.0.4-GCCcore-4.9.3</br>3.0.2-intel-2016.01</br>3.0.2-foss-2015g</br>3.0.4-GCC-5.1.0-binutils-2.25</br>3.0.4</br>3.0.4-GCCcore-5.3.0</br>3.0.4-GCCcore-5.3.1-snapshot-20160419</br>3.0.4-intel-2016.01</br>3.0.4-foss-2015b</br>3.0.2</br>2.7</br>3.0.4-GCCcore-5.4.0</br>3.0.4-intel-2017.00</br>3.0.4-intel-2016a</br>3.0.4-foss-2016a</br>3.0.4-GCCcore-6.2.0.lua</nobr>|
+|**[byacc](http://invisible-island.net/byacc/byacc.html)**|Berkeley Yacc (byacc) is generally conceded to be the best yacc variant available. In contrast to bison, it is written to avoid dependencies upon a particular compiler.|<nobr>20120526-intel-2015b</br>20120526-foss-2015b</br>20120526-foss-2015g</br>20120526</nobr>|
+|**[flex](http://flex.sourceforge.net/)**|Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner, sometimes called a tokenizer, is a program which recognizes lexical patterns in text.|<nobr>2.5.38-GCC-4.8.3</br>2.5.39-intel-2015b</br>2.5.37-intel-2015b</br>2.5.35-intel-2015b</br>2.5.39-foss-2015b</br>2.5.39-GCC-4.9.3-binutils-2.25</br>2.5.39-foss-2015g</br>2.5.39-GCCcore-4.9.3</br>2.5.39-intel-2016.01</br>2.5.39-GCC-5.1.0-binutils-2.25</br>2.5.39</br>2.5.39-GCCcore-5.3.0</br>2.5.39-GCCcore-5.3.1-snapshot-20160419</br>2.6.0</br>2.6.0-GCCcore-5.3.0</br>2.6.0-GCCcore-5.4.0</br>2.5.39-intel-2017.00</br>2.6.0-intel-2016a</br>2.6.0-foss-2016a</br>2.6.0-GCCcore-6.2.0.lua</nobr>|
+|**[Java](http://java.com/)**|Java Platform, Standard Edition (Java SE) lets you develop and deploy Java applications on desktops and servers.|<nobr>1.7.0_79</br>1.8.0_51</br>1.8.0_72</br>1.8.0_112.lua</nobr>|
+|**[libgdiplus](https://github.com/mono/libgdiplus)**|An Open Source implementation of the GDI+ API.|<nobr>3.12-GNU-5.1.0-2.25</br>3.12-GCC-4.4.7-system</br>3.12-intel-2016.01</br>3.12</nobr>|
+|**[Lua](http://www.lua.org/)**|Lua is a powerful, fast, lightweight, embeddable scripting language. Lua combines simple procedural syntax with powerful data description constructs based on associative arrays and extensible semantics. Lua is dynamically typed, runs by interpreting bytecode for a register-based virtual machine, and has automatic memory management with incremental garbage collection, making it ideal for configuration, scripting, and rapid prototyping.|<nobr>.5.1.4-8</br>5.1.4-8.lua</nobr>|
+|**[Mono](http://www.mono-project.com)**|Mono is an open source implementation of Microsoft's .NET Framework based on the ECMA standards for C# and the Common Language Runtime.|<nobr>4.0.3.20-GNU-5.1.0-2.25</br>3.12.1</br>3.12.1-GCC-4.4.7-system</br>4.2.2.10-intel-2016.01</nobr>|
+|**[NASM](http://www.nasm.us/)**|NASM: General-purpose x86 assembler|<nobr>2.11.05-foss-2015b</br>2.11.06-intel-2015b</br>2.11.05-intel-2015b</br>2.11.05-foss-2015g</br>2.11.08-foss-2015b</br>2.11.05</br>2.11.08-intel-2017.00</nobr>|
+|**[OpenCL-builder](https://software.intel.com/en-us/intel-opencl)**|OpenCLâ„¢ is the first open, royalty-free standard for cross-platform, parallel programming of modern processors found in personal computers, servers and handheld/embedded devices. OpenCL (Open Computing Language) greatly improves speed and responsiveness for a wide spectrum of applications in numerous market categories from gaming and entertainment to scientific and medical software. This is builder (formerly runtime) package.|<nobr>2015</nobr>|
+|**[OpenCL-runtime](https://software.intel.com/en-us/intel-opencl)**|OpenCLâ„¢ is the first open, royalty-free standard for cross-platform, parallel programming of modern processors found in personal computers, servers and handheld/embedded devices. OpenCL (Open Computing Language) greatly improves speed and responsiveness for a wide spectrum of applications in numerous market categories from gaming and entertainment to scientific and medical software.|<nobr>15.1</nobr>|
+|**[Perl](http://www.perl.org/)**|Larry Wall's Practical Extraction and Report Language|<nobr>5.16.3-intel-2015b</br>5.20.2-bare</br>5.20.2-GNU-4.9.3-2.25-bare</br>5.22.2-intel-2017.00</nobr>|
+|**[Python](http://python.org/)**|Python is a programming language that lets you work more quickly and integrate your systems more effectively.|<nobr>2.7.8-intel-2015b</br>2.7.9-intel-2015b</br>2.7.9-ictce-7.3.5</br>2.7.9-foss-2015b</br>2.7.9-GNU-5.1.0-2.25</br>2.7.9-gompi-2015e</br>2.7.9-foss-2015g</br>2.7.9-intel-2016.01</br>2.7.8-intel-2016.01</br>2.7.11-intel-2015b</br>2.7.10-GNU-4.9.3-2.25-bare</br>2.7.10-GCC-4.9.3-2.25-bare</br>3.5.1-intel-2016.01</br>2.7.9</br>3.5.1</br>2.7.11-GCC-4.9.3-2.25-bare</br>3.5.1-intel-2017.00</br>3.5.2-intel-2017.00</br>2.7.11-intel-2016a</br>3.5.2-foss-2016a</br>2.7.11-foss-2016a</br>2.7.11-intel-2017.00</br>3.5.2.lua</br>3.4.3-intel-2015b</nobr>|
+|**[R](http://www.r-project.org/)**|R is a free software environment for statistical computing and graphics.|<nobr>3.1.1-intel-2015b</br>3.2.3-intel-2016.01</br>3.2.3-foss-2015b</nobr>|
+|**[Racket](http://racket-lang.org)**|Racket is a full-spectrum programming language. It goes beyond Lisp and Scheme with dialects that support objects, types, laziness, and more.|<nobr>6.1.1-GNU-5.1.0-2.25</nobr>|
+|**[Ruby](https://www.ruby-lang.org)**|Ruby is a dynamic, open source programming language with a focus on simplicity and productivity. It has an elegant syntax that is natural to read and easy to write.|<nobr>2.1.5-intel-2015b</br>2.3.1</nobr>|
+|**[SIP](http://www.riverbankcomputing.com/software/sip/)**|SIP is a tool that makes it very easy to create Python bindings for C and C++ libraries.|<nobr>4.16.4-foss-2015g-Python-2.7.9</br>4.17-foss-2015g-Python-2.7.9</br>4.17-Python-2.7.9</nobr>|
+|**[SnuCL](http://snucl.snu.ac.kr)**|An OpenCL Framework for Heterogeneous Clusters|<nobr>1.3.3-gompi-2015e</nobr>|
+|**[Tcl](http://www.tcl.tk/)**|Tcl (Tool Command Language) is a very powerful but easy to learn dynamic programming language, suitable for a very wide range of uses, including web and desktop applications, networking, administration, testing and many more.|<nobr>8.6.3-intel-2015b</br>8.5.12-intel-2015b</br>8.6.3-ictce-7.3.5</br>8.6.3-foss-2015b</br>8.6.3-GNU-5.1.0-2.25</br>8.6.3-gompi-2015e</br>8.6.3-foss-2015g</br>8.6.3-intel-2016.01</br>8.6.4-intel-2015b</br>8.6.4-GNU-4.9.3-2.25</br>8.6.4-GCC-4.9.3-2.25</br>8.6.4-foss-2015b</br>8.6.4-foss-2015g</br>8.6.4-intel-2016.01</br>8.6.4</br>8.6.3</br>8.5.12</br>8.6.4-intel-2017.00</br>8.6.4-intel-2016a</br>8.6.4-foss-2016a</nobr>|
+
+## Lib
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[FOX](http://fox-toolkit.org)**|FOX is a C++ based Toolkit for developing Graphical User Interfaces easily and effectively. It offers a wide, and growing, collection of Controls, and provides state of the art facilities such as drag and drop, selection, as well as OpenGL widgets for 3D graphical manipulation.|<nobr>1.6.51-foss-2015g</nobr>|
+|**[libdrm](http://dri.freedesktop.org)**|Direct Rendering Manager runtime library.|<nobr>2.4.27-foss-2015g</br>2.4.27</br>2.4.67-intel-2016a</br>2.4.68-intel-2016a</br>2.4.68-foss-2016a</nobr>|
+|**[libffi](http://sourceware.org/libffi/)**|The libffi library provides a portable, high level programming interface to various calling conventions. This allows a programmer to call any function specified by a call interface description at run-time.|<nobr>3.1-intel-2015b</br>3.1-GNU-5.1.0-2.25</br>3.0.13-intel-2015b</br>3.1-foss-2015b</br>3.0.13-foss-2015b</br>3.0.13-foss-2015g</br>3.1-intel-2016.01</br>3.0.13</br>3.2.1-intel-2017.00</nobr>|
+|**[libfontenc](http://www.freedesktop.org/wiki/Software/xlibs/)**|X11 font encoding library|<nobr>1.1.3-foss-2015g</br>1.1.3</br>1.1.3-intel-2016a</br>1.1.3-foss-2016a</nobr>|
+|**[libjpeg-turbo](http://sourceforge.net/libjpeg-turbo/)**|libjpeg-turbo is a fork of the original IJG libjpeg which uses SIMD to accelerate baseline JPEG compression and decompression. libjpeg is a library that implements JPEG image encoding, decoding and transcoding.|<nobr>1.3.1-foss-2015b</br>1.3.1-intel-2015b</br>1.4.0-intel-2015b</br>1.4.0-foss-2015g</br>1.4.1-foss-2015b</br>1.4.0</br>1.4.2-intel-2017.00</nobr>|
+|**[libmatheval](http://www.gnu.org/software/libmatheval/)**|GNU libmatheval is a library (callable from C and Fortran) to parse and evaluate symbolic expressions input as text.|<nobr>1.1.8-intel-2015b</br>1.1.8-foss-2015b</br>1.1.8-foss-2015g</br>1.1.8</nobr>|
+|**[libMesh](http://libmesh.github.io/)**|The libMesh library provides a framework for the numerical simulation of partial differential equations using arbitrary unstructured discretizations on serial and parallel platforms. A major goal of the library is to provide support for adaptive mesh refinement (AMR) computations in parallel while allowing a research scientist to focus on the physics they are modeling.|<nobr>0.9.5-intel-2016.01</nobr>|
+|**[libpng](http://www.libpng.org/pub/png/libpng.html)**|libpng is the official PNG reference library|<nobr>1.6.9-intel-2015b</br>1.6.9-ictce-5.5.0</br>1.6.12-intel-2015b</br>1.6.12-foss-2015b</br>1.6.12-intel-2016.01</br>1.6.12-foss-2015g</br>1.6.21-foss-2015g</br>1.6.21-foss-2015b</br>1.6.17-foss-2015b</br>1.6.12</br>1.6.21-intel-2016a</br>1.6.21-foss-2016a</br>1.6.21-intel-2017.00</br>1.6.16-intel-2015b.lua</nobr>|
+|**[libpthread-stubs](http://xcb.freedesktop.org/)**|The X protocol C-language Binding (XCB) is a replacement for Xlib featuring a small footprint, latency hiding, direct access to the protocol, improved threading support, and extensibility.|<nobr>0.3-intel-2015b</br>0.3-foss-2015g</br>0.3</br>0.3-intel-2016a</br>0.3-foss-2016a</nobr>|
+|**[libreadline](http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html)**|The GNU Readline library provides a set of functions for use by applications that allow users to edit command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes additional functions to maintain a list of previously-entered command lines, to recall and perhaps reedit those lines, and perform csh-like history expansion on previous commands.|<nobr>6.2-intel-2015b</br>6.2-ictce-5.5.0</br>6.3-intel-2015b</br>6.3-GNU-5.1.0-2.25</br>6.3-ictce-7.3.5</br>6.3-foss-2015b</br>6.3-gompi-2015e</br>6.3-foss-2015g</br>6.3-intel-2016.01</br>6.3-GNU-4.9.3-2.25</br>6.3-GCCcore-4.9.3</br>6.3</br>6.3-intel-2017.00</br>6.3-intel-2016a</br>6.3-foss-2016a</br>.6.3</nobr>|
+|**[LibTIFF](http://www.remotesensing.org/libtiff/)**|tiff: Library and tools for reading and writing TIFF data files|<nobr>4.0.3-intel-2015b</br>4.0.3</nobr>|
+|**[libtool](http://www.gnu.org/software/libtool)**|GNU libtool is a generic library support script. Libtool hides the complexity of using shared libraries behind a consistent, portable interface.|<nobr>2.4.6-GNU-5.1.0-2.25</br>2.4.2-intel-2015b</br>2.4.2-foss-2015b</br>2.4.6-GNU-4.9.3-2.25</br>2.4.2-foss-2015g</br>2.4.6-intel-2015b</br>2.4.6-GCC-4.9.3-2.25</br>2.4.6-foss-2015g</br>2.4.6-intel-2016.01</br>2.4.6</br>2.4.2</br>2.4.6-intel-2017.00</br>2.4.6-intel-2016a</br>2.4.6-foss-2016a</nobr>|
+|**[libunistring](http://www.gnu.org/software/libunistring/)**|This library provides functions for manipulating Unicode strings and for manipulating C strings according to the Unicode standard.|<nobr>0.9.3-intel-2015b</br>0.9.3-foss-2015b</br>0.9.3-foss-2015g</br>0.9.3</nobr>|
+|**[libunwind](http://www.nongnu.org/libunwind/)**|The primary goal of libunwind is to define a portable and efficient C programming interface (API) to determine the call-chain of a program. The API additionally provides the means to manipulate the preserved (callee-saved) state of each call-frame and to resume execution at any point in the call-chain (non-local goto). The API supports both local (same-process) and remote (across-process) operation. As such, the API is useful in a number of applications|<nobr>1.1-GCC-5.4.0-2.26</nobr>|
+|**[libxcb](http://xcb.freedesktop.org/)**|The X protocol C-language Binding (XCB) is a replacement for Xlib featuring a small footprint, latency hiding, direct access to the protocol, improved threading support, and extensibility.|<nobr>1.10-Python-2.7.8</br>1.11-intel-2015b-Python-2.7.9</br>1.11-foss-2015g-Python-2.7.9</br>1.11-Python-2.7.9</br>1.11.1-intel-2016a</br>1.11.1-foss-2016a</nobr>|
+|**[libxml2](http://xmlsoft.org/)**|Libxml2 is the XML C parser and toolchain developed for the Gnome project (but usable outside of the Gnome platform).|<nobr>2.9.2-intel-2015b</br>2.9.2-ictce-7.3.5</br>2.9.2-foss-2015b</br>2.9.2-GNU-5.1.0-2.25</br>2.9.2-gompi-2015e</br>2.9.2-foss-2015g</br>2.9.2-foss-2015g-Python-2.7.9</br>2.9.2-GNU-4.9.3-2.25</br>2.9.2-GCC-4.9.3-2.25</br>2.9.2</br>2.9.3-intel-2017.00</br>2.9.3-foss-2016a</br>2.9.3-intel-2016a</nobr>|
+|**libxslt**|&nbsp;|<nobr>1.1.28-intel-2015b.lua</nobr>|
+|**libyaml**|&nbsp;|<nobr>0.1.6-intel-2015b.lua</nobr>|
+|**lxml**|&nbsp;|<nobr>3.4.4-intel-2015b-Python-2.7.9.lua</nobr>|
+|**[OpenCoarrays](http://www.opencoarrays.org)**|OpenCoarrays is an open-source software project for developing, porting and tuning transport layers that support coarray Fortran compilers.|<nobr>1.0.0-GNU-5.1.0-2.25</br>1.0.1-GNU-5.1.0-2.25</nobr>|
+|**[PROJ](http://trac.osgeo.org/proj/)**|Program proj is a standard Unix filter function which converts geographic longitude and latitude coordinates into cartesian coordinates|<nobr>4.8.0-foss-2015b</br>4.9.2-intel-2017.00</nobr>|
+|**PyYAML**|&nbsp;|<nobr>3.11-intel-2015b-Python-2.7.9.lua</nobr>|
+|**[QCA](http://delta.affinix.com/qca/)**|QCA aims to provide a straightforward and cross-platform crypto API, using Qt datatypes and conventions. QCA separates the API from the implementation, using plugins known as Providers|<nobr>2.1.0-foss-2015g</nobr>|
+|**[QGIS](http://www.qgis.org)**|A Free and Open Source Geographic Information System|<nobr>2.12.3-foss-2015g</nobr>|
+|**[Qwt](http://qwt.sourceforge.net/index.html)**|The Qwt library contains GUI Components and utility classes which are primarily useful for programs with a technical background. Beside a framework for 2D plots it provides scales, sliders, dials, compasses, thermometers, wheels and knobs to control or display values, arrays, or ranges of type double.|<nobr>6.1.2-foss-2015g</nobr>|
+|**[SIONlib](http://www.fz-juelich.de/ias/jsc/EN/Expertise/Support/Software/SIONlib/_node.html)**|SIONlib is a scalable I/O library for parallel access to task-local files. The library not only supports writing and reading binary data to or from several thousands of processors into a single or a small number of physical files, but also provides global open and close functions to access SIONlib files in parallel. This package provides a stripped-down installation of SIONlib for use with performance tools (e.g., Score-P), with renamed symbols to avoid conflicts when an application using SIONlib itself is linked against a tool requiring a different SIONlib version.|<nobr>1.6.1-tools</br>1.6.1-intel-2015b-tools</nobr>|
+|**[spatialindex](https://libspatialindex.github.io/index.html)**|The purpose of this library is to provide: * An extensible framework that will support robust spatial indexing methods. * Support for sophisticated spatial queries. Range, point location, nearest neighbor and k-nearest neighbor as well as parametric queries (defined by spatial constraints) should be easy to deploy and run. * Easy to use interfaces for inserting, deleting and updating information.|<nobr>1.8.5-foss-2015g</nobr>|
+|**[SpatiaLite](https://www.gaia-gis.it/fossil/libspatialite/index)**|SpatiaLite is an open source library intended to extend the SQLite core to support fully fledged Spatial SQL capabilities.|<nobr>4.3.0a-foss-2015g</nobr>|
+|**[tbb](http://software.intel.com/en-us/articles/intel-tbb/)**|Intel Threading Building Blocks 4.0 (Intel TBB) is a widely used, award-winning C++ template library for creating reliable, portable, and scalable parallel applications. Use Intel TBB for a simple and rapid way of developing robust task-based parallel applications that scale to available processor cores, are compatible with multiple environments, and are easier to maintain. Intel TBB is the most proficient way to implement future-proof parallel applications that tap into the power and performance of multicore and manycore hardware platforms.|<nobr>4.3.5.187</br>4.4.2.152</nobr>|
+|**[zlib](http://www.zlib.net/)**|zlib is designed to be a free, general-purpose, legally unencumbered -- that is, not covered by any patents -- lossless data-compression library for use on virtually any computer hardware and operating system.|<nobr>1.2.8-GCC-5.1.0-binutils-2.25</br>1.2.7-foss-2015b</br>1.2.8-foss-2015b</br>1.2.7-intel-2015b</br>1.2.7-ictce-5.5.0</br>1.2.8-intel-2015b</br>1.2.8-GNU-5.1.0-2.25</br>1.2.8-ictce-7.3.5</br>1.2.8-gompi-2015e</br>1.2.8-GCC-4.9.3-binutils-2.25</br>1.2.8-foss-2015g</br>1.2.8-GCCcore-4.9.3</br>1.2.8-intel-2016.01</br>1.2.8-GCCcore-5.3.0</br>1.2.8-GCCcore-5.3.1-snapshot-20160419</br>1.2.8-GNU-4.9.3-2.25</br>1.2.8-GCC-4.9.3-2.25</br>1.2.8</br>1.2.8-GNU-5.1.0-2.25-intel-2015b</br>1.2.8-GCCcore-5.4.0</br>1.2.8-intel-2017.00</br>1.2.8-intel-2016a</br>1.2.8-foss-2016a</br>.1.2.8-intel-2017.00</br>1.2.8-GCCcore-6.2.0.lua</nobr>|
+
+## Math
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[FIAT](https://bitbucket.org/fenics-project/fiat)**|The FInite element Automatic Tabulator FIAT supports generation of arbitrary order instances of the Lagrange elements on lines, triangles, and tetrahedra. It is also capable of generating arbitrary order instances of Jacobi-type quadrature rules on the same element shapes.|<nobr>1.6.0-intel-2015b-Python-2.7.9</br>1.6.0-intel-2016.01-Python-2.7.9</br>1.6.0-intel-2015b-Python-2.7.11</nobr>|
+|**[GEOS](http://trac.osgeo.org/geos)**|GEOS (Geometry Engine - Open Source) is a C++ port of the Java Topology Suite (JTS)|<nobr>3.5.0-foss-2015g</nobr>|
+|**[GMP](http://gmplib.org/)**|GMP is a free library for arbitrary precision arithmetic, operating on signed integers, rational numbers, and floating point numbers.|<nobr>5.0.5-intel-2015b</br>5.0.5-foss-2015b</br>6.0.0a-foss-2015b</br>6.0.0a-GNU-5.1.0-2.25</br>5.0.5-foss-2015g</br>6.1.0-intel-2015b</br>6.0.0a-GNU-4.9.3-2.25</br>6.1.0-GCC-4.9.3-2.25</br>6.1.0-intel-2016.01</br>5.0.5</br>6.0.0a</br>6.1.0-intel-2017.00</br>6.1.0-intel-2016a</br>6.1.0-foss-2016a</br>6.1.1-intel-2017.00</nobr>|
+|**[Harminv](http://ab-initio.mit.edu/wiki/index.php/Harminv)**|Harminv is a free program (and accompanying library) to solve the problem of harmonic inversion - given a discrete-time, finite-length signal that consists of a sum of finitely-many sinusoids (possibly exponentially decaying) in a given bandwidth, it determines the frequencies, decay constants, amplitudes, and phases of those sinusoids.|<nobr>1.4-intel-2015b</nobr>|
+|**[ISL](http://isl.gforge.inria.fr/)**|isl is a library for manipulating sets and relations of integer points bounded by linear constraints.|<nobr>0.14-GNU-5.1.0-2.25</br>0.15-GNU-4.9.3-2.25</br>0.15-GCC-4.9.3-2.25</br>0.15</nobr>|
+|**[METIS](http://glaros.dtc.umn.edu/gkhome/metis/metis/overview)**|METIS is a set of serial programs for partitioning graphs, partitioning finite element meshes, and producing fill reducing orderings for sparse matrices. The algorithms implemented in METIS are based on the multilevel recursive-bisection, multilevel k-way, and multi-constraint partitioning schemes.|<nobr>5.1.0-intel-2015b</br>5.1.0-intel-2016.01</br>5.1.0-intel-2016.01-32bitIDX</br>5.1.0-intel-2017.00</nobr>|
+|**MPC**|&nbsp;|<nobr>1.0.2-intel-2017.00.lua</nobr>|
+|**[MPFR](http://www.mpfr.org)**|The MPFR library is a C library for multiple-precision floating-point computations with correct rounding.|<nobr>3.1.5-intel-2017.00</nobr>|
+|**[numpy](http://www.numpy.org)**|NumPy is the fundamental package for scientific computing with Python. It contains among other things: a powerful N-dimensional array object, sophisticated (broadcasting) functions, tools for integrating C/C++ and Fortran code, useful linear algebra, Fourier transform, and random number capabilities. Besides its obvious scientific uses, NumPy can also be used as an efficient multi-dimensional container of generic data. Arbitrary data-types can be defined. This allows NumPy to seamlessly and speedily integrate with a wide variety of databases.|<nobr>1.9.1-intel-2015b-Python-2.7.9</br>1.8.2-intel-2015b-Python-2.7.9</br>1.8.2-intel-2016.01-Python-2.7.9</br>1.8.2-intel-2015b-Python-2.7.11</nobr>|
+|**[Octave](http://www.gnu.org/software/octave/)**|GNU Octave is a high-level interpreted language, primarily intended for numerical computations.|<nobr>3.8.2-intel-2015b</br>4.0.0-foss-2015g</br>3.8.2-foss-2015g</nobr>|
+|**[ParMETIS](http://glaros.dtc.umn.edu/gkhome/metis/parmetis/overview)**|ParMETIS is an MPI-based parallel library that implements a variety of algorithms for partitioning unstructured graphs, meshes, and for computing fill-reducing orderings of sparse matrices. ParMETIS extends the functionality provided by METIS and includes routines that are especially suited for parallel AMR computations and large scale numerical simulations. The algorithms implemented in ParMETIS are based on the parallel multilevel k-way graph-partitioning, adaptive repartitioning, and parallel multi-constrained partitioning schemes.|<nobr>4.0.3-intel-2015b</br>4.0.3-intel-2016.01</nobr>|
+|**[ScientificPython](https://sourcesup.cru.fr/projects/scientific-py/)**|ScientificPython is a collection of Python modules for scientific computing. It contains support for geometry, mathematical functions, statistics, physical units, IO, visualization, and parallelization.|<nobr>2.9.4-intel-2015b-Python-2.7.9</br>2.9.4-intel-2016.01-Python-2.7.9</br>2.9.4-intel-2015b-Python-2.7.11</nobr>|
+|**[SCOTCH](http://gforge.inria.fr/projects/scotch/)**|Software package and libraries for sequential and parallel graph partitioning, static mapping, and sparse matrix block ordering, and sequential mesh and hypergraph partitioning.|<nobr>5.1.12b_esmumps-foss-2015b</br>6.0.0_esmumps-intel-2015b</br>6.0.3-intel-2015b</br>6.0.3-intel-2016.01</br>6.0.4-intel-2015b</br>6.0.4-intel-2016.01</nobr>|
+|**[sympy](http://sympy.org/)**|SymPy is a Python library for symbolic mathematics. It aims to become a full-featured computer algebra system (CAS) while keeping the code as simple as possible in order to be comprehensible and easily extensible. SymPy is written entirely in Python and does not require any external libraries.|<nobr>0.7.6-intel-2015b-Python-2.7.9</br>0.7.6-intel-2016.01-Python-2.7.9</br>0.7.6.1-intel-2015b-Python-2.7.11</nobr>|
+
+## Mpi
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[impi](http://software.intel.com/en-us/intel-mpi-library/)**|The Intel(R) MPI Library for Linux* OS is a multi-fabric message passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification.|<nobr>4.1.1.036-iccifort-2013.5.192-GCC-4.8.3</br>4.1.1.036-iccifort-2013.5.192</br>5.0.3.048-iccifort-2015.3.187-GNU-5.1.0-2.25</br>5.0.3.048-iccifort-2015.3.187</br>5.0.3.048</br>5.1.1.109-iccifort-2016.0.109-GCC-4.9.3</br>5.1.2.150-iccifort-2016.1.150-GCC-4.9.3</br>5.1.2.150-iccifort-2016.1.150-GCC-4.9.3-2.25</br>5.1.2.150-iccifort-2016.1.150</br>2017-BETA.ENG</br>5.1.3.181-iccifort-2016.3.210-GCC-5.3.0-2.26</br>2017.0.098-iccifort-2017.0.098-GCC-5.4.0-2.26</nobr>|
+|**[MPI_NET](http://www.osl.iu.edu/research/mpi.net/)**|MPI.NET is a high-performance, easy-to-use implementation of the Message Passing Interface (MPI) for Microsoft's .NET environment|<nobr>1.2.0-gompi-2015e</br>1.2.0-intel-2016.01</nobr>|
+|**[MPICH](http://www.mpich.org/)**|MPICH v3.x is an open source high-performance MPI 3.0 implementation. It does not support InfiniBand (use MVAPICH2 with InfiniBand devices).|<nobr>3.2-GCC-5.3.0-2.25</br>3.2-GCC-5.3.1-snapshot-20160419-2.25</nobr>|
+|**mpt**|&nbsp;|<nobr>2.12</nobr>|
+|**[MVAPICH2](http://mvapich.cse.ohio-state.edu/overview/mvapich2/)**|This is an MPI 3.0 implementation. It is based on MPICH2 and MVICH.|<nobr>2.1-GNU-5.1.0-2.25</br>2.1-GCC-4.4.7-system</br>2.1-iccifort-2015.3.187-GNU-5.1.0-2.25</nobr>|
+|**[OpenMPI](http://www.open-mpi.org/)**|The Open MPI Project is an open source MPI-2 implementation.|<nobr>1.8.6-GNU-5.1.0-2.25</br>1.8.6-iccifort-2015.3.187-GNU-5.1.0-2.25</br>1.8.8-GNU-5.1.0-2.25</br>1.8.6-GCC-4.4.7-system</br>1.8.8-GNU-4.9.3-2.25</br>1.8.8-iccifort-2015.3.187-GNU-4.9.3-2.25</br>1.10.1-GCC-4.9.3-2.25</br>1.10.2-GCC-5.3.0-2.26</br>1.10.1-GNU-4.9.3-2.25</br>1.10.2-GCC-4.9.3-2.25</nobr>|
+
+## Numlib
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[Armadillo](http://arma.sourceforge.net/)**|Armadillo is an open-source C++ linear algebra library (matrix maths) aiming towards a good balance between speed and ease of use. Integer, floating point and complex numbers are supported, as well as a subset of trigonometric and statistics functions.|<nobr>7.500.0-foss-2016a-Python-3.5.2</nobr>|
+|**[arpack-ng](http://forge.scilab.org/index.php/p/arpack-ng/)**|ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems.|<nobr>3.3.0-intel-2015b</br>3.3.0-intel-2017.00</br>3.3.0-foss-2016a</br>3.4.0-intel-2017.00</nobr>|
+|**[FFTW](http://www.fftw.org)**|FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) in one or more dimensions, of arbitrary input size, and of both real and complex data.|<nobr>3.3.4-gompi-2015b</br>3.3.4-intel-2015b</br>2.1.5-gompi-2015b</br>2.1.5-iimpi-7.3.5-GNU-5.1.0-2.25</br>3.3.4-gompi-2015e</br>3.3.4-gompi-2015g</br>3.3.4-intel-2016.01</br>3.3.4-gompi-2016.04</br>3.3.5-intel-2016.01</br>3.3.4-gompi-2016a</br>3.3.5-foss-2016a</br>3.3.5-gompi-2016a</br>3.3.5-intel-2016a</br>3.3.5-intel-2017.00</nobr>|
+|**[GSL](http://www.gnu.org/software/gsl/)**|The GNU Scientific Library (GSL) is a numerical library for C and C++ programmers. The library provides a wide range of mathematical routines such as random number generators, special functions and least-squares fitting.|<nobr>1.16-intel-2015b</nobr>|
+|**[Hypre](https://computation.llnl.gov/casc/linear_solvers/sls_hypre.html)**|Hypre is a library for solving large, sparse linear systems of equations on massively parallel computers. The problems of interest arise in the simulation codes being developed at LLNL and elsewhere to study physical phenomena in the defense, environmental, energy, and biological sciences.|<nobr>2.10.0b-intel-2015b</br>2.10.0b-intel-2016.01</br>2.10.1-intel-2015b</nobr>|
+|**[imkl](http://software.intel.com/en-us/intel-mkl/)**|Intel Math Kernel Library is a library of highly optimized, extensively threaded math routines for science, engineering, and financial applications that require maximum performance. Core math functions include BLAS, LAPACK, ScaLAPACK, Sparse Solvers, Fast Fourier Transforms, Vector Math, and more.|<nobr>11.0.5.192-iimpi-5.5.0</br>11.0.5.192-iimpi-5.5.0-GCC-4.8.3</br>11.2.3.187-iimpi-7.3.5</br>11.2.3.187-iimpi-7.3.5-GNU-5.1.0-2.25</br>11.2.3.187</br>11.3.0.109-iimpi-2016.00-GCC-4.9.3</br>11.3.1.150-iimpi-2016.00-GCC-4.9.3</br>11.3.1.150-iimpi-8.3.5</br>11.3.1.150-iimpi-2016.01-GCC-4.9.3-2.25</br>11.3.3.210-iimpi-2016.03-GCC-5.3.0-2.26</br>11.2.3.187-iompi-2015.03</br>11.3.1.150-iimpi-8.1.5-GCC-4.9.3-2.25</br>2017.0.098-iimpi-2017.00-GCC-5.4.0-2.26</nobr>|
+|**[LAPACKE](http://www.netlib.org/lapack/lapacke.html)**|LAPACKE C Interface to LAPACK header files and library|<nobr>3.5.0-LAPACK-3.5.0</nobr>|
+|**[OpenBLAS](http://xianyi.github.com/OpenBLAS/)**|OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version.|<nobr>0.2.14-LAPACK-3.5.0</br>0.2.14-GNU-5.1.0-2.25-LAPACK-3.5.0</br>0.2.14-gompi-2015e-LAPACK-3.5.0</br>0.2.14-GNU-4.9.3-2.25-LAPACK-3.5.0</br>0.2.18-GCC-5.3.0-2.26-LAPACK-3.6.0</br>0.2.15-GCC-4.9.3-2.25-LAPACK-3.6.0</br>0.2.19-GCC-5.4.0-2.26-LAPACK-3.6.0</nobr>|
+|**[PETSc](http://www.mcs.anl.gov/petsc)**|PETSc, pronounced PET-see (the S is silent), is a suite of data structures and routines for the scalable (parallel) solution of scientific applications modeled by partial differential equations.|<nobr>3.6.1-intel-2015b-Python-2.7.9</br>3.6.1-intel-2016.01-Python-2.7.9</br>3.6.3-intel-2015b-Python-2.7.11</nobr>|
+|**[ScaLAPACK](http://www.netlib.org/scalapack/)**|The ScaLAPACK (or Scalable LAPACK) library includes a subset of LAPACK routines redesigned for distributed memory MIMD parallel computers.|<nobr>2.0.2-OpenBLAS-0.2.14-LAPACK-3.5.0</br>2.0.2-gompi-2015b-OpenBLAS-0.2.14-LAPACK-3.5.0</br>2.0.2-gompi-2015e-OpenBLAS-0.2.14-LAPACK-3.5.0</br>2.0.2-gompi-2015g-OpenBLAS-0.2.14-LAPACK-3.5.0</br>2.0.2-gompi-2016.04-OpenBLAS-0.2.18-LAPACK-3.6.0</br>2.0.2-gompi-2016a-OpenBLAS-0.2.15-LAPACK-3.6.0</nobr>|
+|**[SuiteSparse](http://www.cise.ufl.edu/research/sparse/SuiteSparse/)**|SuiteSparse is a collection of libraries manipulate sparse matrices.|<nobr>4.4.3-intel-2015b-ParMETIS-4.0.3</br>4.4.3-intel-2016.01-ParMETIS-4.0.3</br>4.4.6-intel-2015b-ParMETIS-4.0.3</br>4.4.5-intel-2015b-METIS-5.1.0</br>4.5.3-intel-2017.00-METIS-5.1.0</nobr>|
+
+## Perf
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[Advisor](https://software.intel.com/intel-advisor-xe)**|Vectorization Optimization and Thread Prototyping - Vectorize & thread code or performance “dies” - Easy workflow + data + tips = faster code faster - Prioritize, Prototype & Predict performance gain|<nobr>2016_update2</br>2017</nobr>|
+|**[Cube](http://www.scalasca.org/software/cube-4.x/download.html)**|Cube, which is used as performance report explorer for Scalasca and Score-P, is a generic tool for displaying a multi-dimensional performance space consisting of the dimensions (i) performance metric, (ii) call path, and (iii) system resource. Each dimension can be represented as a tree, where non-leaf nodes of the tree can be collapsed or expanded to achieve the desired level of granularity.|<nobr>4.3.4-intel-2015b</nobr>|
+|**[ipp](http://software.intel.com/en-us/articles/intel-ipp/)**|Intel Integrated Performance Primitives (Intel IPP) is an extensive library of multicore-ready, highly optimized software functions for multimedia, data processing, and communications applications. Intel IPP offers thousands of optimized functions covering frequently used fundamental algorithms.|<nobr>9.0.1.150</nobr>|
+|**MAP**|&nbsp;|<nobr>4.2</br>5.0.1</nobr>|
+|**[OPARI2](http://www.score-p.org)**|OPARI2, the successor of Forschungszentrum Juelich's OPARI, is a source-to-source instrumentation tool for OpenMP and hybrid codes. It surrounds OpenMP directives and runtime library calls with calls to the POMP2 measurement interface.|<nobr>1.1.4-intel-2015b</br>2.0</nobr>|
+|**[OTF2](http://www.score-p.org)**|The Open Trace Format 2 is a highly scalable, memory efficient event trace data format plus support library. It will become the new standard trace format for Scalasca, Vampir, and Tau and is open for other tools.|<nobr>1.4-intel-2015b</br>2.0</br>2.0-intel-2015b-mic</nobr>|
+|**[PAPI](http://icl.cs.utk.edu/projects/papi/)**|PAPI provides the tool designer and application engineer with a consistent interface and methodology for use of the performance counter hardware found in most major microprocessors. PAPI enables software engineers to see, in near real time, the relation between software performance and processor events. In addition Component PAPI provides access to a collection of components that expose performance measurement opportunites across the hardware and software stack.|<nobr>5.4.0-intel-2015b</br>5.4.3</br>5.4.3-pic</br>5.4.3-intel-2015b-mic</br>5.4.0-p-mic</nobr>|
+|**perfboost**|&nbsp;|<nobr>1.0</nobr>|
+|**perfcatcher**|&nbsp;|<nobr>1.0</nobr>|
+|**PerfReports**|&nbsp;|<nobr>5.0.1</nobr>|
+|**perfsuite**|&nbsp;|<nobr>1a5.3</nobr>|
+|**[Vampir](http://www.vampir.eu)**|The Vampir software tool provides an easy-to-use framework that enables developers to quickly display and analyze arbitrary program behavior at any level of detail. The tool suite implements optimized event analysis algorithms and customizable displays that enable fast and interactive rendering of very complex performance monitoring data.|<nobr>8.5.0</br>9.0.0</nobr>|
+|**[VampirServer](http://www.vampir.eu)**|The Vampir software tool provides an easy-to-use framework that enables developers to quickly display and analyze arbitrary program behavior at any level of detail. The tool suite implements optimized event analysis algorithms and customizable displays that enable fast and interactive rendering of very complex performance monitoring data.|<nobr>8.5.0-intel-2015b</br>9.0.0-intel-2015b</nobr>|
+
+## Phys
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[Meep](http://ab-initio.mit.edu/wiki/index.php/Meep)**|Meep (or MEEP) is a free finite-difference time-domain (FDTD) simulation software package developed at MIT to model electromagnetic systems.|<nobr>1.3-intel-2015b</nobr>|
+|**[phono3py](http://python.org/)**|Python is a programming language that lets you work more quickly and integrate your systems more effectively.|<nobr>1.11.7.8-intel-2015b-Python-2.7.9</nobr>|
+|**[phonopy](http://python.org/)**|Python is a programming language that lets you work more quickly and integrate your systems more effectively.|<nobr>1.11.6.7-intel-2015b-Python-2.7.9</nobr>|
+|**Siesta**|&nbsp;|<nobr>4.1-b2-intel-2017.00</nobr>|
+|**VASP**|&nbsp;|<nobr>5.4.1-intel-2015b-24Jun15</br>5.4.1-intel-2017.00-24Jun15</nobr>|
+
+## System
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[eudev](https://wiki.gentoo.org/wiki/Project:Eudev)**|eudev is a fork of systemd-udev with the goal of obtaining better compatibility with existing software such as OpenRC and Upstart, older kernels, various toolchains and anything else required by users and various distributions.|<nobr>3.1.5-intel-2016a</br>3.1.5-foss-2016a</nobr>|
+|**[hwloc](http://www.open-mpi.org/projects/hwloc/)**|The Portable Hardware Locality (hwloc) software package provides a portable abstraction (across OS, versions, architectures, ...) of the hierarchical topology of modern architectures, including NUMA memory nodes, sockets, shared caches, cores and simultaneous multithreading. It also gathers various system attributes such as cache and memory information as well as the locality of I/O devices such as network interfaces, InfiniBand HCAs or GPUs. It primarily aims at helping applications with gathering information about modern computing hardware so as to exploit it accordingly and efficiently.|<nobr>1.11.0-GNU-5.1.0-2.25</br>1.5-GCC-4.4.7-system</br>1.11.0-GNU-4.9.3-2.25</br>1.11.1-iccifort-2015.3.187-GNU-4.9.3-2.25</br>1.11.3-GCC-5.3.0-2.26</br>1.11.2-GCC-4.9.3-2.25</br>1.11.0</nobr>|
+|**[libpciaccess](http://cgit.freedesktop.org/xorg/lib/libpciaccess/)**|Generic PCI access library.|<nobr>0.13.1-foss-2015g</br>0.13.1</br>0.13.4-intel-2016a</br>0.13.4-foss-2016a</nobr>|
+
+## Toolchain
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[foss]((none))**|GNU Compiler Collection (GCC) based compiler toolchain, including OpenMPI for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK.|<nobr>2015e</br>2015g</br>2015b</br>2016.04</br>2016a</nobr>|
+|**[GNU](http://www.gnu.org/software/)**|Compiler-only toolchain with GCC and binutils.|<nobr>5.1.0-2.25</br>5.1.0-2.25-intel-2015b</br>4.9.3-2.25</nobr>|
+|**[gompi]((none))**|GNU Compiler Collection (GCC) based compiler toolchain, including OpenMPI for MPI support.|<nobr>2015e</br>2015g</br>2015b</br>2016.04</br>2016a</nobr>|
+|**[iccifort](http://software.intel.com/en-us/intel-cluster-toolkit-compiler/)**|Intel C, C++ and Fortran compilers|<nobr>2013.5.192</br>2013.5.192-GCC-4.8.3</br>2015.3.187</br>2015.3.187-GNU-5.1.0-2.25</br>2016.0.109-GCC-4.9.3</br>2016.1.150-GCC-4.9.3</br>2016.1.150-GCC-4.9.3-2.25</br>2016.1.150</br>2016.3.210-GCC-5.3.0-2.26</br>2015.3.187-GNU-4.9.3-2.25</br>2017.0.098-GCC-5.4.0-2.26</nobr>|
+|**[ictce](http://software.intel.com/en-us/intel-cluster-toolkit-compiler/)**|Intel Cluster Toolkit Compiler Edition provides Intel C/C++ and Fortran compilers, Intel MPI & Intel MKL.|<nobr>5.5.0</br>7.3.5</br>8.3.5</nobr>|
+|**[iimpi](http://software.intel.com/en-us/intel-cluster-toolkit-compiler/)**|Intel C/C++ and Fortran compilers, alongside Intel MPI.|<nobr>5.5.0</br>5.5.0-GCC-4.8.3</br>7.3.5</br>7.3.5-GNU-5.1.0-2.25</br>2016.00-GCC-4.9.3</br>2016.01-GCC-4.9.3</br>2016.01-GCC-4.9.3-2.25</br>8.3.5</br>2016.03-GCC-5.3.0-2.26</br>8.1.5-GCC-4.9.3-2.25</br>2017.00-GCC-5.4.0-2.26</nobr>|
+|**[intel](http://software.intel.com/en-us/intel-cluster-toolkit-compiler/)**|Intel Cluster Toolkit Compiler Edition provides Intel C/C++ and Fortran compilers, Intel MPI & Intel MKL.|<nobr>2014.06</br>2015b-intel-2015b</br>2016.00</br>2016.01</br>2015b</br>2016.03-GCC-5.3</br>2016a</br>2017.00</nobr>|
+|**[PRACE](http://www.prace-ri.eu/PRACE-Common-Production)**|The PRACE Common Production Environment (PCPE) is a set of software tools and libraries that are planned to be available on all PRACE execution sites. The PCPE also defines a set of environment variables that try to make compilation on all sites as homogeneous and simple as possible.|<nobr>20150630-intel-2015b</nobr>|
+|**[prace](http://www.prace-ri.eu/PRACE-Common-Production)**|**** PRACE Common Production Environment (PCPE) **** Initialisation of the PRACE common production environment. This allows you to assume that the following tools/libraries are available by default in your PATH/environment. * Fortran, C, C++ Compilers * MPI * BLAS, LAPACK, BLACS, ScaLAPACK * FFTW * HDF5, NetCDF The compiler commands on are: * mpif90 - Fortran compiler * mpicc - C compiler * mpicxx - C++ compiler For more information on the PCPE please see the documentation at: http://www.prace-ri.eu/PRACE-Common-Production For help using this system, please see Local User Guide available at: http://prace-ri.eu/Best-Practice-Guide-Anselm-HTML|<nobr>20160107-intel-2016.01</nobr>|
+
+## Tools
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[APR](http://apr.apache.org/)**|Apache Portable Runtime (APR) libraries.|<nobr>1.5.2-foss-2015g</br>1.5.2</nobr>|
+|**[APR-util](http://apr.apache.org/)**|Apache Portable Runtime (APR) util libraries.|<nobr>1.5.4-foss-2015g</br>1.5.4</nobr>|
+|**[Bash](http://www.gnu.org/software/bash)**|Bash is an sh-compatible command language interpreter that executes commands read from the standard input or from a file. Bash also incorporates useful features from the Korn and C shells (ksh and csh).|<nobr>4.2-intel-2015b</br>4.3</nobr>|
+|**[binutils](http://directory.fsf.org/project/binutils/)**|binutils: GNU binary utilities|<nobr>2.25</br>2.25-GCC-5.1.0-binutils-2.25</br>2.25-foss-2015b</br>2.25-GCC-4.9.3-binutils-2.25</br>2.25-GCCcore-4.9.3</br>2.25-GCCcore-5.3.0</br>2.25-GCCcore-5.3.1-snapshot-20160419</br>2.26</br>2.26-GCCcore-5.3.0</br>2.26-GCCcore-5.4.0</br>2.27.lua</br>2.27-GCCcore-6.2.0.lua</nobr>|
+|**[bzip2](http://www.bzip.org/)**|bzip2 is a freely available, patent free, high-quality data compressor. It typically compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical compressors), whilst being around twice as fast at compression and six times faster at decompression.|<nobr>1.0.6-foss-2015b</br>1.0.6-intel-2015b</br>1.0.6-GNU-5.1.0-2.25</br>1.0.6-ictce-7.3.5</br>1.0.6-gompi-2015e</br>1.0.6-foss-2015g</br>1.0.6-intel-2016.01</br>1.0.6-GNU-4.9.3-2.25</br>1.0.6-GCC-4.9.3-2.25</br>1.0.6</br>1.0.6-intel-2017.00</br>1.0.6-intel-2016a</br>1.0.6-foss-2016a</nobr>|
+|**[cURL](http://curl.haxx.se)**|libcurl is a free and easy-to-use client-side URL transfer library, supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, Kerberos), file transfer resume, http proxy tunneling and more.|<nobr>7.37.1-intel-2015b</br>7.37.1-intel-2016.01</br>7.37.1-foss-2015g</br>7.45.0-foss-2015b</br>7.37.1</br>7.47.0-intel-2017.00</br>7.51.0-intel-2017.00</nobr>|
+|**[EasyBuild](http://hpcugent.github.com/easybuild/)**|EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.|<nobr>2.4.0</br>2.5.0</br>2.7.0</br>2.9.0</br>2.8.0</br>3.0.0</br>3.0.1.lua</br>3.0.2.lua</br>2.1.1</br>2.2.0</br>2.3.0</nobr>|
+|**[expat](http://expat.sourceforge.net/)**|Expat is an XML parser library written in C. It is a stream-oriented parser in which an application registers handlers for things the parser might find in the XML document (like start tags)|<nobr>2.1.0-intel-2015b</br>2.1.0-foss-2015b</br>2.1.0-foss-2015g</br>2.1.0</br>2.1.0-intel-2017.00</nobr>|
+|**[git](http://git-scm.com/)**|Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.|<nobr>2.8.0-GNU-4.9.3-2.25</br>2.8.0</br>2.9.2</br>2.9.0</br>2.8.0-intel-2017.00</br>2.11.0.lua</nobr>|
+|**globus**|&nbsp;|<nobr>globus</nobr>|
+|**[gzip](http://www.gnu.org/software/gzip/)**|gzip (GNU zip) is a popular data compression program as a replacement for compress|<nobr>1.6-intel-2015b</br>1.6-foss-2015g</br>1.6</nobr>|
+|**[HPL](http://www.netlib.org/benchmark/hpl/)**|HPL is a software package that solves a (random) dense linear system in double precision (64 bits) arithmetic on distributed-memory computers. It can thus be regarded as a portable as well as freely available implementation of the High Performance Computing Linpack Benchmark.|<nobr>2.1-intel-2015b</br>2.1-foss-2015b</nobr>|
+|**[Inspector](http://software.intel.com/en-us/intel-inspector-xe)**|Intel Inspector XE 2013 is an easy to use memory error checker and thread checker for serial and parallel applications|<nobr>2016_update1</nobr>|
+|**[itac](http://software.intel.com/en-us/intel-trace-analyzer/)**|The Intel Trace Collector is a low-overhead tracing library that performs event-based tracing in applications. The Intel Trace Analyzer provides a convenient way to monitor application activities gathered by the Intel Trace Collector through graphical displays.|<nobr>9.1.2.024</nobr>|
+|**[JOE](http://joe-editor.sourceforge.net)**|JOE is a full featured terminal-based screen editor which is distributed under the GNU General Public License (GPL)|<nobr>4.2</nobr>|
+|**[likwid](https://github.com/RRZE-HPC/likwid)**|Toolsuite of command line applications for performance oriented programmers|<nobr>4.1.2-intel</br>4.1.2-gcc</nobr>|
+|**[Lmod](http://sourceforge.net/projects/lmod/)**|Lmod is a Lua based module system. Modules allow for dynamic modification of a user's environment under Unix systems. See www.tacc.utexas.edu/tacc-projects/lmod for a complete description. Lmod is a new implementation that easily handles the MODULEPATH Hierarchical problem. It is drop-in replacement for TCL/C modules and reads TCL modulefiles directly.|<nobr>7.0.6</br>7.2.2.lua</nobr>|
+|**MATLAB**|&nbsp;|<nobr>2015a-COM</br>2015a-EDU</br>2015b-COM</br>2015b-EDU</nobr>|
+|**[Mercurial](http://mercurial.selenic.com/)**|Mercurial is a free, distributed source control management tool. It efficiently handles projects of any size and offers an easy and intuitive interface.|<nobr>3.5-Python-2.7.9</br>3.7.3-foss-2015g-Python-2.7.9</nobr>|
+|**[MIKE](http://www.mikepoweredbydhi.com)**|MIKE Powered by DHI is a part of DHI, the global organisation dedicated to solving challenges in water environments worldwide.|<nobr>2016</br>2014</br>2016-SP2</nobr>|
+|**[numactl](http://oss.sgi.com/projects/libnuma/)**|The numactl program allows you to run your application program on specific cpu's and memory nodes. It does this by supplying a NUMA memory policy to the operating system before running your program. The libnuma library provides convenient ways for you to add NUMA memory policies into your own program.|<nobr>2.0.10-GNU-5.1.0-2.25</br>2.0.9-GCC-4.4.7-system</br>2.0.10-GNU-4.9.3-2.25</br>2.0.10-iccifort-2015.3.187-GNU-4.9.3-2.25</br>2.0.11-GCC-5.3.0-2.26</br>2.0.11-GCC-4.9.3-2.25</br>2.0.11</br>2.0.10</nobr>|
+|**[PAPI](http://icl.cs.utk.edu/projects/papi/)**|PAPI provides the tool designer and application engineer with a consistent interface and methodology for use of the performance counter hardware found in most major microprocessors. PAPI enables software engineers to see, in near real time, the relation between software performance and processor events. In addition Component PAPI provides access to a collection of components that expose performance measurement opportunites across the hardware and software stack.|<nobr>5.4.0-mic</nobr>|
+|**[parallel](http://savannah.gnu.org/projects/parallel/)**|parallel: Build and execute shell commands in parallel|<nobr>20150322-GNU-5.1.0-2.25</br>20150322</nobr>|
+|**pigz**|&nbsp;|<nobr>2.3.3-GCC-6.2.0-2.27.lua</nobr>|
+|**[QEMU](http://wiki.qemu.org/Main_Page)**|QEMU is a generic and open source machine emulator and virtualizer.|<nobr>2.1.2-GCC-4.4.7-system</br>2.1.2-GCC-4.4.7-system-VDE2</nobr>|
+|**[RStudio](https://www.rstudio.com)**|RStudio is a set of integrated tools designed to help you be more productive with R. It includes a console, syntax-highlighting editor that supports direct code execution, as well as tools for plotting, history, debugging and workspace management.|<nobr>0.98.1103</nobr>|
+|**Scalasca**|&nbsp;|<nobr>2.3.1-intel-2015b</nobr>|
+|**Score-P**|&nbsp;|<nobr>3.0-intel-2015b</nobr>|
+|**[SDE](https://software.intel.com/en-us/articles/intel-software-development-emulator)**|Intel Software Development Emulator is a pintool that enables the development of applications using instruction set extensions that are not currently implemented in hardware.|<nobr>7.41.0</nobr>|
+|**[Serf](http://serf.apache.org/)**|The serf library is a high performance C-based HTTP client library built upon the Apache Portable Runtime (APR) library|<nobr>1.3.8-foss-2015g</nobr>|
+|**[Subversion](http://subversion.apache.org/)**|Subversion is an open source version control system.|<nobr>1.8.16-foss-2015g</nobr>|
+|**[Szip](http://www.hdfgroup.org/doc_resource/SZIP/)**|Szip compression software, providing lossless compression of scientific data|<nobr>2.1-foss-2015b</br>2.1-intel-2015b</br>2.1-ictce-7.3.5</br>2.1-intel-2016.01</br>2.1-foss-2015g</br>2.1</br>2.1-foss-2016a</br>2.1-intel-2017.00</nobr>|
+|**[tcsh](http://www.tcsh.org)**|Tcsh is an enhanced, but completely compatible version of the Berkeley UNIX C shell (csh). It is a command language interpreter usable both as an interactive login shell and a shell script command processor. It includes a command-line editor, programmable word completion, spelling correction, a history mechanism, job control and a C-like syntax.|<nobr>6.18.01-intel-2015b</br>6.19.00</nobr>|
+|**[turbovnc](http://www.turbovnc.org)**|TurboVNC is a derivative of VNC (Virtual Network Computing) that is tuned to provide peak performance for 3D and video workloads.|<nobr>1.2.3</nobr>|
+|**[util-linux](http://www.kernel.org/pub/linux/utils/util-linux)**|Set of Linux utilities|<nobr>2.26.1</br>2.26.1-foss-2015g</nobr>|
+|**[VDE2](http://vde.sourceforge.net)**|VDE is an ethernet compliant virtual network that can be spawned over a set of physical computer over the Internet. VDE is part of virtualsquare project.|<nobr>2.3.2-GCC-4.4.7-system</nobr>|
+|**[VirtualGL](http://www.virtualgl.org)**|VirtualGL is an open source toolkit that gives any Unix or Linux remote display software the ability to run OpenGL applications with full 3D hardware acceleration.|<nobr>2.4.1</nobr>|
+|**[VTune](http://software.intel.com/en-us/intel-vtune-amplifier-xe)**|Intel VTune Amplifier XE 2016 is the premier performance profiler for C, C++, C#, Fortran, Assembly and Java.|<nobr>2016_update1</nobr>|
+|**[Wine](https://www.winehq.org)**|Wine (originally an acronym for "Wine Is Not an Emulator") is a compatibility layer capable of running Windows applications on several POSIX-compliant operating systems, such as Linux, Mac OSX, & BSD.|<nobr>1.7.29-GNU-5.1.0-2.25</br>1.7.29-GCC-4.4.7-system</nobr>|
+|**[XZ](http://tukaani.org/xz/)**|xz: XZ utilities|<nobr>5.2.2-intel-2016.01</br>5.2.2</br>5.2.2-intel-2017.00</br>5.2.2-foss-2016a</nobr>|
+
+## Vis
+
+|Module|Description|Available versions|
+|--|--|--|
+|**[cairo](http://cairographics.org)**|Cairo is a 2D graphics library with support for multiple output devices. Currently supported output targets include the X Window System (via both Xlib and XCB), Quartz, Win32, image buffers, PostScript, PDF, and SVG file output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB|<nobr>1.12.18-foss-2015b</br>1.12.18</nobr>|
+|**[ffmpeg](https://www.ffmpeg.org/)**|A complete, cross-platform solution to record, convert and stream audio and video.|<nobr>2.4-intel-2015b</br>2.4-foss-2015g</br>2.4</nobr>|
+|**[fixesproto](http://www.freedesktop.org/wiki/Software/xlibs)**|X.org FixesProto protocol headers.|<nobr>5.0-foss-2015g</br>5.0</br>5.0-intel-2016a</br>5.0-foss-2016a</nobr>|
+|**[FLTK](http://www.fltk.org)**|FLTK is a cross-platform C++ GUI toolkit for UNIX/Linux (X11), Microsoft Windows, and MacOS X. FLTK provides modern GUI functionality without the bloat and supports 3D graphics via OpenGL and its built-in GLUT emulation.|<nobr>1.3.2-intel-2015b</br>1.3.2</nobr>|
+|**[fontconfig](http://www.freedesktop.org/software/fontconfig)**|Fontconfig is a library designed to provide system-wide font configuration, customization and application access.|<nobr>2.11.1-intel-2015b</br>2.11.1-foss-2015b</br>2.11.1</br>2.11.94-intel-2017.00.lua</nobr>|
+|**[freetype](http://freetype.org)**|FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display servers, font conversion tools, text image generation tools, and many other products as well.|<nobr>2.5.3-intel-2015b</br>2.5.3-foss-2015b</br>2.5.3-foss-2015g</br>2.5.3</br>2.6.2-intel-2016a</br>2.6.3-intel-2016a</br>2.6.3-foss-2016a</br>2.5.5-intel-2015b.lua</br>2.6.2-intel-2017.00.lua</nobr>|
+|**[gettext](http://www.gnu.org/software/gettext/)**|GNU `gettext' is an important step for the GNU Translation Project, as it is an asset on which we may build many other steps. This package offers to programmers, translators, and even users, a well integrated set of tools and documentation|<nobr>0.19.2-intel-2015b</br>0.19.2-GNU-5.1.0-2.25</br>0.19.2-foss-2015b</br>0.19.2-intel-2016.01</br>0.19.6-foss-2015g</br>0.19.6-intel-2016.01</br>0.19.2-foss-2015g</br>0.19.2</br>0.19.6</br>0.19.7-intel-2017.00</br>0.19.6-foss-2016a</nobr>|
+|**[GLib](http://www.gtk.org/)**|GLib is one of the base libraries of the GTK+ project|<nobr>2.40.0-intel-2015b</br>2.40.0-foss-2015g</br>2.40.0-intel-2016.01</br>2.40.0</nobr>|
+|**[GPI-2](http://www.gpi-site.com/gpi2/)**|GPI-2 is an API for the development of scalable, asynchronous and fault tolerant parallel applications.|<nobr>1.1.1-gompi-2015e-MPI</br>1.1.1-gompi-2015e</nobr>|
+|**[grace](http://freecode.com/projects/grace)**|Grace is a WYSIWYG 2D plotting tool for X Windows System and Motif.|<nobr>5.1.25-intel-2015b</nobr>|
+|**[inputproto](http://www.freedesktop.org/wiki/Software/xlibs)**|X.org InputProto protocol headers.|<nobr>2.3-intel-2015b</br>2.3-foss-2015g</br>2.3</br>2.3.1-intel-2016a</br>2.3.1-foss-2016a</nobr>|
+|**[JasPer](http://www.ece.uvic.ca/~frodo/jasper/)**|The JasPer Project is an open-source initiative to provide a free software-based reference implementation of the codec specified in the JPEG-2000 Part-1 standard.|<nobr>1.900.1-intel-2015b</nobr>|
+|**[kbproto](http://www.freedesktop.org/wiki/Software/xlibs)**|X.org KBProto protocol headers.|<nobr>1.0.6-intel-2015b</br>1.0.6-foss-2015g</br>1.0.6</br>1.0.7</br>1.0.7-intel-2016a</br>1.0.7-foss-2016a</nobr>|
+|**[libGLU](ftp://ftp.freedesktop.org/pub/mesa/glu/)**|The OpenGL Utility Library (GLU) is a computer graphics library for OpenGL.|<nobr>9.0.0-foss-2015g</nobr>|
+|**[libICE](http://www.freedesktop.org/wiki/Software/xlibs)**|X Inter-Client Exchange library for freedesktop.org|<nobr>1.0.9-intel-2015b</br>1.0.9-foss-2015g</br>1.0.9</nobr>|
+|**[libX11](http://www.freedesktop.org/wiki/Software/xlibs)**|X11 client-side library|<nobr>1.6.2-Python-2.7.8</br>1.6.2-intel-2015b-Python-2.7.9</br>1.6.2-foss-2015g-Python-2.7.9</br>1.6.2-Python-2.7.9</br>1.6.3-intel-2016a</br>1.6.3-foss-2016a</nobr>|
+|**[libXau](http://www.freedesktop.org/wiki/Software/xlibs)**|The libXau package contains a library implementing the X11 Authorization Protocol. This is useful for restricting client access to the display.|<nobr>1.0.8-intel-2015b</br>1.0.8-foss-2015g</br>1.0.8</br>1.0.8-intel-2016a</br>1.0.8-foss-2016a</nobr>|
+|**[libXdamage](http://www.freedesktop.org/wiki/Software/xlibs)**|X Damage extension library|<nobr>1.1.4-foss-2015g-Python-2.7.9</br>1.1.4-intel-2016a</br>1.1.4-foss-2016a</nobr>|
+|**[libXdmcp](http://www.freedesktop.org/wiki/Software/xlibs)**|The libXdmcp package contains a library implementing the X Display Manager Control Protocol. This is useful for allowing clients to interact with the X Display Manager.|<nobr>1.1.2-intel-2015b</br>1.1.2-foss-2015g</br>1.1.2</br>1.1.2-intel-2016a</br>1.1.2-foss-2016a</nobr>|
+|**[libXext](http://www.freedesktop.org/wiki/Software/xlibs)**|Common X Extensions library|<nobr>1.3.2-Python-2.7.8</br>1.3.3-intel-2015b</br>1.3.3-foss-2015g-Python-2.7.9</br>1.3.3-foss-2015g</br>1.3.3</br>1.3.3-intel-2016a</br>1.3.3-foss-2016a</nobr>|
+|**[libXfixes](http://www.freedesktop.org/wiki/Software/xlibs)**|X Fixes extension library|<nobr>5.0.1-foss-2015g</br>5.0.1</br>5.0.1-intel-2016a</br>5.0.1-foss-2016a</nobr>|
+|**[libXfont](http://www.freedesktop.org/wiki/Software/xlibs)**|X font libary|<nobr>1.5.1-foss-2015g-Python-2.7.9</br>1.5.1-Python-2.7.9</br>1.5.1-intel-2016a</br>1.5.1-intel-2016a-freetype-2.6.3</br>1.5.1-foss-2016a-freetype-2.6.3</nobr>|
+|**[libXft](http://www.freedesktop.org/wiki/Software/xlibs)**|X11 client-side library|<nobr>2.3.2-intel-2015b</nobr>|
+|**[libXinerama](http://www.freedesktop.org/wiki/Software/xlibs)**|Xinerama multiple monitor library|<nobr>1.1.3-intel-2015b</nobr>|
+|**[libXrender](http://www.freedesktop.org/wiki/Software/xlibs)**|X11 client-side library|<nobr>0.9.8-intel-2015b</br>0.9.8</nobr>|
+|**[libXt](http://www.freedesktop.org/wiki/Software/xlibs)**|libXt provides the X Toolkit Intrinsics, an abstract widget library upon which other toolkits are based. Xt is the basis for many toolkits, including the Athena widgets (Xaw), and LessTif (a Motif implementation).|<nobr>1.1.4-intel-2015b-libX11-1.6.2</br>1.1.5-foss-2015g</br>1.1.4-foss-2015g-libX11-1.6.2</br>1.1.4-libX11-1.6.2</nobr>|
+|**matplotlib**|&nbsp;|<nobr>1.4.3-intel-2015b-Python-2.7.9.lua</nobr>|
+|**[Mesa](http://www.mesa3d.org/)**|Mesa is an open-source implementation of the OpenGL specification - a system for rendering interactive 3D graphics.|<nobr>11.0.8-foss-2015g-Python-2.7.9</br>11.2.1-foss-2016a</nobr>|
+|**[motif](http://motif.ics.com/)**|Motif refers to both a graphical user interface (GUI) specification and the widget toolkit for building applications that follow that specification under the X Window System on Unix and other POSIX-compliant systems. It was the standard toolkit for the Common Desktop Environment and thus for Unix.|<nobr>2.3.4-intel-2015b-libX11-1.6.2</br>2.3.4-foss-2015g-libX11-1.6.2</nobr>|
+|**[OpenCV](http://opencv.org/)**|OpenCV (Open Source Computer Vision Library) is an open source computer vision and machine learning software library. OpenCV was built to provide a common infrastructure for computer vision applications and to accelerate the use of machine perception in the commercial products.|<nobr>2.4.9-intel-2015b</br>3.0.0-intel-2015b</nobr>|
+|**[OpenDX](http://www.opendx.org)**|Open source visualization software package based on IBM's Visualization Data Explorer.|<nobr>4.4.4-foss-2015g</nobr>|
+|**[OSPRay](http://www.ospray.org)**|A Ray Tracing Based Rendering Engine for High-Fidelity Visualization|<nobr>0.9.1</nobr>|
+|**[p4vasp](http://www.p4vasp.at)**|p4vasp is a visualization suite for the Vienna Ab-initio Simulation Package (VASP). It contains an extensible GUI framework, that can be used to view material structure, density of states, band-structure and more.|<nobr>0.3.29-GNU-4.9.3-2.25</nobr>|
+|**[ParaView](http://www.paraview.org)**|ParaView is a scientific parallel visualizer.|<nobr>4.3-OSPRay</br>5.0.0-binary</nobr>|
+|**[pixman](http://www.pixman.org/)**|Pixman is a low-level software library for pixel manipulation, providing features such as image compositing and trapezoid rasterization. Important users of pixman are the cairo graphics library and the X server.|<nobr>0.32.6-intel-2015b</br>0.32.6-foss-2015b</br>0.32.6</nobr>|
+|**[PyQt](http://www.riverbankcomputing.co.uk/software/pyqt)**|PyQt is a set of Python v2 and v3 bindings for Digia's Qt application framework.|<nobr>4.11.3-foss-2015g-Python-2.7.9</br>4.11.4-foss-2015g-Python-2.7.9</nobr>|
+|**[SUMO](http://www.sumo.dlr.de/wiki/Main_Page)**|Simulation of Urban MObility (SUMO) is an open source, highly portable, microscopic and continuous road traffic simulation package designed to handle large road networks.|<nobr>0.25.0-foss-2015g</br>0.26.0-foss-2015g</br>0.27.1-foss-2015g</nobr>|
+|**[Tk](http://www.tcl.tk/)**|Tk is an open source, cross-platform widget toolchain that provides a library of basic elements for building a graphical user interface (GUI) in many different programming languages.|<nobr>8.5.12-intel-2015b</br>8.6.4-intel-2015b-no-X11</br>8.6.4-GNU-4.9.3-2.25-no-X11</br>8.6.4-GCC-4.9.3-2.25-no-X11</br>8.6.4-foss-2015b-no-X11</br>8.6.4-foss-2015g-no-X11</br>8.6.4-intel-2016.01-no-X11</br>8.6.4-no-X11</br>8.5.12</br>8.6.3</br>8.6.4-intel-2017.00-no-X11</br>8.6.4-intel-2016a-no-X11</br>8.6.4-foss-2016a-no-X11</nobr>|
+|**[VisIt](https://wci.llnl.gov/simulation/computer-codes/visit)**|VisIt is an Open Source, interactive, scalable, visualization, animation and analysis tool|<nobr>2.10.0</nobr>|
diff --git a/get_cvs.sh b/get_cvs.sh
new file mode 100755
index 0000000000000000000000000000000000000000..d6881b68e89446517c3df447b6bea4756cb6ae8b
--- /dev/null
+++ b/get_cvs.sh
@@ -0,0 +1,4 @@
+#!/bin/bash
+curl -s https://code.it4i.cz/hrb33/modules-anselm/raw/master/anselm.csv -o modules-anselm.csv
+curl -s https://code.it4i.cz/hrb33/modules-salomon/raw/master/salomon.csv -o modules-salomon.csv
+#curl -s https://code.it4i.cz/hrb33/modules-salomon/raw/master/salomon-uv.csv -o modules-salomon-uv.csv
diff --git a/material/404.html b/material/404.html
new file mode 100644
index 0000000000000000000000000000000000000000..67cfc1126d7185708107ec9370b36bbadbbe88d3
--- /dev/null
+++ b/material/404.html
@@ -0,0 +1,4 @@
+{% extends "main.html" %}
+{% block content %}
+  <h1>404 - Not found</h1>
+{% endblock %}
diff --git a/material/__init__.py b/material/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/material/assets/fonts/icon.eot b/material/assets/fonts/icon.eot
deleted file mode 100755
index 8f81638c2de436e1b5cc77b6a2693b2b347a0151..0000000000000000000000000000000000000000
Binary files a/material/assets/fonts/icon.eot and /dev/null differ
diff --git a/material/assets/fonts/icon.svg b/material/assets/fonts/icon.svg
deleted file mode 100755
index 86250e7b40ca0ff81476828e007118b2dfd727db..0000000000000000000000000000000000000000
--- a/material/assets/fonts/icon.svg
+++ /dev/null
@@ -1,22 +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>Generated by IcoMoon</metadata>
-<defs>
-<font id="icon" horiz-adv-x="1024">
-<font-face units-per-em="1024" ascent="960" descent="-64" />
-<missing-glyph horiz-adv-x="1024" />
-<glyph unicode="&#x20;" horiz-adv-x="512" d="" />
-<glyph unicode="&#xe600;" glyph-name="search" d="M661.333 341.334h-33.92l-11.733 11.733c41.813 48.427 66.987 111.36 66.987 180.267 0 153.173-124.16 277.333-277.333 277.333s-277.333-124.16-277.333-277.333 124.16-277.333 277.333-277.333c68.907 0 131.84 25.173 180.267 66.773l11.733-11.733v-33.707l213.333-212.907 63.573 63.573-212.907 213.333zM405.333 341.334c-106.027 0-192 85.973-192 192s85.973 192 192 192 192-85.973 192-192-85.973-192-192-192z" />
-<glyph unicode="&#xe601;" glyph-name="arrow-back" d="M853.333 469.334h-519.253l238.293 238.293-60.373 60.373-341.333-341.333 341.333-341.333 60.373 60.373-238.293 238.293h519.253v85.333z" />
-<glyph unicode="&#xe602;" glyph-name="chevron-right" d="M426.667 682.667l-60.373-60.373 195.627-195.627-195.627-195.627 60.373-60.373 256 256z" />
-<glyph unicode="&#xe603;" glyph-name="close" d="M810.667 664.96l-60.373 60.373-238.293-238.293-238.293 238.293-60.373-60.373 238.293-238.293-238.293-238.293 60.373-60.373 238.293 238.293 238.293-238.293 60.373 60.373-238.293 238.293z" />
-<glyph unicode="&#xe604;" glyph-name="menu" d="M128 170.667h768v85.333h-768v-85.333zM128 384h768v85.333h-768v-85.333zM128 682.667v-85.333h768v85.333h-768z" />
-<glyph unicode="&#xe605;" glyph-name="arrow-forward" d="M512 768l-60.373-60.373 238.293-238.293h-519.253v-85.333h519.253l-238.293-238.293 60.373-60.373 341.333 341.333z" />
-<glyph unicode="&#xe606;" glyph-name="twitter" d="M1024 744.249c-37.676-16.708-78.164-28.002-120.66-33.080 43.372 26 76.686 67.17 92.372 116.23-40.596-24.078-85.556-41.56-133.41-50.98-38.32 40.83-92.922 66.34-153.346 66.34-116.022 0-210.088-94.058-210.088-210.078 0-16.466 1.858-32.5 5.44-47.878-174.6 8.764-329.402 92.4-433.018 219.506-18.084-31.028-28.446-67.116-28.446-105.618 0-72.888 37.088-137.192 93.46-174.866-34.438 1.092-66.832 10.542-95.154 26.278-0.020-0.876-0.020-1.756-0.020-2.642 0-101.788 72.418-186.696 168.522-206-17.626-4.8-36.188-7.372-55.348-7.372-13.538 0-26.698 1.32-39.528 3.772 26.736-83.46 104.32-144.206 196.252-145.896-71.9-56.35-162.486-89.934-260.916-89.934-16.958 0-33.68 0.994-50.116 2.94 92.972-59.61 203.402-94.394 322.042-94.394 386.422 0 597.736 320.124 597.736 597.744 0 9.108-0.206 18.168-0.61 27.18 41.056 29.62 76.672 66.62 104.836 108.748z" />
-<glyph unicode="&#xe607;" glyph-name="github" d="M512.008 926.025c-282.738 0-512.008-229.218-512.008-511.998 0-226.214 146.704-418.132 350.136-485.836 25.586-4.738 34.992 11.11 34.992 24.632 0 12.204-0.48 52.542-0.696 95.324-142.448-30.976-172.504 60.41-172.504 60.41-23.282 59.176-56.848 74.916-56.848 74.916-46.452 31.778 3.51 31.124 3.51 31.124 51.4-3.61 78.476-52.766 78.476-52.766 45.672-78.27 119.776-55.64 149.004-42.558 4.588 33.086 17.852 55.68 32.506 68.464-113.73 12.942-233.276 56.85-233.276 253.032 0 55.898 20.004 101.574 52.76 137.428-5.316 12.9-22.854 64.972 4.952 135.5 0 0 43.006 13.752 140.84-52.49 40.836 11.348 84.636 17.036 128.154 17.234 43.502-0.198 87.336-5.886 128.256-17.234 97.734 66.244 140.656 52.49 140.656 52.49 27.872-70.528 10.35-122.6 5.036-135.5 32.82-35.856 52.694-81.532 52.694-137.428 0-196.654-119.778-239.95-233.79-252.624 18.364-15.89 34.724-47.046 34.724-94.812 0-68.508-0.596-123.644-0.596-140.508 0-13.628 9.222-29.594 35.172-24.566 203.322 67.776 349.842 259.626 349.842 485.768 0 282.78-229.234 511.998-511.992 511.998z" />
-<glyph unicode="&#xe608;" glyph-name="download" d="M810.667 554.667h-170.667v256h-256v-256h-170.667l298.667-298.667 298.667 298.667zM213.333 170.667v-85.333h597.333v85.333h-597.333z" />
-<glyph unicode="&#xe609;" glyph-name="star" d="M512 201.814l263.68-159.147-69.973 299.947 232.96 201.813-306.773 26.027-119.893 282.88-119.893-282.88-306.773-26.027 232.96-201.813-69.973-299.947z" />
-<glyph unicode="&#xe610;" glyph-name="warning" d="M554 340.667v172h-84v-172h84zM554 170.667v86h-84v-86h84zM42 42.667l470 810 470-810h-940z" />
-<glyph unicode="&#xe611;" glyph-name="hint" d="M614 682.667h240v-426h-300l-16 84h-240v-298h-84v726h384z" />
-</font></defs></svg>
\ No newline at end of file
diff --git a/material/assets/fonts/icon.ttf b/material/assets/fonts/icon.ttf
deleted file mode 100755
index b5ab5601bed7765790037c721c2ee1c7d444a7a5..0000000000000000000000000000000000000000
Binary files a/material/assets/fonts/icon.ttf and /dev/null differ
diff --git a/material/assets/fonts/icon.woff b/material/assets/fonts/icon.woff
deleted file mode 100755
index ed0f20d5b80ab98072f3557225b3333e01b78670..0000000000000000000000000000000000000000
Binary files a/material/assets/fonts/icon.woff and /dev/null differ
diff --git a/material/assets/images/favicon-e565ddfa3b.ico b/material/assets/images/favicon-e565ddfa3b.ico
deleted file mode 100644
index e85006a3ce1c6fd81faa6d5a13095519c4a6fc96..0000000000000000000000000000000000000000
Binary files a/material/assets/images/favicon-e565ddfa3b.ico and /dev/null differ
diff --git a/material/assets/images/icons/bitbucket-670608a71a.svg b/material/assets/images/icons/bitbucket-670608a71a.svg
new file mode 100644
index 0000000000000000000000000000000000000000..7d95cb22d9a7d99d872d75975b8e8fa72ef69b64
--- /dev/null
+++ b/material/assets/images/icons/bitbucket-670608a71a.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="352" height="448" viewBox="0 0 352 448" id="bitbucket"><path fill="currentColor" d="M203.75 214.75q2 15.75-12.625 25.25t-27.875 1.5q-9.75-4.25-13.375-14.5t-.125-20.5 13-14.5q9-4.5 18.125-3t16 8.875 6.875 16.875zm27.75-5.25q-3.5-26.75-28.25-41T154 165.25q-15.75 7-25.125 22.125t-8.625 32.375q1 22.75 19.375 38.75t41.375 14q22.75-2 38-21t12.5-42zM291.25 74q-5-6.75-14-11.125t-14.5-5.5T245 54.25q-72.75-11.75-141.5.5-10.75 1.75-16.5 3t-13.75 5.5T60.75 74q7.5 7 19 11.375t18.375 5.5T120 93.75Q177 101 232 94q15.75-2 22.375-3t18.125-5.375T291.25 74zm14.25 258.75q-2 6.5-3.875 19.125t-3.5 21-7.125 17.5-14.5 14.125q-21.5 12-47.375 17.875t-50.5 5.5-50.375-4.625q-11.5-2-20.375-4.5T88.75 412 70.5 401.125t-13-15.375q-6.25-24-14.25-73l1.5-4 4.5-2.25q55.75 37 126.625 37t126.875-37q5.25 1.5 6 5.75t-1.25 11.25-2 9.25zM350.75 92.5q-6.5 41.75-27.75 163.75-1.25 7.5-6.75 14t-10.875 10T291.75 288q-63 31.5-152.5 22-62-6.75-98.5-34.75-3.75-3-6.375-6.625t-4.25-8.75-2.25-8.5-1.5-9.875T25 232.75q-2.25-12.5-6.625-37.5t-7-40.375T5.5 118 0 78.5Q.75 72 4.375 66.375T12.25 57t11.25-7.5T35 43.875t12-4.625q31.25-11.5 78.25-16 94.75-9.25 169 12.5Q333 47.25 348 66.25q4 5 4.125 12.75t-1.375 13.5z"/></svg>
\ No newline at end of file
diff --git a/material/assets/images/icons/github-1da075986e.svg b/material/assets/images/icons/github-1da075986e.svg
new file mode 100644
index 0000000000000000000000000000000000000000..3cacb2e0fc8a876b4e23de255b5c12d65f548361
--- /dev/null
+++ b/material/assets/images/icons/github-1da075986e.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="416" height="448" viewBox="0 0 416 448" id="github"><path fill="currentColor" d="M160 304q0 10-3.125 20.5t-10.75 19T128 352t-18.125-8.5-10.75-19T96 304t3.125-20.5 10.75-19T128 256t18.125 8.5 10.75 19T160 304zm160 0q0 10-3.125 20.5t-10.75 19T288 352t-18.125-8.5-10.75-19T256 304t3.125-20.5 10.75-19T288 256t18.125 8.5 10.75 19T320 304zm40 0q0-30-17.25-51T296 232q-10.25 0-48.75 5.25Q229.5 240 208 240t-39.25-2.75Q130.75 232 120 232q-29.5 0-46.75 21T56 304q0 22 8 38.375t20.25 25.75 30.5 15 35 7.375 37.25 1.75h42q20.5 0 37.25-1.75t35-7.375 30.5-15 20.25-25.75T360 304zm56-44q0 51.75-15.25 82.75-9.5 19.25-26.375 33.25t-35.25 21.5-42.5 11.875-42.875 5.5T212 416q-19.5 0-35.5-.75t-36.875-3.125-38.125-7.5-34.25-12.875T37 371.5t-21.5-28.75Q0 312 0 260q0-59.25 34-99-6.75-20.5-6.75-42.5 0-29 12.75-54.5 27 0 47.5 9.875t47.25 30.875Q171.5 96 212 96q37 0 70 8 26.25-20.5 46.75-30.25T376 64q12.75 25.5 12.75 54.5 0 21.75-6.75 42 34 40 34 99.5z"/></svg>
\ No newline at end of file
diff --git a/material/assets/images/icons/gitlab-5ad3f9f9e5.svg b/material/assets/images/icons/gitlab-5ad3f9f9e5.svg
new file mode 100644
index 0000000000000000000000000000000000000000..b036a9b52b32a985a86c16d0ed9a799236f3b58c
--- /dev/null
+++ b/material/assets/images/icons/gitlab-5ad3f9f9e5.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" viewBox="0 0 500 500" id="gitlab"><path fill="currentColor" d="M93.667 473.347l90.684-279.097H2.983l90.684 279.097z" transform="translate(156.198 1.16)"/><path fill="currentColor" d="M221.333 473.345L130.649 194.25H3.557l217.776 279.095z" transform="translate(28.531 1.16)" opacity=".7"/><path fill="currentColor" d="M32 195.155L4.441 279.97a18.773 18.773 0 0 0 6.821 20.99l238.514 173.29L32 195.155z" transform="translate(.089 .256)" opacity=".5"/><path fill="currentColor" d="M2.667-84.844h127.092L75.14-252.942c-2.811-8.649-15.047-8.649-17.856 0L2.667-84.844z" transform="translate(29.422 280.256)"/><path fill="currentColor" d="M2.667 473.345L93.351 194.25h127.092L2.667 473.345z" transform="translate(247.198 1.16)" opacity=".7"/><path fill="currentColor" d="M221.334 195.155l27.559 84.815a18.772 18.772 0 0 1-6.821 20.99L3.557 474.25l217.777-279.095z" transform="translate(246.307 .256)" opacity=".5"/><path fill="currentColor" d="M130.667-84.844H3.575l54.618-168.098c2.811-8.649 15.047-8.649 17.856 0l54.618 168.098z" transform="translate(336.974 280.256)"/></svg>
\ No newline at end of file
diff --git a/material/assets/javascripts/application-16f434a21a.js b/material/assets/javascripts/application-16f434a21a.js
new file mode 100644
index 0000000000000000000000000000000000000000..057cdeebe70cef404cb1d360d0d15feb913120d0
--- /dev/null
+++ b/material/assets/javascripts/application-16f434a21a.js
@@ -0,0 +1,58 @@
+var Application=function(t){function e(r){if(n[r])return n[r].exports;var o=n[r]={exports:{},id:r,loaded:!1};return t[r].call(o.exports,o,o.exports,e),o.loaded=!0,o.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e,n){n(1),n(65),n(66),t.exports=n(67)},function(t,e,n){"use strict";n(2),n(22),n(48),n(52),t.exports=n(21).Promise},function(t,e,n){"use strict";var r=n(3),o={};o[n(5)("toStringTag")]="z",o+""!="[object z]"&&n(9)(Object.prototype,"toString",function(){return"[object "+r(this)+"]"},!0)},function(t,e,n){"use strict";var r=n(4),o=n(5)("toStringTag"),i="Arguments"==r(function(){return arguments}()),s=function(t,e){try{return t[e]}catch(t){}};t.exports=function(t){var e,n,a;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=s(e=Object(t),o))?n:i?r(e):"Object"==(a=r(e))&&"function"==typeof e.callee?"Arguments":a}},function(t,e){"use strict";var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e,n){"use strict";var r=n(6)("wks"),o=n(8),i=n(7).Symbol,s="function"==typeof i,a=t.exports=function(t){return r[t]||(r[t]=s&&i[t]||(s?i:o)("Symbol."+t))};a.store=r},function(t,e,n){"use strict";var r=n(7),o="__core-js_shared__",i=r[o]||(r[o]={});t.exports=function(t){return i[t]||(i[t]={})}},function(t,e){"use strict";var n=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},function(t,e){"use strict";var n=0,r=Math.random();t.exports=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++n+r).toString(36))}},function(t,e,n){"use strict";var r=n(7),o=n(10),i=n(20),s=n(8)("src"),a="toString",u=Function[a],c=(""+u).split(a);n(21).inspectSource=function(t){return u.call(t)},(t.exports=function(t,e,n,a){var u="function"==typeof n;u&&(i(n,"name")||o(n,"name",e)),t[e]!==n&&(u&&(i(n,s)||o(n,s,t[e]?""+t[e]:c.join(String(e)))),t===r?t[e]=n:a?t[e]?t[e]=n:o(t,e,n):(delete t[e],o(t,e,n)))})(Function.prototype,a,function(){return"function"==typeof this&&this[s]||u.call(this)})},function(t,e,n){"use strict";var r=n(11),o=n(19);t.exports=n(15)?function(t,e,n){return r.f(t,e,o(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e,n){"use strict";var r=n(12),o=n(14),i=n(18),s=Object.defineProperty;e.f=n(15)?Object.defineProperty:function(t,e,n){if(r(t),e=i(e,!0),r(n),o)try{return s(t,e,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(t[e]=n.value),t}},function(t,e,n){"use strict";var r=n(13);t.exports=function(t){if(!r(t))throw TypeError(t+" is not an object!");return t}},function(t,e){"use strict";var n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};t.exports=function(t){return"object"===("undefined"==typeof t?"undefined":n(t))?null!==t:"function"==typeof t}},function(t,e,n){"use strict";t.exports=!n(15)&&!n(16)(function(){return 7!=Object.defineProperty(n(17)("div"),"a",{get:function(){return 7}}).a})},function(t,e,n){"use strict";t.exports=!n(16)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(t,e){"use strict";t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e,n){"use strict";var r=n(13),o=n(7).document,i=r(o)&&r(o.createElement);t.exports=function(t){return i?o.createElement(t):{}}},function(t,e,n){"use strict";var r=n(13);t.exports=function(t,e){if(!r(t))return t;var n,o;if(e&&"function"==typeof(n=t.toString)&&!r(o=n.call(t)))return o;if("function"==typeof(n=t.valueOf)&&!r(o=n.call(t)))return o;if(!e&&"function"==typeof(n=t.toString)&&!r(o=n.call(t)))return o;throw TypeError("Can't convert object to primitive value")}},function(t,e){"use strict";t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e){"use strict";var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},function(t,e){"use strict";var n=t.exports={version:"2.4.0"};"number"==typeof __e&&(__e=n)},function(t,e,n){"use strict";var r=n(23)(!0);n(26)(String,"String",function(t){this._t=String(t),this._i=0},function(){var t,e=this._t,n=this._i;return n>=e.length?{value:void 0,done:!0}:(t=r(e,n),this._i+=t.length,{value:t,done:!1})})},function(t,e,n){"use strict";var r=n(24),o=n(25);t.exports=function(t){return function(e,n){var i,s,a=String(o(e)),u=r(n),c=a.length;return u<0||u>=c?t?"":void 0:(i=a.charCodeAt(u),i<55296||i>56319||u+1===c||(s=a.charCodeAt(u+1))<56320||s>57343?t?a.charAt(u):i:t?a.slice(u,u+2):(i-55296<<10)+(s-56320)+65536)}}},function(t,e){"use strict";var n=Math.ceil,r=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?r:n)(t)}},function(t,e){"use strict";t.exports=function(t){if(void 0==t)throw TypeError("Can't call method on  "+t);return t}},function(t,e,n){"use strict";var r=n(27),o=n(28),i=n(9),s=n(10),a=n(20),u=n(31),c=n(32),l=n(45),f=n(46),d=n(5)("iterator"),h=!([].keys&&"next"in[].keys()),p="@@iterator",v="keys",y="values",m=function(){return this};t.exports=function(t,e,n,g,b,w,_){c(n,e,g);var S,x,E,k=function(t){if(!h&&t in P)return P[t];switch(t){case v:return function(){return new n(this,t)};case y:return function(){return new n(this,t)}}return function(){return new n(this,t)}},T=e+" Iterator",O=b==y,C=!1,P=t.prototype,A=P[d]||P[p]||b&&P[b],M=A||k(b),j=b?O?k("entries"):M:void 0,L="Array"==e?P.entries||A:A;if(L&&(E=f(L.call(new t)),E!==Object.prototype&&(l(E,T,!0),r||a(E,d)||s(E,d,m))),O&&A&&A.name!==y&&(C=!0,M=function(){return A.call(this)}),r&&!_||!h&&!C&&P[d]||s(P,d,M),u[e]=M,u[T]=m,b)if(S={values:O?M:k(y),keys:w?M:k(v),entries:j},_)for(x in S)x in P||i(P,x,S[x]);else o(o.P+o.F*(h||C),e,S);return S}},function(t,e){"use strict";t.exports=!1},function(t,e,n){"use strict";var r=n(7),o=n(21),i=n(10),s=n(9),a=n(29),u="prototype",c=function t(e,n,c){var l,f,d,h,p=e&t.F,v=e&t.G,y=e&t.S,m=e&t.P,g=e&t.B,b=v?r:y?r[n]||(r[n]={}):(r[n]||{})[u],w=v?o:o[n]||(o[n]={}),_=w[u]||(w[u]={});v&&(c=n);for(l in c)f=!p&&b&&void 0!==b[l],d=(f?b:c)[l],h=g&&f?a(d,r):m&&"function"==typeof d?a(Function.call,d):d,b&&s(b,l,d,e&t.U),w[l]!=d&&i(w,l,h),m&&_[l]!=d&&(_[l]=d)};r.core=o,c.F=1,c.G=2,c.S=4,c.P=8,c.B=16,c.W=32,c.U=64,c.R=128,t.exports=c},function(t,e,n){"use strict";var r=n(30);t.exports=function(t,e,n){if(r(t),void 0===e)return t;switch(n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,r){return t.call(e,n,r)};case 3:return function(n,r,o){return t.call(e,n,r,o)}}return function(){return t.apply(e,arguments)}}},function(t,e){"use strict";t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},function(t,e){"use strict";t.exports={}},function(t,e,n){"use strict";var r=n(33),o=n(19),i=n(45),s={};n(10)(s,n(5)("iterator"),function(){return this}),t.exports=function(t,e,n){t.prototype=r(s,{next:o(1,n)}),i(t,e+" Iterator")}},function(t,e,n){"use strict";var r=n(12),o=n(34),i=n(43),s=n(42)("IE_PROTO"),a=function(){},u="prototype",c=function(){var t,e=n(17)("iframe"),r=i.length,o="<",s=">";for(e.style.display="none",n(44).appendChild(e),e.src="javascript:",t=e.contentWindow.document,t.open(),t.write(o+"script"+s+"document.F=Object"+o+"/script"+s),t.close(),c=t.F;r--;)delete c[u][i[r]];return c()};t.exports=Object.create||function(t,e){var n;return null!==t?(a[u]=r(t),n=new a,a[u]=null,n[s]=t):n=c(),void 0===e?n:o(n,e)}},function(t,e,n){"use strict";var r=n(11),o=n(12),i=n(35);t.exports=n(15)?Object.defineProperties:function(t,e){o(t);for(var n,s=i(e),a=s.length,u=0;a>u;)r.f(t,n=s[u++],e[n]);return t}},function(t,e,n){"use strict";var r=n(36),o=n(43);t.exports=Object.keys||function(t){return r(t,o)}},function(t,e,n){"use strict";var r=n(20),o=n(37),i=n(39)(!1),s=n(42)("IE_PROTO");t.exports=function(t,e){var n,a=o(t),u=0,c=[];for(n in a)n!=s&&r(a,n)&&c.push(n);for(;e.length>u;)r(a,n=e[u++])&&(~i(c,n)||c.push(n));return c}},function(t,e,n){"use strict";var r=n(38),o=n(25);t.exports=function(t){return r(o(t))}},function(t,e,n){"use strict";var r=n(4);t.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==r(t)?t.split(""):Object(t)}},function(t,e,n){"use strict";var r=n(37),o=n(40),i=n(41);t.exports=function(t){return function(e,n,s){var a,u=r(e),c=o(u.length),l=i(s,c);if(t&&n!=n){for(;c>l;)if(a=u[l++],a!=a)return!0}else for(;c>l;l++)if((t||l in u)&&u[l]===n)return t||l||0;return!t&&-1}}},function(t,e,n){"use strict";var r=n(24),o=Math.min;t.exports=function(t){return t>0?o(r(t),9007199254740991):0}},function(t,e,n){"use strict";var r=n(24),o=Math.max,i=Math.min;t.exports=function(t,e){return t=r(t),t<0?o(t+e,0):i(t,e)}},function(t,e,n){"use strict";var r=n(6)("keys"),o=n(8);t.exports=function(t){return r[t]||(r[t]=o(t))}},function(t,e){"use strict";t.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(t,e,n){"use strict";t.exports=n(7).document&&document.documentElement},function(t,e,n){"use strict";var r=n(11).f,o=n(20),i=n(5)("toStringTag");t.exports=function(t,e,n){t&&!o(t=n?t:t.prototype,i)&&r(t,i,{configurable:!0,value:e})}},function(t,e,n){"use strict";var r=n(20),o=n(47),i=n(42)("IE_PROTO"),s=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=o(t),r(t,i)?t[i]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?s:null}},function(t,e,n){"use strict";var r=n(25);t.exports=function(t){return Object(r(t))}},function(t,e,n){"use strict";for(var r=n(49),o=n(9),i=n(7),s=n(10),a=n(31),u=n(5),c=u("iterator"),l=u("toStringTag"),f=a.Array,d=["NodeList","DOMTokenList","MediaList","StyleSheetList","CSSRuleList"],h=0;h<5;h++){var p,v=d[h],y=i[v],m=y&&y.prototype;if(m){m[c]||s(m,c,f),m[l]||s(m,l,v),a[v]=f;for(p in r)m[p]||o(m,p,r[p],!0)}}},function(t,e,n){"use strict";var r=n(50),o=n(51),i=n(31),s=n(37);t.exports=n(26)(Array,"Array",function(t,e){this._t=s(t),this._i=0,this._k=e},function(){var t=this._t,e=this._k,n=this._i++;return!t||n>=t.length?(this._t=void 0,o(1)):"keys"==e?o(0,n):"values"==e?o(0,t[n]):o(0,[n,t[n]])},"values"),i.Arguments=i.Array,r("keys"),r("values"),r("entries")},function(t,e,n){"use strict";var r=n(5)("unscopables"),o=Array.prototype;void 0==o[r]&&n(10)(o,r,{}),t.exports=function(t){o[r][t]=!0}},function(t,e){"use strict";t.exports=function(t,e){return{value:e,done:!!t}}},function(t,e,n){"use strict";var r,o,i,s=n(27),a=n(7),u=n(29),c=n(3),l=n(28),f=n(13),d=n(30),h=n(53),p=n(54),v=n(58),y=n(59).set,m=n(61)(),g="Promise",b=a.TypeError,w=a.process,_=a[g],w=a.process,S="process"==c(w),x=function(){},E=!!function(){try{var t=_.resolve(1),e=(t.constructor={})[n(5)("species")]=function(t){t(x,x)};return(S||"function"==typeof PromiseRejectionEvent)&&t.then(x)instanceof e}catch(t){}}(),k=function(t,e){return t===e||t===_&&e===i},T=function(t){var e;return!(!f(t)||"function"!=typeof(e=t.then))&&e},O=function(t){return k(_,t)?new C(t):new o(t)},C=o=function(t){var e,n;this.promise=new t(function(t,r){if(void 0!==e||void 0!==n)throw b("Bad Promise constructor");e=t,n=r}),this.resolve=d(e),this.reject=d(n)},P=function(t){try{t()}catch(t){return{error:t}}},A=function(t,e){if(!t._n){t._n=!0;var n=t._c;m(function(){for(var r=t._v,o=1==t._s,i=0,s=function(e){var n,i,s=o?e.ok:e.fail,a=e.resolve,u=e.reject,c=e.domain;try{s?(o||(2==t._h&&L(t),t._h=1),s===!0?n=r:(c&&c.enter(),n=s(r),c&&c.exit()),n===e.promise?u(b("Promise-chain cycle")):(i=T(n))?i.call(n,a,u):a(n)):u(r)}catch(t){u(t)}};n.length>i;)s(n[i++]);t._c=[],t._n=!1,e&&!t._h&&M(t)})}},M=function(t){y.call(a,function(){var e,n,r,o=t._v;if(j(t)&&(e=P(function(){S?w.emit("unhandledRejection",o,t):(n=a.onunhandledrejection)?n({promise:t,reason:o}):(r=a.console)&&r.error&&r.error("Unhandled promise rejection",o)}),t._h=S||j(t)?2:1),t._a=void 0,e)throw e.error})},j=function t(e){if(1==e._h)return!1;for(var n,r=e._a||e._c,o=0;r.length>o;)if(n=r[o++],n.fail||!t(n.promise))return!1;return!0},L=function(t){y.call(a,function(){var e;S?w.emit("rejectionHandled",t):(e=a.onrejectionhandled)&&e({promise:t,reason:t._v})})},F=function(t){var e=this;e._d||(e._d=!0,e=e._w||e,e._v=t,e._s=2,e._a||(e._a=e._c.slice()),A(e,!0))},N=function t(e){var n,r=this;if(!r._d){r._d=!0,r=r._w||r;try{if(r===e)throw b("Promise can't be resolved itself");(n=T(e))?m(function(){var o={_w:r,_d:!1};try{n.call(e,u(t,o,1),u(F,o,1))}catch(t){F.call(o,t)}}):(r._v=e,r._s=1,A(r,!1))}catch(t){F.call({_w:r,_d:!1},t)}}};E||(_=function(t){h(this,_,g,"_h"),d(t),r.call(this);try{t(u(N,this,1),u(F,this,1))}catch(t){F.call(this,t)}},r=function(t){this._c=[],this._a=void 0,this._s=0,this._d=!1,this._v=void 0,this._h=0,this._n=!1},r.prototype=n(62)(_.prototype,{then:function(t,e){var n=O(v(this,_));return n.ok="function"!=typeof t||t,n.fail="function"==typeof e&&e,n.domain=S?w.domain:void 0,this._c.push(n),this._a&&this._a.push(n),this._s&&A(this,!1),n.promise},catch:function(t){return this.then(void 0,t)}}),C=function(){var t=new r;this.promise=t,this.resolve=u(N,t,1),this.reject=u(F,t,1)}),l(l.G+l.W+l.F*!E,{Promise:_}),n(45)(_,g),n(63)(g),i=n(21)[g],l(l.S+l.F*!E,g,{reject:function(t){var e=O(this),n=e.reject;return n(t),e.promise}}),l(l.S+l.F*(s||!E),g,{resolve:function(t){if(t instanceof _&&k(t.constructor,this))return t;var e=O(this),n=e.resolve;return n(t),e.promise}}),l(l.S+l.F*!(E&&n(64)(function(t){_.all(t).catch(x)})),g,{all:function(t){var e=this,n=O(e),r=n.resolve,o=n.reject,i=P(function(){var n=[],i=0,s=1;p(t,!1,function(t){var a=i++,u=!1;n.push(void 0),s++,e.resolve(t).then(function(t){u||(u=!0,n[a]=t,--s||r(n))},o)}),--s||r(n)});return i&&o(i.error),n.promise},race:function(t){var e=this,n=O(e),r=n.reject,o=P(function(){p(t,!1,function(t){e.resolve(t).then(n.resolve,r)})});return o&&r(o.error),n.promise}})},function(t,e){"use strict";t.exports=function(t,e,n,r){if(!(t instanceof e)||void 0!==r&&r in t)throw TypeError(n+": incorrect invocation!");return t}},function(t,e,n){"use strict";var r=n(29),o=n(55),i=n(56),s=n(12),a=n(40),u=n(57),c={},l={},f=t.exports=function(t,e,n,f,d){var h,p,v,y,m=d?function(){return t}:u(t),g=r(n,f,e?2:1),b=0;if("function"!=typeof m)throw TypeError(t+" is not iterable!");if(i(m)){for(h=a(t.length);h>b;b++)if(y=e?g(s(p=t[b])[0],p[1]):g(t[b]),y===c||y===l)return y}else for(v=m.call(t);!(p=v.next()).done;)if(y=o(v,g,p.value,e),y===c||y===l)return y};f.BREAK=c,f.RETURN=l},function(t,e,n){"use strict";var r=n(12);t.exports=function(t,e,n,o){try{return o?e(r(n)[0],n[1]):e(n)}catch(e){var i=t.return;throw void 0!==i&&r(i.call(t)),e}}},function(t,e,n){"use strict";var r=n(31),o=n(5)("iterator"),i=Array.prototype;t.exports=function(t){return void 0!==t&&(r.Array===t||i[o]===t)}},function(t,e,n){"use strict";var r=n(3),o=n(5)("iterator"),i=n(31);t.exports=n(21).getIteratorMethod=function(t){if(void 0!=t)return t[o]||t["@@iterator"]||i[r(t)]}},function(t,e,n){"use strict";var r=n(12),o=n(30),i=n(5)("species");t.exports=function(t,e){var n,s=r(t).constructor;return void 0===s||void 0==(n=r(s)[i])?e:o(n)}},function(t,e,n){"use strict";var r,o,i,s=n(29),a=n(60),u=n(44),c=n(17),l=n(7),f=l.process,d=l.setImmediate,h=l.clearImmediate,p=l.MessageChannel,v=0,y={},m="onreadystatechange",g=function(){var t=+this;if(y.hasOwnProperty(t)){var e=y[t];delete y[t],e()}},b=function(t){g.call(t.data)};d&&h||(d=function(t){for(var e=[],n=1;arguments.length>n;)e.push(arguments[n++]);return y[++v]=function(){a("function"==typeof t?t:Function(t),e)},r(v),v},h=function(t){delete y[t]},"process"==n(4)(f)?r=function(t){f.nextTick(s(g,t,1))}:p?(o=new p,i=o.port2,o.port1.onmessage=b,r=s(i.postMessage,i,1)):l.addEventListener&&"function"==typeof postMessage&&!l.importScripts?(r=function(t){l.postMessage(t+"","*")},l.addEventListener("message",b,!1)):r=m in c("script")?function(t){u.appendChild(c("script"))[m]=function(){u.removeChild(this),g.call(t)}}:function(t){setTimeout(s(g,t,1),0)}),t.exports={set:d,clear:h}},function(t,e){"use strict";t.exports=function(t,e,n){var r=void 0===n;switch(e.length){case 0:return r?t():t.call(n);case 1:return r?t(e[0]):t.call(n,e[0]);case 2:return r?t(e[0],e[1]):t.call(n,e[0],e[1]);case 3:return r?t(e[0],e[1],e[2]):t.call(n,e[0],e[1],e[2]);case 4:return r?t(e[0],e[1],e[2],e[3]):t.call(n,e[0],e[1],e[2],e[3])}return t.apply(n,e)}},function(t,e,n){"use strict";var r=n(7),o=n(59).set,i=r.MutationObserver||r.WebKitMutationObserver,s=r.process,a=r.Promise,u="process"==n(4)(s);t.exports=function(){var t,e,n,c=function(){var r,o;for(u&&(r=s.domain)&&r.exit();t;){o=t.fn,t=t.next;try{o()}catch(r){throw t?n():e=void 0,r}}e=void 0,r&&r.enter()};if(u)n=function(){s.nextTick(c)};else if(i){var l=!0,f=document.createTextNode("");new i(c).observe(f,{characterData:!0}),n=function(){f.data=l=!l}}else if(a&&a.resolve){var d=a.resolve();n=function(){d.then(c)}}else n=function(){o.call(r,c)};return function(r){var o={fn:r,next:void 0};e&&(e.next=o),t||(t=o,n()),e=o}}},function(t,e,n){"use strict";var r=n(9);t.exports=function(t,e,n){for(var o in e)r(t,o,e[o],n);return t}},function(t,e,n){"use strict";var r=n(7),o=n(11),i=n(15),s=n(5)("species");t.exports=function(t){var e=r[t];i&&e&&!e[s]&&o.f(e,s,{configurable:!0,get:function(){return this}})}},function(t,e,n){"use strict";var r=n(5)("iterator"),o=!1;try{var i=[7][r]();i.return=function(){o=!0},Array.from(i,function(){throw 2})}catch(t){}t.exports=function(t,e){if(!e&&!o)return!1;var n=!1;try{var i=[7],s=i[r]();s.next=function(){return{done:n=!0}},i[r]=function(){return s},t(i)}catch(t){}return n}},function(t,e){"use strict";try{var n=new window.CustomEvent("test");if(n.preventDefault(),n.defaultPrevented!==!0)throw new Error("Could not prevent default")}catch(t){var r=function(t,e){var n,r;return e=e||{bubbles:!1,cancelable:!1,detail:void 0},n=document.createEvent("CustomEvent"),n.initCustomEvent(t,e.bubbles,e.cancelable,e.detail),r=n.preventDefault,n.preventDefault=function(){r.call(this);try{Object.defineProperty(this,"defaultPrevented",{get:function(){return!0}})}catch(t){this.defaultPrevented=!0}},n};r.prototype=window.Event.prototype,window.CustomEvent=r}},function(t,e){"use strict";!function(t){function e(t){if("string"!=typeof t&&(t=String(t)),/[^a-z0-9\-#$%&'*+.\^_`|~]/i.test(t))throw new TypeError("Invalid character in header field name");return t.toLowerCase()}function n(t){return"string"!=typeof t&&(t=String(t)),t}function r(t){var e={next:function(){var e=t.shift();return{done:void 0===e,value:e}}};return m.iterable&&(e[Symbol.iterator]=function(){return e}),e}function o(t){this.map={},t instanceof o?t.forEach(function(t,e){this.append(e,t)},this):t&&Object.getOwnPropertyNames(t).forEach(function(e){this.append(e,t[e])},this)}function i(t){return t.bodyUsed?Promise.reject(new TypeError("Already read")):void(t.bodyUsed=!0)}function s(t){return new Promise(function(e,n){t.onload=function(){e(t.result)},t.onerror=function(){n(t.error)}})}function a(t){var e=new FileReader,n=s(e);return e.readAsArrayBuffer(t),n}function u(t){var e=new FileReader,n=s(e);return e.readAsText(t),n}function c(t){for(var e=new Uint8Array(t),n=new Array(e.length),r=0;r<e.length;r++)n[r]=String.fromCharCode(e[r]);return n.join("")}function l(t){if(t.slice)return t.slice(0);var e=new Uint8Array(t.byteLength);return e.set(new Uint8Array(t)),e.buffer}function f(){return this.bodyUsed=!1,this._initBody=function(t){if(this._bodyInit=t,t)if("string"==typeof t)this._bodyText=t;else if(m.blob&&Blob.prototype.isPrototypeOf(t))this._bodyBlob=t;else if(m.formData&&FormData.prototype.isPrototypeOf(t))this._bodyFormData=t;else if(m.searchParams&&URLSearchParams.prototype.isPrototypeOf(t))this._bodyText=t.toString();else if(m.arrayBuffer&&m.blob&&b(t))this._bodyArrayBuffer=l(t.buffer),this._bodyInit=new Blob([this._bodyArrayBuffer]);else{if(!m.arrayBuffer||!ArrayBuffer.prototype.isPrototypeOf(t)&&!w(t))throw new Error("unsupported BodyInit type");this._bodyArrayBuffer=l(t)}else this._bodyText="";this.headers.get("content-type")||("string"==typeof t?this.headers.set("content-type","text/plain;charset=UTF-8"):this._bodyBlob&&this._bodyBlob.type?this.headers.set("content-type",this._bodyBlob.type):m.searchParams&&URLSearchParams.prototype.isPrototypeOf(t)&&this.headers.set("content-type","application/x-www-form-urlencoded;charset=UTF-8"))},m.blob&&(this.blob=function(){var t=i(this);if(t)return t;if(this._bodyBlob)return Promise.resolve(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(new Blob([this._bodyArrayBuffer]));if(this._bodyFormData)throw new Error("could not read FormData body as blob");return Promise.resolve(new Blob([this._bodyText]))},this.arrayBuffer=function(){return this._bodyArrayBuffer?i(this)||Promise.resolve(this._bodyArrayBuffer):this.blob().then(a)}),this.text=function(){var t=i(this);if(t)return t;if(this._bodyBlob)return u(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(c(this._bodyArrayBuffer));if(this._bodyFormData)throw new Error("could not read FormData body as text");return Promise.resolve(this._bodyText)},m.formData&&(this.formData=function(){return this.text().then(p)}),this.json=function(){return this.text().then(JSON.parse)},this}function d(t){var e=t.toUpperCase();return _.indexOf(e)>-1?e:t}function h(t,e){e=e||{};var n=e.body;if("string"==typeof t)this.url=t;else{if(t.bodyUsed)throw new TypeError("Already read");this.url=t.url,this.credentials=t.credentials,e.headers||(this.headers=new o(t.headers)),this.method=t.method,this.mode=t.mode,n||null==t._bodyInit||(n=t._bodyInit,t.bodyUsed=!0)}if(this.credentials=e.credentials||this.credentials||"omit",!e.headers&&this.headers||(this.headers=new o(e.headers)),this.method=d(e.method||this.method||"GET"),this.mode=e.mode||this.mode||null,this.referrer=null,("GET"===this.method||"HEAD"===this.method)&&n)throw new TypeError("Body not allowed for GET or HEAD requests");this._initBody(n)}function p(t){var e=new FormData;return t.trim().split("&").forEach(function(t){if(t){var n=t.split("="),r=n.shift().replace(/\+/g," "),o=n.join("=").replace(/\+/g," ");e.append(decodeURIComponent(r),decodeURIComponent(o))}}),e}function v(t){var e=new o;return t.split("\r\n").forEach(function(t){var n=t.split(":"),r=n.shift().trim();if(r){var o=n.join(":").trim();e.append(r,o)}}),e}function y(t,e){e||(e={}),this.type="default",this.status="status"in e?e.status:200,this.ok=this.status>=200&&this.status<300,this.statusText="statusText"in e?e.statusText:"OK",this.headers=new o(e.headers),this.url=e.url||"",this._initBody(t)}if(!t.fetch){var m={searchParams:"URLSearchParams"in t,iterable:"Symbol"in t&&"iterator"in Symbol,blob:"FileReader"in t&&"Blob"in t&&function(){try{return new Blob,!0}catch(t){return!1}}(),formData:"FormData"in t,arrayBuffer:"ArrayBuffer"in t};if(m.arrayBuffer)var g=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]"],b=function(t){return t&&DataView.prototype.isPrototypeOf(t)},w=ArrayBuffer.isView||function(t){return t&&g.indexOf(Object.prototype.toString.call(t))>-1};o.prototype.append=function(t,r){t=e(t),r=n(r);var o=this.map[t];this.map[t]=o?o+","+r:r},o.prototype.delete=function(t){delete this.map[e(t)]},o.prototype.get=function(t){return t=e(t),this.has(t)?this.map[t]:null},o.prototype.has=function(t){return this.map.hasOwnProperty(e(t))},o.prototype.set=function(t,r){this.map[e(t)]=n(r)},o.prototype.forEach=function(t,e){for(var n in this.map)this.map.hasOwnProperty(n)&&t.call(e,this.map[n],n,this)},o.prototype.keys=function(){var t=[];return this.forEach(function(e,n){t.push(n)}),r(t)},o.prototype.values=function(){var t=[];return this.forEach(function(e){t.push(e)}),r(t)},o.prototype.entries=function(){var t=[];return this.forEach(function(e,n){t.push([n,e])}),r(t)},m.iterable&&(o.prototype[Symbol.iterator]=o.prototype.entries);var _=["DELETE","GET","HEAD","OPTIONS","POST","PUT"];h.prototype.clone=function(){return new h(this,{body:this._bodyInit})},f.call(h.prototype),f.call(y.prototype),y.prototype.clone=function(){return new y(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new o(this.headers),url:this.url})},y.error=function(){var t=new y(null,{status:0,statusText:""});return t.type="error",t};var S=[301,302,303,307,308];y.redirect=function(t,e){if(S.indexOf(e)===-1)throw new RangeError("Invalid status code");return new y(null,{status:e,headers:{location:t}})},t.Headers=o,t.Request=h,t.Response=y,t.fetch=function(t,e){return new Promise(function(n,r){var o=new h(t,e),i=new XMLHttpRequest;i.onload=function(){var t={status:i.status,statusText:i.statusText,headers:v(i.getAllResponseHeaders()||"")};t.url="responseURL"in i?i.responseURL:t.headers.get("X-Request-URL");var e="response"in i?i.response:i.responseText;n(new y(e,t))},i.onerror=function(){r(new TypeError("Network request failed"))},i.ontimeout=function(){r(new TypeError("Network request failed"))},i.open(o.method,o.url,!0),"include"===o.credentials&&(i.withCredentials=!0),"responseType"in i&&m.blob&&(i.responseType="blob"),o.headers.forEach(function(t,e){i.setRequestHeader(e,t)}),i.send("undefined"==typeof o._bodyInit?null:o._bodyInit)})},t.fetch.polyfill=!0}}("undefined"!=typeof self?self:void 0)},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var i=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),s=n(68),a=r(s),u=n(70),c=r(u),l=function(){function t(e){o(this,t),this.config_=e}return i(t,[{key:"initialize",value:function(){var t=this;new c.default.Event.Listener(document,"DOMContentLoaded",function(){Modernizr.addTest("ios",function(){return!!navigator.userAgent.match(/(iPad|iPhone|iPod)/g)}),Modernizr.addTest("standalone",function(){return!!navigator.standalone}),a.default.attach(document.body);var t=document.querySelectorAll("table:not([class])");if(Array.prototype.forEach.call(t,function(t){var e=document.createElement("div");e.classList.add("md-typeset__table"),t.nextSibling?t.parentNode.insertBefore(e,t.nextSibling):t.parentNode.appendChild(e),e.appendChild(t)}),Modernizr.ios){var e=document.querySelectorAll("[data-md-scrollfix]");Array.prototype.forEach.call(e,function(t){t.addEventListener("touchstart",function(){var e=t.scrollTop;0===e?t.scrollTop=1:e+t.offsetHeight===t.scrollHeight&&(t.scrollTop=e-1)})})}}).listen(),Modernizr.csscalc||new c.default.Event.MatchMedia("(min-width: 960px)",new c.default.Event.Listener(window,["resize","orientationchange"],new c.default.Sidebar.Container("[data-md-component=container]"))),new c.default.Event.MatchMedia("(min-width: 1220px)",new c.default.Event.Listener(window,["scroll","resize","orientationchange"],new c.default.Sidebar.Position("[data-md-component=navigation]"))),new c.default.Event.MatchMedia("(min-width: 960px)",new c.default.Event.Listener(window,["scroll","resize","orientationchange"],new c.default.Sidebar.Position("[data-md-component=toc]"))),new c.default.Event.MatchMedia("(min-width: 960px)",new c.default.Event.Listener(window,"scroll",new c.default.Nav.Blur("[data-md-component=toc] .md-nav__link")));var e=document.querySelectorAll("[data-md-component=collapsible]");Array.prototype.forEach.call(e,function(t){new c.default.Event.MatchMedia("(min-width: 1220px)",new c.default.Event.Listener(t.previousElementSibling,"click",new c.default.Nav.Collapse(t)))}),new c.default.Event.MatchMedia("(max-width: 1219px)",new c.default.Event.Listener("[data-md-component=navigation] [data-md-toggle]","change",new c.default.Nav.Scrolling("[data-md-component=navigation] nav"))),new c.default.Event.MatchMedia("(max-width: 959px)",new c.default.Event.Listener("[data-md-toggle=search]","change",new c.default.Search.Lock("[data-md-toggle=search]"))),new c.default.Event.Listener(document.forms.search.query,["focus","keyup"],new c.default.Search.Result("[data-md-component=result]",function(){return fetch(t.config_.url.base+"/mkdocs/search_index.json",{credentials:"same-origin"}).then(function(t){return t.json()}).then(function(e){return e.docs.map(function(e){return e.location=t.config_.url.base+e.location,e})})})).listen(),new c.default.Event.MatchMedia("(max-width: 1219px)",new c.default.Event.Listener("[data-md-component=overlay]","touchstart",function(t){return t.preventDefault()})),new c.default.Event.MatchMedia("(max-width: 959px)",new c.default.Event.Listener("[data-md-component=navigation] [href^='#']","click",function(){var t=document.querySelector("[data-md-toggle=drawer]");t.checked&&(t.checked=!1,t.dispatchEvent(new CustomEvent("change")))})),new c.default.Event.Listener("[data-md-toggle=search]","change",function(t){setTimeout(function(t){var e=document.forms.search.query;t.checked&&e.focus()},400,t.target)}).listen(),new c.default.Event.MatchMedia("(min-width: 960px)",new c.default.Event.Listener(document.forms.search.query,"focus",function(){var t=document.querySelector("[data-md-toggle=search]");t.checked||(t.checked=!0,t.dispatchEvent(new CustomEvent("change")))})),new c.default.Event.MatchMedia("(min-width: 960px)",new c.default.Event.Listener(document.body,"click",function(){var t=document.querySelector("[data-md-toggle=search]");t.checked&&(t.checked=!1,t.dispatchEvent(new CustomEvent("change")))})),new c.default.Event.Listener(window,"keyup",function(t){var e=t.keyCode||t.which;if(27===e){var n=document.querySelector("[data-md-toggle=search]");n.checked&&(n.checked=!1,n.dispatchEvent(new CustomEvent("change")),document.forms.search.query.blur())}}).listen(),new c.default.Event.MatchMedia("(min-width: 960px)",new c.default.Event.Listener("[data-md-toggle=search]","click",function(t){return t.stopPropagation()})),new c.default.Event.MatchMedia("(min-width: 960px)",new c.default.Event.Listener("[data-md-component=search]","click",function(t){return t.stopPropagation()})),function(){var t=document.querySelector("[data-md-source]");if(!t)return Promise.resolve([]);switch(t.dataset.mdSource){case"github":return new c.default.Source.Adapter.GitHub(t).fetch();default:return Promise.resolve([])}}().then(function(t){var e=document.querySelectorAll("[data-md-source]");Array.prototype.forEach.call(e,function(e){new c.default.Source.Repository(e).initialize(t)})})}}]),t}();e.default=l,t.exports=e.default},function(t,e,n){var r,o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};!function(){"use strict";/**
+	  * @preserve FastClick: polyfill to remove click delays on browsers with touch UIs.
+	  *
+	  * @codingstandard ftlabs-jsv2
+	  * @copyright The Financial Times Limited [All Rights Reserved]
+	  * @license MIT License (see LICENSE.txt)
+	  */
+function i(t,e){function n(t,e){return function(){return t.apply(e,arguments)}}var r;if(e=e||{},this.trackingClick=!1,this.trackingClickStart=0,this.targetElement=null,this.touchStartX=0,this.touchStartY=0,this.lastTouchIdentifier=0,this.touchBoundary=e.touchBoundary||10,this.layer=t,this.tapDelay=e.tapDelay||200,this.tapTimeout=e.tapTimeout||700,!i.notNeeded(t)){for(var o=["onMouse","onClick","onTouchStart","onTouchMove","onTouchEnd","onTouchCancel"],s=this,u=0,c=o.length;u<c;u++)s[o[u]]=n(s[o[u]],s);a&&(t.addEventListener("mouseover",this.onMouse,!0),t.addEventListener("mousedown",this.onMouse,!0),t.addEventListener("mouseup",this.onMouse,!0)),t.addEventListener("click",this.onClick,!0),t.addEventListener("touchstart",this.onTouchStart,!1),t.addEventListener("touchmove",this.onTouchMove,!1),t.addEventListener("touchend",this.onTouchEnd,!1),t.addEventListener("touchcancel",this.onTouchCancel,!1),Event.prototype.stopImmediatePropagation||(t.removeEventListener=function(e,n,r){var o=Node.prototype.removeEventListener;"click"===e?o.call(t,e,n.hijacked||n,r):o.call(t,e,n,r)},t.addEventListener=function(e,n,r){var o=Node.prototype.addEventListener;"click"===e?o.call(t,e,n.hijacked||(n.hijacked=function(t){t.propagationStopped||n(t)}),r):o.call(t,e,n,r)}),"function"==typeof t.onclick&&(r=t.onclick,t.addEventListener("click",function(t){r(t)},!1),t.onclick=null)}}var s=navigator.userAgent.indexOf("Windows Phone")>=0,a=navigator.userAgent.indexOf("Android")>0&&!s,u=/iP(ad|hone|od)/.test(navigator.userAgent)&&!s,c=u&&/OS 4_\d(_\d)?/.test(navigator.userAgent),l=u&&/OS [6-7]_\d/.test(navigator.userAgent),f=navigator.userAgent.indexOf("BB10")>0;i.prototype.needsClick=function(t){switch(t.nodeName.toLowerCase()){case"button":case"select":case"textarea":if(t.disabled)return!0;break;case"input":if(u&&"file"===t.type||t.disabled)return!0;break;case"label":case"iframe":case"video":return!0}return/\bneedsclick\b/.test(t.className)},i.prototype.needsFocus=function(t){switch(t.nodeName.toLowerCase()){case"textarea":return!0;case"select":return!a;case"input":switch(t.type){case"button":case"checkbox":case"file":case"image":case"radio":case"submit":return!1}return!t.disabled&&!t.readOnly;default:return/\bneedsfocus\b/.test(t.className)}},i.prototype.sendClick=function(t,e){var n,r;document.activeElement&&document.activeElement!==t&&document.activeElement.blur(),r=e.changedTouches[0],n=document.createEvent("MouseEvents"),n.initMouseEvent(this.determineEventType(t),!0,!0,window,1,r.screenX,r.screenY,r.clientX,r.clientY,!1,!1,!1,!1,0,null),n.forwardedTouchEvent=!0,t.dispatchEvent(n)},i.prototype.determineEventType=function(t){return a&&"select"===t.tagName.toLowerCase()?"mousedown":"click"},i.prototype.focus=function(t){var e;u&&t.setSelectionRange&&0!==t.type.indexOf("date")&&"time"!==t.type&&"month"!==t.type?(e=t.value.length,t.setSelectionRange(e,e)):t.focus()},i.prototype.updateScrollParent=function(t){var e,n;if(e=t.fastClickScrollParent,!e||!e.contains(t)){n=t;do{if(n.scrollHeight>n.offsetHeight){e=n,t.fastClickScrollParent=n;break}n=n.parentElement}while(n)}e&&(e.fastClickLastScrollTop=e.scrollTop)},i.prototype.getTargetElementFromEventTarget=function(t){return t.nodeType===Node.TEXT_NODE?t.parentNode:t},i.prototype.onTouchStart=function(t){var e,n,r;if(t.targetTouches.length>1)return!0;if(e=this.getTargetElementFromEventTarget(t.target),n=t.targetTouches[0],u){if(r=window.getSelection(),r.rangeCount&&!r.isCollapsed)return!0;if(!c){if(n.identifier&&n.identifier===this.lastTouchIdentifier)return t.preventDefault(),!1;this.lastTouchIdentifier=n.identifier,this.updateScrollParent(e)}}return this.trackingClick=!0,this.trackingClickStart=t.timeStamp,this.targetElement=e,this.touchStartX=n.pageX,this.touchStartY=n.pageY,t.timeStamp-this.lastClickTime<this.tapDelay&&t.preventDefault(),!0},i.prototype.touchHasMoved=function(t){var e=t.changedTouches[0],n=this.touchBoundary;return Math.abs(e.pageX-this.touchStartX)>n||Math.abs(e.pageY-this.touchStartY)>n},i.prototype.onTouchMove=function(t){return!this.trackingClick||((this.targetElement!==this.getTargetElementFromEventTarget(t.target)||this.touchHasMoved(t))&&(this.trackingClick=!1,this.targetElement=null),!0)},i.prototype.findControl=function(t){return void 0!==t.control?t.control:t.htmlFor?document.getElementById(t.htmlFor):t.querySelector("button, input:not([type=hidden]), keygen, meter, output, progress, select, textarea")},i.prototype.onTouchEnd=function(t){var e,n,r,o,i,s=this.targetElement;if(!this.trackingClick)return!0;if(t.timeStamp-this.lastClickTime<this.tapDelay)return this.cancelNextClick=!0,!0;if(t.timeStamp-this.trackingClickStart>this.tapTimeout)return!0;if(this.cancelNextClick=!1,this.lastClickTime=t.timeStamp,n=this.trackingClickStart,this.trackingClick=!1,this.trackingClickStart=0,l&&(i=t.changedTouches[0],s=document.elementFromPoint(i.pageX-window.pageXOffset,i.pageY-window.pageYOffset)||s,s.fastClickScrollParent=this.targetElement.fastClickScrollParent),r=s.tagName.toLowerCase(),"label"===r){if(e=this.findControl(s)){if(this.focus(s),a)return!1;s=e}}else if(this.needsFocus(s))return t.timeStamp-n>100||u&&window.top!==window&&"input"===r?(this.targetElement=null,!1):(this.focus(s),this.sendClick(s,t),u&&"select"===r||(this.targetElement=null,t.preventDefault()),!1);return!(!u||c||(o=s.fastClickScrollParent,!o||o.fastClickLastScrollTop===o.scrollTop))||(this.needsClick(s)||(t.preventDefault(),this.sendClick(s,t)),!1)},i.prototype.onTouchCancel=function(){this.trackingClick=!1,this.targetElement=null},i.prototype.onMouse=function(t){return!this.targetElement||(!!t.forwardedTouchEvent||(!t.cancelable||(!(!this.needsClick(this.targetElement)||this.cancelNextClick)||(t.stopImmediatePropagation?t.stopImmediatePropagation():t.propagationStopped=!0,t.stopPropagation(),t.preventDefault(),!1))))},i.prototype.onClick=function(t){var e;return this.trackingClick?(this.targetElement=null,this.trackingClick=!1,!0):"submit"===t.target.type&&0===t.detail||(e=this.onMouse(t),e||(this.targetElement=null),e)},i.prototype.destroy=function(){var t=this.layer;a&&(t.removeEventListener("mouseover",this.onMouse,!0),t.removeEventListener("mousedown",this.onMouse,!0),t.removeEventListener("mouseup",this.onMouse,!0)),t.removeEventListener("click",this.onClick,!0),t.removeEventListener("touchstart",this.onTouchStart,!1),t.removeEventListener("touchmove",this.onTouchMove,!1),t.removeEventListener("touchend",this.onTouchEnd,!1),t.removeEventListener("touchcancel",this.onTouchCancel,!1)},i.notNeeded=function(t){var e,n,r,o;if("undefined"==typeof window.ontouchstart)return!0;if(n=+(/Chrome\/([0-9]+)/.exec(navigator.userAgent)||[,0])[1]){if(!a)return!0;if(e=document.querySelector("meta[name=viewport]")){if(e.content.indexOf("user-scalable=no")!==-1)return!0;if(n>31&&document.documentElement.scrollWidth<=window.outerWidth)return!0}}if(f&&(r=navigator.userAgent.match(/Version\/([0-9]*)\.([0-9]*)/),r[1]>=10&&r[2]>=3&&(e=document.querySelector("meta[name=viewport]")))){if(e.content.indexOf("user-scalable=no")!==-1)return!0;if(document.documentElement.scrollWidth<=window.outerWidth)return!0}return"none"===t.style.msTouchAction||"manipulation"===t.style.touchAction||(o=+(/Firefox\/([0-9]+)/.exec(navigator.userAgent)||[,0])[1],!!(o>=27&&(e=document.querySelector("meta[name=viewport]"),e&&(e.content.indexOf("user-scalable=no")!==-1||document.documentElement.scrollWidth<=window.outerWidth)))||("none"===t.style.touchAction||"manipulation"===t.style.touchAction))},i.attach=function(t,e){return new i(t,e)},"object"===o(n(69))&&n(69)?(r=function(){return i}.call(e,n,e,t),!(void 0!==r&&(t.exports=r))):"undefined"!=typeof t&&t.exports?(t.exports=i.attach,t.exports.FastClick=i):window.FastClick=i}()},function(t,e){(function(e){t.exports=e}).call(e,{})},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,"__esModule",{value:!0});var o=n(71),i=r(o),s=n(74),a=r(s),u=n(78),c=r(u),l=n(83),f=r(l),d=n(86),h=r(d);e.default={Event:i.default,Nav:a.default,Search:c.default,Sidebar:f.default,Source:h.default},t.exports=e.default},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,"__esModule",{value:!0});var o=n(72),i=r(o),s=n(73),a=r(s);e.default={Listener:i.default,MatchMedia:a.default},t.exports=e.default},function(t,e){"use strict";function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),o=function(){function t(e,r,o){var i=this;n(this,t),this.els_="string"==typeof e?document.querySelectorAll(e):[].concat(e),this.handler_="function"==typeof o?{update:o}:o,this.events_=[].concat(r),this.update_=function(t){return i.handler_.update(t)}}return r(t,[{key:"listen",value:function(){var t=this;Array.prototype.forEach.call(this.els_,function(e){t.events_.forEach(function(n){e.addEventListener(n,t.update_,!1)})}),"function"==typeof this.handler_.setup&&this.handler_.setup()}},{key:"unlisten",value:function(){var t=this;Array.prototype.forEach.call(this.els_,function(e){t.events_.forEach(function(n){e.removeEventListener(n,t.update_)})}),"function"==typeof this.handler_.reset&&this.handler_.reset()}}]),t}();e.default=o,t.exports=e.default},function(t,e){"use strict";function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var r=function t(e,r){n(this,t),this.handler_=function(t){t.matches?r.listen():r.unlisten()};var o=window.matchMedia(e);o.addListener(this.handler_),this.handler_(o)};e.default=r,t.exports=e.default},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,"__esModule",{value:!0});var o=n(75),i=r(o),s=n(76),a=r(s),u=n(77),c=r(u);e.default={Blur:i.default,Collapse:a.default,Scrolling:c.default},t.exports=e.default},function(t,e){"use strict";function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),o=function(){function t(e){n(this,t),this.els_="string"==typeof e?document.querySelectorAll(e):e,this.index_=0,this.offset_=window.pageYOffset,this.anchors_=[].map.call(this.els_,function(t){return document.getElementById(t.hash.substring(1))})}return r(t,[{key:"setup",value:function(){this.update()}},{key:"update",value:function(){var t=window.pageYOffset;if(0!==this.anchors_.length){if(this.offset_<=t)for(var e=this.index_+1;e<this.els_.length&&this.anchors_[e].offsetTop-80<=t;e++)e>0&&(this.els_[e-1].dataset.mdState="blur"),this.index_=e;else for(var n=this.index_;n>=0;n--){if(!(this.anchors_[n].offsetTop-80>t)){this.index_=n;break}n>0&&(this.els_[n-1].dataset.mdState="")}this.offset_=t}}},{key:"reset",value:function(){Array.prototype.forEach.call(this.els_,function(t){t.dataset.mdState=""}),this.index_=0,this.offset_=window.pageYOffset}}]),t}();e.default=o,t.exports=e.default},function(t,e){"use strict";function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),o=function(){function t(e){n(this,t),this.el_="string"==typeof e?document.querySelector(e):e}return r(t,[{key:"update",value:function(){var t=this,e=this.el_.getBoundingClientRect().height;e?(this.el_.style.maxHeight=e+"px",requestAnimationFrame(function(){t.el_.setAttribute("data-md-state","animate"),t.el_.style.maxHeight="0px"})):!function(){t.el_.setAttribute("data-md-state","expand"),t.el_.style.maxHeight="";var e=t.el_.getBoundingClientRect().height;t.el_.removeAttribute("data-md-state"),t.el_.style.maxHeight="0px",requestAnimationFrame(function(){t.el_.setAttribute("data-md-state","animate"),t.el_.style.maxHeight=e+"px"})}();var n=function t(e){e.target.removeAttribute("data-md-state"),e.target.style.maxHeight="",e.target.removeEventListener("transitionend",t)};this.el_.addEventListener("transitionend",n,!1)}},{key:"reset",value:function(){this.el_.dataset.mdState="",this.el_.style.maxHeight=""}}]),t}();e.default=o,t.exports=e.default},function(t,e){"use strict";function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),o=function(){function t(e){n(this,t),this.el_="string"==typeof e?document.querySelector(e):e}return r(t,[{key:"setup",value:function(){this.el_.children[1].style.webkitOverflowScrolling="touch";var t=this.el_.querySelectorAll("[data-md-toggle]");Array.prototype.forEach.call(t,function(t){if(t.checked){for(var e=t.nextElementSibling;"NAV"!==e.tagName;)e=e.nextElementSibling;var n=t.parentNode.parentNode,r=e.children[e.children.length-1];n.style.webkitOverflowScrolling="",r.style.webkitOverflowScrolling="touch"}})}},{key:"update",value:function(t){for(var e=t.target.nextElementSibling;"NAV"!==e.tagName;)e=e.nextElementSibling;var n=t.target.parentNode.parentNode,r=e.children[e.children.length-1];n.style.webkitOverflowScrolling="",r.style.webkitOverflowScrolling="",t.target.checked||!function(){var t=function t(){n.style.webkitOverflowScrolling="touch",e.removeEventListener("transitionend",t)};e.addEventListener("transitionend",t,!1)}(),t.target.checked&&!function(){var t=function t(){r.style.webkitOverflowScrolling="touch",e.removeEventListener("transitionend",t,!1)};e.addEventListener("transitionend",t,!1)}()}},{key:"reset",value:function(){this.el_.children[1].style.webkitOverflowScrolling="";var t=this.el_.querySelectorAll("[data-md-toggle]");Array.prototype.forEach.call(t,function(t){if(t.checked){for(var e=t.nextElementSibling;"NAV"!==e.tagName;)e=e.nextElementSibling;var n=t.parentNode.parentNode,r=e.children[e.children.length-1];n.style.webkitOverflowScrolling="",r.style.webkitOverflowScrolling=""}})}}]),t}();e.default=o,t.exports=e.default},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,"__esModule",{value:!0});var o=n(79),i=r(o),s=n(80),a=r(s);e.default={Lock:i.default,Result:a.default},t.exports=e.default},function(t,e){"use strict";function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),o=function(){function t(e){n(this,t),this.el_="string"==typeof e?document.querySelector(e):e}return r(t,[{key:"setup",value:function(){this.update()}},{key:"update",value:function(){var t=this;this.el_.checked?(this.offset_=window.pageYOffset,setTimeout(function(){window.scrollTo(0,0),t.el_.checked&&(document.body.dataset.mdState="lock")},400)):(document.body.dataset.mdState="",setTimeout(function(){"undefined"!=typeof t.offset_&&window.scrollTo(0,t.offset_)},100))}},{key:"reset",value:function(){"lock"===document.body.dataset.mdState&&window.scrollTo(0,this.offset_),document.body.dataset.mdState=""}}]),t}();e.default=o,t.exports=e.default},function(t,e,n){(function(r){"use strict";function o(t){return t&&t.__esModule?t:{default:t}}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var s=function(){function t(t,e){var n=[],r=!0,o=!1,i=void 0;try{for(var s,a=t[Symbol.iterator]();!(r=(s=a.next()).done)&&(n.push(s.value),!e||n.length!==e);r=!0);}catch(t){o=!0,i=t}finally{try{!r&&a.return&&a.return()}finally{if(o)throw i}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),a=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),u=n(82),c=o(u),l=function(){function t(e,n){i(this,t),this.el_="string"==typeof e?document.querySelector(e):e,this.data_=n,this.meta_=r.createElement("div",{class:"md-search-result__meta"},"Type to start searching"),this.list_=r.createElement("ol",{class:"md-search-result__list"}),this.el_.appendChild(this.meta_),this.el_.appendChild(this.list_),this.truncate_=function(t,e){var n=e;if(t.length>n){for(;" "!==t[n]&&--n>0;);return t.substring(0,n)+"..."}return t}}return a(t,[{key:"update",value:function(t){var e=this;if("focus"!==t.type||this.index_){if("keyup"===t.type){for(;this.list_.firstChild;)this.list_.removeChild(this.list_.firstChild);var n=this.index_.search(t.target.value);n.forEach(function(t){var n=e.data_[t.ref],o=n.location.split("#"),i=s(o,1),a=i[0];a=a.replace(/^(\/?\.{2})+/g,""),e.list_.appendChild(r.createElement("li",{class:"md-search-result__item"},r.createElement("a",{href:n.location,title:n.title,class:"md-search-result__link","data-md-rel":a===document.location.pathname?"anchor":""},r.createElement("article",{class:"md-search-result__article"},r.createElement("h1",{class:"md-search-result__title"},n.title),r.createElement("p",{class:"md-search-result__teaser"},e.truncate_(n.text,140))))))});var o=this.list_.querySelectorAll("[data-md-rel=anchor]");Array.prototype.forEach.call(o,function(t){t.addEventListener("click",function(e){var n=document.querySelector("[data-md-toggle=search]");n.checked&&(n.checked=!1,n.dispatchEvent(new CustomEvent("change"))),e.preventDefault(),setTimeout(function(){document.location.href=t.href},100)})}),this.meta_.textContent=n.length+" search result"+(1!==n.length?"s":"")}}else!function(){var t=function(t){e.index_=(0,c.default)(function(){this.field("title",{boost:10}),this.field("text"),this.ref("location")}),e.data_=t.reduce(function(t,n){return e.index_.add(n),t[n.location]=n,t},{})};setTimeout(function(){return"function"==typeof e.data_?e.data_().then(t):t(e.data_)},250)}()}}]),t}();e.default=l,t.exports=e.default}).call(e,n(81))},function(t,e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={createElement:function(t,e){var n=document.createElement(t);e&&Array.prototype.forEach.call(Object.keys(e),function(t){n.setAttribute(t,e[t])});for(var r=function t(e){Array.prototype.forEach.call(e,function(e){"string"==typeof e||"number"==typeof e?n.textContent+=e:Array.isArray(e)?t(e):n.appendChild(e)})},o=arguments.length,i=Array(o>2?o-2:0),s=2;s<o;s++)i[s-2]=arguments[s];return r(i),n}},t.exports=e.default},function(t,e,n){var r,o;"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};!function(){var i=function t(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};i.version="0.7.2",/*!
+	   * lunr.utils
+	   * Copyright (C) 2016 Oliver Nightingale
+	   */
+i.utils={},i.utils.warn=function(t){return function(e){t.console&&console.warn&&console.warn(e)}}(this),i.utils.asString=function(t){return void 0===t||null===t?"":t.toString()},/*!
+	   * lunr.EventEmitter
+	   * Copyright (C) 2016 Oliver Nightingale
+	   */
+i.EventEmitter=function(){this.events={}},i.EventEmitter.prototype.addListener=function(){var t=Array.prototype.slice.call(arguments),e=t.pop(),n=t;if("function"!=typeof e)throw new TypeError("last argument must be a function");n.forEach(function(t){this.hasHandler(t)||(this.events[t]=[]),this.events[t].push(e)},this)},i.EventEmitter.prototype.removeListener=function(t,e){if(this.hasHandler(t)){var n=this.events[t].indexOf(e);this.events[t].splice(n,1),this.events[t].length||delete this.events[t]}},i.EventEmitter.prototype.emit=function(t){if(this.hasHandler(t)){var e=Array.prototype.slice.call(arguments,1);this.events[t].forEach(function(t){t.apply(void 0,e)})}},i.EventEmitter.prototype.hasHandler=function(t){return t in this.events},/*!
+	   * lunr.tokenizer
+	   * Copyright (C) 2016 Oliver Nightingale
+	   */
+i.tokenizer=function(t){if(!arguments.length||null==t||void 0==t)return[];if(Array.isArray(t))return t.map(function(t){return i.utils.asString(t).toLowerCase()});var e=i.tokenizer.seperator||i.tokenizer.separator;return t.toString().trim().toLowerCase().split(e)},i.tokenizer.seperator=!1,i.tokenizer.separator=/[\s\-]+/,i.tokenizer.load=function(t){var e=this.registeredFunctions[t];if(!e)throw new Error("Cannot load un-registered function: "+t);return e},i.tokenizer.label="default",i.tokenizer.registeredFunctions={default:i.tokenizer},i.tokenizer.registerFunction=function(t,e){e in this.registeredFunctions&&i.utils.warn("Overwriting existing tokenizer: "+e),t.label=e,this.registeredFunctions[e]=t},/*!
+	   * lunr.Pipeline
+	   * Copyright (C) 2016 Oliver Nightingale
+	   */
+i.Pipeline=function(){this._stack=[]},i.Pipeline.registeredFunctions={},i.Pipeline.registerFunction=function(t,e){e in this.registeredFunctions&&i.utils.warn("Overwriting existing registered function: "+e),t.label=e,i.Pipeline.registeredFunctions[t.label]=t},i.Pipeline.warnIfFunctionNotRegistered=function(t){var e=t.label&&t.label in this.registeredFunctions;e||i.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",t)},i.Pipeline.load=function(t){var e=new i.Pipeline;return t.forEach(function(t){var n=i.Pipeline.registeredFunctions[t];if(!n)throw new Error("Cannot load un-registered function: "+t);e.add(n)}),e},i.Pipeline.prototype.add=function(){var t=Array.prototype.slice.call(arguments);t.forEach(function(t){i.Pipeline.warnIfFunctionNotRegistered(t),this._stack.push(t)},this)},i.Pipeline.prototype.after=function(t,e){i.Pipeline.warnIfFunctionNotRegistered(e);var n=this._stack.indexOf(t);if(n==-1)throw new Error("Cannot find existingFn");n+=1,this._stack.splice(n,0,e)},i.Pipeline.prototype.before=function(t,e){i.Pipeline.warnIfFunctionNotRegistered(e);var n=this._stack.indexOf(t);if(n==-1)throw new Error("Cannot find existingFn");this._stack.splice(n,0,e)},i.Pipeline.prototype.remove=function(t){var e=this._stack.indexOf(t);e!=-1&&this._stack.splice(e,1)},i.Pipeline.prototype.run=function(t){for(var e=[],n=t.length,r=this._stack.length,o=0;o<n;o++){for(var i=t[o],s=0;s<r&&(i=this._stack[s](i,o,t),void 0!==i&&""!==i);s++);void 0!==i&&""!==i&&e.push(i)}return e},i.Pipeline.prototype.reset=function(){this._stack=[]},i.Pipeline.prototype.toJSON=function(){return this._stack.map(function(t){return i.Pipeline.warnIfFunctionNotRegistered(t),t.label})},/*!
+	   * lunr.Vector
+	   * Copyright (C) 2016 Oliver Nightingale
+	   */
+i.Vector=function(){this._magnitude=null,this.list=void 0,this.length=0},i.Vector.Node=function(t,e,n){this.idx=t,this.val=e,this.next=n},i.Vector.prototype.insert=function(t,e){this._magnitude=void 0;var n=this.list;if(!n)return this.list=new i.Vector.Node(t,e,n),this.length++;if(t<n.idx)return this.list=new i.Vector.Node(t,e,n),this.length++;for(var r=n,o=n.next;void 0!=o;){if(t<o.idx)return r.next=new i.Vector.Node(t,e,o),this.length++;r=o,o=o.next}return r.next=new i.Vector.Node(t,e,o),this.length++},i.Vector.prototype.magnitude=function(){if(this._magnitude)return this._magnitude;for(var t,e=this.list,n=0;e;)t=e.val,n+=t*t,e=e.next;return this._magnitude=Math.sqrt(n)},i.Vector.prototype.dot=function(t){for(var e=this.list,n=t.list,r=0;e&&n;)e.idx<n.idx?e=e.next:e.idx>n.idx?n=n.next:(r+=e.val*n.val,e=e.next,n=n.next);return r},i.Vector.prototype.similarity=function(t){return this.dot(t)/(this.magnitude()*t.magnitude())},/*!
+	   * lunr.SortedSet
+	   * Copyright (C) 2016 Oliver Nightingale
+	   */
+i.SortedSet=function(){this.length=0,this.elements=[]},i.SortedSet.load=function(t){var e=new this;return e.elements=t,e.length=t.length,e},i.SortedSet.prototype.add=function(){var t,e;for(t=0;t<arguments.length;t++)e=arguments[t],~this.indexOf(e)||this.elements.splice(this.locationFor(e),0,e);this.length=this.elements.length},i.SortedSet.prototype.toArray=function(){return this.elements.slice()},i.SortedSet.prototype.map=function(t,e){return this.elements.map(t,e)},i.SortedSet.prototype.forEach=function(t,e){return this.elements.forEach(t,e)},i.SortedSet.prototype.indexOf=function(t){for(var e=0,n=this.elements.length,r=n-e,o=e+Math.floor(r/2),i=this.elements[o];r>1;){if(i===t)return o;i<t&&(e=o),i>t&&(n=o),r=n-e,o=e+Math.floor(r/2),i=this.elements[o]}return i===t?o:-1},i.SortedSet.prototype.locationFor=function(t){for(var e=0,n=this.elements.length,r=n-e,o=e+Math.floor(r/2),i=this.elements[o];r>1;)i<t&&(e=o),i>t&&(n=o),r=n-e,o=e+Math.floor(r/2),i=this.elements[o];return i>t?o:i<t?o+1:void 0},i.SortedSet.prototype.intersect=function(t){for(var e=new i.SortedSet,n=0,r=0,o=this.length,s=t.length,a=this.elements,u=t.elements;;){if(n>o-1||r>s-1)break;a[n]!==u[r]?a[n]<u[r]?n++:a[n]>u[r]&&r++:(e.add(a[n]),n++,r++)}return e},i.SortedSet.prototype.clone=function(){var t=new i.SortedSet;return t.elements=this.toArray(),t.length=t.elements.length,t},i.SortedSet.prototype.union=function(t){var e,n,r;this.length>=t.length?(e=this,n=t):(e=t,n=this),r=e.clone();for(var o=0,i=n.toArray();o<i.length;o++)r.add(i[o]);return r},i.SortedSet.prototype.toJSON=function(){return this.toArray()},/*!
+	   * lunr.Index
+	   * Copyright (C) 2016 Oliver Nightingale
+	   */
+i.Index=function(){this._fields=[],this._ref="id",this.pipeline=new i.Pipeline,this.documentStore=new i.Store,this.tokenStore=new i.TokenStore,this.corpusTokens=new i.SortedSet,this.eventEmitter=new i.EventEmitter,this.tokenizerFn=i.tokenizer,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},i.Index.prototype.on=function(){var t=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,t)},i.Index.prototype.off=function(t,e){return this.eventEmitter.removeListener(t,e)},i.Index.load=function(t){t.version!==i.version&&i.utils.warn("version mismatch: current "+i.version+" importing "+t.version);var e=new this;return e._fields=t.fields,e._ref=t.ref,e.tokenizer(i.tokenizer.load(t.tokenizer)),e.documentStore=i.Store.load(t.documentStore),e.tokenStore=i.TokenStore.load(t.tokenStore),e.corpusTokens=i.SortedSet.load(t.corpusTokens),e.pipeline=i.Pipeline.load(t.pipeline),e},i.Index.prototype.field=function(t,e){var e=e||{},n={name:t,boost:e.boost||1};return this._fields.push(n),this},i.Index.prototype.ref=function(t){return this._ref=t,this},i.Index.prototype.tokenizer=function(t){var e=t.label&&t.label in i.tokenizer.registeredFunctions;return e||i.utils.warn("Function is not a registered tokenizer. This may cause problems when serialising the index"),this.tokenizerFn=t,this},i.Index.prototype.add=function(t,e){var n={},r=new i.SortedSet,o=t[this._ref],e=void 0===e||e;this._fields.forEach(function(e){var o=this.pipeline.run(this.tokenizerFn(t[e.name]));n[e.name]=o;for(var i=0;i<o.length;i++){var s=o[i];r.add(s),this.corpusTokens.add(s)}},this),this.documentStore.set(o,r);for(var s=0;s<r.length;s++){for(var a=r.elements[s],u=0,c=0;c<this._fields.length;c++){var l=this._fields[c],f=n[l.name],d=f.length;if(d){for(var h=0,p=0;p<d;p++)f[p]===a&&h++;u+=h/d*l.boost}}this.tokenStore.add(a,{ref:o,tf:u})}e&&this.eventEmitter.emit("add",t,this)},i.Index.prototype.remove=function(t,e){var n=t[this._ref],e=void 0===e||e;if(this.documentStore.has(n)){var r=this.documentStore.get(n);this.documentStore.remove(n),r.forEach(function(t){this.tokenStore.remove(t,n)},this),e&&this.eventEmitter.emit("remove",t,this)}},i.Index.prototype.update=function(t,e){var e=void 0===e||e;this.remove(t,!1),this.add(t,!1),e&&this.eventEmitter.emit("update",t,this)},i.Index.prototype.idf=function(t){var e="@"+t;if(Object.prototype.hasOwnProperty.call(this._idfCache,e))return this._idfCache[e];var n=this.tokenStore.count(t),r=1;return n>0&&(r=1+Math.log(this.documentStore.length/n)),this._idfCache[e]=r},i.Index.prototype.search=function(t){var e=this.pipeline.run(this.tokenizerFn(t)),n=new i.Vector,r=[],o=this._fields.reduce(function(t,e){return t+e.boost},0),s=e.some(function(t){return this.tokenStore.has(t)},this);if(!s)return[];e.forEach(function(t,e,s){var a=1/s.length*this._fields.length*o,u=this,c=this.tokenStore.expand(t).reduce(function(e,r){var o=u.corpusTokens.indexOf(r),s=u.idf(r),c=1,l=new i.SortedSet;if(r!==t){var f=Math.max(3,r.length-t.length);c=1/Math.log(f)}o>-1&&n.insert(o,a*s*c);for(var d=u.tokenStore.get(r),h=Object.keys(d),p=h.length,v=0;v<p;v++)l.add(d[h[v]].ref);return e.union(l)},new i.SortedSet);r.push(c)},this);var a=r.reduce(function(t,e){return t.intersect(e)});return a.map(function(t){return{ref:t,score:n.similarity(this.documentVector(t))}},this).sort(function(t,e){return e.score-t.score})},i.Index.prototype.documentVector=function(t){for(var e=this.documentStore.get(t),n=e.length,r=new i.Vector,o=0;o<n;o++){var s=e.elements[o],a=this.tokenStore.get(s)[t].tf,u=this.idf(s);r.insert(this.corpusTokens.indexOf(s),a*u)}return r},i.Index.prototype.toJSON=function(){return{version:i.version,fields:this._fields,ref:this._ref,tokenizer:this.tokenizerFn.label,documentStore:this.documentStore.toJSON(),tokenStore:this.tokenStore.toJSON(),corpusTokens:this.corpusTokens.toJSON(),pipeline:this.pipeline.toJSON()}},i.Index.prototype.use=function(t){var e=Array.prototype.slice.call(arguments,1);e.unshift(this),t.apply(this,e)},/*!
+	   * lunr.Store
+	   * Copyright (C) 2016 Oliver Nightingale
+	   */
+i.Store=function(){this.store={},this.length=0},i.Store.load=function(t){var e=new this;return e.length=t.length,e.store=Object.keys(t.store).reduce(function(e,n){return e[n]=i.SortedSet.load(t.store[n]),e},{}),e},i.Store.prototype.set=function(t,e){this.has(t)||this.length++,this.store[t]=e},i.Store.prototype.get=function(t){return this.store[t]},i.Store.prototype.has=function(t){return t in this.store},i.Store.prototype.remove=function(t){this.has(t)&&(delete this.store[t],this.length--)},i.Store.prototype.toJSON=function(){return{store:this.store,length:this.length}},/*!
+	   * lunr.stemmer
+	   * Copyright (C) 2016 Oliver Nightingale
+	   * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt
+	   */
+i.stemmer=function(){var t={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},e={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},n="[^aeiou]",r="[aeiouy]",o=n+"[^aeiouy]*",i=r+"[aeiou]*",s="^("+o+")?"+i+o,a="^("+o+")?"+i+o+"("+i+")?$",u="^("+o+")?"+i+o+i+o,c="^("+o+")?"+r,l=new RegExp(s),f=new RegExp(u),d=new RegExp(a),h=new RegExp(c),p=/^(.+?)(ss|i)es$/,v=/^(.+?)([^s])s$/,y=/^(.+?)eed$/,m=/^(.+?)(ed|ing)$/,g=/.$/,b=/(at|bl|iz)$/,w=new RegExp("([^aeiouylsz])\\1$"),_=new RegExp("^"+o+r+"[^aeiouwxy]$"),S=/^(.+?[^aeiou])y$/,x=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,E=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,k=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,T=/^(.+?)(s|t)(ion)$/,O=/^(.+?)e$/,C=/ll$/,P=new RegExp("^"+o+r+"[^aeiouwxy]$"),A=function(n){var r,o,i,s,a,u,c;if(n.length<3)return n;if(i=n.substr(0,1),"y"==i&&(n=i.toUpperCase()+n.substr(1)),s=p,a=v,s.test(n)?n=n.replace(s,"$1$2"):a.test(n)&&(n=n.replace(a,"$1$2")),s=y,a=m,s.test(n)){var A=s.exec(n);s=l,s.test(A[1])&&(s=g,n=n.replace(s,""))}else if(a.test(n)){var A=a.exec(n);r=A[1],a=h,a.test(r)&&(n=r,a=b,u=w,c=_,a.test(n)?n+="e":u.test(n)?(s=g,n=n.replace(s,"")):c.test(n)&&(n+="e"))}if(s=S,s.test(n)){var A=s.exec(n);r=A[1],n=r+"i"}if(s=x,s.test(n)){var A=s.exec(n);r=A[1],o=A[2],s=l,s.test(r)&&(n=r+t[o])}if(s=E,s.test(n)){var A=s.exec(n);r=A[1],o=A[2],s=l,s.test(r)&&(n=r+e[o])}if(s=k,a=T,s.test(n)){var A=s.exec(n);r=A[1],s=f,s.test(r)&&(n=r)}else if(a.test(n)){var A=a.exec(n);r=A[1]+A[2],a=f,a.test(r)&&(n=r)}if(s=O,s.test(n)){var A=s.exec(n);r=A[1],s=f,a=d,u=P,(s.test(r)||a.test(r)&&!u.test(r))&&(n=r)}return s=C,a=f,s.test(n)&&a.test(n)&&(s=g,n=n.replace(s,"")),"y"==i&&(n=i.toLowerCase()+n.substr(1)),n};return A}(),i.Pipeline.registerFunction(i.stemmer,"stemmer"),/*!
+	   * lunr.stopWordFilter
+	   * Copyright (C) 2016 Oliver Nightingale
+	   */
+i.generateStopWordFilter=function(t){var e=t.reduce(function(t,e){return t[e]=e,t},{});return function(t){if(t&&e[t]!==t)return t}},i.stopWordFilter=i.generateStopWordFilter(["a","able","about","across","after","all","almost","also","am","among","an","and","any","are","as","at","be","because","been","but","by","can","cannot","could","dear","did","do","does","either","else","ever","every","for","from","get","got","had","has","have","he","her","hers","him","his","how","however","i","if","in","into","is","it","its","just","least","let","like","likely","may","me","might","most","must","my","neither","no","nor","not","of","off","often","on","only","or","other","our","own","rather","said","say","says","she","should","since","so","some","than","that","the","their","them","then","there","these","they","this","tis","to","too","twas","us","wants","was","we","were","what","when","where","which","while","who","whom","why","will","with","would","yet","you","your"]),i.Pipeline.registerFunction(i.stopWordFilter,"stopWordFilter"),/*!
+	   * lunr.trimmer
+	   * Copyright (C) 2016 Oliver Nightingale
+	   */
+i.trimmer=function(t){return t.replace(/^\W+/,"").replace(/\W+$/,"")},i.Pipeline.registerFunction(i.trimmer,"trimmer"),/*!
+	   * lunr.stemmer
+	   * Copyright (C) 2016 Oliver Nightingale
+	   * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt
+	   */
+i.TokenStore=function(){this.root={docs:{}},this.length=0},i.TokenStore.load=function(t){var e=new this;return e.root=t.root,e.length=t.length,e},i.TokenStore.prototype.add=function(t,e,n){var n=n||this.root,r=t.charAt(0),o=t.slice(1);return r in n||(n[r]={docs:{}}),0===o.length?(n[r].docs[e.ref]=e,void(this.length+=1)):this.add(o,e,n[r])},i.TokenStore.prototype.has=function(t){if(!t)return!1;for(var e=this.root,n=0;n<t.length;n++){if(!e[t.charAt(n)])return!1;e=e[t.charAt(n)]}return!0},i.TokenStore.prototype.getNode=function(t){if(!t)return{};for(var e=this.root,n=0;n<t.length;n++){if(!e[t.charAt(n)])return{};e=e[t.charAt(n)]}return e},i.TokenStore.prototype.get=function(t,e){return this.getNode(t,e).docs||{}},i.TokenStore.prototype.count=function(t,e){return Object.keys(this.get(t,e)).length},i.TokenStore.prototype.remove=function(t,e){if(t){for(var n=this.root,r=0;r<t.length;r++){if(!(t.charAt(r)in n))return;n=n[t.charAt(r)]}delete n.docs[e]}},i.TokenStore.prototype.expand=function(t,e){var n=this.getNode(t),r=n.docs||{},e=e||[];return Object.keys(r).length&&e.push(t),Object.keys(n).forEach(function(n){"docs"!==n&&e.concat(this.expand(t+n,e))},this),e},i.TokenStore.prototype.toJSON=function(){return{root:this.root,length:this.length}},function(i,s){r=s,o="function"==typeof r?r.call(e,n,e,t):r,!(void 0!==o&&(t.exports=o))}(this,function(){return i})}()},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,"__esModule",{value:!0});var o=n(84),i=r(o),s=n(85),a=r(s);e.default={Container:i.default,Position:a.default},t.exports=e.default},function(t,e){"use strict";function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),o=function(){function t(e){n(this,t),this.el_="string"==typeof e?document.querySelector(e):e,this.parent_=this.el_.parentNode}return r(t,[{key:"setup",value:function(){this.update()}},{key:"update",value:function(){var t=this.parent_.offsetHeight-this.el_.offsetTop;this.el_.style.minHeight=t+"px"}},{key:"reset",value:function(){this.el_.style.minHeight=""}}]),t}();e.default=o,t.exports=e.default},function(t,e){"use strict";function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),o=function(){function t(e){n(this,t),this.el_="string"==typeof e?document.querySelector(e):e,this.parent_=this.el_.parentNode,this.height_=0}return r(t,[{key:"setup",value:function(){this.offset_=this.el_.offsetTop-this.parent_.offsetTop,this.update()}},{key:"update",value:function(){var t=window.pageYOffset,e=window.innerHeight;this.bounds_={top:this.parent_.offsetTop,bottom:this.parent_.offsetTop+this.parent_.offsetHeight};var n=e-this.bounds_.top-Math.max(0,this.offset_-t)-Math.max(0,t+e-this.bounds_.bottom);n!==this.height_&&(this.el_.style.height=(this.height_=n)+"px"),t>=this.offset_?"lock"!==this.el_.dataset.mdState&&(this.el_.dataset.mdState="lock"):"lock"===this.el_.dataset.mdState&&(this.el_.dataset.mdState="")}},{key:"reset",value:function(){this.el_.dataset.mdState="",this.el_.style.height="",this.height_=0}}]),t}();e.default=o,t.exports=e.default},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,"__esModule",{value:!0});var o=n(87),i=r(o),s=n(91),a=r(s);e.default={Adapter:i.default,Repository:a.default},t.exports=e.default},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,"__esModule",{value:!0});var o=n(88),i=r(o);e.default={GitHub:i.default},t.exports=e.default},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var a=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),u=n(89),c=r(u),l=function(t){function e(t){o(this,e);var n=i(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t));return n.base_=n.base_.replace("github.com/","api.github.com/repos/"),n}return s(e,t),a(e,[{key:"fetch_",value:function(){var t=this;return fetch(this.base_).then(function(t){return t.json()}).then(function(e){return[t.format_(e.stargazers_count)+" Stars",t.format_(e.forks_count)+" Forks"]})}}]),e}(c.default);e.default=l,t.exports=e.default},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var i=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),s=n(90),a=r(s),u=function(){function t(e){o(this,t),this.el_="string"==typeof e?document.querySelector(e):e,this.base_=this.el_.href,this.salt_=this.hash_(this.base_)}return i(t,[{key:"fetch",value:function(){var t=this;return new Promise(function(e){var n=a.default.getJSON(t.salt_+".cache-source");"undefined"!=typeof n?e(n):t.fetch_().then(function(n){a.default.set(t.salt_+".cache-source",n,{expires:1/96}),e(n)})})}},{key:"fetch_",value:function(){throw new Error("fetch_(): Not implemented")}},{key:"format_",value:function(t){return t>1e4?(t/1e3).toFixed(0)+"k":t>1e3?(t/1e3).toFixed(1)+"k":t}},{key:"hash_",value:function(t){var e=0;if(0===t.length)return e;for(var n=0,r=t.length;n<r;n++)e=(e<<5)-e+t.charCodeAt(n),e|=0;return e}}]),t}();e.default=u,t.exports=e.default},function(t,e,n){var r,o,i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};!function(s){var a=!1;if(r=s,o="function"==typeof r?r.call(e,n,e,t):r,!(void 0!==o&&(t.exports=o)),a=!0,"object"===i(e)&&(t.exports=s(),a=!0),!a){var u=window.Cookies,c=window.Cookies=s();c.noConflict=function(){return window.Cookies=u,c}}}(function(){function t(){for(var t=0,e={};t<arguments.length;t++){var n=arguments[t];for(var r in n)e[r]=n[r]}return e}function e(n){function r(e,o,i){var s;if("undefined"!=typeof document){if(arguments.length>1){if(i=t({path:"/"},r.defaults,i),"number"==typeof i.expires){var a=new Date;a.setMilliseconds(a.getMilliseconds()+864e5*i.expires),i.expires=a}try{s=JSON.stringify(o),/^[\{\[]/.test(s)&&(o=s)}catch(t){}return o=n.write?n.write(o,e):encodeURIComponent(String(o)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent),e=encodeURIComponent(String(e)),e=e.replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent),e=e.replace(/[\(\)]/g,escape),document.cookie=[e,"=",o,i.expires?"; expires="+i.expires.toUTCString():"",i.path?"; path="+i.path:"",i.domain?"; domain="+i.domain:"",i.secure?"; secure":""].join("")}e||(s={});for(var u=document.cookie?document.cookie.split("; "):[],c=/(%[0-9A-Z]{2})+/g,l=0;l<u.length;l++){var f=u[l].split("="),d=f.slice(1).join("=");'"'===d.charAt(0)&&(d=d.slice(1,-1));try{var h=f[0].replace(c,decodeURIComponent);if(d=n.read?n.read(d,h):n(d,h)||d.replace(c,decodeURIComponent),this.json)try{d=JSON.parse(d)}catch(t){}if(e===h){s=d;break}e||(s[h]=d)}catch(t){}}return s}}return r.set=r,r.get=function(t){return r.call(r,t)},r.getJSON=function(){return r.apply({json:!0},[].slice.call(arguments))},r.defaults={},r.remove=function(e,n){r(e,"",t(n,{expires:-1}))},r.withConverter=e,r}return e(function(){})})},function(t,e,n){(function(n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var o=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),i=function(){function t(e){r(this,t),this.el_="string"==typeof e?document.querySelector(e):e}return o(t,[{key:"initialize",value:function(t){t.length&&this.el_.children[this.el_.children.length-1].appendChild(n.createElement("ul",{class:"md-source__facts"},t.map(function(t){return n.createElement("li",{class:"md-source__fact"},t)}))),this.el_.dataset.mdState="done"}}]),t}();e.default=i,t.exports=e.default}).call(e,n(81))}]);
\ No newline at end of file
diff --git a/material/assets/javascripts/application-997097ee0c.js b/material/assets/javascripts/application-997097ee0c.js
deleted file mode 100644
index 1199f2e1dc6c0bfde788472cfe1e8e3b6181de2d..0000000000000000000000000000000000000000
--- a/material/assets/javascripts/application-997097ee0c.js
+++ /dev/null
@@ -1 +0,0 @@
-function pegasus(t,e){return e=new XMLHttpRequest,e.open("GET",t),t=[],e.onreadystatechange=e.then=function(n,o,i,r){if(n&&n.call&&(t=[,n,o]),4==e.readyState&&(i=t[0|e.status/200])){try{r=JSON.parse(e.responseText)}catch(s){r=null}i(r,e)}},e.send(),e}if("document"in self&&("classList"in document.createElement("_")?!function(){"use strict";var t=document.createElement("_");if(t.classList.add("c1","c2"),!t.classList.contains("c2")){var e=function(t){var e=DOMTokenList.prototype[t];DOMTokenList.prototype[t]=function(t){var n,o=arguments.length;for(n=0;o>n;n++)t=arguments[n],e.call(this,t)}};e("add"),e("remove")}if(t.classList.toggle("c3",!1),t.classList.contains("c3")){var n=DOMTokenList.prototype.toggle;DOMTokenList.prototype.toggle=function(t,e){return 1 in arguments&&!this.contains(t)==!e?e:n.call(this,t)}}t=null}():!function(t){"use strict";if("Element"in t){var e="classList",n="prototype",o=t.Element[n],i=Object,r=String[n].trim||function(){return this.replace(/^\s+|\s+$/g,"")},s=Array[n].indexOf||function(t){for(var e=0,n=this.length;n>e;e++)if(e in this&&this[e]===t)return e;return-1},a=function(t,e){this.name=t,this.code=DOMException[t],this.message=e},c=function(t,e){if(""===e)throw new a("SYNTAX_ERR","An invalid or illegal string was specified");if(/\s/.test(e))throw new a("INVALID_CHARACTER_ERR","String contains an invalid character");return s.call(t,e)},l=function(t){for(var e=r.call(t.getAttribute("class")||""),n=e?e.split(/\s+/):[],o=0,i=n.length;i>o;o++)this.push(n[o]);this._updateClassName=function(){t.setAttribute("class",this.toString())}},u=l[n]=[],d=function(){return new l(this)};if(a[n]=Error[n],u.item=function(t){return this[t]||null},u.contains=function(t){return t+="",-1!==c(this,t)},u.add=function(){var t,e=arguments,n=0,o=e.length,i=!1;do t=e[n]+"",-1===c(this,t)&&(this.push(t),i=!0);while(++n<o);i&&this._updateClassName()},u.remove=function(){var t,e,n=arguments,o=0,i=n.length,r=!1;do for(t=n[o]+"",e=c(this,t);-1!==e;)this.splice(e,1),r=!0,e=c(this,t);while(++o<i);r&&this._updateClassName()},u.toggle=function(t,e){t+="";var n=this.contains(t),o=n?e!==!0&&"remove":e!==!1&&"add";return o&&this[o](t),e===!0||e===!1?e:!n},u.toString=function(){return this.join(" ")},i.defineProperty){var h={get:d,enumerable:!0,configurable:!0};try{i.defineProperty(o,e,h)}catch(f){-2146823252===f.number&&(h.enumerable=!1,i.defineProperty(o,e,h))}}else i[n].__defineGetter__&&o.__defineGetter__(e,d)}}(self)),function(){"use strict";function t(e,o){function i(t,e){return function(){return t.apply(e,arguments)}}var r;if(o=o||{},this.trackingClick=!1,this.trackingClickStart=0,this.targetElement=null,this.touchStartX=0,this.touchStartY=0,this.lastTouchIdentifier=0,this.touchBoundary=o.touchBoundary||10,this.layer=e,this.tapDelay=o.tapDelay||200,this.tapTimeout=o.tapTimeout||700,!t.notNeeded(e)){for(var s=["onMouse","onClick","onTouchStart","onTouchMove","onTouchEnd","onTouchCancel"],a=this,c=0,l=s.length;l>c;c++)a[s[c]]=i(a[s[c]],a);n&&(e.addEventListener("mouseover",this.onMouse,!0),e.addEventListener("mousedown",this.onMouse,!0),e.addEventListener("mouseup",this.onMouse,!0)),e.addEventListener("click",this.onClick,!0),e.addEventListener("touchstart",this.onTouchStart,!1),e.addEventListener("touchmove",this.onTouchMove,!1),e.addEventListener("touchend",this.onTouchEnd,!1),e.addEventListener("touchcancel",this.onTouchCancel,!1),Event.prototype.stopImmediatePropagation||(e.removeEventListener=function(t,n,o){var i=Node.prototype.removeEventListener;"click"===t?i.call(e,t,n.hijacked||n,o):i.call(e,t,n,o)},e.addEventListener=function(t,n,o){var i=Node.prototype.addEventListener;"click"===t?i.call(e,t,n.hijacked||(n.hijacked=function(t){t.propagationStopped||n(t)}),o):i.call(e,t,n,o)}),"function"==typeof e.onclick&&(r=e.onclick,e.addEventListener("click",function(t){r(t)},!1),e.onclick=null)}}var e=navigator.userAgent.indexOf("Windows Phone")>=0,n=navigator.userAgent.indexOf("Android")>0&&!e,o=/iP(ad|hone|od)/.test(navigator.userAgent)&&!e,i=o&&/OS 4_\d(_\d)?/.test(navigator.userAgent),r=o&&/OS [6-7]_\d/.test(navigator.userAgent),s=navigator.userAgent.indexOf("BB10")>0;t.prototype.needsClick=function(t){switch(t.nodeName.toLowerCase()){case"button":case"select":case"textarea":if(t.disabled)return!0;break;case"input":if(o&&"file"===t.type||t.disabled)return!0;break;case"label":case"iframe":case"video":return!0}return/\bneedsclick\b/.test(t.className)},t.prototype.needsFocus=function(t){switch(t.nodeName.toLowerCase()){case"textarea":return!0;case"select":return!n;case"input":switch(t.type){case"button":case"checkbox":case"file":case"image":case"radio":case"submit":return!1}return!t.disabled&&!t.readOnly;default:return/\bneedsfocus\b/.test(t.className)}},t.prototype.sendClick=function(t,e){var n,o;document.activeElement&&document.activeElement!==t&&document.activeElement.blur(),o=e.changedTouches[0],n=document.createEvent("MouseEvents"),n.initMouseEvent(this.determineEventType(t),!0,!0,window,1,o.screenX,o.screenY,o.clientX,o.clientY,!1,!1,!1,!1,0,null),n.forwardedTouchEvent=!0,t.dispatchEvent(n)},t.prototype.determineEventType=function(t){return n&&"select"===t.tagName.toLowerCase()?"mousedown":"click"},t.prototype.focus=function(t){var e;o&&t.setSelectionRange&&0!==t.type.indexOf("date")&&"time"!==t.type&&"month"!==t.type?(e=t.value.length,t.setSelectionRange(e,e)):t.focus()},t.prototype.updateScrollParent=function(t){var e,n;if(e=t.fastClickScrollParent,!e||!e.contains(t)){n=t;do{if(n.scrollHeight>n.offsetHeight){e=n,t.fastClickScrollParent=n;break}n=n.parentElement}while(n)}e&&(e.fastClickLastScrollTop=e.scrollTop)},t.prototype.getTargetElementFromEventTarget=function(t){return t.nodeType===Node.TEXT_NODE?t.parentNode:t},t.prototype.onTouchStart=function(t){var e,n,r;if(t.targetTouches.length>1)return!0;if(e=this.getTargetElementFromEventTarget(t.target),n=t.targetTouches[0],o){if(r=window.getSelection(),r.rangeCount&&!r.isCollapsed)return!0;if(!i){if(n.identifier&&n.identifier===this.lastTouchIdentifier)return t.preventDefault(),!1;this.lastTouchIdentifier=n.identifier,this.updateScrollParent(e)}}return this.trackingClick=!0,this.trackingClickStart=t.timeStamp,this.targetElement=e,this.touchStartX=n.pageX,this.touchStartY=n.pageY,t.timeStamp-this.lastClickTime<this.tapDelay&&t.preventDefault(),!0},t.prototype.touchHasMoved=function(t){var e=t.changedTouches[0],n=this.touchBoundary;return Math.abs(e.pageX-this.touchStartX)>n||Math.abs(e.pageY-this.touchStartY)>n?!0:!1},t.prototype.onTouchMove=function(t){return this.trackingClick?((this.targetElement!==this.getTargetElementFromEventTarget(t.target)||this.touchHasMoved(t))&&(this.trackingClick=!1,this.targetElement=null),!0):!0},t.prototype.findControl=function(t){return void 0!==t.control?t.control:t.htmlFor?document.getElementById(t.htmlFor):t.querySelector("button, input:not([type=hidden]), keygen, meter, output, progress, select, textarea")},t.prototype.onTouchEnd=function(t){var e,s,a,c,l,u=this.targetElement;if(!this.trackingClick)return!0;if(t.timeStamp-this.lastClickTime<this.tapDelay)return this.cancelNextClick=!0,!0;if(t.timeStamp-this.trackingClickStart>this.tapTimeout)return!0;if(this.cancelNextClick=!1,this.lastClickTime=t.timeStamp,s=this.trackingClickStart,this.trackingClick=!1,this.trackingClickStart=0,r&&(l=t.changedTouches[0],u=document.elementFromPoint(l.pageX-window.pageXOffset,l.pageY-window.pageYOffset)||u,u.fastClickScrollParent=this.targetElement.fastClickScrollParent),a=u.tagName.toLowerCase(),"label"===a){if(e=this.findControl(u)){if(this.focus(u),n)return!1;u=e}}else if(this.needsFocus(u))return t.timeStamp-s>100||o&&window.top!==window&&"input"===a?(this.targetElement=null,!1):(this.focus(u),this.sendClick(u,t),o&&"select"===a||(this.targetElement=null,t.preventDefault()),!1);return o&&!i&&(c=u.fastClickScrollParent,c&&c.fastClickLastScrollTop!==c.scrollTop)?!0:(this.needsClick(u)||(t.preventDefault(),this.sendClick(u,t)),!1)},t.prototype.onTouchCancel=function(){this.trackingClick=!1,this.targetElement=null},t.prototype.onMouse=function(t){return this.targetElement?t.forwardedTouchEvent?!0:t.cancelable&&(!this.needsClick(this.targetElement)||this.cancelNextClick)?(t.stopImmediatePropagation?t.stopImmediatePropagation():t.propagationStopped=!0,t.stopPropagation(),t.preventDefault(),!1):!0:!0},t.prototype.onClick=function(t){var e;return this.trackingClick?(this.targetElement=null,this.trackingClick=!1,!0):"submit"===t.target.type&&0===t.detail?!0:(e=this.onMouse(t),e||(this.targetElement=null),e)},t.prototype.destroy=function(){var t=this.layer;n&&(t.removeEventListener("mouseover",this.onMouse,!0),t.removeEventListener("mousedown",this.onMouse,!0),t.removeEventListener("mouseup",this.onMouse,!0)),t.removeEventListener("click",this.onClick,!0),t.removeEventListener("touchstart",this.onTouchStart,!1),t.removeEventListener("touchmove",this.onTouchMove,!1),t.removeEventListener("touchend",this.onTouchEnd,!1),t.removeEventListener("touchcancel",this.onTouchCancel,!1)},t.notNeeded=function(t){var e,o,i,r;if("undefined"==typeof window.ontouchstart)return!0;if(o=+(/Chrome\/([0-9]+)/.exec(navigator.userAgent)||[,0])[1]){if(!n)return!0;if(e=document.querySelector("meta[name=viewport]")){if(-1!==e.content.indexOf("user-scalable=no"))return!0;if(o>31&&document.documentElement.scrollWidth<=window.outerWidth)return!0}}if(s&&(i=navigator.userAgent.match(/Version\/([0-9]*)\.([0-9]*)/),i[1]>=10&&i[2]>=3&&(e=document.querySelector("meta[name=viewport]")))){if(-1!==e.content.indexOf("user-scalable=no"))return!0;if(document.documentElement.scrollWidth<=window.outerWidth)return!0}return"none"===t.style.msTouchAction||"manipulation"===t.style.touchAction?!0:(r=+(/Firefox\/([0-9]+)/.exec(navigator.userAgent)||[,0])[1],r>=27&&(e=document.querySelector("meta[name=viewport]"),e&&(-1!==e.content.indexOf("user-scalable=no")||document.documentElement.scrollWidth<=window.outerWidth))?!0:"none"===t.style.touchAction||"manipulation"===t.style.touchAction?!0:!1)},t.attach=function(e,n){return new t(e,n)},"function"==typeof define&&"object"==typeof define.amd&&define.amd?define(function(){return t}):"undefined"!=typeof module&&module.exports?(module.exports=t.attach,module.exports.FastClick=t):window.FastClick=t}(),function(){var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.6.0",t.utils={},t.utils.warn=function(t){return function(e){t.console&&console.warn&&console.warn(e)}}(this),t.utils.asString=function(t){return void 0===t||null===t?"":t.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var t=Array.prototype.slice.call(arguments),e=t.pop(),n=t;if("function"!=typeof e)throw new TypeError("last argument must be a function");n.forEach(function(t){this.hasHandler(t)||(this.events[t]=[]),this.events[t].push(e)},this)},t.EventEmitter.prototype.removeListener=function(t,e){if(this.hasHandler(t)){var n=this.events[t].indexOf(e);this.events[t].splice(n,1),this.events[t].length||delete this.events[t]}},t.EventEmitter.prototype.emit=function(t){if(this.hasHandler(t)){var e=Array.prototype.slice.call(arguments,1);this.events[t].forEach(function(t){t.apply(void 0,e)})}},t.EventEmitter.prototype.hasHandler=function(t){return t in this.events},t.tokenizer=function(e){return arguments.length&&null!=e&&void 0!=e?Array.isArray(e)?e.map(function(e){return t.utils.asString(e).toLowerCase()}):e.toString().trim().toLowerCase().split(t.tokenizer.seperator):[]},t.tokenizer.seperator=/[\s\-]+/,t.Pipeline=function(){this._stack=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var o=t.Pipeline.registeredFunctions[e];if(!o)throw new Error("Cannot load un-registered function: "+e);n.add(o)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._stack.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var o=this._stack.indexOf(e);if(-1==o)throw new Error("Cannot find existingFn");o+=1,this._stack.splice(o,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var o=this._stack.indexOf(e);if(-1==o)throw new Error("Cannot find existingFn");this._stack.splice(o,0,n)},t.Pipeline.prototype.remove=function(t){var e=this._stack.indexOf(t);-1!=e&&this._stack.splice(e,1)},t.Pipeline.prototype.run=function(t){for(var e=[],n=t.length,o=this._stack.length,i=0;n>i;i++){for(var r=t[i],s=0;o>s&&(r=this._stack[s](r,i,t),void 0!==r&&""!==r);s++);void 0!==r&&""!==r&&e.push(r)}return e},t.Pipeline.prototype.reset=function(){this._stack=[]},t.Pipeline.prototype.toJSON=function(){return this._stack.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Vector=function(){this._magnitude=null,this.list=void 0,this.length=0},t.Vector.Node=function(t,e,n){this.idx=t,this.val=e,this.next=n},t.Vector.prototype.insert=function(e,n){this._magnitude=void 0;var o=this.list;if(!o)return this.list=new t.Vector.Node(e,n,o),this.length++;if(e<o.idx)return this.list=new t.Vector.Node(e,n,o),this.length++;for(var i=o,r=o.next;void 0!=r;){if(e<r.idx)return i.next=new t.Vector.Node(e,n,r),this.length++;i=r,r=r.next}return i.next=new t.Vector.Node(e,n,r),this.length++},t.Vector.prototype.magnitude=function(){if(this._magnitude)return this._magnitude;for(var t,e=this.list,n=0;e;)t=e.val,n+=t*t,e=e.next;return this._magnitude=Math.sqrt(n)},t.Vector.prototype.dot=function(t){for(var e=this.list,n=t.list,o=0;e&&n;)e.idx<n.idx?e=e.next:e.idx>n.idx?n=n.next:(o+=e.val*n.val,e=e.next,n=n.next);return o},t.Vector.prototype.similarity=function(t){return this.dot(t)/(this.magnitude()*t.magnitude())},t.SortedSet=function(){this.length=0,this.elements=[]},t.SortedSet.load=function(t){var e=new this;return e.elements=t,e.length=t.length,e},t.SortedSet.prototype.add=function(){var t,e;for(t=0;t<arguments.length;t++)e=arguments[t],~this.indexOf(e)||this.elements.splice(this.locationFor(e),0,e);this.length=this.elements.length},t.SortedSet.prototype.toArray=function(){return this.elements.slice()},t.SortedSet.prototype.map=function(t,e){return this.elements.map(t,e)},t.SortedSet.prototype.forEach=function(t,e){return this.elements.forEach(t,e)},t.SortedSet.prototype.indexOf=function(t){for(var e=0,n=this.elements.length,o=n-e,i=e+Math.floor(o/2),r=this.elements[i];o>1;){if(r===t)return i;t>r&&(e=i),r>t&&(n=i),o=n-e,i=e+Math.floor(o/2),r=this.elements[i]}return r===t?i:-1},t.SortedSet.prototype.locationFor=function(t){for(var e=0,n=this.elements.length,o=n-e,i=e+Math.floor(o/2),r=this.elements[i];o>1;)t>r&&(e=i),r>t&&(n=i),o=n-e,i=e+Math.floor(o/2),r=this.elements[i];return r>t?i:t>r?i+1:void 0},t.SortedSet.prototype.intersect=function(e){for(var n=new t.SortedSet,o=0,i=0,r=this.length,s=e.length,a=this.elements,c=e.elements;;){if(o>r-1||i>s-1)break;a[o]!==c[i]?a[o]<c[i]?o++:a[o]>c[i]&&i++:(n.add(a[o]),o++,i++)}return n},t.SortedSet.prototype.clone=function(){var e=new t.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},t.SortedSet.prototype.union=function(t){var e,n,o;return this.length>=t.length?(e=this,n=t):(e=t,n=this),o=e.clone(),o.add.apply(o,n.toArray()),o},t.SortedSet.prototype.toJSON=function(){return this.toArray()},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.Store,this.tokenStore=new t.TokenStore,this.corpusTokens=new t.SortedSet,this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var t=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,t)},t.Index.prototype.off=function(t,e){return this.eventEmitter.removeListener(t,e)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;return n._fields=e.fields,n._ref=e.ref,n.documentStore=t.Store.load(e.documentStore),n.tokenStore=t.TokenStore.load(e.tokenStore),n.corpusTokens=t.SortedSet.load(e.corpusTokens),n.pipeline=t.Pipeline.load(e.pipeline),n},t.Index.prototype.field=function(t,e){var e=e||{},n={name:t,boost:e.boost||1};return this._fields.push(n),this},t.Index.prototype.ref=function(t){return this._ref=t,this},t.Index.prototype.add=function(e,n){var o={},i=new t.SortedSet,r=e[this._ref],n=void 0===n?!0:n;this._fields.forEach(function(n){var r=this.pipeline.run(t.tokenizer(e[n.name]));o[n.name]=r,t.SortedSet.prototype.add.apply(i,r)},this),this.documentStore.set(r,i),t.SortedSet.prototype.add.apply(this.corpusTokens,i.toArray());for(var s=0;s<i.length;s++){var a=i.elements[s],c=this._fields.reduce(function(t,e){var n=o[e.name].length;if(!n)return t;var i=o[e.name].filter(function(t){return t===a}).length;return t+i/n*e.boost},0);this.tokenStore.add(a,{ref:r,tf:c})}n&&this.eventEmitter.emit("add",e,this)},t.Index.prototype.remove=function(t,e){var n=t[this._ref],e=void 0===e?!0:e;if(this.documentStore.has(n)){var o=this.documentStore.get(n);this.documentStore.remove(n),o.forEach(function(t){this.tokenStore.remove(t,n)},this),e&&this.eventEmitter.emit("remove",t,this)}},t.Index.prototype.update=function(t,e){var e=void 0===e?!0:e;this.remove(t,!1),this.add(t,!1),e&&this.eventEmitter.emit("update",t,this)},t.Index.prototype.idf=function(t){var e="@"+t;if(Object.prototype.hasOwnProperty.call(this._idfCache,e))return this._idfCache[e];var n=this.tokenStore.count(t),o=1;return n>0&&(o=1+Math.log(this.documentStore.length/n)),this._idfCache[e]=o},t.Index.prototype.search=function(e){var n=this.pipeline.run(t.tokenizer(e)),o=new t.Vector,i=[],r=this._fields.reduce(function(t,e){return t+e.boost},0),s=n.some(function(t){return this.tokenStore.has(t)},this);if(!s)return[];n.forEach(function(e,n,s){var a=1/s.length*this._fields.length*r,c=this,l=this.tokenStore.expand(e).reduce(function(n,i){var r=c.corpusTokens.indexOf(i),s=c.idf(i),l=1,u=new t.SortedSet;if(i!==e){var d=Math.max(3,i.length-e.length);l=1/Math.log(d)}r>-1&&o.insert(r,a*s*l);for(var h=c.tokenStore.get(i),f=Object.keys(h),p=f.length,m=0;p>m;m++)u.add(h[f[m]].ref);return n.union(u)},new t.SortedSet);i.push(l)},this);var a=i.reduce(function(t,e){return t.intersect(e)});return a.map(function(t){return{ref:t,score:o.similarity(this.documentVector(t))}},this).sort(function(t,e){return e.score-t.score})},t.Index.prototype.documentVector=function(e){for(var n=this.documentStore.get(e),o=n.length,i=new t.Vector,r=0;o>r;r++){var s=n.elements[r],a=this.tokenStore.get(s)[e].tf,c=this.idf(s);i.insert(this.corpusTokens.indexOf(s),a*c)}return i},t.Index.prototype.toJSON=function(){return{version:t.version,fields:this._fields,ref:this._ref,documentStore:this.documentStore.toJSON(),tokenStore:this.tokenStore.toJSON(),corpusTokens:this.corpusTokens.toJSON(),pipeline:this.pipeline.toJSON()}},t.Index.prototype.use=function(t){var e=Array.prototype.slice.call(arguments,1);e.unshift(this),t.apply(this,e)},t.Store=function(){this.store={},this.length=0},t.Store.load=function(e){var n=new this;return n.length=e.length,n.store=Object.keys(e.store).reduce(function(n,o){return n[o]=t.SortedSet.load(e.store[o]),n},{}),n},t.Store.prototype.set=function(t,e){this.has(t)||this.length++,this.store[t]=e},t.Store.prototype.get=function(t){return this.store[t]},t.Store.prototype.has=function(t){return t in this.store},t.Store.prototype.remove=function(t){this.has(t)&&(delete this.store[t],this.length--)},t.Store.prototype.toJSON=function(){return{store:this.store,length:this.length}},t.stemmer=function(){var t={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},e={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},n="[^aeiou]",o="[aeiouy]",i=n+"[^aeiouy]*",r=o+"[aeiou]*",s="^("+i+")?"+r+i,a="^("+i+")?"+r+i+"("+r+")?$",c="^("+i+")?"+r+i+r+i,l="^("+i+")?"+o,u=new RegExp(s),d=new RegExp(c),h=new RegExp(a),f=new RegExp(l),p=/^(.+?)(ss|i)es$/,m=/^(.+?)([^s])s$/,v=/^(.+?)eed$/,g=/^(.+?)(ed|ing)$/,y=/.$/,w=/(at|bl|iz)$/,S=new RegExp("([^aeiouylsz])\\1$"),k=new RegExp("^"+i+o+"[^aeiouwxy]$"),E=/^(.+?[^aeiou])y$/,x=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,b=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,T=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,C=/^(.+?)(s|t)(ion)$/,L=/^(.+?)e$/,_=/ll$/,A=new RegExp("^"+i+o+"[^aeiouwxy]$"),O=function(n){var o,i,r,s,a,c,l;if(n.length<3)return n;if(r=n.substr(0,1),"y"==r&&(n=r.toUpperCase()+n.substr(1)),s=p,a=m,s.test(n)?n=n.replace(s,"$1$2"):a.test(n)&&(n=n.replace(a,"$1$2")),s=v,a=g,s.test(n)){var O=s.exec(n);s=u,s.test(O[1])&&(s=y,n=n.replace(s,""))}else if(a.test(n)){var O=a.exec(n);o=O[1],a=f,a.test(o)&&(n=o,a=w,c=S,l=k,a.test(n)?n+="e":c.test(n)?(s=y,n=n.replace(s,"")):l.test(n)&&(n+="e"))}if(s=E,s.test(n)){var O=s.exec(n);o=O[1],n=o+"i"}if(s=x,s.test(n)){var O=s.exec(n);o=O[1],i=O[2],s=u,s.test(o)&&(n=o+t[i])}if(s=b,s.test(n)){var O=s.exec(n);o=O[1],i=O[2],s=u,s.test(o)&&(n=o+e[i])}if(s=T,a=C,s.test(n)){var O=s.exec(n);o=O[1],s=d,s.test(o)&&(n=o)}else if(a.test(n)){var O=a.exec(n);o=O[1]+O[2],a=d,a.test(o)&&(n=o)}if(s=L,s.test(n)){var O=s.exec(n);o=O[1],s=d,a=h,c=A,(s.test(o)||a.test(o)&&!c.test(o))&&(n=o)}return s=_,a=d,s.test(n)&&a.test(n)&&(s=y,n=n.replace(s,"")),"y"==r&&(n=r.toLowerCase()+n.substr(1)),n};return O}(),t.Pipeline.registerFunction(t.stemmer,"stemmer"),t.generateStopWordFilter=function(t){var e=t.reduce(function(t,e){return t[e]=e,t},{});return function(t){return t&&e[t]!==t?t:void 0}},t.stopWordFilter=t.generateStopWordFilter(["a","able","about","across","after","all","almost","also","am","among","an","and","any","are","as","at","be","because","been","but","by","can","cannot","could","dear","did","do","does","either","else","ever","every","for","from","get","got","had","has","have","he","her","hers","him","his","how","however","i","if","in","into","is","it","its","just","least","let","like","likely","may","me","might","most","must","my","neither","no","nor","not","of","off","often","on","only","or","other","our","own","rather","said","say","says","she","should","since","so","some","than","that","the","their","them","then","there","these","they","this","tis","to","too","twas","us","wants","was","we","were","what","when","where","which","while","who","whom","why","will","with","would","yet","you","your"]),t.Pipeline.registerFunction(t.stopWordFilter,"stopWordFilter"),t.trimmer=function(t){return t.replace(/^\W+/,"").replace(/\W+$/,"")},t.Pipeline.registerFunction(t.trimmer,"trimmer"),t.TokenStore=function(){this.root={docs:{}},this.length=0},t.TokenStore.load=function(t){var e=new this;return e.root=t.root,e.length=t.length,e},t.TokenStore.prototype.add=function(t,e,n){var n=n||this.root,o=t.charAt(0),i=t.slice(1);return o in n||(n[o]={docs:{}}),0===i.length?(n[o].docs[e.ref]=e,void(this.length+=1)):this.add(i,e,n[o])},t.TokenStore.prototype.has=function(t){if(!t)return!1;for(var e=this.root,n=0;n<t.length;n++){if(!e[t.charAt(n)])return!1;e=e[t.charAt(n)]}return!0},t.TokenStore.prototype.getNode=function(t){if(!t)return{};for(var e=this.root,n=0;n<t.length;n++){if(!e[t.charAt(n)])return{};e=e[t.charAt(n)]}return e},t.TokenStore.prototype.get=function(t,e){return this.getNode(t,e).docs||{}},t.TokenStore.prototype.count=function(t,e){return Object.keys(this.get(t,e)).length},t.TokenStore.prototype.remove=function(t,e){if(t){for(var n=this.root,o=0;o<t.length;o++){if(!(t.charAt(o)in n))return;n=n[t.charAt(o)]}delete n.docs[e]}},t.TokenStore.prototype.expand=function(t,e){var n=this.getNode(t),o=n.docs||{},e=e||[];return Object.keys(o).length&&e.push(t),Object.keys(n).forEach(function(n){"docs"!==n&&e.concat(this.expand(t+n,e))},this),e},t.TokenStore.prototype.toJSON=function(){return{root:this.root,length:this.length}},function(t,e){"function"==typeof define&&define.amd?define(e):"object"==typeof exports?module.exports=e():t.lunr=e()}(this,function(){return t})}(),String.prototype.truncate=function(t){if(this.length>t){for(;" "!=this[t]&&--t>0;);return this.substring(0,t)+"&hellip;"}return this},HTMLElement.prototype.wrap=function(t){t.length||(t=[t]);for(var e=t.length-1;e>=0;e--){var n=e>0?this.cloneNode(!0):this,o=t[e],i=o.parentNode,r=o.nextSibling;n.appendChild(o),r?i.insertBefore(n,r):i.appendChild(n)}},document.addEventListener("DOMContentLoaded",function(){"use strict";Modernizr.addTest("ios",function(){return!!navigator.userAgent.match(/(iPad|iPhone|iPod)/g)}),Modernizr.addTest("standalone",function(){return!!navigator.standalone}),FastClick.attach(document.body);var t=document.getElementById("toggle-search"),e=(document.getElementById("reset-search"),document.querySelector(".drawer")),n=document.querySelectorAll(".anchor"),o=document.querySelector(".search .field"),i=document.querySelector(".query"),r=document.querySelector(".results .meta");Array.prototype.forEach.call(n,function(t){t.querySelector("a").addEventListener("click",function(){document.getElementById("toggle-drawer").checked=!1,document.body.classList.remove("toggle-drawer")})});var s=window.pageYOffset,a=function(){var t=window.pageYOffset+window.innerHeight,n=Math.max(0,window.innerHeight-e.offsetHeight);t>document.body.clientHeight-(96-n)?"absolute"!=e.style.position&&(e.style.position="absolute",e.style.top=null,e.style.bottom=0):e.offsetHeight<window.innerHeight?"fixed"!=e.style.position&&(e.style.position="fixed",e.style.top=0,e.style.bottom=null):"fixed"!=e.style.position?t>e.offsetTop+e.offsetHeight?(e.style.position="fixed",e.style.top=null,e.style.bottom="-96px"):window.pageYOffset<e.offsetTop&&(e.style.position="fixed",e.style.top=0,e.style.bottom=null):window.pageYOffset>s?e.style.top&&(e.style.position="absolute",e.style.top=Math.max(0,s)+"px",e.style.bottom=null):e.style.bottom&&(e.style.position="absolute",e.style.top=t-e.offsetHeight+"px",e.style.bottom=null),s=Math.max(0,window.pageYOffset)},c=function(){var t=document.querySelector(".main");window.removeEventListener("scroll",a),matchMedia("only screen and (max-width: 959px)").matches?(e.style.position=null,e.style.top=null,e.style.bottom=null):e.offsetHeight+96<t.offsetHeight&&(window.addEventListener("scroll",a),a())};Modernizr.ios||(window.addEventListener("resize",c),c());var l=function(){pegasus(base_url+"/mkdocs/search_index.json").then(function(e,n){var o=lunr(function(){this.field("title",{boost:10}),this.field("text"),this.ref("location")}),s={};e.docs.map(function(t){t.location=base_url+t.location,s[t.location]=t,o.add(t)}),i.addEventListener("keyup",function(){for(var e=document.querySelector(".results .list");e.firstChild;)e.removeChild(e.firstChild);var n=document.querySelector(".bar.search");if(!i.value.length){for(;r.firstChild;)r.removeChild(r.firstChild);return void n.classList.remove("non-empty")}n.classList.add("non-empty");var a=o.search(i.value);a.map(function(n){var o=s[n.ref],i=document.createElement("article");i.classList.add("result");var r=document.createElement("h1");r.innerHTML=o.title,i.appendChild(r);var a=document.createElement("a");a.href=o.location,a.appendChild(i);var c=document.createElement("span");c.innerHTML=a.href.split("#")[0],i.appendChild(c);var l=a.href.split("#");l[0]==document.location.href.split("#")[0]&&a.addEventListener("click",function(e){if(document.body.classList.remove("toggle-search"),document.body.classList.remove("locked"),t.checked=!1,!matchMedia("only screen and (min-width: 960px)").matches&&(e.preventDefault(),e.stopPropagation(),1!=l.length)){var n=document.getElementById(l[1]);n&&setTimeout(function(){n.scrollIntoView&&n.scrollIntoView()||window.scrollTo(0,n.offsetTop)},100)}}),e.appendChild(a)});var c=document.createElement("strong");for(c.innerHTML=a.length+" search result"+(1!=a.length?"s":"");r.firstChild;)r.removeChild(r.firstChild);r.appendChild(c)})},function(t,e){console.error(t,e.status)}),t.removeEventListener("click",l)};t.addEventListener("click",l);var u=0;t.addEventListener("click",function(t){var e=document.body.classList,n=!matchMedia("only screen and (min-width: 960px)").matches;e.contains("locked")?(e.remove("locked"),n&&setTimeout(function(){window.scrollTo(0,u)},100)):(u=window.scrollY,n&&setTimeout(function(){window.scrollTo(0,0)},400),setTimeout(function(){this.checked&&(n&&e.add("locked"),setTimeout(function(){i.focus()},200))}.bind(this),450))}),o.addEventListener("touchstart",function(){i.focus()}),window.addEventListener("keyup",function(e){var n=e.keyCode||e.which;27==n&&(i.blur(),document.body.classList.remove("toggle-search"),document.body.classList.remove("locked"),t.checked=!1)});var d=document.getElementById("reset-search");d.addEventListener("click",function(){for(var t=document.querySelector(".results .list");t.firstChild;)t.removeChild(t.firstChild);var e=document.querySelector(".bar.search");e.classList.remove("non-empty"),r.innerHTML="",i.value="",i.focus()});var h=document.querySelectorAll("h2");h=Array.prototype.map.call(h,function(t){return t.offsetTop});var f=null;document.addEventListener("scroll",function(){for(var t=window.scrollY+window.innerHeight/3,e=h.length-1,o=0;e>o;o++)t<h[o+1]&&(e=o);e!=f&&(f=e,Array.prototype.forEach.call(n,function(t,e){var n=t.querySelector("a");(e!=f||n.classList.add("current"))&&n.classList.remove("current")}))});var p=document.querySelectorAll(".n + .p");Array.prototype.forEach.call(p,function(t){var e=t.innerText||t.textContent;e&&"("==e[0]&&t.previousSibling.classList.add("f")});var m=document.querySelectorAll("table");if(Array.prototype.forEach.call(m,function(t){var e=document.createElement("div");e.classList.add("data"),e.wrap(t)}),Modernizr.ios){var v=document.querySelectorAll(".scrollable, .standalone .article");Array.prototype.forEach.call(v,function(t){t.addEventListener("touchstart",function(){var t=this.scrollTop;0==t?this.scrollTop=1:t+this.offsetHeight==this.scrollHeight&&(this.scrollTop=t-1)})})}var g=document.querySelectorAll(".project, .overlay, .header");Array.prototype.forEach.call(g,function(t){t.addEventListener("touchmove",function(t){t.preventDefault()})});var y=document.querySelectorAll(".toggle");Array.prototype.forEach.call(y,function(t){t.addEventListener("click",function(){document.body.classList.toggle(this.id)})}),repo_id&&pegasus("https://api.github.com/repos/"+repo_id).then(function(t,e){var n=t.stargazers_count;n>1e4?n=(n/1e3).toFixed(0)+"k":n>1e3&&(n=(n/1e3).toFixed(1)+"k");var o=document.querySelector(".repo-stars .count");o.innerHTML=n},function(t,e){console.error(t,e.status)})}),"standalone"in window.navigator&&window.navigator.standalone){var node,remotes=!1;document.addEventListener("click",function(t){for(node=t.target;"A"!==node.nodeName&&"HTML"!==node.nodeName;)node=node.parentNode;"href"in node&&-1!==node.href.indexOf("http")&&(-1!==node.href.indexOf(document.location.host)||remotes)&&(t.preventDefault(),document.location.href=node.href)},!1)}
\ No newline at end of file
diff --git a/material/assets/javascripts/application.js b/material/assets/javascripts/application.js
deleted file mode 100644
index 1199f2e1dc6c0bfde788472cfe1e8e3b6181de2d..0000000000000000000000000000000000000000
--- a/material/assets/javascripts/application.js
+++ /dev/null
@@ -1 +0,0 @@
-function pegasus(t,e){return e=new XMLHttpRequest,e.open("GET",t),t=[],e.onreadystatechange=e.then=function(n,o,i,r){if(n&&n.call&&(t=[,n,o]),4==e.readyState&&(i=t[0|e.status/200])){try{r=JSON.parse(e.responseText)}catch(s){r=null}i(r,e)}},e.send(),e}if("document"in self&&("classList"in document.createElement("_")?!function(){"use strict";var t=document.createElement("_");if(t.classList.add("c1","c2"),!t.classList.contains("c2")){var e=function(t){var e=DOMTokenList.prototype[t];DOMTokenList.prototype[t]=function(t){var n,o=arguments.length;for(n=0;o>n;n++)t=arguments[n],e.call(this,t)}};e("add"),e("remove")}if(t.classList.toggle("c3",!1),t.classList.contains("c3")){var n=DOMTokenList.prototype.toggle;DOMTokenList.prototype.toggle=function(t,e){return 1 in arguments&&!this.contains(t)==!e?e:n.call(this,t)}}t=null}():!function(t){"use strict";if("Element"in t){var e="classList",n="prototype",o=t.Element[n],i=Object,r=String[n].trim||function(){return this.replace(/^\s+|\s+$/g,"")},s=Array[n].indexOf||function(t){for(var e=0,n=this.length;n>e;e++)if(e in this&&this[e]===t)return e;return-1},a=function(t,e){this.name=t,this.code=DOMException[t],this.message=e},c=function(t,e){if(""===e)throw new a("SYNTAX_ERR","An invalid or illegal string was specified");if(/\s/.test(e))throw new a("INVALID_CHARACTER_ERR","String contains an invalid character");return s.call(t,e)},l=function(t){for(var e=r.call(t.getAttribute("class")||""),n=e?e.split(/\s+/):[],o=0,i=n.length;i>o;o++)this.push(n[o]);this._updateClassName=function(){t.setAttribute("class",this.toString())}},u=l[n]=[],d=function(){return new l(this)};if(a[n]=Error[n],u.item=function(t){return this[t]||null},u.contains=function(t){return t+="",-1!==c(this,t)},u.add=function(){var t,e=arguments,n=0,o=e.length,i=!1;do t=e[n]+"",-1===c(this,t)&&(this.push(t),i=!0);while(++n<o);i&&this._updateClassName()},u.remove=function(){var t,e,n=arguments,o=0,i=n.length,r=!1;do for(t=n[o]+"",e=c(this,t);-1!==e;)this.splice(e,1),r=!0,e=c(this,t);while(++o<i);r&&this._updateClassName()},u.toggle=function(t,e){t+="";var n=this.contains(t),o=n?e!==!0&&"remove":e!==!1&&"add";return o&&this[o](t),e===!0||e===!1?e:!n},u.toString=function(){return this.join(" ")},i.defineProperty){var h={get:d,enumerable:!0,configurable:!0};try{i.defineProperty(o,e,h)}catch(f){-2146823252===f.number&&(h.enumerable=!1,i.defineProperty(o,e,h))}}else i[n].__defineGetter__&&o.__defineGetter__(e,d)}}(self)),function(){"use strict";function t(e,o){function i(t,e){return function(){return t.apply(e,arguments)}}var r;if(o=o||{},this.trackingClick=!1,this.trackingClickStart=0,this.targetElement=null,this.touchStartX=0,this.touchStartY=0,this.lastTouchIdentifier=0,this.touchBoundary=o.touchBoundary||10,this.layer=e,this.tapDelay=o.tapDelay||200,this.tapTimeout=o.tapTimeout||700,!t.notNeeded(e)){for(var s=["onMouse","onClick","onTouchStart","onTouchMove","onTouchEnd","onTouchCancel"],a=this,c=0,l=s.length;l>c;c++)a[s[c]]=i(a[s[c]],a);n&&(e.addEventListener("mouseover",this.onMouse,!0),e.addEventListener("mousedown",this.onMouse,!0),e.addEventListener("mouseup",this.onMouse,!0)),e.addEventListener("click",this.onClick,!0),e.addEventListener("touchstart",this.onTouchStart,!1),e.addEventListener("touchmove",this.onTouchMove,!1),e.addEventListener("touchend",this.onTouchEnd,!1),e.addEventListener("touchcancel",this.onTouchCancel,!1),Event.prototype.stopImmediatePropagation||(e.removeEventListener=function(t,n,o){var i=Node.prototype.removeEventListener;"click"===t?i.call(e,t,n.hijacked||n,o):i.call(e,t,n,o)},e.addEventListener=function(t,n,o){var i=Node.prototype.addEventListener;"click"===t?i.call(e,t,n.hijacked||(n.hijacked=function(t){t.propagationStopped||n(t)}),o):i.call(e,t,n,o)}),"function"==typeof e.onclick&&(r=e.onclick,e.addEventListener("click",function(t){r(t)},!1),e.onclick=null)}}var e=navigator.userAgent.indexOf("Windows Phone")>=0,n=navigator.userAgent.indexOf("Android")>0&&!e,o=/iP(ad|hone|od)/.test(navigator.userAgent)&&!e,i=o&&/OS 4_\d(_\d)?/.test(navigator.userAgent),r=o&&/OS [6-7]_\d/.test(navigator.userAgent),s=navigator.userAgent.indexOf("BB10")>0;t.prototype.needsClick=function(t){switch(t.nodeName.toLowerCase()){case"button":case"select":case"textarea":if(t.disabled)return!0;break;case"input":if(o&&"file"===t.type||t.disabled)return!0;break;case"label":case"iframe":case"video":return!0}return/\bneedsclick\b/.test(t.className)},t.prototype.needsFocus=function(t){switch(t.nodeName.toLowerCase()){case"textarea":return!0;case"select":return!n;case"input":switch(t.type){case"button":case"checkbox":case"file":case"image":case"radio":case"submit":return!1}return!t.disabled&&!t.readOnly;default:return/\bneedsfocus\b/.test(t.className)}},t.prototype.sendClick=function(t,e){var n,o;document.activeElement&&document.activeElement!==t&&document.activeElement.blur(),o=e.changedTouches[0],n=document.createEvent("MouseEvents"),n.initMouseEvent(this.determineEventType(t),!0,!0,window,1,o.screenX,o.screenY,o.clientX,o.clientY,!1,!1,!1,!1,0,null),n.forwardedTouchEvent=!0,t.dispatchEvent(n)},t.prototype.determineEventType=function(t){return n&&"select"===t.tagName.toLowerCase()?"mousedown":"click"},t.prototype.focus=function(t){var e;o&&t.setSelectionRange&&0!==t.type.indexOf("date")&&"time"!==t.type&&"month"!==t.type?(e=t.value.length,t.setSelectionRange(e,e)):t.focus()},t.prototype.updateScrollParent=function(t){var e,n;if(e=t.fastClickScrollParent,!e||!e.contains(t)){n=t;do{if(n.scrollHeight>n.offsetHeight){e=n,t.fastClickScrollParent=n;break}n=n.parentElement}while(n)}e&&(e.fastClickLastScrollTop=e.scrollTop)},t.prototype.getTargetElementFromEventTarget=function(t){return t.nodeType===Node.TEXT_NODE?t.parentNode:t},t.prototype.onTouchStart=function(t){var e,n,r;if(t.targetTouches.length>1)return!0;if(e=this.getTargetElementFromEventTarget(t.target),n=t.targetTouches[0],o){if(r=window.getSelection(),r.rangeCount&&!r.isCollapsed)return!0;if(!i){if(n.identifier&&n.identifier===this.lastTouchIdentifier)return t.preventDefault(),!1;this.lastTouchIdentifier=n.identifier,this.updateScrollParent(e)}}return this.trackingClick=!0,this.trackingClickStart=t.timeStamp,this.targetElement=e,this.touchStartX=n.pageX,this.touchStartY=n.pageY,t.timeStamp-this.lastClickTime<this.tapDelay&&t.preventDefault(),!0},t.prototype.touchHasMoved=function(t){var e=t.changedTouches[0],n=this.touchBoundary;return Math.abs(e.pageX-this.touchStartX)>n||Math.abs(e.pageY-this.touchStartY)>n?!0:!1},t.prototype.onTouchMove=function(t){return this.trackingClick?((this.targetElement!==this.getTargetElementFromEventTarget(t.target)||this.touchHasMoved(t))&&(this.trackingClick=!1,this.targetElement=null),!0):!0},t.prototype.findControl=function(t){return void 0!==t.control?t.control:t.htmlFor?document.getElementById(t.htmlFor):t.querySelector("button, input:not([type=hidden]), keygen, meter, output, progress, select, textarea")},t.prototype.onTouchEnd=function(t){var e,s,a,c,l,u=this.targetElement;if(!this.trackingClick)return!0;if(t.timeStamp-this.lastClickTime<this.tapDelay)return this.cancelNextClick=!0,!0;if(t.timeStamp-this.trackingClickStart>this.tapTimeout)return!0;if(this.cancelNextClick=!1,this.lastClickTime=t.timeStamp,s=this.trackingClickStart,this.trackingClick=!1,this.trackingClickStart=0,r&&(l=t.changedTouches[0],u=document.elementFromPoint(l.pageX-window.pageXOffset,l.pageY-window.pageYOffset)||u,u.fastClickScrollParent=this.targetElement.fastClickScrollParent),a=u.tagName.toLowerCase(),"label"===a){if(e=this.findControl(u)){if(this.focus(u),n)return!1;u=e}}else if(this.needsFocus(u))return t.timeStamp-s>100||o&&window.top!==window&&"input"===a?(this.targetElement=null,!1):(this.focus(u),this.sendClick(u,t),o&&"select"===a||(this.targetElement=null,t.preventDefault()),!1);return o&&!i&&(c=u.fastClickScrollParent,c&&c.fastClickLastScrollTop!==c.scrollTop)?!0:(this.needsClick(u)||(t.preventDefault(),this.sendClick(u,t)),!1)},t.prototype.onTouchCancel=function(){this.trackingClick=!1,this.targetElement=null},t.prototype.onMouse=function(t){return this.targetElement?t.forwardedTouchEvent?!0:t.cancelable&&(!this.needsClick(this.targetElement)||this.cancelNextClick)?(t.stopImmediatePropagation?t.stopImmediatePropagation():t.propagationStopped=!0,t.stopPropagation(),t.preventDefault(),!1):!0:!0},t.prototype.onClick=function(t){var e;return this.trackingClick?(this.targetElement=null,this.trackingClick=!1,!0):"submit"===t.target.type&&0===t.detail?!0:(e=this.onMouse(t),e||(this.targetElement=null),e)},t.prototype.destroy=function(){var t=this.layer;n&&(t.removeEventListener("mouseover",this.onMouse,!0),t.removeEventListener("mousedown",this.onMouse,!0),t.removeEventListener("mouseup",this.onMouse,!0)),t.removeEventListener("click",this.onClick,!0),t.removeEventListener("touchstart",this.onTouchStart,!1),t.removeEventListener("touchmove",this.onTouchMove,!1),t.removeEventListener("touchend",this.onTouchEnd,!1),t.removeEventListener("touchcancel",this.onTouchCancel,!1)},t.notNeeded=function(t){var e,o,i,r;if("undefined"==typeof window.ontouchstart)return!0;if(o=+(/Chrome\/([0-9]+)/.exec(navigator.userAgent)||[,0])[1]){if(!n)return!0;if(e=document.querySelector("meta[name=viewport]")){if(-1!==e.content.indexOf("user-scalable=no"))return!0;if(o>31&&document.documentElement.scrollWidth<=window.outerWidth)return!0}}if(s&&(i=navigator.userAgent.match(/Version\/([0-9]*)\.([0-9]*)/),i[1]>=10&&i[2]>=3&&(e=document.querySelector("meta[name=viewport]")))){if(-1!==e.content.indexOf("user-scalable=no"))return!0;if(document.documentElement.scrollWidth<=window.outerWidth)return!0}return"none"===t.style.msTouchAction||"manipulation"===t.style.touchAction?!0:(r=+(/Firefox\/([0-9]+)/.exec(navigator.userAgent)||[,0])[1],r>=27&&(e=document.querySelector("meta[name=viewport]"),e&&(-1!==e.content.indexOf("user-scalable=no")||document.documentElement.scrollWidth<=window.outerWidth))?!0:"none"===t.style.touchAction||"manipulation"===t.style.touchAction?!0:!1)},t.attach=function(e,n){return new t(e,n)},"function"==typeof define&&"object"==typeof define.amd&&define.amd?define(function(){return t}):"undefined"!=typeof module&&module.exports?(module.exports=t.attach,module.exports.FastClick=t):window.FastClick=t}(),function(){var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.6.0",t.utils={},t.utils.warn=function(t){return function(e){t.console&&console.warn&&console.warn(e)}}(this),t.utils.asString=function(t){return void 0===t||null===t?"":t.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var t=Array.prototype.slice.call(arguments),e=t.pop(),n=t;if("function"!=typeof e)throw new TypeError("last argument must be a function");n.forEach(function(t){this.hasHandler(t)||(this.events[t]=[]),this.events[t].push(e)},this)},t.EventEmitter.prototype.removeListener=function(t,e){if(this.hasHandler(t)){var n=this.events[t].indexOf(e);this.events[t].splice(n,1),this.events[t].length||delete this.events[t]}},t.EventEmitter.prototype.emit=function(t){if(this.hasHandler(t)){var e=Array.prototype.slice.call(arguments,1);this.events[t].forEach(function(t){t.apply(void 0,e)})}},t.EventEmitter.prototype.hasHandler=function(t){return t in this.events},t.tokenizer=function(e){return arguments.length&&null!=e&&void 0!=e?Array.isArray(e)?e.map(function(e){return t.utils.asString(e).toLowerCase()}):e.toString().trim().toLowerCase().split(t.tokenizer.seperator):[]},t.tokenizer.seperator=/[\s\-]+/,t.Pipeline=function(){this._stack=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var o=t.Pipeline.registeredFunctions[e];if(!o)throw new Error("Cannot load un-registered function: "+e);n.add(o)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._stack.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var o=this._stack.indexOf(e);if(-1==o)throw new Error("Cannot find existingFn");o+=1,this._stack.splice(o,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var o=this._stack.indexOf(e);if(-1==o)throw new Error("Cannot find existingFn");this._stack.splice(o,0,n)},t.Pipeline.prototype.remove=function(t){var e=this._stack.indexOf(t);-1!=e&&this._stack.splice(e,1)},t.Pipeline.prototype.run=function(t){for(var e=[],n=t.length,o=this._stack.length,i=0;n>i;i++){for(var r=t[i],s=0;o>s&&(r=this._stack[s](r,i,t),void 0!==r&&""!==r);s++);void 0!==r&&""!==r&&e.push(r)}return e},t.Pipeline.prototype.reset=function(){this._stack=[]},t.Pipeline.prototype.toJSON=function(){return this._stack.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Vector=function(){this._magnitude=null,this.list=void 0,this.length=0},t.Vector.Node=function(t,e,n){this.idx=t,this.val=e,this.next=n},t.Vector.prototype.insert=function(e,n){this._magnitude=void 0;var o=this.list;if(!o)return this.list=new t.Vector.Node(e,n,o),this.length++;if(e<o.idx)return this.list=new t.Vector.Node(e,n,o),this.length++;for(var i=o,r=o.next;void 0!=r;){if(e<r.idx)return i.next=new t.Vector.Node(e,n,r),this.length++;i=r,r=r.next}return i.next=new t.Vector.Node(e,n,r),this.length++},t.Vector.prototype.magnitude=function(){if(this._magnitude)return this._magnitude;for(var t,e=this.list,n=0;e;)t=e.val,n+=t*t,e=e.next;return this._magnitude=Math.sqrt(n)},t.Vector.prototype.dot=function(t){for(var e=this.list,n=t.list,o=0;e&&n;)e.idx<n.idx?e=e.next:e.idx>n.idx?n=n.next:(o+=e.val*n.val,e=e.next,n=n.next);return o},t.Vector.prototype.similarity=function(t){return this.dot(t)/(this.magnitude()*t.magnitude())},t.SortedSet=function(){this.length=0,this.elements=[]},t.SortedSet.load=function(t){var e=new this;return e.elements=t,e.length=t.length,e},t.SortedSet.prototype.add=function(){var t,e;for(t=0;t<arguments.length;t++)e=arguments[t],~this.indexOf(e)||this.elements.splice(this.locationFor(e),0,e);this.length=this.elements.length},t.SortedSet.prototype.toArray=function(){return this.elements.slice()},t.SortedSet.prototype.map=function(t,e){return this.elements.map(t,e)},t.SortedSet.prototype.forEach=function(t,e){return this.elements.forEach(t,e)},t.SortedSet.prototype.indexOf=function(t){for(var e=0,n=this.elements.length,o=n-e,i=e+Math.floor(o/2),r=this.elements[i];o>1;){if(r===t)return i;t>r&&(e=i),r>t&&(n=i),o=n-e,i=e+Math.floor(o/2),r=this.elements[i]}return r===t?i:-1},t.SortedSet.prototype.locationFor=function(t){for(var e=0,n=this.elements.length,o=n-e,i=e+Math.floor(o/2),r=this.elements[i];o>1;)t>r&&(e=i),r>t&&(n=i),o=n-e,i=e+Math.floor(o/2),r=this.elements[i];return r>t?i:t>r?i+1:void 0},t.SortedSet.prototype.intersect=function(e){for(var n=new t.SortedSet,o=0,i=0,r=this.length,s=e.length,a=this.elements,c=e.elements;;){if(o>r-1||i>s-1)break;a[o]!==c[i]?a[o]<c[i]?o++:a[o]>c[i]&&i++:(n.add(a[o]),o++,i++)}return n},t.SortedSet.prototype.clone=function(){var e=new t.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},t.SortedSet.prototype.union=function(t){var e,n,o;return this.length>=t.length?(e=this,n=t):(e=t,n=this),o=e.clone(),o.add.apply(o,n.toArray()),o},t.SortedSet.prototype.toJSON=function(){return this.toArray()},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.Store,this.tokenStore=new t.TokenStore,this.corpusTokens=new t.SortedSet,this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var t=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,t)},t.Index.prototype.off=function(t,e){return this.eventEmitter.removeListener(t,e)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;return n._fields=e.fields,n._ref=e.ref,n.documentStore=t.Store.load(e.documentStore),n.tokenStore=t.TokenStore.load(e.tokenStore),n.corpusTokens=t.SortedSet.load(e.corpusTokens),n.pipeline=t.Pipeline.load(e.pipeline),n},t.Index.prototype.field=function(t,e){var e=e||{},n={name:t,boost:e.boost||1};return this._fields.push(n),this},t.Index.prototype.ref=function(t){return this._ref=t,this},t.Index.prototype.add=function(e,n){var o={},i=new t.SortedSet,r=e[this._ref],n=void 0===n?!0:n;this._fields.forEach(function(n){var r=this.pipeline.run(t.tokenizer(e[n.name]));o[n.name]=r,t.SortedSet.prototype.add.apply(i,r)},this),this.documentStore.set(r,i),t.SortedSet.prototype.add.apply(this.corpusTokens,i.toArray());for(var s=0;s<i.length;s++){var a=i.elements[s],c=this._fields.reduce(function(t,e){var n=o[e.name].length;if(!n)return t;var i=o[e.name].filter(function(t){return t===a}).length;return t+i/n*e.boost},0);this.tokenStore.add(a,{ref:r,tf:c})}n&&this.eventEmitter.emit("add",e,this)},t.Index.prototype.remove=function(t,e){var n=t[this._ref],e=void 0===e?!0:e;if(this.documentStore.has(n)){var o=this.documentStore.get(n);this.documentStore.remove(n),o.forEach(function(t){this.tokenStore.remove(t,n)},this),e&&this.eventEmitter.emit("remove",t,this)}},t.Index.prototype.update=function(t,e){var e=void 0===e?!0:e;this.remove(t,!1),this.add(t,!1),e&&this.eventEmitter.emit("update",t,this)},t.Index.prototype.idf=function(t){var e="@"+t;if(Object.prototype.hasOwnProperty.call(this._idfCache,e))return this._idfCache[e];var n=this.tokenStore.count(t),o=1;return n>0&&(o=1+Math.log(this.documentStore.length/n)),this._idfCache[e]=o},t.Index.prototype.search=function(e){var n=this.pipeline.run(t.tokenizer(e)),o=new t.Vector,i=[],r=this._fields.reduce(function(t,e){return t+e.boost},0),s=n.some(function(t){return this.tokenStore.has(t)},this);if(!s)return[];n.forEach(function(e,n,s){var a=1/s.length*this._fields.length*r,c=this,l=this.tokenStore.expand(e).reduce(function(n,i){var r=c.corpusTokens.indexOf(i),s=c.idf(i),l=1,u=new t.SortedSet;if(i!==e){var d=Math.max(3,i.length-e.length);l=1/Math.log(d)}r>-1&&o.insert(r,a*s*l);for(var h=c.tokenStore.get(i),f=Object.keys(h),p=f.length,m=0;p>m;m++)u.add(h[f[m]].ref);return n.union(u)},new t.SortedSet);i.push(l)},this);var a=i.reduce(function(t,e){return t.intersect(e)});return a.map(function(t){return{ref:t,score:o.similarity(this.documentVector(t))}},this).sort(function(t,e){return e.score-t.score})},t.Index.prototype.documentVector=function(e){for(var n=this.documentStore.get(e),o=n.length,i=new t.Vector,r=0;o>r;r++){var s=n.elements[r],a=this.tokenStore.get(s)[e].tf,c=this.idf(s);i.insert(this.corpusTokens.indexOf(s),a*c)}return i},t.Index.prototype.toJSON=function(){return{version:t.version,fields:this._fields,ref:this._ref,documentStore:this.documentStore.toJSON(),tokenStore:this.tokenStore.toJSON(),corpusTokens:this.corpusTokens.toJSON(),pipeline:this.pipeline.toJSON()}},t.Index.prototype.use=function(t){var e=Array.prototype.slice.call(arguments,1);e.unshift(this),t.apply(this,e)},t.Store=function(){this.store={},this.length=0},t.Store.load=function(e){var n=new this;return n.length=e.length,n.store=Object.keys(e.store).reduce(function(n,o){return n[o]=t.SortedSet.load(e.store[o]),n},{}),n},t.Store.prototype.set=function(t,e){this.has(t)||this.length++,this.store[t]=e},t.Store.prototype.get=function(t){return this.store[t]},t.Store.prototype.has=function(t){return t in this.store},t.Store.prototype.remove=function(t){this.has(t)&&(delete this.store[t],this.length--)},t.Store.prototype.toJSON=function(){return{store:this.store,length:this.length}},t.stemmer=function(){var t={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},e={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},n="[^aeiou]",o="[aeiouy]",i=n+"[^aeiouy]*",r=o+"[aeiou]*",s="^("+i+")?"+r+i,a="^("+i+")?"+r+i+"("+r+")?$",c="^("+i+")?"+r+i+r+i,l="^("+i+")?"+o,u=new RegExp(s),d=new RegExp(c),h=new RegExp(a),f=new RegExp(l),p=/^(.+?)(ss|i)es$/,m=/^(.+?)([^s])s$/,v=/^(.+?)eed$/,g=/^(.+?)(ed|ing)$/,y=/.$/,w=/(at|bl|iz)$/,S=new RegExp("([^aeiouylsz])\\1$"),k=new RegExp("^"+i+o+"[^aeiouwxy]$"),E=/^(.+?[^aeiou])y$/,x=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,b=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,T=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,C=/^(.+?)(s|t)(ion)$/,L=/^(.+?)e$/,_=/ll$/,A=new RegExp("^"+i+o+"[^aeiouwxy]$"),O=function(n){var o,i,r,s,a,c,l;if(n.length<3)return n;if(r=n.substr(0,1),"y"==r&&(n=r.toUpperCase()+n.substr(1)),s=p,a=m,s.test(n)?n=n.replace(s,"$1$2"):a.test(n)&&(n=n.replace(a,"$1$2")),s=v,a=g,s.test(n)){var O=s.exec(n);s=u,s.test(O[1])&&(s=y,n=n.replace(s,""))}else if(a.test(n)){var O=a.exec(n);o=O[1],a=f,a.test(o)&&(n=o,a=w,c=S,l=k,a.test(n)?n+="e":c.test(n)?(s=y,n=n.replace(s,"")):l.test(n)&&(n+="e"))}if(s=E,s.test(n)){var O=s.exec(n);o=O[1],n=o+"i"}if(s=x,s.test(n)){var O=s.exec(n);o=O[1],i=O[2],s=u,s.test(o)&&(n=o+t[i])}if(s=b,s.test(n)){var O=s.exec(n);o=O[1],i=O[2],s=u,s.test(o)&&(n=o+e[i])}if(s=T,a=C,s.test(n)){var O=s.exec(n);o=O[1],s=d,s.test(o)&&(n=o)}else if(a.test(n)){var O=a.exec(n);o=O[1]+O[2],a=d,a.test(o)&&(n=o)}if(s=L,s.test(n)){var O=s.exec(n);o=O[1],s=d,a=h,c=A,(s.test(o)||a.test(o)&&!c.test(o))&&(n=o)}return s=_,a=d,s.test(n)&&a.test(n)&&(s=y,n=n.replace(s,"")),"y"==r&&(n=r.toLowerCase()+n.substr(1)),n};return O}(),t.Pipeline.registerFunction(t.stemmer,"stemmer"),t.generateStopWordFilter=function(t){var e=t.reduce(function(t,e){return t[e]=e,t},{});return function(t){return t&&e[t]!==t?t:void 0}},t.stopWordFilter=t.generateStopWordFilter(["a","able","about","across","after","all","almost","also","am","among","an","and","any","are","as","at","be","because","been","but","by","can","cannot","could","dear","did","do","does","either","else","ever","every","for","from","get","got","had","has","have","he","her","hers","him","his","how","however","i","if","in","into","is","it","its","just","least","let","like","likely","may","me","might","most","must","my","neither","no","nor","not","of","off","often","on","only","or","other","our","own","rather","said","say","says","she","should","since","so","some","than","that","the","their","them","then","there","these","they","this","tis","to","too","twas","us","wants","was","we","were","what","when","where","which","while","who","whom","why","will","with","would","yet","you","your"]),t.Pipeline.registerFunction(t.stopWordFilter,"stopWordFilter"),t.trimmer=function(t){return t.replace(/^\W+/,"").replace(/\W+$/,"")},t.Pipeline.registerFunction(t.trimmer,"trimmer"),t.TokenStore=function(){this.root={docs:{}},this.length=0},t.TokenStore.load=function(t){var e=new this;return e.root=t.root,e.length=t.length,e},t.TokenStore.prototype.add=function(t,e,n){var n=n||this.root,o=t.charAt(0),i=t.slice(1);return o in n||(n[o]={docs:{}}),0===i.length?(n[o].docs[e.ref]=e,void(this.length+=1)):this.add(i,e,n[o])},t.TokenStore.prototype.has=function(t){if(!t)return!1;for(var e=this.root,n=0;n<t.length;n++){if(!e[t.charAt(n)])return!1;e=e[t.charAt(n)]}return!0},t.TokenStore.prototype.getNode=function(t){if(!t)return{};for(var e=this.root,n=0;n<t.length;n++){if(!e[t.charAt(n)])return{};e=e[t.charAt(n)]}return e},t.TokenStore.prototype.get=function(t,e){return this.getNode(t,e).docs||{}},t.TokenStore.prototype.count=function(t,e){return Object.keys(this.get(t,e)).length},t.TokenStore.prototype.remove=function(t,e){if(t){for(var n=this.root,o=0;o<t.length;o++){if(!(t.charAt(o)in n))return;n=n[t.charAt(o)]}delete n.docs[e]}},t.TokenStore.prototype.expand=function(t,e){var n=this.getNode(t),o=n.docs||{},e=e||[];return Object.keys(o).length&&e.push(t),Object.keys(n).forEach(function(n){"docs"!==n&&e.concat(this.expand(t+n,e))},this),e},t.TokenStore.prototype.toJSON=function(){return{root:this.root,length:this.length}},function(t,e){"function"==typeof define&&define.amd?define(e):"object"==typeof exports?module.exports=e():t.lunr=e()}(this,function(){return t})}(),String.prototype.truncate=function(t){if(this.length>t){for(;" "!=this[t]&&--t>0;);return this.substring(0,t)+"&hellip;"}return this},HTMLElement.prototype.wrap=function(t){t.length||(t=[t]);for(var e=t.length-1;e>=0;e--){var n=e>0?this.cloneNode(!0):this,o=t[e],i=o.parentNode,r=o.nextSibling;n.appendChild(o),r?i.insertBefore(n,r):i.appendChild(n)}},document.addEventListener("DOMContentLoaded",function(){"use strict";Modernizr.addTest("ios",function(){return!!navigator.userAgent.match(/(iPad|iPhone|iPod)/g)}),Modernizr.addTest("standalone",function(){return!!navigator.standalone}),FastClick.attach(document.body);var t=document.getElementById("toggle-search"),e=(document.getElementById("reset-search"),document.querySelector(".drawer")),n=document.querySelectorAll(".anchor"),o=document.querySelector(".search .field"),i=document.querySelector(".query"),r=document.querySelector(".results .meta");Array.prototype.forEach.call(n,function(t){t.querySelector("a").addEventListener("click",function(){document.getElementById("toggle-drawer").checked=!1,document.body.classList.remove("toggle-drawer")})});var s=window.pageYOffset,a=function(){var t=window.pageYOffset+window.innerHeight,n=Math.max(0,window.innerHeight-e.offsetHeight);t>document.body.clientHeight-(96-n)?"absolute"!=e.style.position&&(e.style.position="absolute",e.style.top=null,e.style.bottom=0):e.offsetHeight<window.innerHeight?"fixed"!=e.style.position&&(e.style.position="fixed",e.style.top=0,e.style.bottom=null):"fixed"!=e.style.position?t>e.offsetTop+e.offsetHeight?(e.style.position="fixed",e.style.top=null,e.style.bottom="-96px"):window.pageYOffset<e.offsetTop&&(e.style.position="fixed",e.style.top=0,e.style.bottom=null):window.pageYOffset>s?e.style.top&&(e.style.position="absolute",e.style.top=Math.max(0,s)+"px",e.style.bottom=null):e.style.bottom&&(e.style.position="absolute",e.style.top=t-e.offsetHeight+"px",e.style.bottom=null),s=Math.max(0,window.pageYOffset)},c=function(){var t=document.querySelector(".main");window.removeEventListener("scroll",a),matchMedia("only screen and (max-width: 959px)").matches?(e.style.position=null,e.style.top=null,e.style.bottom=null):e.offsetHeight+96<t.offsetHeight&&(window.addEventListener("scroll",a),a())};Modernizr.ios||(window.addEventListener("resize",c),c());var l=function(){pegasus(base_url+"/mkdocs/search_index.json").then(function(e,n){var o=lunr(function(){this.field("title",{boost:10}),this.field("text"),this.ref("location")}),s={};e.docs.map(function(t){t.location=base_url+t.location,s[t.location]=t,o.add(t)}),i.addEventListener("keyup",function(){for(var e=document.querySelector(".results .list");e.firstChild;)e.removeChild(e.firstChild);var n=document.querySelector(".bar.search");if(!i.value.length){for(;r.firstChild;)r.removeChild(r.firstChild);return void n.classList.remove("non-empty")}n.classList.add("non-empty");var a=o.search(i.value);a.map(function(n){var o=s[n.ref],i=document.createElement("article");i.classList.add("result");var r=document.createElement("h1");r.innerHTML=o.title,i.appendChild(r);var a=document.createElement("a");a.href=o.location,a.appendChild(i);var c=document.createElement("span");c.innerHTML=a.href.split("#")[0],i.appendChild(c);var l=a.href.split("#");l[0]==document.location.href.split("#")[0]&&a.addEventListener("click",function(e){if(document.body.classList.remove("toggle-search"),document.body.classList.remove("locked"),t.checked=!1,!matchMedia("only screen and (min-width: 960px)").matches&&(e.preventDefault(),e.stopPropagation(),1!=l.length)){var n=document.getElementById(l[1]);n&&setTimeout(function(){n.scrollIntoView&&n.scrollIntoView()||window.scrollTo(0,n.offsetTop)},100)}}),e.appendChild(a)});var c=document.createElement("strong");for(c.innerHTML=a.length+" search result"+(1!=a.length?"s":"");r.firstChild;)r.removeChild(r.firstChild);r.appendChild(c)})},function(t,e){console.error(t,e.status)}),t.removeEventListener("click",l)};t.addEventListener("click",l);var u=0;t.addEventListener("click",function(t){var e=document.body.classList,n=!matchMedia("only screen and (min-width: 960px)").matches;e.contains("locked")?(e.remove("locked"),n&&setTimeout(function(){window.scrollTo(0,u)},100)):(u=window.scrollY,n&&setTimeout(function(){window.scrollTo(0,0)},400),setTimeout(function(){this.checked&&(n&&e.add("locked"),setTimeout(function(){i.focus()},200))}.bind(this),450))}),o.addEventListener("touchstart",function(){i.focus()}),window.addEventListener("keyup",function(e){var n=e.keyCode||e.which;27==n&&(i.blur(),document.body.classList.remove("toggle-search"),document.body.classList.remove("locked"),t.checked=!1)});var d=document.getElementById("reset-search");d.addEventListener("click",function(){for(var t=document.querySelector(".results .list");t.firstChild;)t.removeChild(t.firstChild);var e=document.querySelector(".bar.search");e.classList.remove("non-empty"),r.innerHTML="",i.value="",i.focus()});var h=document.querySelectorAll("h2");h=Array.prototype.map.call(h,function(t){return t.offsetTop});var f=null;document.addEventListener("scroll",function(){for(var t=window.scrollY+window.innerHeight/3,e=h.length-1,o=0;e>o;o++)t<h[o+1]&&(e=o);e!=f&&(f=e,Array.prototype.forEach.call(n,function(t,e){var n=t.querySelector("a");(e!=f||n.classList.add("current"))&&n.classList.remove("current")}))});var p=document.querySelectorAll(".n + .p");Array.prototype.forEach.call(p,function(t){var e=t.innerText||t.textContent;e&&"("==e[0]&&t.previousSibling.classList.add("f")});var m=document.querySelectorAll("table");if(Array.prototype.forEach.call(m,function(t){var e=document.createElement("div");e.classList.add("data"),e.wrap(t)}),Modernizr.ios){var v=document.querySelectorAll(".scrollable, .standalone .article");Array.prototype.forEach.call(v,function(t){t.addEventListener("touchstart",function(){var t=this.scrollTop;0==t?this.scrollTop=1:t+this.offsetHeight==this.scrollHeight&&(this.scrollTop=t-1)})})}var g=document.querySelectorAll(".project, .overlay, .header");Array.prototype.forEach.call(g,function(t){t.addEventListener("touchmove",function(t){t.preventDefault()})});var y=document.querySelectorAll(".toggle");Array.prototype.forEach.call(y,function(t){t.addEventListener("click",function(){document.body.classList.toggle(this.id)})}),repo_id&&pegasus("https://api.github.com/repos/"+repo_id).then(function(t,e){var n=t.stargazers_count;n>1e4?n=(n/1e3).toFixed(0)+"k":n>1e3&&(n=(n/1e3).toFixed(1)+"k");var o=document.querySelector(".repo-stars .count");o.innerHTML=n},function(t,e){console.error(t,e.status)})}),"standalone"in window.navigator&&window.navigator.standalone){var node,remotes=!1;document.addEventListener("click",function(t){for(node=t.target;"A"!==node.nodeName&&"HTML"!==node.nodeName;)node=node.parentNode;"href"in node&&-1!==node.href.indexOf("http")&&(-1!==node.href.indexOf(document.location.host)||remotes)&&(t.preventDefault(),document.location.href=node.href)},!1)}
\ No newline at end of file
diff --git a/material/assets/javascripts/modernizr-4ab42b99fd.js b/material/assets/javascripts/modernizr-4ab42b99fd.js
deleted file mode 100644
index e82c90988584779ec7a01eac66ea33341c682a51..0000000000000000000000000000000000000000
--- a/material/assets/javascripts/modernizr-4ab42b99fd.js
+++ /dev/null
@@ -1 +0,0 @@
-!function(e,t,n){function r(e,t){return typeof e===t}function i(){var e,t,n,i,o,a,s;for(var l in x)if(x.hasOwnProperty(l)){if(e=[],t=x[l],t.name&&(e.push(t.name.toLowerCase()),t.options&&t.options.aliases&&t.options.aliases.length))for(n=0;n<t.options.aliases.length;n++)e.push(t.options.aliases[n].toLowerCase());for(i=r(t.fn,"function")?t.fn():t.fn,o=0;o<e.length;o++)a=e[o],s=a.split("."),1===s.length?S[s[0]]=i:(!S[s[0]]||S[s[0]]instanceof Boolean||(S[s[0]]=new Boolean(S[s[0]])),S[s[0]][s[1]]=i),w.push((i?"":"no-")+s.join("-"))}}function o(e){var t=C.className,n=S._config.classPrefix||"";if(T&&(t=t.baseVal),S._config.enableJSClass){var r=new RegExp("(^|\\s)"+n+"no-js(\\s|$)");t=t.replace(r,"$1"+n+"js$2")}S._config.enableClasses&&(t+=" "+n+e.join(" "+n),T?C.className.baseVal=t:C.className=t)}function a(e,t){if("object"==typeof e)for(var n in e)b(e,n)&&a(n,e[n]);else{e=e.toLowerCase();var r=e.split("."),i=S[r[0]];if(2==r.length&&(i=i[r[1]]),"undefined"!=typeof i)return S;t="function"==typeof t?t():t,1==r.length?S[r[0]]=t:(!S[r[0]]||S[r[0]]instanceof Boolean||(S[r[0]]=new Boolean(S[r[0]])),S[r[0]][r[1]]=t),o([(t&&0!=t?"":"no-")+r.join("-")]),S._trigger(e,t)}return S}function s(e,t){return function(){return e.apply(t,arguments)}}function l(e,t){return!!~(""+e).indexOf(t)}function u(){return"function"!=typeof t.createElement?t.createElement(arguments[0]):T?t.createElementNS.call(t,"http://www.w3.org/2000/svg",arguments[0]):t.createElement.apply(t,arguments)}function c(){var e=t.body;return e||(e=u(T?"svg":"body"),e.fake=!0),e}function f(e,n,r,i){var o,a,s,l,f="modernizr",d=u("div"),p=c();if(parseInt(r,10))for(;r--;)s=u("div"),s.id=i?i[r]:f+(r+1),d.appendChild(s);return o=u("style"),o.type="text/css",o.id="s"+f,(p.fake?p:d).appendChild(o),p.appendChild(d),o.styleSheet?o.styleSheet.cssText=e:o.appendChild(t.createTextNode(e)),d.id=f,p.fake&&(p.style.background="",p.style.overflow="hidden",l=C.style.overflow,C.style.overflow="hidden",C.appendChild(p)),a=n(d,e),p.fake?(p.parentNode.removeChild(p),C.style.overflow=l,C.offsetHeight):d.parentNode.removeChild(d),!!a}function d(e){return e.replace(/([A-Z])/g,function(e,t){return"-"+t.toLowerCase()}).replace(/^ms-/,"-ms-")}function p(t,r){var i=t.length;if("CSS"in e&&"supports"in e.CSS){for(;i--;)if(e.CSS.supports(d(t[i]),r))return!0;return!1}if("CSSSupportsRule"in e){for(var o=[];i--;)o.push("("+d(t[i])+":"+r+")");return o=o.join(" or "),f("@supports ("+o+") { #modernizr { position: absolute; } }",function(e){return"absolute"==getComputedStyle(e,null).position})}return n}function m(e){return e.replace(/([a-z])-([a-z])/g,function(e,t,n){return t+n.toUpperCase()}).replace(/^-/,"")}function h(e,t,i,o){function a(){c&&(delete _.style,delete _.modElem)}if(o=r(o,"undefined")?!1:o,!r(i,"undefined")){var s=p(e,i);if(!r(s,"undefined"))return s}for(var c,f,d,h,g,v=["modernizr","tspan"];!_.style;)c=!0,_.modElem=u(v.shift()),_.style=_.modElem.style;for(d=e.length,f=0;d>f;f++)if(h=e[f],g=_.style[h],l(h,"-")&&(h=m(h)),_.style[h]!==n){if(o||r(i,"undefined"))return a(),"pfx"==t?h:!0;try{_.style[h]=i}catch(y){}if(_.style[h]!=g)return a(),"pfx"==t?h:!0}return a(),!1}function g(e,t,n){var i;for(var o in e)if(e[o]in t)return n===!1?e[o]:(i=t[e[o]],r(i,"function")?s(i,n||t):i);return!1}function v(e,t,n,i,o){var a=e.charAt(0).toUpperCase()+e.slice(1),s=(e+" "+P.join(a+" ")+a).split(" ");return r(t,"string")||r(t,"undefined")?h(s,t,i,o):(s=(e+" "+A.join(a+" ")+a).split(" "),g(s,t,n))}function y(e,t,r){return v(e,n,n,t,r)}var x=[],E={_version:"3.3.1",_config:{classPrefix:"",enableClasses:!0,enableJSClass:!0,usePrefixes:!0},_q:[],on:function(e,t){var n=this;setTimeout(function(){t(n[e])},0)},addTest:function(e,t,n){x.push({name:e,fn:t,options:n})},addAsyncTest:function(e){x.push({name:null,fn:e})}},S=function(){};S.prototype=E,S=new S;var b,w=[],C=t.documentElement,T="svg"===C.nodeName.toLowerCase();!function(){var e={}.hasOwnProperty;b=r(e,"undefined")||r(e.call,"undefined")?function(e,t){return t in e&&r(e.constructor.prototype[t],"undefined")}:function(t,n){return e.call(t,n)}}(),E._l={},E.on=function(e,t){this._l[e]||(this._l[e]=[]),this._l[e].push(t),S.hasOwnProperty(e)&&setTimeout(function(){S._trigger(e,S[e])},0)},E._trigger=function(e,t){if(this._l[e]){var n=this._l[e];setTimeout(function(){var e,r;for(e=0;e<n.length;e++)(r=n[e])(t)},0),delete this._l[e]}},S._q.push(function(){E.addTest=a});T||!function(e,t){function n(e,t){var n=e.createElement("p"),r=e.getElementsByTagName("head")[0]||e.documentElement;return n.innerHTML="x<style>"+t+"</style>",r.insertBefore(n.lastChild,r.firstChild)}function r(){var e=C.elements;return"string"==typeof e?e.split(" "):e}function i(e,t){var n=C.elements;"string"!=typeof n&&(n=n.join(" ")),"string"!=typeof e&&(e=e.join(" ")),C.elements=n+" "+e,u(t)}function o(e){var t=w[e[S]];return t||(t={},b++,e[S]=b,w[b]=t),t}function a(e,n,r){if(n||(n=t),g)return n.createElement(e);r||(r=o(n));var i;return i=r.cache[e]?r.cache[e].cloneNode():E.test(e)?(r.cache[e]=r.createElem(e)).cloneNode():r.createElem(e),!i.canHaveChildren||x.test(e)||i.tagUrn?i:r.frag.appendChild(i)}function s(e,n){if(e||(e=t),g)return e.createDocumentFragment();n=n||o(e);for(var i=n.frag.cloneNode(),a=0,s=r(),l=s.length;l>a;a++)i.createElement(s[a]);return i}function l(e,t){t.cache||(t.cache={},t.createElem=e.createElement,t.createFrag=e.createDocumentFragment,t.frag=t.createFrag()),e.createElement=function(n){return C.shivMethods?a(n,e,t):t.createElem(n)},e.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+r().join().replace(/[\w\-:]+/g,function(e){return t.createElem(e),t.frag.createElement(e),'c("'+e+'")'})+");return n}")(C,t.frag)}function u(e){e||(e=t);var r=o(e);return!C.shivCSS||h||r.hasCSS||(r.hasCSS=!!n(e,"article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),g||l(e,r),e}function c(e){for(var t,n=e.getElementsByTagName("*"),i=n.length,o=RegExp("^(?:"+r().join("|")+")$","i"),a=[];i--;)t=n[i],o.test(t.nodeName)&&a.push(t.applyElement(f(t)));return a}function f(e){for(var t,n=e.attributes,r=n.length,i=e.ownerDocument.createElement(N+":"+e.nodeName);r--;)t=n[r],t.specified&&i.setAttribute(t.nodeName,t.nodeValue);return i.style.cssText=e.style.cssText,i}function d(e){for(var t,n=e.split("{"),i=n.length,o=RegExp("(^|[\\s,>+~])("+r().join("|")+")(?=[[\\s,>+~#.:]|$)","gi"),a="$1"+N+"\\:$2";i--;)t=n[i]=n[i].split("}"),t[t.length-1]=t[t.length-1].replace(o,a),n[i]=t.join("}");return n.join("{")}function p(e){for(var t=e.length;t--;)e[t].removeNode()}function m(e){function t(){clearTimeout(a._removeSheetTimer),r&&r.removeNode(!0),r=null}var r,i,a=o(e),s=e.namespaces,l=e.parentWindow;return!_||e.printShived?e:("undefined"==typeof s[N]&&s.add(N),l.attachEvent("onbeforeprint",function(){t();for(var o,a,s,l=e.styleSheets,u=[],f=l.length,p=Array(f);f--;)p[f]=l[f];for(;s=p.pop();)if(!s.disabled&&T.test(s.media)){try{o=s.imports,a=o.length}catch(m){a=0}for(f=0;a>f;f++)p.push(o[f]);try{u.push(s.cssText)}catch(m){}}u=d(u.reverse().join("")),i=c(e),r=n(e,u)}),l.attachEvent("onafterprint",function(){p(i),clearTimeout(a._removeSheetTimer),a._removeSheetTimer=setTimeout(t,500)}),e.printShived=!0,e)}var h,g,v="3.7.3",y=e.html5||{},x=/^<|^(?: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,S="_html5shiv",b=0,w={};!function(){try{var e=t.createElement("a");e.innerHTML="<xyz></xyz>",h="hidden"in e,g=1==e.childNodes.length||function(){t.createElement("a");var e=t.createDocumentFragment();return"undefined"==typeof e.cloneNode||"undefined"==typeof e.createDocumentFragment||"undefined"==typeof e.createElement}()}catch(n){h=!0,g=!0}}();var C={elements:y.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video",version:v,shivCSS:y.shivCSS!==!1,supportsUnknownElements:g,shivMethods:y.shivMethods!==!1,type:"default",shivDocument:u,createElement:a,createDocumentFragment:s,addElements:i};e.html5=C,u(t);var T=/^$|\b(?:all|print)\b/,N="html5shiv",_=!g&&function(){var n=t.documentElement;return!("undefined"==typeof t.namespaces||"undefined"==typeof t.parentWindow||"undefined"==typeof n.applyElement||"undefined"==typeof n.removeNode||"undefined"==typeof e.attachEvent)}();C.type+=" print",C.shivPrint=m,m(t),"object"==typeof module&&module.exports&&(module.exports=C)}("undefined"!=typeof e?e:this,t);var N={elem:u("modernizr")};S._q.push(function(){delete N.elem});var _={style:N.elem.style};S._q.unshift(function(){delete _.style});var z=(E.testProp=function(e,t,r){return h([e],n,t,r)},function(){function e(e,t){var i;return e?(t&&"string"!=typeof t||(t=u(t||"div")),e="on"+e,i=e in t,!i&&r&&(t.setAttribute||(t=u("div")),t.setAttribute(e,""),i="function"==typeof t[e],t[e]!==n&&(t[e]=n),t.removeAttribute(e)),i):!1}var r=!("onblur"in t.documentElement);return e}());E.hasEvent=z,S.addTest("inputsearchevent",z("search"));var k=E.testStyles=f,$=function(){var e=navigator.userAgent,t=e.match(/applewebkit\/([0-9]+)/gi)&&parseFloat(RegExp.$1),n=e.match(/w(eb)?osbrowser/gi),r=e.match(/windows phone/gi)&&e.match(/iemobile\/([0-9])+/gi)&&parseFloat(RegExp.$1)>=9,i=533>t&&e.match(/android/gi);return n||i||r}();$?S.addTest("fontface",!1):k('@font-face {font-family:"font";src:url("https://")}',function(e,n){var r=t.getElementById("smodernizr"),i=r.sheet||r.styleSheet,o=i?i.cssRules&&i.cssRules[0]?i.cssRules[0].cssText:i.cssText||"":"",a=/src/i.test(o)&&0===o.indexOf(n.split(" ")[0]);S.addTest("fontface",a)});var j="Moz O ms Webkit",P=E._config.usePrefixes?j.split(" "):[];E._cssomPrefixes=P;var A=E._config.usePrefixes?j.toLowerCase().split(" "):[];E._domPrefixes=A,E.testAllProps=v,E.testAllProps=y;var R="CSS"in e&&"supports"in e.CSS,F="supportsCSS"in e;S.addTest("supports",R||F),S.addTest("csstransforms3d",function(){var e=!!y("perspective","1px",!0),t=S._config.usePrefixes;if(e&&(!t||"webkitPerspective"in C.style)){var n,r="#modernizr{width:0;height:0}";S.supports?n="@supports (perspective: 1px)":(n="@media (transform-3d)",t&&(n+=",(-webkit-transform-3d)")),n+="{#modernizr{width:7px;height:18px;margin:0;padding:0;border:0}}",k(r+n,function(t){e=7===t.offsetWidth&&18===t.offsetHeight})}return e}),S.addTest("json","JSON"in e&&"parse"in JSON&&"stringify"in JSON),S.addTest("checked",function(){return k("#modernizr {position:absolute} #modernizr input {margin-left:10px} #modernizr :checked {margin-left:20px;display:block}",function(e){var t=u("input");return t.setAttribute("type","checkbox"),t.setAttribute("checked","checked"),e.appendChild(t),20===t.offsetLeft})}),S.addTest("target",function(){var t=e.document;if(!("querySelectorAll"in t))return!1;try{return t.querySelectorAll(":target"),!0}catch(n){return!1}}),S.addTest("contains",r(String.prototype.contains,"function")),i(),o(w),delete E.addTest,delete E.addAsyncTest;for(var M=0;M<S._q.length;M++)S._q[M]();e.Modernizr=S}(window,document),function(e){"use strict";e.matchMedia=e.matchMedia||function(e,t){var n,r=e.documentElement,i=r.firstElementChild||r.firstChild,o=e.createElement("body"),a=e.createElement("div");return a.id="mq-test-1",a.style.cssText="position:absolute;top:-100em",o.style.background="none",o.appendChild(a),function(e){return a.innerHTML='&shy;<style media="'+e+'"> #mq-test-1 { width: 42px; }</style>',r.insertBefore(o,i),n=42===a.offsetWidth,r.removeChild(o),{matches:n,media:e}}}(e.document)}(this),function(e){"use strict";function t(){E(!0)}var n={};e.respond=n,n.update=function(){};var r=[],i=function(){var t=!1;try{t=new e.XMLHttpRequest}catch(n){t=new e.ActiveXObject("Microsoft.XMLHTTP")}return function(){return t}}(),o=function(e,t){var n=i();n&&(n.open("GET",e,!0),n.onreadystatechange=function(){4!==n.readyState||200!==n.status&&304!==n.status||t(n.responseText)},4!==n.readyState&&n.send(null))};if(n.ajax=o,n.queue=r,n.regex={media:/@media[^\{]+\{([^\{\}]*\{[^\}\{]*\})+/gi,keyframes:/@(?:\-(?:o|moz|webkit)\-)?keyframes[^\{]+\{(?:[^\{\}]*\{[^\}\{]*\})+[^\}]*\}/gi,urls:/(url\()['"]?([^\/\)'"][^:\)'"]+)['"]?(\))/g,findStyles:/@media *([^\{]+)\{([\S\s]+?)$/,only:/(only\s+)?([a-zA-Z]+)\s?/,minw:/\([\s]*min\-width\s*:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/,maxw:/\([\s]*max\-width\s*:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/},n.mediaQueriesSupported=e.matchMedia&&null!==e.matchMedia("only all")&&e.matchMedia("only all").matches,!n.mediaQueriesSupported){var a,s,l,u=e.document,c=u.documentElement,f=[],d=[],p=[],m={},h=30,g=u.getElementsByTagName("head")[0]||c,v=u.getElementsByTagName("base")[0],y=g.getElementsByTagName("link"),x=function(){var e,t=u.createElement("div"),n=u.body,r=c.style.fontSize,i=n&&n.style.fontSize,o=!1;return t.style.cssText="position:absolute;font-size:1em;width:1em",n||(n=o=u.createElement("body"),n.style.background="none"),c.style.fontSize="100%",n.style.fontSize="100%",n.appendChild(t),o&&c.insertBefore(n,c.firstChild),e=t.offsetWidth,o?c.removeChild(n):n.removeChild(t),c.style.fontSize=r,i&&(n.style.fontSize=i),e=l=parseFloat(e)},E=function(t){var n="clientWidth",r=c[n],i="CSS1Compat"===u.compatMode&&r||u.body[n]||r,o={},m=y[y.length-1],v=(new Date).getTime();if(t&&a&&h>v-a)return e.clearTimeout(s),void(s=e.setTimeout(E,h));a=v;for(var S in f)if(f.hasOwnProperty(S)){var b=f[S],w=b.minw,C=b.maxw,T=null===w,N=null===C,_="em";w&&(w=parseFloat(w)*(w.indexOf(_)>-1?l||x():1)),C&&(C=parseFloat(C)*(C.indexOf(_)>-1?l||x():1)),b.hasquery&&(T&&N||!(T||i>=w)||!(N||C>=i))||(o[b.media]||(o[b.media]=[]),o[b.media].push(d[b.rules]))}for(var z in p)p.hasOwnProperty(z)&&p[z]&&p[z].parentNode===g&&g.removeChild(p[z]);p.length=0;for(var k in o)if(o.hasOwnProperty(k)){var $=u.createElement("style"),j=o[k].join("\n");$.type="text/css",$.media=k,g.insertBefore($,m.nextSibling),$.styleSheet?$.styleSheet.cssText=j:$.appendChild(u.createTextNode(j)),p.push($)}},S=function(e,t,r){var i=e.replace(n.regex.keyframes,"").match(n.regex.media),o=i&&i.length||0;t=t.substring(0,t.lastIndexOf("/"));var a=function(e){return e.replace(n.regex.urls,"$1"+t+"$2$3")},s=!o&&r;t.length&&(t+="/"),s&&(o=1);for(var l=0;o>l;l++){var u,c,p,m;s?(u=r,d.push(a(e))):(u=i[l].match(n.regex.findStyles)&&RegExp.$1,d.push(RegExp.$2&&a(RegExp.$2))),p=u.split(","),m=p.length;for(var h=0;m>h;h++)c=p[h],f.push({media:c.split("(")[0].match(n.regex.only)&&RegExp.$2||"all",rules:d.length-1,hasquery:c.indexOf("(")>-1,minw:c.match(n.regex.minw)&&parseFloat(RegExp.$1)+(RegExp.$2||""),maxw:c.match(n.regex.maxw)&&parseFloat(RegExp.$1)+(RegExp.$2||"")})}E()},b=function(){if(r.length){var t=r.shift();o(t.href,function(n){S(n,t.href,t.media),m[t.href]=!0,e.setTimeout(function(){b()},0)})}},w=function(){for(var t=0;t<y.length;t++){var n=y[t],i=n.href,o=n.media,a=n.rel&&"stylesheet"===n.rel.toLowerCase();i&&a&&!m[i]&&(n.styleSheet&&n.styleSheet.rawCssText?(S(n.styleSheet.rawCssText,i,o),m[i]=!0):(!/^([a-zA-Z:]*\/\/)/.test(i)&&!v||i.replace(RegExp.$1,"").split("/")[0]===e.location.host)&&("//"===i.substring(0,2)&&(i=e.location.protocol+i),r.push({href:i,media:o})))}b()};w(),n.update=w,n.getEmValue=x,e.addEventListener?e.addEventListener("resize",t,!1):e.attachEvent&&e.attachEvent("onresize",t)}}(this);
\ No newline at end of file
diff --git a/material/assets/javascripts/modernizr-facb31f4a3.js b/material/assets/javascripts/modernizr-facb31f4a3.js
new file mode 100644
index 0000000000000000000000000000000000000000..922da1f62d7e3760aaca7bd221620bf7cab00f36
--- /dev/null
+++ b/material/assets/javascripts/modernizr-facb31f4a3.js
@@ -0,0 +1 @@
+!function(e,t,n){function s(e,t){return typeof e===t}function r(){var e,t,n,r,o,i,a;for(var f in w)if(w.hasOwnProperty(f)){if(e=[],t=w[f],t.name&&(e.push(t.name.toLowerCase()),t.options&&t.options.aliases&&t.options.aliases.length))for(n=0;n<t.options.aliases.length;n++)e.push(t.options.aliases[n].toLowerCase());for(r=s(t.fn,"function")?t.fn():t.fn,o=0;o<e.length;o++)i=e[o],a=i.split("."),1===a.length?_[a[0]]=r:(!_[a[0]]||_[a[0]]instanceof Boolean||(_[a[0]]=new Boolean(_[a[0]])),_[a[0]][a[1]]=r),S.push((r?"":"no-")+a.join("-"))}}function o(e){var t=b.className,n=_._config.classPrefix||"";if(T&&(t=t.baseVal),_._config.enableJSClass){var s=new RegExp("(^|\\s)"+n+"no-js(\\s|$)");t=t.replace(s,"$1"+n+"js$2")}_._config.enableClasses&&(t+=" "+n+e.join(" "+n),T?b.className.baseVal=t:b.className=t)}function i(e,t){if("object"==typeof e)for(var n in e)C(e,n)&&i(n,e[n]);else{e=e.toLowerCase();var s=e.split("."),r=_[s[0]];if(2==s.length&&(r=r[s[1]]),"undefined"!=typeof r)return _;t="function"==typeof t?t():t,1==s.length?_[s[0]]=t:(!_[s[0]]||_[s[0]]instanceof Boolean||(_[s[0]]=new Boolean(_[s[0]])),_[s[0]][s[1]]=t),o([(t&&0!=t?"":"no-")+s.join("-")]),_._trigger(e,t)}return _}function a(){return"function"!=typeof t.createElement?t.createElement(arguments[0]):T?t.createElementNS.call(t,"http://www.w3.org/2000/svg",arguments[0]):t.createElement.apply(t,arguments)}function f(){var e=t.body;return e||(e=a(T?"svg":"body"),e.fake=!0),e}function l(e,n,s,r){var o,i,l,u,c="modernizr",p=a("div"),d=f();if(parseInt(s,10))for(;s--;)l=a("div"),l.id=r?r[s]:c+(s+1),p.appendChild(l);return o=a("style"),o.type="text/css",o.id="s"+c,(d.fake?d:p).appendChild(o),d.appendChild(p),o.styleSheet?o.styleSheet.cssText=e:o.appendChild(t.createTextNode(e)),p.id=c,d.fake&&(d.style.background="",d.style.overflow="hidden",u=b.style.overflow,b.style.overflow="hidden",b.appendChild(d)),i=n(p,e),d.fake?(d.parentNode.removeChild(d),b.style.overflow=u,b.offsetHeight):p.parentNode.removeChild(p),!!i}function u(e,t){return!!~(""+e).indexOf(t)}function c(e){return e.replace(/([A-Z])/g,function(e,t){return"-"+t.toLowerCase()}).replace(/^ms-/,"-ms-")}function p(t,s){var r=t.length;if("CSS"in e&&"supports"in e.CSS){for(;r--;)if(e.CSS.supports(c(t[r]),s))return!0;return!1}if("CSSSupportsRule"in e){for(var o=[];r--;)o.push("("+c(t[r])+":"+s+")");return o=o.join(" or "),l("@supports ("+o+") { #modernizr { position: absolute; } }",function(e){return"absolute"==getComputedStyle(e,null).position})}return n}function d(e){return e.replace(/([a-z])-([a-z])/g,function(e,t,n){return t+n.toUpperCase()}).replace(/^-/,"")}function h(e,t,r,o){function i(){l&&(delete A.style,delete A.modElem)}if(o=!s(o,"undefined")&&o,!s(r,"undefined")){var f=p(e,r);if(!s(f,"undefined"))return f}for(var l,c,h,m,g,v=["modernizr","tspan"];!A.style;)l=!0,A.modElem=a(v.shift()),A.style=A.modElem.style;for(h=e.length,c=0;c<h;c++)if(m=e[c],g=A.style[m],u(m,"-")&&(m=d(m)),A.style[m]!==n){if(o||s(r,"undefined"))return i(),"pfx"!=t||m;try{A.style[m]=r}catch(e){}if(A.style[m]!=g)return i(),"pfx"!=t||m}return i(),!1}function m(e,t){return function(){return e.apply(t,arguments)}}function g(e,t,n){var r;for(var o in e)if(e[o]in t)return n===!1?e[o]:(r=t[e[o]],s(r,"function")?m(r,n||t):r);return!1}function v(e,t,n,r,o){var i=e.charAt(0).toUpperCase()+e.slice(1),a=(e+" "+k.join(i+" ")+i).split(" ");return s(t,"string")||s(t,"undefined")?h(a,t,r,o):(a=(e+" "+R.join(i+" ")+i).split(" "),g(a,t,n))}function y(e,t,s){return v(e,n,n,t,s)}var w=[],x={_version:"3.3.1",_config:{classPrefix:"",enableClasses:!0,enableJSClass:!0,usePrefixes:!0},_q:[],on:function(e,t){var n=this;setTimeout(function(){t(n[e])},0)},addTest:function(e,t,n){w.push({name:e,fn:t,options:n})},addAsyncTest:function(e){w.push({name:null,fn:e})}},_=function(){};_.prototype=x,_=new _;var C,S=[],b=t.documentElement,T="svg"===b.nodeName.toLowerCase();!function(){var e={}.hasOwnProperty;C=s(e,"undefined")||s(e.call,"undefined")?function(e,t){return t in e&&s(e.constructor.prototype[t],"undefined")}:function(t,n){return e.call(t,n)}}(),x._l={},x.on=function(e,t){this._l[e]||(this._l[e]=[]),this._l[e].push(t),_.hasOwnProperty(e)&&setTimeout(function(){_._trigger(e,_[e])},0)},x._trigger=function(e,t){if(this._l[e]){var n=this._l[e];setTimeout(function(){var e,s;for(e=0;e<n.length;e++)(s=n[e])(t)},0),delete this._l[e]}},_._q.push(function(){x.addTest=i});var P=x._config.usePrefixes?" -webkit- -moz- -o- -ms- ".split(" "):[];x._prefixes=P,_.addTest("csscalc",function(){var e="width:",t="calc(10px);",n=a("a");return n.style.cssText=e+P.join(t+e),!!n.style.length});var z=x.testStyles=l,E=function(){var e=navigator.userAgent,t=e.match(/applewebkit\/([0-9]+)/gi)&&parseFloat(RegExp.$1),n=e.match(/w(eb)?osbrowser/gi),s=e.match(/windows phone/gi)&&e.match(/iemobile\/([0-9])+/gi)&&parseFloat(RegExp.$1)>=9,r=t<533&&e.match(/android/gi);return n||r||s}();E?_.addTest("fontface",!1):z('@font-face {font-family:"font";src:url("https://")}',function(e,n){var s=t.getElementById("smodernizr"),r=s.sheet||s.styleSheet,o=r?r.cssRules&&r.cssRules[0]?r.cssRules[0].cssText:r.cssText||"":"",i=/src/i.test(o)&&0===o.indexOf(n.split(" ")[0]);_.addTest("fontface",i)});var j="Moz O ms Webkit",k=x._config.usePrefixes?j.split(" "):[];x._cssomPrefixes=k;var N={elem:a("modernizr")};_._q.push(function(){delete N.elem});var A={style:N.elem.style};_._q.unshift(function(){delete A.style});var R=x._config.usePrefixes?j.toLowerCase().split(" "):[];x._domPrefixes=R,x.testAllProps=v,x.testAllProps=y;var q="CSS"in e&&"supports"in e.CSS,L="supportsCSS"in e;_.addTest("supports",q||L),_.addTest("csstransforms3d",function(){var e=!!y("perspective","1px",!0),t=_._config.usePrefixes;if(e&&(!t||"webkitPerspective"in b.style)){var n,s="#modernizr{width:0;height:0}";_.supports?n="@supports (perspective: 1px)":(n="@media (transform-3d)",t&&(n+=",(-webkit-transform-3d)")),n+="{#modernizr{width:7px;height:18px;margin:0;padding:0;border:0}}",z(s+n,function(t){e=7===t.offsetWidth&&18===t.offsetHeight})}return e}),r(),o(S),delete x.addTest,delete x.addAsyncTest;for(var O=0;O<_._q.length;O++)_._q[O]();e.Modernizr=_}(window,document);
\ No newline at end of file
diff --git a/material/assets/javascripts/modernizr.js b/material/assets/javascripts/modernizr.js
deleted file mode 100644
index e82c90988584779ec7a01eac66ea33341c682a51..0000000000000000000000000000000000000000
--- a/material/assets/javascripts/modernizr.js
+++ /dev/null
@@ -1 +0,0 @@
-!function(e,t,n){function r(e,t){return typeof e===t}function i(){var e,t,n,i,o,a,s;for(var l in x)if(x.hasOwnProperty(l)){if(e=[],t=x[l],t.name&&(e.push(t.name.toLowerCase()),t.options&&t.options.aliases&&t.options.aliases.length))for(n=0;n<t.options.aliases.length;n++)e.push(t.options.aliases[n].toLowerCase());for(i=r(t.fn,"function")?t.fn():t.fn,o=0;o<e.length;o++)a=e[o],s=a.split("."),1===s.length?S[s[0]]=i:(!S[s[0]]||S[s[0]]instanceof Boolean||(S[s[0]]=new Boolean(S[s[0]])),S[s[0]][s[1]]=i),w.push((i?"":"no-")+s.join("-"))}}function o(e){var t=C.className,n=S._config.classPrefix||"";if(T&&(t=t.baseVal),S._config.enableJSClass){var r=new RegExp("(^|\\s)"+n+"no-js(\\s|$)");t=t.replace(r,"$1"+n+"js$2")}S._config.enableClasses&&(t+=" "+n+e.join(" "+n),T?C.className.baseVal=t:C.className=t)}function a(e,t){if("object"==typeof e)for(var n in e)b(e,n)&&a(n,e[n]);else{e=e.toLowerCase();var r=e.split("."),i=S[r[0]];if(2==r.length&&(i=i[r[1]]),"undefined"!=typeof i)return S;t="function"==typeof t?t():t,1==r.length?S[r[0]]=t:(!S[r[0]]||S[r[0]]instanceof Boolean||(S[r[0]]=new Boolean(S[r[0]])),S[r[0]][r[1]]=t),o([(t&&0!=t?"":"no-")+r.join("-")]),S._trigger(e,t)}return S}function s(e,t){return function(){return e.apply(t,arguments)}}function l(e,t){return!!~(""+e).indexOf(t)}function u(){return"function"!=typeof t.createElement?t.createElement(arguments[0]):T?t.createElementNS.call(t,"http://www.w3.org/2000/svg",arguments[0]):t.createElement.apply(t,arguments)}function c(){var e=t.body;return e||(e=u(T?"svg":"body"),e.fake=!0),e}function f(e,n,r,i){var o,a,s,l,f="modernizr",d=u("div"),p=c();if(parseInt(r,10))for(;r--;)s=u("div"),s.id=i?i[r]:f+(r+1),d.appendChild(s);return o=u("style"),o.type="text/css",o.id="s"+f,(p.fake?p:d).appendChild(o),p.appendChild(d),o.styleSheet?o.styleSheet.cssText=e:o.appendChild(t.createTextNode(e)),d.id=f,p.fake&&(p.style.background="",p.style.overflow="hidden",l=C.style.overflow,C.style.overflow="hidden",C.appendChild(p)),a=n(d,e),p.fake?(p.parentNode.removeChild(p),C.style.overflow=l,C.offsetHeight):d.parentNode.removeChild(d),!!a}function d(e){return e.replace(/([A-Z])/g,function(e,t){return"-"+t.toLowerCase()}).replace(/^ms-/,"-ms-")}function p(t,r){var i=t.length;if("CSS"in e&&"supports"in e.CSS){for(;i--;)if(e.CSS.supports(d(t[i]),r))return!0;return!1}if("CSSSupportsRule"in e){for(var o=[];i--;)o.push("("+d(t[i])+":"+r+")");return o=o.join(" or "),f("@supports ("+o+") { #modernizr { position: absolute; } }",function(e){return"absolute"==getComputedStyle(e,null).position})}return n}function m(e){return e.replace(/([a-z])-([a-z])/g,function(e,t,n){return t+n.toUpperCase()}).replace(/^-/,"")}function h(e,t,i,o){function a(){c&&(delete _.style,delete _.modElem)}if(o=r(o,"undefined")?!1:o,!r(i,"undefined")){var s=p(e,i);if(!r(s,"undefined"))return s}for(var c,f,d,h,g,v=["modernizr","tspan"];!_.style;)c=!0,_.modElem=u(v.shift()),_.style=_.modElem.style;for(d=e.length,f=0;d>f;f++)if(h=e[f],g=_.style[h],l(h,"-")&&(h=m(h)),_.style[h]!==n){if(o||r(i,"undefined"))return a(),"pfx"==t?h:!0;try{_.style[h]=i}catch(y){}if(_.style[h]!=g)return a(),"pfx"==t?h:!0}return a(),!1}function g(e,t,n){var i;for(var o in e)if(e[o]in t)return n===!1?e[o]:(i=t[e[o]],r(i,"function")?s(i,n||t):i);return!1}function v(e,t,n,i,o){var a=e.charAt(0).toUpperCase()+e.slice(1),s=(e+" "+P.join(a+" ")+a).split(" ");return r(t,"string")||r(t,"undefined")?h(s,t,i,o):(s=(e+" "+A.join(a+" ")+a).split(" "),g(s,t,n))}function y(e,t,r){return v(e,n,n,t,r)}var x=[],E={_version:"3.3.1",_config:{classPrefix:"",enableClasses:!0,enableJSClass:!0,usePrefixes:!0},_q:[],on:function(e,t){var n=this;setTimeout(function(){t(n[e])},0)},addTest:function(e,t,n){x.push({name:e,fn:t,options:n})},addAsyncTest:function(e){x.push({name:null,fn:e})}},S=function(){};S.prototype=E,S=new S;var b,w=[],C=t.documentElement,T="svg"===C.nodeName.toLowerCase();!function(){var e={}.hasOwnProperty;b=r(e,"undefined")||r(e.call,"undefined")?function(e,t){return t in e&&r(e.constructor.prototype[t],"undefined")}:function(t,n){return e.call(t,n)}}(),E._l={},E.on=function(e,t){this._l[e]||(this._l[e]=[]),this._l[e].push(t),S.hasOwnProperty(e)&&setTimeout(function(){S._trigger(e,S[e])},0)},E._trigger=function(e,t){if(this._l[e]){var n=this._l[e];setTimeout(function(){var e,r;for(e=0;e<n.length;e++)(r=n[e])(t)},0),delete this._l[e]}},S._q.push(function(){E.addTest=a});T||!function(e,t){function n(e,t){var n=e.createElement("p"),r=e.getElementsByTagName("head")[0]||e.documentElement;return n.innerHTML="x<style>"+t+"</style>",r.insertBefore(n.lastChild,r.firstChild)}function r(){var e=C.elements;return"string"==typeof e?e.split(" "):e}function i(e,t){var n=C.elements;"string"!=typeof n&&(n=n.join(" ")),"string"!=typeof e&&(e=e.join(" ")),C.elements=n+" "+e,u(t)}function o(e){var t=w[e[S]];return t||(t={},b++,e[S]=b,w[b]=t),t}function a(e,n,r){if(n||(n=t),g)return n.createElement(e);r||(r=o(n));var i;return i=r.cache[e]?r.cache[e].cloneNode():E.test(e)?(r.cache[e]=r.createElem(e)).cloneNode():r.createElem(e),!i.canHaveChildren||x.test(e)||i.tagUrn?i:r.frag.appendChild(i)}function s(e,n){if(e||(e=t),g)return e.createDocumentFragment();n=n||o(e);for(var i=n.frag.cloneNode(),a=0,s=r(),l=s.length;l>a;a++)i.createElement(s[a]);return i}function l(e,t){t.cache||(t.cache={},t.createElem=e.createElement,t.createFrag=e.createDocumentFragment,t.frag=t.createFrag()),e.createElement=function(n){return C.shivMethods?a(n,e,t):t.createElem(n)},e.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+r().join().replace(/[\w\-:]+/g,function(e){return t.createElem(e),t.frag.createElement(e),'c("'+e+'")'})+");return n}")(C,t.frag)}function u(e){e||(e=t);var r=o(e);return!C.shivCSS||h||r.hasCSS||(r.hasCSS=!!n(e,"article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),g||l(e,r),e}function c(e){for(var t,n=e.getElementsByTagName("*"),i=n.length,o=RegExp("^(?:"+r().join("|")+")$","i"),a=[];i--;)t=n[i],o.test(t.nodeName)&&a.push(t.applyElement(f(t)));return a}function f(e){for(var t,n=e.attributes,r=n.length,i=e.ownerDocument.createElement(N+":"+e.nodeName);r--;)t=n[r],t.specified&&i.setAttribute(t.nodeName,t.nodeValue);return i.style.cssText=e.style.cssText,i}function d(e){for(var t,n=e.split("{"),i=n.length,o=RegExp("(^|[\\s,>+~])("+r().join("|")+")(?=[[\\s,>+~#.:]|$)","gi"),a="$1"+N+"\\:$2";i--;)t=n[i]=n[i].split("}"),t[t.length-1]=t[t.length-1].replace(o,a),n[i]=t.join("}");return n.join("{")}function p(e){for(var t=e.length;t--;)e[t].removeNode()}function m(e){function t(){clearTimeout(a._removeSheetTimer),r&&r.removeNode(!0),r=null}var r,i,a=o(e),s=e.namespaces,l=e.parentWindow;return!_||e.printShived?e:("undefined"==typeof s[N]&&s.add(N),l.attachEvent("onbeforeprint",function(){t();for(var o,a,s,l=e.styleSheets,u=[],f=l.length,p=Array(f);f--;)p[f]=l[f];for(;s=p.pop();)if(!s.disabled&&T.test(s.media)){try{o=s.imports,a=o.length}catch(m){a=0}for(f=0;a>f;f++)p.push(o[f]);try{u.push(s.cssText)}catch(m){}}u=d(u.reverse().join("")),i=c(e),r=n(e,u)}),l.attachEvent("onafterprint",function(){p(i),clearTimeout(a._removeSheetTimer),a._removeSheetTimer=setTimeout(t,500)}),e.printShived=!0,e)}var h,g,v="3.7.3",y=e.html5||{},x=/^<|^(?: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,S="_html5shiv",b=0,w={};!function(){try{var e=t.createElement("a");e.innerHTML="<xyz></xyz>",h="hidden"in e,g=1==e.childNodes.length||function(){t.createElement("a");var e=t.createDocumentFragment();return"undefined"==typeof e.cloneNode||"undefined"==typeof e.createDocumentFragment||"undefined"==typeof e.createElement}()}catch(n){h=!0,g=!0}}();var C={elements:y.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video",version:v,shivCSS:y.shivCSS!==!1,supportsUnknownElements:g,shivMethods:y.shivMethods!==!1,type:"default",shivDocument:u,createElement:a,createDocumentFragment:s,addElements:i};e.html5=C,u(t);var T=/^$|\b(?:all|print)\b/,N="html5shiv",_=!g&&function(){var n=t.documentElement;return!("undefined"==typeof t.namespaces||"undefined"==typeof t.parentWindow||"undefined"==typeof n.applyElement||"undefined"==typeof n.removeNode||"undefined"==typeof e.attachEvent)}();C.type+=" print",C.shivPrint=m,m(t),"object"==typeof module&&module.exports&&(module.exports=C)}("undefined"!=typeof e?e:this,t);var N={elem:u("modernizr")};S._q.push(function(){delete N.elem});var _={style:N.elem.style};S._q.unshift(function(){delete _.style});var z=(E.testProp=function(e,t,r){return h([e],n,t,r)},function(){function e(e,t){var i;return e?(t&&"string"!=typeof t||(t=u(t||"div")),e="on"+e,i=e in t,!i&&r&&(t.setAttribute||(t=u("div")),t.setAttribute(e,""),i="function"==typeof t[e],t[e]!==n&&(t[e]=n),t.removeAttribute(e)),i):!1}var r=!("onblur"in t.documentElement);return e}());E.hasEvent=z,S.addTest("inputsearchevent",z("search"));var k=E.testStyles=f,$=function(){var e=navigator.userAgent,t=e.match(/applewebkit\/([0-9]+)/gi)&&parseFloat(RegExp.$1),n=e.match(/w(eb)?osbrowser/gi),r=e.match(/windows phone/gi)&&e.match(/iemobile\/([0-9])+/gi)&&parseFloat(RegExp.$1)>=9,i=533>t&&e.match(/android/gi);return n||i||r}();$?S.addTest("fontface",!1):k('@font-face {font-family:"font";src:url("https://")}',function(e,n){var r=t.getElementById("smodernizr"),i=r.sheet||r.styleSheet,o=i?i.cssRules&&i.cssRules[0]?i.cssRules[0].cssText:i.cssText||"":"",a=/src/i.test(o)&&0===o.indexOf(n.split(" ")[0]);S.addTest("fontface",a)});var j="Moz O ms Webkit",P=E._config.usePrefixes?j.split(" "):[];E._cssomPrefixes=P;var A=E._config.usePrefixes?j.toLowerCase().split(" "):[];E._domPrefixes=A,E.testAllProps=v,E.testAllProps=y;var R="CSS"in e&&"supports"in e.CSS,F="supportsCSS"in e;S.addTest("supports",R||F),S.addTest("csstransforms3d",function(){var e=!!y("perspective","1px",!0),t=S._config.usePrefixes;if(e&&(!t||"webkitPerspective"in C.style)){var n,r="#modernizr{width:0;height:0}";S.supports?n="@supports (perspective: 1px)":(n="@media (transform-3d)",t&&(n+=",(-webkit-transform-3d)")),n+="{#modernizr{width:7px;height:18px;margin:0;padding:0;border:0}}",k(r+n,function(t){e=7===t.offsetWidth&&18===t.offsetHeight})}return e}),S.addTest("json","JSON"in e&&"parse"in JSON&&"stringify"in JSON),S.addTest("checked",function(){return k("#modernizr {position:absolute} #modernizr input {margin-left:10px} #modernizr :checked {margin-left:20px;display:block}",function(e){var t=u("input");return t.setAttribute("type","checkbox"),t.setAttribute("checked","checked"),e.appendChild(t),20===t.offsetLeft})}),S.addTest("target",function(){var t=e.document;if(!("querySelectorAll"in t))return!1;try{return t.querySelectorAll(":target"),!0}catch(n){return!1}}),S.addTest("contains",r(String.prototype.contains,"function")),i(),o(w),delete E.addTest,delete E.addAsyncTest;for(var M=0;M<S._q.length;M++)S._q[M]();e.Modernizr=S}(window,document),function(e){"use strict";e.matchMedia=e.matchMedia||function(e,t){var n,r=e.documentElement,i=r.firstElementChild||r.firstChild,o=e.createElement("body"),a=e.createElement("div");return a.id="mq-test-1",a.style.cssText="position:absolute;top:-100em",o.style.background="none",o.appendChild(a),function(e){return a.innerHTML='&shy;<style media="'+e+'"> #mq-test-1 { width: 42px; }</style>',r.insertBefore(o,i),n=42===a.offsetWidth,r.removeChild(o),{matches:n,media:e}}}(e.document)}(this),function(e){"use strict";function t(){E(!0)}var n={};e.respond=n,n.update=function(){};var r=[],i=function(){var t=!1;try{t=new e.XMLHttpRequest}catch(n){t=new e.ActiveXObject("Microsoft.XMLHTTP")}return function(){return t}}(),o=function(e,t){var n=i();n&&(n.open("GET",e,!0),n.onreadystatechange=function(){4!==n.readyState||200!==n.status&&304!==n.status||t(n.responseText)},4!==n.readyState&&n.send(null))};if(n.ajax=o,n.queue=r,n.regex={media:/@media[^\{]+\{([^\{\}]*\{[^\}\{]*\})+/gi,keyframes:/@(?:\-(?:o|moz|webkit)\-)?keyframes[^\{]+\{(?:[^\{\}]*\{[^\}\{]*\})+[^\}]*\}/gi,urls:/(url\()['"]?([^\/\)'"][^:\)'"]+)['"]?(\))/g,findStyles:/@media *([^\{]+)\{([\S\s]+?)$/,only:/(only\s+)?([a-zA-Z]+)\s?/,minw:/\([\s]*min\-width\s*:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/,maxw:/\([\s]*max\-width\s*:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/},n.mediaQueriesSupported=e.matchMedia&&null!==e.matchMedia("only all")&&e.matchMedia("only all").matches,!n.mediaQueriesSupported){var a,s,l,u=e.document,c=u.documentElement,f=[],d=[],p=[],m={},h=30,g=u.getElementsByTagName("head")[0]||c,v=u.getElementsByTagName("base")[0],y=g.getElementsByTagName("link"),x=function(){var e,t=u.createElement("div"),n=u.body,r=c.style.fontSize,i=n&&n.style.fontSize,o=!1;return t.style.cssText="position:absolute;font-size:1em;width:1em",n||(n=o=u.createElement("body"),n.style.background="none"),c.style.fontSize="100%",n.style.fontSize="100%",n.appendChild(t),o&&c.insertBefore(n,c.firstChild),e=t.offsetWidth,o?c.removeChild(n):n.removeChild(t),c.style.fontSize=r,i&&(n.style.fontSize=i),e=l=parseFloat(e)},E=function(t){var n="clientWidth",r=c[n],i="CSS1Compat"===u.compatMode&&r||u.body[n]||r,o={},m=y[y.length-1],v=(new Date).getTime();if(t&&a&&h>v-a)return e.clearTimeout(s),void(s=e.setTimeout(E,h));a=v;for(var S in f)if(f.hasOwnProperty(S)){var b=f[S],w=b.minw,C=b.maxw,T=null===w,N=null===C,_="em";w&&(w=parseFloat(w)*(w.indexOf(_)>-1?l||x():1)),C&&(C=parseFloat(C)*(C.indexOf(_)>-1?l||x():1)),b.hasquery&&(T&&N||!(T||i>=w)||!(N||C>=i))||(o[b.media]||(o[b.media]=[]),o[b.media].push(d[b.rules]))}for(var z in p)p.hasOwnProperty(z)&&p[z]&&p[z].parentNode===g&&g.removeChild(p[z]);p.length=0;for(var k in o)if(o.hasOwnProperty(k)){var $=u.createElement("style"),j=o[k].join("\n");$.type="text/css",$.media=k,g.insertBefore($,m.nextSibling),$.styleSheet?$.styleSheet.cssText=j:$.appendChild(u.createTextNode(j)),p.push($)}},S=function(e,t,r){var i=e.replace(n.regex.keyframes,"").match(n.regex.media),o=i&&i.length||0;t=t.substring(0,t.lastIndexOf("/"));var a=function(e){return e.replace(n.regex.urls,"$1"+t+"$2$3")},s=!o&&r;t.length&&(t+="/"),s&&(o=1);for(var l=0;o>l;l++){var u,c,p,m;s?(u=r,d.push(a(e))):(u=i[l].match(n.regex.findStyles)&&RegExp.$1,d.push(RegExp.$2&&a(RegExp.$2))),p=u.split(","),m=p.length;for(var h=0;m>h;h++)c=p[h],f.push({media:c.split("(")[0].match(n.regex.only)&&RegExp.$2||"all",rules:d.length-1,hasquery:c.indexOf("(")>-1,minw:c.match(n.regex.minw)&&parseFloat(RegExp.$1)+(RegExp.$2||""),maxw:c.match(n.regex.maxw)&&parseFloat(RegExp.$1)+(RegExp.$2||"")})}E()},b=function(){if(r.length){var t=r.shift();o(t.href,function(n){S(n,t.href,t.media),m[t.href]=!0,e.setTimeout(function(){b()},0)})}},w=function(){for(var t=0;t<y.length;t++){var n=y[t],i=n.href,o=n.media,a=n.rel&&"stylesheet"===n.rel.toLowerCase();i&&a&&!m[i]&&(n.styleSheet&&n.styleSheet.rawCssText?(S(n.styleSheet.rawCssText,i,o),m[i]=!0):(!/^([a-zA-Z:]*\/\/)/.test(i)&&!v||i.replace(RegExp.$1,"").split("/")[0]===e.location.host)&&("//"===i.substring(0,2)&&(i=e.location.protocol+i),r.push({href:i,media:o})))}b()};w(),n.update=w,n.getEmValue=x,e.addEventListener?e.addEventListener("resize",t,!1):e.attachEvent&&e.attachEvent("onresize",t)}}(this);
\ No newline at end of file
diff --git a/material/assets/stylesheets/application-02ce7adcc2.palette.css b/material/assets/stylesheets/application-02ce7adcc2.palette.css
new file mode 100644
index 0000000000000000000000000000000000000000..2195a9f4aed7537e9468239eb5136aaef75ec102
--- /dev/null
+++ b/material/assets/stylesheets/application-02ce7adcc2.palette.css
@@ -0,0 +1 @@
+button[data-md-color-accent],button[data-md-color-primary]{width:13rem;margin-bottom:.4rem;padding:2.4rem .8rem .4rem;-webkit-transition:background-color .25s,opacity .25s;transition:background-color .25s,opacity .25s;border-radius:.2rem;color:#fff;font-size:1.28rem;text-align:left;cursor:pointer}button[data-md-color-accent]:hover,button[data-md-color-primary]:hover{opacity:.75}button[data-md-color-primary=red]{background-color:#ef5350}[data-md-color-primary=red] .md-typeset a{color:#ef5350}[data-md-color-primary=red] .md-header{background-color:#ef5350}[data-md-color-primary=red] .md-nav__link--active,[data-md-color-primary=red] .md-nav__link:active{color:#ef5350}button[data-md-color-primary=pink]{background-color:#e91e63}[data-md-color-primary=pink] .md-typeset a{color:#e91e63}[data-md-color-primary=pink] .md-header{background-color:#e91e63}[data-md-color-primary=pink] .md-nav__link--active,[data-md-color-primary=pink] .md-nav__link:active{color:#e91e63}button[data-md-color-primary=purple]{background-color:#ab47bc}[data-md-color-primary=purple] .md-typeset a{color:#ab47bc}[data-md-color-primary=purple] .md-header{background-color:#ab47bc}[data-md-color-primary=purple] .md-nav__link--active,[data-md-color-primary=purple] .md-nav__link:active{color:#ab47bc}button[data-md-color-primary=deep-purple]{background-color:#7e57c2}[data-md-color-primary=deep-purple] .md-typeset a{color:#7e57c2}[data-md-color-primary=deep-purple] .md-header{background-color:#7e57c2}[data-md-color-primary=deep-purple] .md-nav__link--active,[data-md-color-primary=deep-purple] .md-nav__link:active{color:#7e57c2}button[data-md-color-primary=indigo]{background-color:#3f51b5}[data-md-color-primary=indigo] .md-typeset a{color:#3f51b5}[data-md-color-primary=indigo] .md-header{background-color:#3f51b5}[data-md-color-primary=indigo] .md-nav__link--active,[data-md-color-primary=indigo] .md-nav__link:active{color:#3f51b5}button[data-md-color-primary=blue]{background-color:#2196f3}[data-md-color-primary=blue] .md-typeset a{color:#2196f3}[data-md-color-primary=blue] .md-header{background-color:#2196f3}[data-md-color-primary=blue] .md-nav__link--active,[data-md-color-primary=blue] .md-nav__link:active{color:#2196f3}button[data-md-color-primary=light-blue]{background-color:#03a9f4}[data-md-color-primary=light-blue] .md-typeset a{color:#03a9f4}[data-md-color-primary=light-blue] .md-header{background-color:#03a9f4}[data-md-color-primary=light-blue] .md-nav__link--active,[data-md-color-primary=light-blue] .md-nav__link:active{color:#03a9f4}button[data-md-color-primary=cyan]{background-color:#00bcd4}[data-md-color-primary=cyan] .md-typeset a{color:#00bcd4}[data-md-color-primary=cyan] .md-header{background-color:#00bcd4}[data-md-color-primary=cyan] .md-nav__link--active,[data-md-color-primary=cyan] .md-nav__link:active{color:#00bcd4}button[data-md-color-primary=teal]{background-color:#009688}[data-md-color-primary=teal] .md-typeset a{color:#009688}[data-md-color-primary=teal] .md-header{background-color:#009688}[data-md-color-primary=teal] .md-nav__link--active,[data-md-color-primary=teal] .md-nav__link:active{color:#009688}button[data-md-color-primary=green]{background-color:#4caf50}[data-md-color-primary=green] .md-typeset a{color:#4caf50}[data-md-color-primary=green] .md-header{background-color:#4caf50}[data-md-color-primary=green] .md-nav__link--active,[data-md-color-primary=green] .md-nav__link:active{color:#4caf50}button[data-md-color-primary=light-green]{background-color:#7cb342}[data-md-color-primary=light-green] .md-typeset a{color:#7cb342}[data-md-color-primary=light-green] .md-header{background-color:#7cb342}[data-md-color-primary=light-green] .md-nav__link--active,[data-md-color-primary=light-green] .md-nav__link:active{color:#7cb342}button[data-md-color-primary=lime]{background-color:#c0ca33}[data-md-color-primary=lime] .md-typeset a{color:#c0ca33}[data-md-color-primary=lime] .md-header{background-color:#c0ca33}[data-md-color-primary=lime] .md-nav__link--active,[data-md-color-primary=lime] .md-nav__link:active{color:#c0ca33}button[data-md-color-primary=yellow]{background-color:#f9a825}[data-md-color-primary=yellow] .md-typeset a{color:#f9a825}[data-md-color-primary=yellow] .md-header{background-color:#f9a825}[data-md-color-primary=yellow] .md-nav__link--active,[data-md-color-primary=yellow] .md-nav__link:active{color:#f9a825}button[data-md-color-primary=amber]{background-color:#ffb300}[data-md-color-primary=amber] .md-typeset a{color:#ffb300}[data-md-color-primary=amber] .md-header{background-color:#ffb300}[data-md-color-primary=amber] .md-nav__link--active,[data-md-color-primary=amber] .md-nav__link:active{color:#ffb300}button[data-md-color-primary=orange]{background-color:#fb8c00}[data-md-color-primary=orange] .md-typeset a{color:#fb8c00}[data-md-color-primary=orange] .md-header{background-color:#fb8c00}[data-md-color-primary=orange] .md-nav__link--active,[data-md-color-primary=orange] .md-nav__link:active{color:#fb8c00}button[data-md-color-primary=deep-orange]{background-color:#ff7043}[data-md-color-primary=deep-orange] .md-typeset a{color:#ff7043}[data-md-color-primary=deep-orange] .md-header{background-color:#ff7043}[data-md-color-primary=deep-orange] .md-nav__link--active,[data-md-color-primary=deep-orange] .md-nav__link:active{color:#ff7043}button[data-md-color-primary=brown]{background-color:#795548}[data-md-color-primary=brown] .md-typeset a{color:#795548}[data-md-color-primary=brown] .md-header{background-color:#795548}[data-md-color-primary=brown] .md-nav__link--active,[data-md-color-primary=brown] .md-nav__link:active{color:#795548}button[data-md-color-primary=grey]{background-color:#757575}[data-md-color-primary=grey] .md-typeset a{color:#757575}[data-md-color-primary=grey] .md-header{background-color:#757575}[data-md-color-primary=grey] .md-nav__link--active,[data-md-color-primary=grey] .md-nav__link:active{color:#757575}button[data-md-color-primary=blue-grey]{background-color:#546e7a}[data-md-color-primary=blue-grey] .md-typeset a{color:#546e7a}[data-md-color-primary=blue-grey] .md-header{background-color:#546e7a}[data-md-color-primary=blue-grey] .md-nav__link--active,[data-md-color-primary=blue-grey] .md-nav__link:active{color:#546e7a}button[data-md-color-accent=red]{background-color:#ff1744}[data-md-color-accent=red] .md-typeset a:active,[data-md-color-accent=red] .md-typeset a:hover{color:#ff1744}[data-md-color-accent=red] .md-typeset .codehilite::-webkit-scrollbar-thumb:hover,[data-md-color-accent=red] .md-typeset pre::-webkit-scrollbar-thumb:hover{background-color:#ff1744}[data-md-color-accent=red] .md-nav__link:hover,[data-md-color-accent=red] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=red] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=red] .md-typeset [id] .headerlink:focus,[data-md-color-accent=red] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=red] .md-typeset [id]:target .headerlink{color:#ff1744}[data-md-color-accent=red] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#ff1744}[data-md-color-accent=red] .md-search-result__link:hover{background-color:rgba(255,23,68,.1)}[data-md-color-accent=red] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#ff1744}button[data-md-color-accent=pink]{background-color:#f50057}[data-md-color-accent=pink] .md-typeset a:active,[data-md-color-accent=pink] .md-typeset a:hover{color:#f50057}[data-md-color-accent=pink] .md-typeset .codehilite::-webkit-scrollbar-thumb:hover,[data-md-color-accent=pink] .md-typeset pre::-webkit-scrollbar-thumb:hover{background-color:#f50057}[data-md-color-accent=pink] .md-nav__link:hover,[data-md-color-accent=pink] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=pink] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=pink] .md-typeset [id] .headerlink:focus,[data-md-color-accent=pink] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=pink] .md-typeset [id]:target .headerlink{color:#f50057}[data-md-color-accent=pink] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#f50057}[data-md-color-accent=pink] .md-search-result__link:hover{background-color:rgba(245,0,87,.1)}[data-md-color-accent=pink] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#f50057}button[data-md-color-accent=purple]{background-color:#e040fb}[data-md-color-accent=purple] .md-typeset a:active,[data-md-color-accent=purple] .md-typeset a:hover{color:#e040fb}[data-md-color-accent=purple] .md-typeset .codehilite::-webkit-scrollbar-thumb:hover,[data-md-color-accent=purple] .md-typeset pre::-webkit-scrollbar-thumb:hover{background-color:#e040fb}[data-md-color-accent=purple] .md-nav__link:hover,[data-md-color-accent=purple] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=purple] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=purple] .md-typeset [id] .headerlink:focus,[data-md-color-accent=purple] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=purple] .md-typeset [id]:target .headerlink{color:#e040fb}[data-md-color-accent=purple] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#e040fb}[data-md-color-accent=purple] .md-search-result__link:hover{background-color:rgba(224,64,251,.1)}[data-md-color-accent=purple] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#e040fb}button[data-md-color-accent=deep-purple]{background-color:#7c4dff}[data-md-color-accent=deep-purple] .md-typeset a:active,[data-md-color-accent=deep-purple] .md-typeset a:hover{color:#7c4dff}[data-md-color-accent=deep-purple] .md-typeset .codehilite::-webkit-scrollbar-thumb:hover,[data-md-color-accent=deep-purple] .md-typeset pre::-webkit-scrollbar-thumb:hover{background-color:#7c4dff}[data-md-color-accent=deep-purple] .md-nav__link:hover,[data-md-color-accent=deep-purple] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=deep-purple] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=deep-purple] .md-typeset [id] .headerlink:focus,[data-md-color-accent=deep-purple] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=deep-purple] .md-typeset [id]:target .headerlink{color:#7c4dff}[data-md-color-accent=deep-purple] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#7c4dff}[data-md-color-accent=deep-purple] .md-search-result__link:hover{background-color:rgba(124,77,255,.1)}[data-md-color-accent=deep-purple] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#7c4dff}button[data-md-color-accent=indigo]{background-color:#536dfe}[data-md-color-accent=indigo] .md-typeset a:active,[data-md-color-accent=indigo] .md-typeset a:hover{color:#536dfe}[data-md-color-accent=indigo] .md-typeset .codehilite::-webkit-scrollbar-thumb:hover,[data-md-color-accent=indigo] .md-typeset pre::-webkit-scrollbar-thumb:hover{background-color:#536dfe}[data-md-color-accent=indigo] .md-nav__link:hover,[data-md-color-accent=indigo] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=indigo] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=indigo] .md-typeset [id] .headerlink:focus,[data-md-color-accent=indigo] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=indigo] .md-typeset [id]:target .headerlink{color:#536dfe}[data-md-color-accent=indigo] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#536dfe}[data-md-color-accent=indigo] .md-search-result__link:hover{background-color:rgba(83,109,254,.1)}[data-md-color-accent=indigo] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#536dfe}button[data-md-color-accent=blue]{background-color:#448aff}[data-md-color-accent=blue] .md-typeset a:active,[data-md-color-accent=blue] .md-typeset a:hover{color:#448aff}[data-md-color-accent=blue] .md-typeset .codehilite::-webkit-scrollbar-thumb:hover,[data-md-color-accent=blue] .md-typeset pre::-webkit-scrollbar-thumb:hover{background-color:#448aff}[data-md-color-accent=blue] .md-nav__link:hover,[data-md-color-accent=blue] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=blue] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=blue] .md-typeset [id] .headerlink:focus,[data-md-color-accent=blue] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=blue] .md-typeset [id]:target .headerlink{color:#448aff}[data-md-color-accent=blue] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#448aff}[data-md-color-accent=blue] .md-search-result__link:hover{background-color:rgba(68,138,255,.1)}[data-md-color-accent=blue] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#448aff}button[data-md-color-accent=light-blue]{background-color:#0091ea}[data-md-color-accent=light-blue] .md-typeset a:active,[data-md-color-accent=light-blue] .md-typeset a:hover{color:#0091ea}[data-md-color-accent=light-blue] .md-typeset .codehilite::-webkit-scrollbar-thumb:hover,[data-md-color-accent=light-blue] .md-typeset pre::-webkit-scrollbar-thumb:hover{background-color:#0091ea}[data-md-color-accent=light-blue] .md-nav__link:hover,[data-md-color-accent=light-blue] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=light-blue] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=light-blue] .md-typeset [id] .headerlink:focus,[data-md-color-accent=light-blue] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=light-blue] .md-typeset [id]:target .headerlink{color:#0091ea}[data-md-color-accent=light-blue] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#0091ea}[data-md-color-accent=light-blue] .md-search-result__link:hover{background-color:rgba(0,145,234,.1)}[data-md-color-accent=light-blue] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#0091ea}button[data-md-color-accent=cyan]{background-color:#00b8d4}[data-md-color-accent=cyan] .md-typeset a:active,[data-md-color-accent=cyan] .md-typeset a:hover{color:#00b8d4}[data-md-color-accent=cyan] .md-typeset .codehilite::-webkit-scrollbar-thumb:hover,[data-md-color-accent=cyan] .md-typeset pre::-webkit-scrollbar-thumb:hover{background-color:#00b8d4}[data-md-color-accent=cyan] .md-nav__link:hover,[data-md-color-accent=cyan] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=cyan] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=cyan] .md-typeset [id] .headerlink:focus,[data-md-color-accent=cyan] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=cyan] .md-typeset [id]:target .headerlink{color:#00b8d4}[data-md-color-accent=cyan] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#00b8d4}[data-md-color-accent=cyan] .md-search-result__link:hover{background-color:rgba(0,184,212,.1)}[data-md-color-accent=cyan] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#00b8d4}button[data-md-color-accent=teal]{background-color:#00bfa5}[data-md-color-accent=teal] .md-typeset a:active,[data-md-color-accent=teal] .md-typeset a:hover{color:#00bfa5}[data-md-color-accent=teal] .md-typeset .codehilite::-webkit-scrollbar-thumb:hover,[data-md-color-accent=teal] .md-typeset pre::-webkit-scrollbar-thumb:hover{background-color:#00bfa5}[data-md-color-accent=teal] .md-nav__link:hover,[data-md-color-accent=teal] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=teal] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=teal] .md-typeset [id] .headerlink:focus,[data-md-color-accent=teal] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=teal] .md-typeset [id]:target .headerlink{color:#00bfa5}[data-md-color-accent=teal] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#00bfa5}[data-md-color-accent=teal] .md-search-result__link:hover{background-color:rgba(0,191,165,.1)}[data-md-color-accent=teal] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#00bfa5}button[data-md-color-accent=green]{background-color:#00c853}[data-md-color-accent=green] .md-typeset a:active,[data-md-color-accent=green] .md-typeset a:hover{color:#00c853}[data-md-color-accent=green] .md-typeset .codehilite::-webkit-scrollbar-thumb:hover,[data-md-color-accent=green] .md-typeset pre::-webkit-scrollbar-thumb:hover{background-color:#00c853}[data-md-color-accent=green] .md-nav__link:hover,[data-md-color-accent=green] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=green] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=green] .md-typeset [id] .headerlink:focus,[data-md-color-accent=green] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=green] .md-typeset [id]:target .headerlink{color:#00c853}[data-md-color-accent=green] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#00c853}[data-md-color-accent=green] .md-search-result__link:hover{background-color:rgba(0,200,83,.1)}[data-md-color-accent=green] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#00c853}button[data-md-color-accent=light-green]{background-color:#64dd17}[data-md-color-accent=light-green] .md-typeset a:active,[data-md-color-accent=light-green] .md-typeset a:hover{color:#64dd17}[data-md-color-accent=light-green] .md-typeset .codehilite::-webkit-scrollbar-thumb:hover,[data-md-color-accent=light-green] .md-typeset pre::-webkit-scrollbar-thumb:hover{background-color:#64dd17}[data-md-color-accent=light-green] .md-nav__link:hover,[data-md-color-accent=light-green] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=light-green] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=light-green] .md-typeset [id] .headerlink:focus,[data-md-color-accent=light-green] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=light-green] .md-typeset [id]:target .headerlink{color:#64dd17}[data-md-color-accent=light-green] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#64dd17}[data-md-color-accent=light-green] .md-search-result__link:hover{background-color:rgba(100,221,23,.1)}[data-md-color-accent=light-green] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#64dd17}button[data-md-color-accent=lime]{background-color:#aeea00}[data-md-color-accent=lime] .md-typeset a:active,[data-md-color-accent=lime] .md-typeset a:hover{color:#aeea00}[data-md-color-accent=lime] .md-typeset .codehilite::-webkit-scrollbar-thumb:hover,[data-md-color-accent=lime] .md-typeset pre::-webkit-scrollbar-thumb:hover{background-color:#aeea00}[data-md-color-accent=lime] .md-nav__link:hover,[data-md-color-accent=lime] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=lime] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=lime] .md-typeset [id] .headerlink:focus,[data-md-color-accent=lime] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=lime] .md-typeset [id]:target .headerlink{color:#aeea00}[data-md-color-accent=lime] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#aeea00}[data-md-color-accent=lime] .md-search-result__link:hover{background-color:rgba(174,234,0,.1)}[data-md-color-accent=lime] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#aeea00}button[data-md-color-accent=yellow]{background-color:#ffd600}[data-md-color-accent=yellow] .md-typeset a:active,[data-md-color-accent=yellow] .md-typeset a:hover{color:#ffd600}[data-md-color-accent=yellow] .md-typeset .codehilite::-webkit-scrollbar-thumb:hover,[data-md-color-accent=yellow] .md-typeset pre::-webkit-scrollbar-thumb:hover{background-color:#ffd600}[data-md-color-accent=yellow] .md-nav__link:hover,[data-md-color-accent=yellow] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=yellow] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=yellow] .md-typeset [id] .headerlink:focus,[data-md-color-accent=yellow] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=yellow] .md-typeset [id]:target .headerlink{color:#ffd600}[data-md-color-accent=yellow] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#ffd600}[data-md-color-accent=yellow] .md-search-result__link:hover{background-color:rgba(255,214,0,.1)}[data-md-color-accent=yellow] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#ffd600}button[data-md-color-accent=amber]{background-color:#ffab00}[data-md-color-accent=amber] .md-typeset a:active,[data-md-color-accent=amber] .md-typeset a:hover{color:#ffab00}[data-md-color-accent=amber] .md-typeset .codehilite::-webkit-scrollbar-thumb:hover,[data-md-color-accent=amber] .md-typeset pre::-webkit-scrollbar-thumb:hover{background-color:#ffab00}[data-md-color-accent=amber] .md-nav__link:hover,[data-md-color-accent=amber] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=amber] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=amber] .md-typeset [id] .headerlink:focus,[data-md-color-accent=amber] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=amber] .md-typeset [id]:target .headerlink{color:#ffab00}[data-md-color-accent=amber] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#ffab00}[data-md-color-accent=amber] .md-search-result__link:hover{background-color:rgba(255,171,0,.1)}[data-md-color-accent=amber] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#ffab00}button[data-md-color-accent=orange]{background-color:#ff9100}[data-md-color-accent=orange] .md-typeset a:active,[data-md-color-accent=orange] .md-typeset a:hover{color:#ff9100}[data-md-color-accent=orange] .md-typeset .codehilite::-webkit-scrollbar-thumb:hover,[data-md-color-accent=orange] .md-typeset pre::-webkit-scrollbar-thumb:hover{background-color:#ff9100}[data-md-color-accent=orange] .md-nav__link:hover,[data-md-color-accent=orange] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=orange] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=orange] .md-typeset [id] .headerlink:focus,[data-md-color-accent=orange] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=orange] .md-typeset [id]:target .headerlink{color:#ff9100}[data-md-color-accent=orange] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#ff9100}[data-md-color-accent=orange] .md-search-result__link:hover{background-color:rgba(255,145,0,.1)}[data-md-color-accent=orange] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#ff9100}button[data-md-color-accent=deep-orange]{background-color:#ff6e40}[data-md-color-accent=deep-orange] .md-typeset a:active,[data-md-color-accent=deep-orange] .md-typeset a:hover{color:#ff6e40}[data-md-color-accent=deep-orange] .md-typeset .codehilite::-webkit-scrollbar-thumb:hover,[data-md-color-accent=deep-orange] .md-typeset pre::-webkit-scrollbar-thumb:hover{background-color:#ff6e40}[data-md-color-accent=deep-orange] .md-nav__link:hover,[data-md-color-accent=deep-orange] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=deep-orange] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=deep-orange] .md-typeset [id] .headerlink:focus,[data-md-color-accent=deep-orange] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=deep-orange] .md-typeset [id]:target .headerlink{color:#ff6e40}[data-md-color-accent=deep-orange] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#ff6e40}[data-md-color-accent=deep-orange] .md-search-result__link:hover{background-color:rgba(255,110,64,.1)}[data-md-color-accent=deep-orange] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#ff6e40}@media only screen and (max-width:59.9375em){[data-md-color-primary=red] .md-nav__source{background-color:rgba(190,66,64,.9675)}[data-md-color-primary=pink] .md-nav__source{background-color:rgba(185,24,79,.9675)}[data-md-color-primary=purple] .md-nav__source{background-color:rgba(136,57,150,.9675)}[data-md-color-primary=deep-purple] .md-nav__source{background-color:rgba(100,69,154,.9675)}[data-md-color-primary=indigo] .md-nav__source{background-color:rgba(50,64,144,.9675)}[data-md-color-primary=blue] .md-nav__source{background-color:rgba(26,119,193,.9675)}[data-md-color-primary=light-blue] .md-nav__source{background-color:rgba(2,134,194,.9675)}[data-md-color-primary=cyan] .md-nav__source{background-color:rgba(0,150,169,.9675)}[data-md-color-primary=teal] .md-nav__source{background-color:rgba(0,119,108,.9675)}[data-md-color-primary=green] .md-nav__source{background-color:rgba(60,139,64,.9675)}[data-md-color-primary=light-green] .md-nav__source{background-color:rgba(99,142,53,.9675)}[data-md-color-primary=lime] .md-nav__source{background-color:rgba(153,161,41,.9675)}[data-md-color-primary=yellow] .md-nav__source{background-color:rgba(198,134,29,.9675)}[data-md-color-primary=amber] .md-nav__source{background-color:rgba(203,142,0,.9675)}[data-md-color-primary=orange] .md-nav__source{background-color:rgba(200,111,0,.9675)}[data-md-color-primary=deep-orange] .md-nav__source{background-color:rgba(203,89,53,.9675)}[data-md-color-primary=brown] .md-nav__source{background-color:rgba(96,68,57,.9675)}[data-md-color-primary=grey] .md-nav__source{background-color:rgba(93,93,93,.9675)}[data-md-color-primary=blue-grey] .md-nav__source{background-color:rgba(67,88,97,.9675)}}@media only screen and (max-width:76.1875em){html [data-md-color-primary=red] .md-nav--primary .md-nav__title--site{background-color:#ef5350}html [data-md-color-primary=pink] .md-nav--primary .md-nav__title--site{background-color:#e91e63}html [data-md-color-primary=purple] .md-nav--primary .md-nav__title--site{background-color:#ab47bc}html [data-md-color-primary=deep-purple] .md-nav--primary .md-nav__title--site{background-color:#7e57c2}html [data-md-color-primary=indigo] .md-nav--primary .md-nav__title--site{background-color:#3f51b5}html [data-md-color-primary=blue] .md-nav--primary .md-nav__title--site{background-color:#2196f3}html [data-md-color-primary=light-blue] .md-nav--primary .md-nav__title--site{background-color:#03a9f4}html [data-md-color-primary=cyan] .md-nav--primary .md-nav__title--site{background-color:#00bcd4}html [data-md-color-primary=teal] .md-nav--primary .md-nav__title--site{background-color:#009688}html [data-md-color-primary=green] .md-nav--primary .md-nav__title--site{background-color:#4caf50}html [data-md-color-primary=light-green] .md-nav--primary .md-nav__title--site{background-color:#7cb342}html [data-md-color-primary=lime] .md-nav--primary .md-nav__title--site{background-color:#c0ca33}html [data-md-color-primary=yellow] .md-nav--primary .md-nav__title--site{background-color:#f9a825}html [data-md-color-primary=amber] .md-nav--primary .md-nav__title--site{background-color:#ffb300}html [data-md-color-primary=orange] .md-nav--primary .md-nav__title--site{background-color:#fb8c00}html [data-md-color-primary=deep-orange] .md-nav--primary .md-nav__title--site{background-color:#ff7043}html [data-md-color-primary=brown] .md-nav--primary .md-nav__title--site{background-color:#795548}html [data-md-color-primary=grey] .md-nav--primary .md-nav__title--site{background-color:#757575}html [data-md-color-primary=blue-grey] .md-nav--primary .md-nav__title--site{background-color:#546e7a}}@media only screen and (min-width:60em){[data-md-color-primary=red] .md-nav--secondary{border-left:.4rem solid #ef5350}[data-md-color-primary=pink] .md-nav--secondary{border-left:.4rem solid #e91e63}[data-md-color-primary=purple] .md-nav--secondary{border-left:.4rem solid #ab47bc}[data-md-color-primary=deep-purple] .md-nav--secondary{border-left:.4rem solid #7e57c2}[data-md-color-primary=indigo] .md-nav--secondary{border-left:.4rem solid #3f51b5}[data-md-color-primary=blue] .md-nav--secondary{border-left:.4rem solid #2196f3}[data-md-color-primary=light-blue] .md-nav--secondary{border-left:.4rem solid #03a9f4}[data-md-color-primary=cyan] .md-nav--secondary{border-left:.4rem solid #00bcd4}[data-md-color-primary=teal] .md-nav--secondary{border-left:.4rem solid #009688}[data-md-color-primary=green] .md-nav--secondary{border-left:.4rem solid #4caf50}[data-md-color-primary=light-green] .md-nav--secondary{border-left:.4rem solid #7cb342}[data-md-color-primary=lime] .md-nav--secondary{border-left:.4rem solid #c0ca33}[data-md-color-primary=yellow] .md-nav--secondary{border-left:.4rem solid #f9a825}[data-md-color-primary=amber] .md-nav--secondary{border-left:.4rem solid #ffb300}[data-md-color-primary=orange] .md-nav--secondary{border-left:.4rem solid #fb8c00}[data-md-color-primary=deep-orange] .md-nav--secondary{border-left:.4rem solid #ff7043}[data-md-color-primary=brown] .md-nav--secondary{border-left:.4rem solid #795548}[data-md-color-primary=grey] .md-nav--secondary{border-left:.4rem solid #757575}[data-md-color-primary=blue-grey] .md-nav--secondary{border-left:.4rem solid #546e7a}}
\ No newline at end of file
diff --git a/material/assets/stylesheets/application-a422ff04cc.css b/material/assets/stylesheets/application-a422ff04cc.css
deleted file mode 100644
index 05098d411a72ae9094cd0e341cad55505437114b..0000000000000000000000000000000000000000
--- a/material/assets/stylesheets/application-a422ff04cc.css
+++ /dev/null
@@ -1,1249 +0,0 @@
-html {
-    box-sizing: border-box;
-    -moz-box-sizing: border-box;
-    -webkit-box-sizing: border-box;
-}
-*, :after, :before {
-    box-sizing: inherit;
-    -moz-box-sizing: inherit;
-    -webkit-box-sizing: inherit;
-}
-html {
-    font-size: 62.5%;
-    -webkit-text-size-adjust: none;
-    -ms-text-size-adjust: none;
-    text-size-adjust: none;
-}
-a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, main, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
-    margin: 0;
-    padding: 0;
-    border: 0;
-}
-main {
-    display: block;
-}
-ul {
-    list-style: none;
-}
-table {
-    border-collapse: collapse;
-    border-spacing: 0;
-}
-td {
-    text-align: left;
-    font-weight: 400;
-    vertical-align: middle;
-}
-button {
-    outline: 0;
-    padding: 0;
-    background: transparent;
-    border: none;
-    font-size: inherit;
-}
-input {
-    -webkit-appearance: none;
-    -moz-appearance: none;
-    -ms-appearance: none;
-    -o-appearance: none;
-    appearance: none;
-    outline: none;
-    border: none;
-}
-a {
-    text-decoration: none;
-    color: inherit;
-}
-a, button, input, label {
-    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
-    -webkit-tap-highlight-color: transparent;
-}
-h1, h2, h3, h4, h5, h6 {
-    font-weight: inherit;
-}
-pre {
-    background: rgba(0, 0, 0, .05);
-}
-pre, pre code {
-    color: rgba(0, 0, 0, .87);
-}
-.c, .c1, .cm, .o {
-    color: rgba(0, 0, 0, .54);
-}
-.k, .kn {
-    color: #a71d5d;
-}
-.kd, .kt {
-    color: #0086b3;
-}
-.n.f, .nf {
-    color: #795da3;
-}
-.nx {
-    color: #0086b3;
-}
-.s, .s1 {
-    color: #183691;
-}
-.bp, .mi {
-    color: #9575cd;
-}
-.icon {
-    font-family: Icon;
-    speak: none;
-    font-style: normal;
-    font-weight: 400;
-    font-variant: normal;
-    text-transform: none;
-    line-height: 1;
-    -webkit-font-smoothing: antialiased;
-    -moz-osx-font-smoothing: grayscale;
-}
-.icon-search:before {
-    content: "\e600"}
-.icon-back:before {
-    content: "\e601"}
-.icon-link:before {
-    content: "\e602"}
-.icon-close:before {
-    content: "\e603"}
-.icon-menu:before {
-    content: "\e604"}
-.icon-forward:before {
-    content: "\e605"}
-.icon-twitter:before {
-    content: "\e606"}
-.icon-github:before {
-    content: "\e607"}
-.icon-download:before {
-    content: "\e608"}
-.icon-star:before {
-    content: "\e609"}
-.icon-warning:before {
-    content: "\e610"}
-.icon-note:before {
-    content: "\e611"}
-a {
-    -webkit-transition: color .25s;
-    transition: color .25s;
-}
-.overlay {
-    -webkit-transition: opacity .25s, width 0s .25s, height 0s .25s;
-    transition: opacity .25s, width 0s .25s, height 0s .25s;
-}
-#toggle-drawer:checked~.overlay, .toggle-drawer .overlay {
-    -webkit-transition: opacity .25s, width 0s, height 0s;
-    transition: opacity .25s, width 0s, height 0s;
-}
-.js .header {
-    -webkit-transition: background .6s, color .6s;
-    transition: background .6s, color .6s;
-}
-.js .header:before {
-    -webkit-transition: background .6s;
-    transition: background .6s;
-}
-.button .icon {
-    -webkit-transition: background .25s;
-    transition: background .25s;
-}
-body {
-    color: rgba(0, 0, 0, .87);
-}
-@supports (-webkit-appearance:none) {
-    body {
-    background: #e84e40;
-}
-}.ios body {
-    background: #fff;
-}
-hr {
-    border: 0;
-    border-top: 1px solid rgba(0, 0, 0, .12);
-}
-.toggle-button {
-    cursor: pointer;
-    color: inherit;
-}
-.backdrop, .backdrop-paper:after {
-    background: #fff;
-}
-.overlay {
-    background: rgba(0, 0, 0, .54);
-    opacity: 0;
-}
-#toggle-drawer:checked~.overlay, .toggle-drawer .overlay {
-    opacity: 1;
-}
-.header {
-    box-shadow: 0 1.5px 3px rgba(0, 0, 0, .24), 0 3px 8px rgba(0, 0, 0, .05);
-    background: #e84e40;
-    color: #fff;
-}
-.ios.standalone .header:before {
-    background: rgba(0, 0, 0, .12);
-}
-.bar .path {
-    color: hsla(0, 0%, 100%, .7);
-}
-.button .icon {
-    border-radius: 100%}
-.button .icon:active {
-    background: hsla(0, 0%, 100%, .12);
-}
-html {
-    height: 100%}
-body {
-    position: relative;
-    min-height: 100%}
-hr {
-    display: block;
-    height: 1px;
-    padding: 0;
-    margin: 0;
-}
-.locked {
-    height: 100%;
-    overflow: hidden;
-}
-.scrollable {
-    position: absolute;
-    top: 0;
-    right: 0;
-    bottom: 0;
-    left: 0;
-    overflow: auto;
-    -webkit-overflow-scrolling: touch;
-}
-.scrollable .wrapper {
-    height: 100%}
-.ios .scrollable .wrapper {
-    margin-bottom: 2px;
-}
-.toggle {
-    display: none;
-}
-.toggle-button {
-    display: block;
-}
-.backdrop {
-    position: absolute;
-    top: 0;
-    right: 0;
-    bottom: 0;
-    left: 0;
-    z-index: -1;
-}
-.backdrop-paper {
-    max-width: 1200px;
-    height: 100%;
-    margin-left: auto;
-    margin-right: auto;
-}
-.backdrop-paper:after {
-    content: " ";
-    display: block;
-    height: 100%;
-    margin-left: 262px;
-}
-.overlay {
-    width: 0;
-    height: 0;
-    z-index: 3;
-}
-.header, .overlay {
-    position: fixed;
-    top: 0;
-}
-.header {
-    -webkit-user-select: none;
-    -moz-user-select: none;
-    -ms-user-select: none;
-    user-select: none;
-    left: 0;
-    z-index: 2;
-    height: 56px;
-    padding: 4px;
-    overflow: hidden;
-}
-.ios.standalone .header {
-    position: absolute;
-}
-.bar {
-    display: table;
-    max-width: 1184px;
-    margin-left: auto;
-    margin-right: auto;
-}
-.bar a {
-    display: block;
-}
-.no-js .bar .button-search {
-    display: none;
-}
-.bar .path .icon:before {
-    vertical-align: -1.5px;
-}
-.button {
-    display: table-cell;
-    vertical-align: top;
-    width: 1%}
-.button button {
-    margin: 0;
-    padding: 0;
-}
-.button button:active:before {
-    position: relative;
-    top: 0;
-    left: 0;
-}
-.button .icon {
-    display: inline-block;
-    font-size: 24px;
-    padding: 8px;
-    margin: 4px;
-}
-.stretch {
-    display: table;
-    table-layout: fixed;
-    width: 100%}
-.header .stretch {
-    padding: 0 20px;
-}
-.stretch .title {
-    display: table-cell;
-    overflow: hidden;
-    white-space: nowrap;
-    text-overflow: ellipsis;
-}
-.header .stretch .title {
-    font-size: 18px;
-    padding: 13px 0;
-}
-.main {
-    max-width: 1200px;
-    margin-left: auto;
-    margin-right: auto;
-}
-body, input {
-    font-weight: 400;
-    -webkit-font-smoothing: antialiased;
-    -moz-osx-font-smoothing: grayscale;
-}
-.no-fontface body, .no-fontface input, body, input {
-    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
-}
-.no-fontface code, .no-fontface kbd, .no-fontface pre, code, kbd, pre {
-    font-family: Courier New, Courier, monospace;
-}
-#toggle-drawer:checked~.main .drawer, .toggle-drawer .drawer {
-    -webkit-transform: translateZ(0);
-    transform: translateZ(0);
-}
-.no-csstransforms3d #toggle-drawer:checked~.main .drawer, .no-csstransforms3d .toggle-drawer .drawer {
-    display: block;
-}
-.project {
-    -webkit-transition: none;
-    transition: none;
-}
-.project .logo img {
-    -webkit-transition: box-shadow .4s;
-    transition: box-shadow .4s;
-}
-.repo a {
-    -webkit-transition: box-shadow .4s, opacity .4s;
-    transition: box-shadow .4s, opacity .4s;
-}
-.drawer .toc a.current, .drawer .toc a:focus, .drawer .toc a:hover {
-    color: #e84e40;
-}
-.drawer .anchor a {
-    border-left: 2px solid #e84e40;
-}
-.drawer .section {
-    color: rgba(0, 0, 0, .54);
-}
-.ios.standalone .project:before {
-    background: rgba(0, 0, 0, .12);
-}
-.project .logo img {
-    background: #fff;
-    border-radius: 100%}
-.project:focus .logo img, .project:hover .logo img {
-    box-shadow: 0 4px 7px rgba(0, 0, 0, .23), 0 8px 25px rgba(0, 0, 0, .05);
-}
-.repo a {
-    background: #00bfa5;
-    color: #fff;
-    border-radius: 3px;
-}
-.repo a:focus, .repo a:hover {
-    box-shadow: 0 4px 7px rgba(0, 0, 0, .23), 0 8px 25px rgba(0, 0, 0, .05);
-    opacity: .8;
-}
-.repo a .count {
-    background: rgba(0, 0, 0, .26);
-    color: #fff;
-    border-radius: 0 3px 3px 0;
-}
-.repo a .count:before {
-    border-width: 15px 5px 15px 0;
-    border-color: transparent rgba(0, 0, 0, .26);
-    border-style: solid;
-}
-.drawer {
-    width: 262px;
-    font-size: 13px;
-    line-height: 1em;
-}
-.ios .drawer {
-    overflow: scroll;
-    -webkit-overflow-scrolling: touch;
-}
-.drawer .toc li a {
-    display: block;
-    padding: 14.5px 24px;
-    white-space: nowrap;
-    overflow: hidden;
-    text-overflow: ellipsis;
-}
-.drawer .toc li.anchor a {
-    margin-left: 12px;
-    padding: 10px 24px 10px 12px;
-}
-.drawer .toc li ul {
-    margin-left: 12px;
-}
-.drawer .current+ul {
-    margin-bottom: 9px;
-}
-.drawer .section {
-    display: block;
-    padding: 14.5px 24px;
-}
-.drawer .scrollable {
-    top: 0px;
-    z-index: -1;
-}
-.drawer .scrollable .wrapper {
-    height: auto;
-    min-height: 100%}
-.drawer .scrollable .wrapper hr {
-    margin: 12px 0;
-    margin-right: auto;
-}
-.drawer .scrollable .wrapper .toc {
-    margin: 12px 0;
-}
-.project {
-    display: block;
-}
-.project .banner {
-    display: table;
-    width: 100%;
-    height: 104px;
-    padding: 20px;
-}
-.project .logo {
-    display: table-cell;
-    width: 64px;
-    padding-right: 12px;
-}
-.project .logo img {
-    display: block;
-    width: 64px;
-    height: 64px;
-}
-.project .name {
-    display: table-cell;
-    padding-left: 4px;
-    font-size: 14px;
-    line-height: 1.25em;
-    vertical-align: middle;
-}
-.project .logo+.name {
-    font-size: 12px;
-}
-.repo {
-    margin: 24px 0;
-    text-align: center;
-}
-.repo li {
-    display: inline-block;
-    padding-right: 12px;
-    white-space: nowrap;
-}
-.repo li:last-child {
-    padding-right: 0;
-}
-.repo a {
-    display: inline-block;
-    padding: 0 10px 0 6px;
-    font-size: 12px;
-    line-height: 30px;
-    height: 30px;
-}
-.repo a .icon {
-    font-size: 18px;
-    vertical-align: -3px;
-}
-.repo a .count {
-    display: inline-block;
-    position: relative;
-    padding: 0 8px 0 4px;
-    margin: 0 -10px 0 8px;
-    font-size: 12px;
-}
-.repo a .count:before {
-    content: " ";
-    display: block;
-    position: absolute;
-    top: 0;
-    left: -5px;
-}
-.no-js .repo a .count {
-    display: none;
-}
-.drawer .toc li a {
-    font-weight: 700;
-}
-.drawer .toc li.anchor a {
-    font-weight: 400;
-}
-.drawer .section, .repo a {
-    font-weight: 700;
-}
-.repo a {
-    text-transform: uppercase;
-}
-.repo a .count {
-    text-transform: none;
-    font-weight: 700;
-}
-pre span {
-    -webkit-transition: color .25s;
-    transition: color .25s;
-}
-.copyright a {
-    -webkit-transition: color .25s;
-    transition: color .25s;
-}
-.ios.standalone .article {
-    background: -webkit-linear-gradient(top, #fff 50%, #e84e40 0);
-    background: linear-gradient(180deg, #fff 50%, #e84e40 0);
-}
-.ios.standalone .article .wrapper {
-    background: -webkit-linear-gradient(top, #fff 50%, #fff 0);
-    background: linear-gradient(180deg, #fff 50%, #fff 0);
-}
-.article a, .article h1, .article h2 {
-    color: #e84e40;
-}
-/* .article code {
-    background: #eee;
-} */
-.article kbd {
-    color: #555;
-    background-color: #fcfcfc;
-    border: 1px solid #ccc;
-    border-bottom-color: #bbb;
-    border-radius: 3px;
-    box-shadow: inset 0 -1px 0 #bbb;
-}
-.article h1 {
-    border-bottom: 1px solid rgba(0, 0, 0, .12);
-}
-.article a {
-    border-bottom: 1px dotted;
-}
-.article a:focus, .article a:hover {
-    color: #00bfa5;
-}
-.article .headerlink {
-    color: rgba(0, 0, 0, .26);
-    border: none;
-}
-.article table {
-    box-shadow: 0 1.5px 3px rgba(0, 0, 0, .24), 0 3px 8px rgba(0, 0, 0, .05);
-    border-radius: 3px;
-}
-.article table th {
-    background: #ee7a70;
-    color: #fff;
-}
-.article table td {
-    border-top: 1px solid rgba(0, 0, 0, .05);
-}
-.article blockquote {
-    border-left: 2px solid rgba(0, 0, 0, .54);
-    color: rgba(0, 0, 0, .54);
-}
-.footer {
-    background: #e84e40;
-    color: #fff;
-}
-.footer a {
-    border: none;
-}
-.copyright {
-    color: rgba(0, 0, 0, .54);
-}
-.pagination a .button, .pagination a .title {
-    color: #fff;
-}
-.pagination .direction {
-    color: hsla(0, 0%, 100%, .7);
-}
-.admonition {
-    background: #e8eaf6;
-    color: rgba(0, 0, 0, .87);
-}
-.admonition pre {
-    background: hsla(0, 0%, 100%, .3);
-}
-.admonition.warning {
-    background: #ffebee;
-}
-.admonition a, .admonition a:hover {
-    color: #fff;
-}
-.article {
-    font-size: 14px;
-    line-height: 1.7em;
-}
-.article:after {
-    content: " ";
-    display: block;
-    clear: both;
-}
-.article .wrapper {
-    padding: 80px 16px 92px;
-}
-.ios.standalone .article {
-    position: absolute;
-    top: 56px;
-    right: 0;
-    bottom: 0;
-    left: 0;
-    overflow: auto;
-    -webkit-overflow-scrolling: touch;
-}
-.ios.standalone .article .wrapper {
-    position: relative;
-    min-height: 100%;
-    padding-top: 60px;
-    margin-bottom: 2px;
-}
-.article h1 {
-    font-size: 24px;
-    line-height: 1.333334em;
-    padding: 20px 0 42px;
-}
-.article h2 {
-    font-size: 20px;
-    line-height: 1.4em;
-    padding-top: 92px;
-    margin-top: -56px;
-}
-.ios.standalone .article h2 {
-    padding-top: 36px;
-    margin: 0;
-}
-.article h3, .article h4 {
-    font-size: 14px;
-    padding-top: 76px;
-    margin-top: -56px;
-}
-.ios.standalone .article h3, .ios.standalone .article h4 {
-    padding-top: 20px;
-    margin-top: 0;
-}
-.article .headerlink {
-    float: right;
-    margin-left: 20px;
-    font-size: 14px;
-}
-h1 .article .headerlink {
-    display: none;
-}
-.article ol, .article p, .article ul {
-    margin-top: 1.5em;
-}
-.article li, .article li ol, .article li ul {
-    margin-top: .75em;
-}
-.article li {
-    margin-left: 18px;
-}
-.article li p {
-    display: inline;
-}
-.article ul>li:before {
-    content: "\e602";
-    display: block;
-    float: left;
-    font-family: Icon;
-    font-size: 16px;
-    width: 1.2em;
-    margin-left: -1.2em;
-    vertical-align: -.1em;
-}
-.article p>code {
-    white-space: nowrap;
-    padding: 2px 4px;
-}
-.article kbd {
-    display: inline-block;
-    padding: 3px 5px;
-    line-height: 10px;
-}
-.article hr {
-    margin-top: 1.5em;
-}
-.article img {
-    max-width: 100%}
-.article pre {
-    padding: 16px;
-    margin: 1.5em -16px 0;
-    line-height: 1.5em;
-    overflow: auto;
-    -webkit-overflow-scrolling: touch;
-}
-.article table {
-    margin: 3em 0 1.5em;
-    font-size: 13px;
-    overflow: hidden;
-}
-.no-js .article table {
-    display: inline-block;
-    max-width: 100%;
-    overflow: auto;
-    -webkit-overflow-scrolling: touch;
-}
-.article table th {
-    min-width: 100px;
-    font-size: 12px;
-    text-align: left;
-}
-.article table td, .article table th {
-    padding: 12px 16px;
-    vertical-align: top;
-}
-.article blockquote {
-    padding-left: 16px;
-}
-.article .data {
-    margin: 1.5em -16px;
-    padding: 1.5em 0;
-    overflow: auto;
-    -webkit-overflow-scrolling: touch;
-    text-align: center;
-}
-.article .data table {
-    display: inline-block;
-    margin: 0 16px;
-    text-align: left;
-}
-.footer {
-    position: absolute;
-    bottom: 0;
-    left: 0;
-    right: 0;
-    padding: 0 4px;
-}
-.copyright {
-    margin: 1.5em 0;
-}
-.pagination {
-    max-width: 1184px;
-    height: 92px;
-    padding: 4px 0;
-    margin-left: auto;
-    margin-right: auto;
-    overflow: hidden;
-}
-.pagination a {
-    display: block;
-    height: 100%}
-.pagination .next, .pagination .previous {
-    position: relative;
-    float: left;
-    height: 100%}
-.pagination .previous {
-    width: 25%}
-.pagination .previous .direction, .pagination .previous .stretch {
-    display: none;
-}
-.pagination .next {
-    width: 75%;
-    text-align: right;
-}
-.pagination .page {
-    display: table;
-    position: absolute;
-    bottom: 4px;
-}
-.pagination .direction {
-    display: block;
-    position: absolute;
-    bottom: 40px;
-    width: 100%;
-    font-size: 15px;
-    line-height: 20px;
-    padding: 0 52px;
-}
-.pagination .stretch {
-    padding: 0 4px;
-}
-.pagination .stretch .title {
-    font-size: 18px;
-    padding: 11px 0 13px;
-}
-.admonition {
-    margin: 20px -16px 0;
-    padding: 20px 16px;
-}
-.admonition>:first-child {
-    margin-top: 0;
-}
-.admonition .admonition-title {
-    font-size: 20px;
-}
-.admonition .admonition-title:before {
-    content: "\e611";
-    display: block;
-    float: left;
-    font-family: Icon;
-    font-size: 24px;
-    vertical-align: -.1em;
-    margin-right: 5px;
-}
-.admonition.warning .admonition-title:before {
-    content: "\e610"}
-.article h3 {
-    font-weight: 700;
-}
-.article h4 {
-    font-weight: 400;
-    font-style: italic;
-}
-.article h2 a, .article h3 a, .article h4 a, .article h5 a, .article h6 a {
-    font-weight: 400;
-    font-style: normal;
-}
-.bar {
-    -webkit-transform: translateZ(0);
-    transform: translateZ(0);
-    -webkit-transition: opacity .2s cubic-bezier(.75, 0, .25, 1), -webkit-transform .4s cubic-bezier(.75, 0, .25, 1);
-    transition: opacity .2s cubic-bezier(.75, 0, .25, 1), -webkit-transform .4s cubic-bezier(.75, 0, .25, 1);
-    transition: opacity .2s cubic-bezier(.75, 0, .25, 1), transform .4s cubic-bezier(.75, 0, .25, 1);
-    transition: opacity .2s cubic-bezier(.75, 0, .25, 1), transform .4s cubic-bezier(.75, 0, .25, 1), -webkit-transform .4s cubic-bezier(.75, 0, .25, 1);
-}
-#toggle-search:checked~.header .bar, .toggle-search .bar {
-    -webkit-transform: translate3d(0, -56px, 0);
-    transform: translate3d(0, -56px, 0);
-}
-.bar.search .button-reset {
-    -webkit-transform: scale(.5);
-    transform: scale(.5);
-    -webkit-transition: opacity .4s cubic-bezier(.1, .7, .1, 1), -webkit-transform .4s cubic-bezier(.1, .7, .1, 1);
-    transition: opacity .4s cubic-bezier(.1, .7, .1, 1), -webkit-transform .4s cubic-bezier(.1, .7, .1, 1);
-    transition: opacity .4s cubic-bezier(.1, .7, .1, 1), transform .4s cubic-bezier(.1, .7, .1, 1);
-    transition: opacity .4s cubic-bezier(.1, .7, .1, 1), transform .4s cubic-bezier(.1, .7, .1, 1), -webkit-transform .4s cubic-bezier(.1, .7, .1, 1);
-    opacity: 0;
-}
-.bar.search.non-empty .button-reset {
-    -webkit-transform: scale(1);
-    transform: scale(1);
-    opacity: 1;
-}
-.results {
-    -webkit-transition: opacity .3s .1s, width 0s .4s, height 0s .4s;
-    transition: opacity .3s .1s, width 0s .4s, height 0s .4s;
-}
-#toggle-search:checked~.main .results, .toggle-search .results {
-    -webkit-transition: opacity .4s, width 0s, height 0s;
-    transition: opacity .4s, width 0s, height 0s;
-}
-.results .list a {
-    -webkit-transition: background .25s;
-    transition: background .25s;
-}
-.no-csstransforms3d .bar.default {
-    display: table;
-}
-.no-csstransforms3d .bar.search {
-    display: none;
-    margin-top: 0;
-}
-.no-csstransforms3d #toggle-search:checked~.header .bar.default, .no-csstransforms3d .toggle-search .bar.default {
-    display: none;
-}
-.no-csstransforms3d #toggle-search:checked~.header .bar.search, .no-csstransforms3d .toggle-search .bar.search {
-    display: table;
-}
-.bar.search {
-    opacity: 0;
-}
-.bar.search .query {
-    background: transparent;
-    color: rgba(0, 0, 0, .87);
-}
-.bar.search .query::-webkit-input-placeholder {
-    color: rgba(0, 0, 0, .26);
-}
-.bar.search .query:-moz-placeholder, .bar.search .query::-moz-placeholder {
-    color: rgba(0, 0, 0, .26);
-}
-.bar.search .query:-ms-input-placeholder {
-    color: rgba(0, 0, 0, .26);
-}
-.bar.search .button .icon:active {
-    background: rgba(0, 0, 0, .12);
-}
-.results {
-    box-shadow: 0 4px 7px rgba(0, 0, 0, .23), 0 8px 25px rgba(0, 0, 0, .05);
-    background: #fff;
-    color: rgba(0, 0, 0, .87);
-    opacity: 0;
-}
-#toggle-search:checked~.main .results, .toggle-search .results {
-    opacity: 1;
-}
-.results .meta {
-    background: #e84e40;
-    color: #fff;
-}
-.results .list a {
-    border-bottom: 1px solid rgba(0, 0, 0, .12);
-}
-.results .list a:last-child {
-    border-bottom: none;
-}
-.results .list a:active {
-    background: rgba(0, 0, 0, .12);
-}
-.result span {
-    color: rgba(0, 0, 0, .54);
-}
-#toggle-search:checked~.header, .toggle-search .header {
-    background: #fff;
-    color: rgba(0, 0, 0, .54);
-}
-#toggle-search:checked~.header:before, .toggle-search .header:before {
-    background: rgba(0, 0, 0, .54);
-}
-#toggle-search:checked~.header .bar.default, .toggle-search .header .bar.default {
-    opacity: 0;
-}
-#toggle-search:checked~.header .bar.search, .toggle-search .header .bar.search {
-    opacity: 1;
-}
-.bar.search {
-    margin-top: 8px;
-}
-.bar.search .query {
-    font-size: 18px;
-    padding: 13px 0;
-    margin: 0;
-    width: 100%;
-    height: 48px;
-}
-.bar.search .query::-ms-clear {
-    display: none;
-}
-.results {
-    position: fixed;
-    top: 0;
-    left: 0;
-    width: 0;
-    height: 100%;
-    z-index: 1;
-    overflow-y: scroll;
-    -webkit-overflow-scrolling: touch;
-}
-.results .scrollable {
-    top: 56px;
-}
-#toggle-search:checked~.main .results, .toggle-search .results {
-    width: 100%;
-    overflow-y: visible;
-}
-.results .meta {
-    font-weight: 700;
-}
-.results .meta strong {
-    display: block;
-    font-size: 11px;
-    max-width: 1200px;
-    margin-left: auto;
-    margin-right: auto;
-    padding: 16px;
-}
-.results .list a {
-    display: block;
-}
-.result {
-    max-width: 1200px;
-    margin-left: auto;
-    margin-right: auto;
-    padding: 12px 16px 16px;
-}
-.result h1 {
-    line-height: 24px;
-}
-.result h1, .result span {
-    text-overflow: ellipsis;
-    white-space: nowrap;
-    overflow: hidden;
-}
-.result span {
-    font-size: 12px;
-}
-.no-csstransforms3d .results {
-    display: none;
-}
-.no-csstransforms3d #toggle-search:checked~.main .results, .no-csstransforms3d .toggle-search .results {
-    display: block;
-    overflow: auto;
-}
-.meta {
-    text-transform: uppercase;
-    font-weight: 700;
-}
-@media only screen and (min-width:960px) {
-    .backdrop {
-    background: #f2f2f2;
-}
-.backdrop-paper:after {
-    box-shadow: 0 1.5px 3px rgba(0, 0, 0, .24), 0 3px 8px rgba(0, 0, 0, .05);
-}
-.button-menu {
-    display: none;
-}
-.drawer {
-    float: left;
-    height: auto;
-    margin-bottom: 96px;
-    padding-top: 80px;
-}
-.drawer, .drawer .scrollable {
-    position: static;
-}
-.article {
-    margin-left: 262px;
-}
-.footer {
-    z-index: 4;
-}
-.copyright {
-    margin-bottom: 64px;
-}
-.results {
-    height: auto;
-    top: 64px;
-}
-.results .scrollable {
-    position: static;
-    max-height: 413px;
-}
-}@media only screen and (max-width:959px) {
-    #toggle-drawer: checked~.overlay, .toggle-drawer .overlay {
-    width: 100%;
-    height: 100%}
-.drawer {
-    -webkit-transform: translate3d(-262px, 0, 0);
-    transform: translate3d(-262px, 0, 0);
-    -webkit-transition: -webkit-transform .25s cubic-bezier(.4, 0, .2, 1);
-    transition: -webkit-transform .25s cubic-bezier(.4, 0, .2, 1);
-    transition: transform .25s cubic-bezier(.4, 0, .2, 1);
-    transition: transform .25s cubic-bezier(.4, 0, .2, 1), -webkit-transform .25s cubic-bezier(.4, 0, .2, 1);
-}
-.no-csstransforms3d .drawer {
-    display: none;
-}
-.drawer {
-    background: #fff;
-}
-.project {
-    box-shadow: 0 1.5px 3px rgba(0, 0, 0, .24), 0 3px 8px rgba(0, 0, 0, .05);
-    background: #e84e40;
-    color: #fff;
-}
-.drawer {
-    position: fixed;
-    z-index: 4;
-}
-#toggle-search:checked~.main .results, .drawer, .toggle-search .results {
-    height: 100%}
-}@media only screen and (min-width:720px) {
-    .header {
-    height: 64px;
-    padding: 8px;
-}
-.header .stretch {
-    padding: 0 16px;
-}
-.header .stretch .title {
-    font-size: 20px;
-    padding: 12px 0;
-}
-.project .name {
-    margin: 26px 0 0 5px;
-}
-.article .wrapper {
-    padding: 80px 24px 96px;
-}
-.article .data {
-    margin: 1.5em -24px;
-}
-.article .data table {
-    margin: 0 24px;
-}
-.article h2 {
-    padding-top: 100px;
-    margin-top: -64px;
-}
-.ios.standalone .article h2 {
-    padding-top: 28px;
-    margin-top: 8px;
-}
-.article h3, .article h4 {
-    padding-top: 84px;
-    margin-top: -64px;
-}
-.ios.standalone .article h3, .ios.standalone .article h4 {
-    padding-top: 20px;
-    margin-top: 0;
-}
-.article pre {
-    padding: 1.5em 24px;
-    margin: 1.5em -24px 0;
-}
-.footer {
-    padding: 0 8px;
-}
-.pagination {
-    height: 96px;
-    padding: 8px 0;
-}
-.pagination .direction {
-    padding: 0 56px;
-    bottom: 40px;
-}
-.pagination .stretch {
-    padding: 0 8px;
-}
-.admonition {
-    margin: 20px -24px 0;
-    padding: 20px 24px;
-}
-.bar.search .query {
-    font-size: 20px;
-    padding: 12px 0;
-}
-.results .scrollable {
-    top: 64px;
-}
-.results .meta strong {
-    padding: 16px 24px;
-}
-.result {
-    padding: 16px 24px 20px;
-}
-}@media only screen and (min-width:1200px) {
-    .header {
-    width: 100%}
-.drawer .scrollable .wrapper hr {
-    width: 48px;
-}
-}@media only screen and (orientation:portrait) {
-    .ios.standalone .header {
-    height: 76px;
-    padding-top: 24px;
-}
-.ios.standalone .header:before {
-    content: " ";
-    position: absolute;
-    top: 0;
-    left: 0;
-    z-index: 3;
-    width: 100%;
-    height: 20px;
-}
-.ios.standalone .drawer .scrollable {
-    top: 124px;
-}
-.ios.standalone .project {
-    padding-top: 20px;
-}
-.ios.standalone .project:before {
-    content: " ";
-    position: absolute;
-    top: 0;
-    left: 0;
-    z-index: 3;
-    width: 100%;
-    height: 20px;
-}
-.ios.standalone .article {
-    position: absolute;
-    top: 76px;
-    right: 0;
-    bottom: 0;
-    left: 0;
-}
-.ios.standalone .results .scrollable {
-    top: 76px;
-}
-}@media only screen and (orientation:portrait) and (min-width:720px) {
-    .ios.standalone .header {
-    height: 84px;
-    padding-top: 28px;
-}
-.ios.standalone .results .scrollable {
-    top: 84px;
-}
-}@media only screen and (max-width:719px) {
-    .bar .path {
-    display: none;
-}
-}@media only screen and (max-width:479px) {
-    .button-github, .button-twitter {
-    display: none;
-}
-}@media only screen and (min-width:720px) and (max-width:959px) {
-    .header .stretch {
-    padding: 0 24px;
-}
-}@media only screen and (min-width:480px) {
-    .pagination .next, .pagination .previous {
-    width: 50%}
-.pagination .previous .direction {
-    display: block;
-}
-.pagination .previous .stretch {
-    display: table;
-}
-}@media print {
-    .drawer, .footer, .header, .headerlink {
-    display: none;
-}
-.article .wrapper {
-    padding-top: 0;
-}
-.article pre, .article pre * {
-    color: rgba(0, 0, 0, .87)!important;
-}
-.article pre {
-    border: 1px solid rgba(0, 0, 0, .12);
-}
-.article table {
-    border-radius: none;
-    box-shadow: none;
-}
-.article table th {
-    color: #e84e40;
-}
-}
diff --git a/material/assets/stylesheets/application-f3ab63f78a.css b/material/assets/stylesheets/application-f3ab63f78a.css
new file mode 100644
index 0000000000000000000000000000000000000000..6f3ab671b8bfab22469f28dc3403b166373c7d73
--- /dev/null
+++ b/material/assets/stylesheets/application-f3ab63f78a.css
@@ -0,0 +1 @@
+html{box-sizing:border-box}*,:after,:before{box-sizing:inherit}html{-webkit-text-size-adjust:none;-ms-text-size-adjust:none;text-size-adjust:none}body{margin:0}hr{overflow:visible;box-sizing:content-box}a{-webkit-text-decoration-skip:objects}a,button,input,label{-webkit-tap-highlight-color:transparent}a{color:inherit;text-decoration:none}a:active,a:hover{outline-width:0}small,sub,sup{font-size:80%}sub,sup{position:relative;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}table{border-collapse:collapse;border-spacing:0}td,th{font-weight:400;vertical-align:top}button{padding:0;background:transparent;font-size:inherit}button,input{border:0;outline:0}.admonition:before,.md-icon,.md-nav__button,.md-nav__link:after,.md-nav__title:before,.md-typeset .critic.comment:before,.md-typeset .footnote-backref,.md-typeset .task-list-control .task-list-indicator:before{font-family:Material Icons;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none;white-space:nowrap;speak:none;word-wrap:normal;direction:ltr}.md-content__edit,.md-footer-nav__button,.md-header-nav__button,.md-nav__button,.md-nav__title:before{display:inline-block;margin:.4rem;padding:.8rem;font-size:2.4rem;cursor:pointer}.md-icon--arrow-back:before{content:"arrow_back"}.md-icon--arrow-forward:before{content:"arrow_forward"}.md-icon--menu:before{content:"menu"}.md-icon--search:before{content:"search"}.md-icon--home:before{content:"school"}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body,input{color:rgba(0,0,0,.87);-webkit-font-feature-settings:"kern","onum","liga";font-feature-settings:"kern","onum","liga";font-weight:400}.no-fontface body,.no-fontface input{font-family:Helvetica Neue,Helvetica,Arial,sans-serif}code,kbd,pre{color:rgba(0,0,0,.87);-webkit-font-feature-settings:"kern","onum","liga";font-feature-settings:"kern","onum","liga";font-weight:400}.no-fontface code,.no-fontface kbd,.no-fontface pre{font-family:Courier New,Courier,monospace}.md-typeset{font-size:1.6rem;line-height:1.6;-webkit-print-color-adjust:exact}.md-typeset blockquote,.md-typeset ol,.md-typeset p,.md-typeset ul{margin:1em 0}.md-typeset h1{margin:0 0 4rem;color:rgba(0,0,0,.54);font-size:3.125rem;line-height:1.3}.md-typeset h1,.md-typeset h2{font-weight:300;letter-spacing:-.01em}.md-typeset h2{margin:4rem 0 1.6rem;font-size:2.5rem;line-height:1.4}.md-typeset h3{margin:3.2rem 0 1.6rem;font-size:2rem;font-weight:400;letter-spacing:-.01em;line-height:1.5}.md-typeset h2+h3{margin-top:1.6rem}.md-typeset h4{font-size:1.6rem}.md-typeset h4,.md-typeset h5,.md-typeset h6{margin:1.6rem 0;font-weight:700;letter-spacing:-.01em}.md-typeset h5,.md-typeset h6{color:rgba(0,0,0,.54);font-size:1.28rem}.md-typeset h5{text-transform:uppercase}.md-typeset hr{margin:1.5em 0;border-bottom:.1rem dotted rgba(0,0,0,.26)}.md-typeset a{color:#3f51b5;word-break:break-word}.md-typeset a,.md-typeset a:before{-webkit-transition:color .125s;transition:color .125s}.md-typeset a:active,.md-typeset a:hover{color:#536dfe}.md-typeset code,.md-typeset pre{background-color:hsla(0,0%,93%,.5);color:#37474f;font-size:85%}.md-typeset code{margin:0 .29412em;padding:.07353em 0;border-radius:.2rem;box-shadow:.29412em 0 0 hsla(0,0%,93%,.5),-.29412em 0 0 hsla(0,0%,93%,.5);word-break:break-word;-webkit-box-decoration-break:clone;box-decoration-break:clone}.md-typeset h1 code,.md-typeset h2 code,.md-typeset h3 code,.md-typeset h4 code,.md-typeset h5 code,.md-typeset h6 code{margin:0;background-color:transparent;box-shadow:none}.md-typeset a>code{margin:inherit;padding:inherit;border-radius:none;background-color:inherit;color:inherit;box-shadow:none}.md-typeset pre{margin:1em 0;padding:1rem 1.2rem;border-radius:.2rem;line-height:1.4;overflow:auto;-webkit-overflow-scrolling:touch}.md-typeset pre::-webkit-scrollbar{width:.4rem;height:.4rem}.md-typeset pre::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.26)}.md-typeset pre::-webkit-scrollbar-thumb:hover{background-color:#536dfe}.md-typeset pre>code{margin:0;background-color:transparent;font-size:inherit;box-shadow:none;-webkit-box-decoration-break:none;box-decoration-break:none}.md-typeset kbd{padding:0 .29412em;border:.1rem solid #c9c9c9;border-radius:.2rem;border-bottom-color:#bcbcbc;background-color:#fcfcfc;color:#555;font-size:85%;box-shadow:0 .1rem 0 #b0b0b0;word-break:break-word}.md-typeset mark{margin:0 .25em;padding:.0625em 0;border-radius:.2rem;background-color:rgba(255,235,59,.5);box-shadow:.25em 0 0 rgba(255,235,59,.5),-.25em 0 0 rgba(255,235,59,.5);word-break:break-word;-webkit-box-decoration-break:clone;box-decoration-break:clone}.md-typeset abbr{border-bottom:.1rem dotted rgba(0,0,0,.54);cursor:help}.md-typeset small{opacity:.75}.md-typeset sub,.md-typeset sup{margin-left:.07812em}.md-typeset blockquote{padding-left:1.2rem;border-left:.4rem solid rgba(0,0,0,.26);color:rgba(0,0,0,.54)}.md-typeset ul{list-style-type:disc}.md-typeset ol,.md-typeset ul{margin-left:.625em;padding:0}.md-typeset ol ol,.md-typeset ul ol{list-style-type:lower-alpha}.md-typeset ol ol ol,.md-typeset ul ol ol{list-style-type:lower-roman}.md-typeset ol li,.md-typeset ul li{margin-bottom:.5em;margin-left:1.25em}.md-typeset ol li blockquote,.md-typeset ol li p,.md-typeset ul li blockquote,.md-typeset ul li p{margin:.5em 0}.md-typeset ol li:last-child,.md-typeset ul li:last-child{margin-bottom:0}.md-typeset ol li ol,.md-typeset ol li ul,.md-typeset ul li ol,.md-typeset ul li ul{margin:.5em 0 .5em .625em}.md-typeset iframe,.md-typeset img,.md-typeset svg{max-width:100%}.md-typeset table:not([class]){box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2);margin:2em 0;border-radius:.2rem;font-size:1.28rem;overflow:hidden}.no-js .md-typeset table:not([class]){display:inline-block;max-width:100%;margin:.8em 0;overflow:auto;-webkit-overflow-scrolling:touch}.md-typeset table:not([class]) td:not([align]),.md-typeset table:not([class]) th:not([align]){text-align:left}.md-typeset table:not([class]) th{min-width:10rem;padding:1.2rem 1.6rem;background-color:rgba(0,0,0,.54);color:#fff;vertical-align:top}.md-typeset table:not([class]) td{padding:1.2rem 1.6rem;border-top:.1rem solid rgba(0,0,0,.07);vertical-align:top}.md-typeset table:not([class]) tr:first-child td{border-top:0}.md-typeset table:not([class]) a{word-break:normal}.md-typeset .md-typeset__table{margin:1.6em -1.6rem;overflow-x:auto;-webkit-overflow-scrolling:touch}.md-typeset .md-typeset__table table{display:inline-block;margin:0 1.6rem}html{font-size:62.5%}body,html{height:100%}body{position:relative}hr{display:block;height:.1rem;padding:0;border:0}.md-svg{display:none}.md-grid{max-width:122rem;margin-right:auto;margin-left:auto}.md-container,.md-main{overflow:auto}.md-container{display:table;width:100%;height:100%;table-layout:fixed}.md-main{display:table-row;height:100%}.md-main__inner{margin-top:5.6rem;padding-top:3rem;overflow:auto}.csscalc .md-main__inner{min-height:calc(100% - 2.6rem)}@-moz-document url-prefix(){.csscalc .md-main__inner{min-height:calc(100% - 5.6rem)}}.md-toggle{display:none}.md-overlay{position:fixed;top:0;width:0;height:0;-webkit-transition:width 0s .25s,height 0s .25s,opacity .25s;transition:width 0s .25s,height 0s .25s,opacity .25s;background-color:rgba(0,0,0,.54);opacity:0;z-index:2}.md-flex{display:table}.md-flex__cell{display:table-cell;position:relative;vertical-align:top}.md-flex__cell--shrink{width:0}.md-flex__cell--stretch{display:table;width:100%;table-layout:fixed}.md-flex__ellipsis{display:table-cell;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}@page{margin:25mm}.md-content__inner{margin:2.4rem 1.6rem}.md-content__edit{float:right}.md-header{box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2);position:fixed;top:0;right:0;left:0;height:5.6rem;-webkit-transition:background-color .25s;transition:background-color .25s;background-color:#3f51b5;color:#fff;z-index:1}.md-header-nav{padding:.4rem}.md-header-nav__button{position:relative;-webkit-transition:opacity .25s;transition:opacity .25s;z-index:1}.md-header-nav__button:hover{opacity:.7}.md-header-nav__button.md-logo img{display:block}.no-js .md-header-nav__button.md-icon--search{display:none}.md-header-nav__title{padding:0 2rem;font-size:1.8rem;line-height:4.8rem}.md-header-nav__parent{color:hsla(0,0%,100%,.7)}.md-header-nav__parent:after{display:inline;color:hsla(0,0%,100%,.3);content:"/"}.md-header-nav__source{display:none}.md-footer-nav{background-color:rgba(0,0,0,.87);color:#fff}.md-footer-nav__inner{padding:.4rem;overflow:auto}.md-footer-nav__link{padding-top:2.8rem;padding-bottom:.8rem;-webkit-transition:opacity .25s;transition:opacity .25s}.md-footer-nav__link:hover{opacity:.7}.md-footer-nav__link--prev{width:25%;float:left}.md-footer-nav__link--next{width:75%;float:right;text-align:right}.md-footer-nav__button{-webkit-transition:background .25s;transition:background .25s}.md-footer-nav__title{position:relative;padding:0 2rem;font-size:1.8rem;line-height:4.8rem}.md-footer-nav__direction{position:absolute;right:0;left:0;margin-top:-2rem;padding:0 2rem;color:hsla(0,0%,100%,.7);font-size:1.5rem}.md-footer-meta{background:rgba(0,0,0,.895)}.md-footer-meta__inner{padding:.4rem;overflow:auto}html .md-footer-meta.md-typeset a{color:hsla(0,0%,100%,.7)}.md-footer-copyright{margin:0 1.2rem;padding:.8rem 0;color:hsla(0,0%,100%,.3);font-size:1.28rem}.md-footer-copyright__highlight{color:hsla(0,0%,100%,.7)}.md-footer-social{margin:0 .8rem;padding:.4rem 0 1.2rem}.md-footer-social__link{display:inline-block;width:3.2rem;height:3.2rem;border:.1rem solid hsla(0,0%,100%,.12);border-radius:100%;color:hsla(0,0%,100%,.7);font-size:1.6rem;text-align:center}.md-footer-social__link:before{line-height:1.9}.md-nav{font-size:1.28rem;line-height:1.3}.md-nav--secondary{-webkit-transition:border-left .25s;transition:border-left .25s;border-left:.4rem solid #3f51b5}.md-nav__title{display:block;padding:1.2rem 1.2rem 0;font-weight:700;text-overflow:ellipsis;overflow:hidden}.md-nav__title:before{display:none;content:"arrow_back"}.md-nav__title .md-nav__button{display:none}.md-nav__list{margin:0;padding:0;list-style:none}.md-nav__item{padding:.625em 1.2rem 0}.md-nav__item:last-child{padding-bottom:1.2rem}.md-nav__item .md-nav__item{padding-right:0}.md-nav__item .md-nav__item:last-child{padding-bottom:0}.md-nav__button img{width:100%;height:auto}.md-nav__link{display:block;-webkit-transition:color .125s;transition:color .125s;text-overflow:ellipsis;cursor:pointer;overflow:hidden}.md-nav__item--nested>.md-nav__link:after{content:"keyboard_arrow_down"}html .md-nav__link[for=toc],html .md-nav__link[for=toc]+.md-nav__link:after,html .md-nav__link[for=toc]~.md-nav{display:none}.md-nav__link[data-md-state=blur]{color:rgba(0,0,0,.54)}.md-nav__link--active,.md-nav__link:active{color:#3f51b5}.md-nav__link:hover{color:#536dfe}.md-nav__source,.no-js .md-search{display:none}.md-search__overlay{display:none;pointer-events:none}.md-search__inner{width:100%}.md-search__form{position:relative}.md-search__input{position:relative;padding:0 1.6rem 0 7.2rem;text-overflow:ellipsis;z-index:1}.md-search__input+.md-search__icon,.md-search__input::-webkit-input-placeholder{color:rgba(0,0,0,.54)}.md-search__input+.md-search__icon,.md-search__input::-moz-placeholder{color:rgba(0,0,0,.54)}.md-search__input+.md-search__icon,.md-search__input:-ms-input-placeholder{color:rgba(0,0,0,.54)}.md-search__input+.md-search__icon,.md-search__input::placeholder{color:rgba(0,0,0,.54)}.md-search__input::-ms-clear{display:none}.md-search__icon{position:absolute;top:.8rem;left:1.2rem;-webkit-transition:color .25s;transition:color .25s;font-size:2.4rem;cursor:pointer;z-index:1}.md-search__icon:before{content:"search"}.md-search__output{position:absolute;width:100%;border-radius:0 0 .2rem .2rem;overflow:hidden}.md-search__scrollwrap{height:100%;background:-webkit-linear-gradient(top,#fff 10%,hsla(0,0%,100%,0)),-webkit-linear-gradient(top,rgba(0,0,0,.26),rgba(0,0,0,.07) 35%,transparent 60%);background:linear-gradient(180deg,#fff 10%,hsla(0,0%,100%,0)),linear-gradient(180deg,rgba(0,0,0,.26),rgba(0,0,0,.07) 35%,transparent 60%);background-attachment:local,scroll;background-color:#fff;background-repeat:no-repeat;background-size:100% 2rem,100% 1rem;box-shadow:inset 0 .1rem 0 rgba(0,0,0,.07);overflow-y:auto;-webkit-overflow-scrolling:touch}.md-search-result__meta{padding:0 1.6rem;background-color:rgba(0,0,0,.07);color:rgba(0,0,0,.54);font-size:1.28rem;line-height:4rem}.md-search-result__list{margin:0;padding:0;border-top:.1rem solid rgba(0,0,0,.07);list-style:none}.md-search-result__item{box-shadow:0 -.1rem 0 rgba(0,0,0,.07)}.md-search-result__link{display:block;padding:0 1.6rem;-webkit-transition:background .25s;transition:background .25s;overflow:auto}.md-search-result__link:hover{background-color:rgba(83,109,254,.1)}.md-search-result__article{margin:1em 0}.md-search-result__title{margin-top:.5em;margin-bottom:0;color:rgba(0,0,0,.87);font-size:1.6rem;font-weight:400;line-height:1.4}.md-search-result__teaser{margin:.5em 0;color:rgba(0,0,0,.54);font-size:1.28rem;line-height:1.4;word-break:break-word}.md-sidebar{position:relative;width:24.2rem;padding:2.4rem 0;float:left;overflow:visible}.md-sidebar[data-md-state=lock]{position:fixed;top:5.6rem;-webkit-backface-visibility:hidden;backface-visibility:hidden}.md-sidebar--secondary{display:none}.md-sidebar__scrollwrap{max-height:100%;margin:0 .4rem;overflow-y:auto}.md-sidebar__scrollwrap::-webkit-scrollbar{width:.4rem;height:.4rem}.md-sidebar__scrollwrap::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.26)}.md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#536dfe}@-webkit-keyframes a{0%{height:0}to{height:1.3rem}}@keyframes a{0%{height:0}to{height:1.3rem}}@-webkit-keyframes b{0%{-webkit-transform:translateY(100%);transform:translateY(100%);opacity:0}50%{opacity:0}to{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes b{0%{-webkit-transform:translateY(100%);transform:translateY(100%);opacity:0}50%{opacity:0}to{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}.md-source{display:block;-webkit-transition:opacity .25s;transition:opacity .25s;font-size:1.3rem;line-height:1.2;white-space:nowrap}.md-source:hover{opacity:.7}.md-source:after,.md-source__icon{display:inline-block;height:4.8rem;content:"";vertical-align:middle}.md-source__icon{width:4.8rem}.md-source__icon svg{margin-top:1.2rem;margin-left:1.2rem}.md-source__icon+.md-source__repository{margin-left:-4.4rem;padding-left:4rem}.md-source__repository{display:inline-block;max-width:100%;margin-left:1.2rem;font-weight:700;text-overflow:ellipsis;overflow:hidden;vertical-align:middle}.md-source__facts{margin:0;padding:0;font-size:1.1rem;font-weight:700;list-style-type:none;opacity:.75;overflow:hidden}[data-md-state=done] .md-source__facts{-webkit-animation:a .25s ease-in;animation:a .25s ease-in}.md-source__fact{float:left}[data-md-state=done] .md-source__fact{-webkit-animation:b .4s ease-out;animation:b .4s ease-out}.md-source__fact:before{margin:0 .2rem;content:"\00B7"}.md-source__fact:first-child:before{display:none}.admonition{position:relative;margin:1.5625em 0;padding:.8rem 1.2rem;border-left:3.2rem solid rgba(68,138,255,.4);border-radius:.2rem;background-color:rgba(68,138,255,.15);font-size:1.28rem}.admonition:before{position:absolute;left:-2.6rem;color:#fff;font-size:2rem;content:"edit";vertical-align:-.25em}.admonition :first-child{margin-top:0}.admonition :last-child{margin-bottom:0}.admonition.summary,.admonition.tldr{border-color:rgba(0,176,255,.4);background-color:rgba(0,176,255,.15)}.admonition.summary:before,.admonition.tldr:before{content:"subject"}.admonition.hint,.admonition.important,.admonition.tip{border-color:rgba(0,191,165,.4);background-color:rgba(0,191,165,.15)}.admonition.hint:before,.admonition.important:before,.admonition.tip:before{content:"whatshot"}.admonition.check,.admonition.done,.admonition.success{border-color:rgba(0,230,118,.4);background-color:rgba(0,230,118,.15)}.admonition.check:before,.admonition.done:before,.admonition.success:before{content:"done"}.admonition.attention,.admonition.caution,.admonition.warning{border-color:rgba(255,145,0,.4);background-color:rgba(255,145,0,.15)}.admonition.attention:before,.admonition.caution:before,.admonition.warning:before{content:"warning"}.admonition.fail,.admonition.failure,.admonition.missing{border-color:rgba(255,82,82,.4);background-color:rgba(255,82,82,.15)}.admonition.fail:before,.admonition.failure:before,.admonition.missing:before{content:"clear"}.admonition.danger,.admonition.error{border-color:rgba(255,23,68,.4);background-color:rgba(255,23,68,.15)}.admonition.danger:before,.admonition.error:before{content:"flash_on"}.admonition.bug{border-color:rgba(245,0,87,.4);background-color:rgba(245,0,87,.15)}.admonition.bug:before{content:"bug_report"}.admonition-title{font-weight:700}html .admonition-title{margin-bottom:0}html .admonition-title+*{margin-top:0}.codehilite .o,.codehilite .ow{color:inherit}.codehilite .ge{color:#000}.codehilite .gr{color:#a00}.codehilite .gh{color:#999}.codehilite .go{color:#888}.codehilite .gp{color:#555}.codehilite .gs{color:inherit}.codehilite .gu{color:#aaa}.codehilite .gt{color:#a00}.codehilite .gd{background-color:#fdd}.codehilite .gi{background-color:#dfd}.codehilite .k{color:#3b78e7}.codehilite .kc{color:#a71d5d}.codehilite .kd,.codehilite .kn{color:#3b78e7}.codehilite .kp{color:#a71d5d}.codehilite .kr,.codehilite .kt{color:#3e61a2}.codehilite .c,.codehilite .cm{color:#999}.codehilite .cp{color:#666}.codehilite .c1,.codehilite .ch,.codehilite .cs{color:#999}.codehilite .na,.codehilite .nb{color:#c2185b}.codehilite .bp{color:#3e61a2}.codehilite .nc{color:#c2185b}.codehilite .no{color:#3e61a2}.codehilite .nd,.codehilite .ni{color:#666}.codehilite .ne,.codehilite .nf{color:#c2185b}.codehilite .nl{color:#3b5179}.codehilite .nn{color:#ec407a}.codehilite .nt{color:#3b78e7}.codehilite .nv,.codehilite .vc,.codehilite .vg,.codehilite .vi{color:#3e61a2}.codehilite .nx{color:#ec407a}.codehilite .il,.codehilite .m,.codehilite .mf,.codehilite .mh,.codehilite .mi,.codehilite .mo{color:#e74c3c}.codehilite .s,.codehilite .sb,.codehilite .sc{color:#0d904f}.codehilite .sd{color:#999}.codehilite .s2{color:#0d904f}.codehilite .se,.codehilite .sh,.codehilite .si,.codehilite .sx{color:#183691}.codehilite .sr{color:#009926}.codehilite .s1,.codehilite .ss{color:#0d904f}.codehilite .err{color:#a61717}.codehilite .w{color:transparent}.codehilite .hll{display:block;margin:0 -1.2rem;padding:0 1.2rem;background-color:rgba(255,235,59,.5)}.md-typeset .codehilite{margin:1em 0;padding:1rem 1.2rem .8rem;border-radius:.2rem;background-color:hsla(0,0%,93%,.5);color:#37474f;line-height:1.4;overflow:auto;-webkit-overflow-scrolling:touch}.md-typeset .codehilite::-webkit-scrollbar{width:.4rem;height:.4rem}.md-typeset .codehilite::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.26)}.md-typeset .codehilite::-webkit-scrollbar-thumb:hover{background-color:#536dfe}.md-typeset .codehilite pre{display:inline-block;min-width:100%;margin:0;padding:0;background-color:transparent;overflow:visible;vertical-align:top}.md-typeset .codehilitetable{display:block;margin:1em 0;border-radius:.2em;font-size:1.6rem;overflow:hidden}.md-typeset .codehilitetable tbody,.md-typeset .codehilitetable td{display:block;padding:0}.md-typeset .codehilitetable tr{display:-webkit-box;display:-ms-flexbox;display:flex}.md-typeset .codehilitetable .codehilite,.md-typeset .codehilitetable .linenodiv{margin:0;border-radius:0}.md-typeset .codehilitetable .linenodiv{padding:1rem 1.2rem .8rem}.md-typeset .codehilitetable .linenodiv,.md-typeset .codehilitetable .linenodiv>pre{height:100%}.md-typeset .codehilitetable .linenos{background-color:rgba(0,0,0,.07);color:rgba(0,0,0,.26);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.md-typeset .codehilitetable .linenos pre{margin:0;padding:0;background-color:transparent;color:inherit;text-align:right}.md-typeset .codehilitetable .code{-webkit-box-flex:1;-ms-flex:1;flex:1;overflow:hidden}.md-typeset>.codehilitetable{box-shadow:none}.md-typeset .footnote{color:rgba(0,0,0,.54);font-size:1.28rem}.md-typeset .footnote ol{margin-left:0}.md-typeset .footnote li{-webkit-transition:color .25s;transition:color .25s}.md-typeset .footnote li:before{display:block;height:0}.md-typeset .footnote li:target{color:rgba(0,0,0,.87)}.md-typeset .footnote li:target:before{margin-top:-9rem;padding-top:9rem;pointer-events:none}.md-typeset .footnote li :first-child{margin-top:0}.md-typeset .footnote li:hover .footnote-backref,.md-typeset .footnote li:target .footnote-backref{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}.md-typeset .footnote li:hover .footnote-backref:hover,.md-typeset .footnote li:target .footnote-backref{color:#536dfe}.md-typeset .footnote-backref{display:inline-block;-webkit-transform:translateX(.5rem);transform:translateX(.5rem);-webkit-transition:color .25s,opacity .125s .125s,-webkit-transform .25s .125s;transition:color .25s,opacity .125s .125s,-webkit-transform .25s .125s;transition:transform .25s .125s,color .25s,opacity .125s .125s;transition:transform .25s .125s,color .25s,opacity .125s .125s,-webkit-transform .25s .125s;color:rgba(0,0,0,.26);font-size:0;opacity:0;vertical-align:text-bottom}.md-typeset .footnote-backref:before{font-size:1.6rem;content:"keyboard_return"}.md-typeset .headerlink{display:inline-block;margin-left:1rem;-webkit-transform:translateY(.5rem);transform:translateY(.5rem);-webkit-transition:color .25s,opacity .125s .25s,-webkit-transform .25s .25s;transition:color .25s,opacity .125s .25s,-webkit-transform .25s .25s;transition:transform .25s .25s,color .25s,opacity .125s .25s;transition:transform .25s .25s,color .25s,opacity .125s .25s,-webkit-transform .25s .25s;opacity:0}html body .md-typeset .headerlink{color:rgba(0,0,0,.26)}.md-typeset [id]:before{display:inline-block;content:""}.md-typeset [id]:target:before{margin-top:-9.8rem;padding-top:9.8rem}.md-typeset [id] .headerlink:focus,.md-typeset [id]:hover .headerlink,.md-typeset [id]:target .headerlink{-webkit-transform:translate(0);transform:translate(0);opacity:1}.md-typeset [id] .headerlink:focus,.md-typeset [id]:hover .headerlink:hover,.md-typeset [id]:target .headerlink{color:#536dfe}.md-typeset h1[id] .headerlink{display:none}.md-typeset h2[id]:before{display:block;margin-top:-.2rem;padding-top:.2rem}.md-typeset h2[id]:target:before{margin-top:-8.2rem;padding-top:8.2rem}.md-typeset h3[id]:before{display:block;margin-top:-.4rem;padding-top:.4rem}.md-typeset h3[id]:target:before{margin-top:-8.4rem;padding-top:8.4rem}.md-typeset h4[id]:before{display:block;margin-top:-.6rem;padding-top:.6rem}.md-typeset h4[id]:target:before{margin-top:-8.6rem;padding-top:8.6rem}.md-typeset h5[id]:before{display:block;margin-top:-1rem;padding-top:1rem}.md-typeset h5[id]:target:before{margin-top:-9rem;padding-top:9rem}.md-typeset h6[id]:before{display:block;margin-top:-1rem;padding-top:1rem}.md-typeset h6[id]:target:before{margin-top:-9rem;padding-top:9rem}.md-typeset .MJXc-display{margin:.75em 0;padding:.25em 0;overflow:auto;-webkit-overflow-scrolling:touch}.md-typeset .MathJax_CHTML{outline:0}.md-typeset .comment.critic,.md-typeset del.critic,.md-typeset ins.critic{margin:0 .25em;padding:.0625em 0;border-radius:.2rem;-webkit-box-decoration-break:clone;box-decoration-break:clone}.md-typeset del.critic{background-color:#fdd;box-shadow:.25em 0 0 #fdd,-.25em 0 0 #fdd}.md-typeset ins.critic{background-color:#dfd;box-shadow:.25em 0 0 #dfd,-.25em 0 0 #dfd}.md-typeset .critic.comment{background-color:hsla(0,0%,93%,.5);color:#37474f;box-shadow:.25em 0 0 hsla(0,0%,93%,.5),-.25em 0 0 hsla(0,0%,93%,.5)}.md-typeset .critic.comment:before{padding-right:.125em;color:rgba(0,0,0,.26);content:"chat";vertical-align:-.125em}.md-typeset .critic.block{display:block;margin:1em 0;padding-right:1.6rem;padding-left:1.6rem;box-shadow:none}.md-typeset .critic.block :first-child{margin-top:.5em}.md-typeset .critic.block :last-child{margin-bottom:.5em}.md-typeset .emojione{width:2rem;vertical-align:text-top}.md-typeset code.codehilite{margin:0 .29412em;padding:.07353em 0}.md-typeset .task-list-item{position:relative;list-style-type:none}.md-typeset .task-list-item [type=checkbox]{position:absolute;top:.45em;left:-2em}.md-typeset .task-list-control .task-list-indicator:before{position:absolute;top:.05em;left:-1.25em;color:rgba(0,0,0,.26);font-size:1.5em;content:"check_box_outline_blank";vertical-align:-.25em}.md-typeset .task-list-control [type=checkbox]:checked+.task-list-indicator:before{content:"check_box"}.md-typeset .task-list-control [type=checkbox]{opacity:0;z-index:-1}@media print{.md-typeset a:after{color:rgba(0,0,0,.54);content:" [" attr(href) "]"}.md-typeset code{box-shadow:none;-webkit-box-decoration-break:initial;box-decoration-break:slice}.md-content__edit,.md-footer,.md-header,.md-sidebar,.md-typeset .headerlink{display:none}}@media only screen and (max-width:44.9375em){.md-typeset pre{margin:1em -1.6rem;padding:1rem 1.6rem;border-radius:0}.codehilite .hll{margin:0 -1.6rem;padding:0 1.6rem}.md-typeset>.codehilite{padding:1rem 1.6rem .8rem}.md-typeset>.codehilite,.md-typeset>.codehilitetable{margin:1em -1.6rem;border-radius:0}.md-typeset>.codehilitetable .codehilite,.md-typeset>.codehilitetable .linenodiv{padding:1rem 1.6rem}.md-typeset>p>.MJXc-display{margin:.75em -1.6rem;padding:.25em 1.6rem}}@media only screen and (min-width:100em){html{font-size:68.75%}}@media only screen and (min-width:125em){html{font-size:75%}}@media only screen and (max-width:59.9375em){body[data-md-state=lock]{overflow:hidden}.ios body[data-md-state=lock] .md-container{display:none}.md-content__edit{margin-right:-.8rem}.md-nav--secondary{border-left:0}html .md-nav__link[for=toc]{display:block;padding-right:4.8rem}html .md-nav__link[for=toc]:after{color:inherit;content:"toc"}html .md-nav__link[for=toc]+.md-nav__link{display:none}html .md-nav__link[for=toc]~.md-nav{display:-webkit-box;display:-ms-flexbox;display:flex}.md-nav__source{display:block;padding:.4rem;background-color:rgba(50,64,144,.9675);color:#fff}.md-search__overlay{display:block;position:absolute;top:.4rem;left:.4rem;width:4rem;height:4rem;-webkit-transform-origin:center;transform-origin:center;-webkit-transition:opacity .2s .2s,-webkit-transform .3s .1s;transition:opacity .2s .2s,-webkit-transform .3s .1s;transition:transform .3s .1s,opacity .2s .2s;transition:transform .3s .1s,opacity .2s .2s,-webkit-transform .3s .1s;border-radius:2rem;background-color:#fff;opacity:0;overflow:hidden;z-index:1}[data-md-toggle=search]:checked~.md-header .md-search__overlay{-webkit-transition:opacity .1s,-webkit-transform .4s;transition:opacity .1s,-webkit-transform .4s;transition:transform .4s,opacity .1s;transition:transform .4s,opacity .1s,-webkit-transform .4s;opacity:1}.md-search__inner{position:fixed;top:0;left:100%;height:100%;-webkit-transform:translateX(5%);transform:translateX(5%);-webkit-transition:left 0s .3s,opacity .15s .15s,-webkit-transform .15s cubic-bezier(.4,0,.2,1) .15s;transition:left 0s .3s,opacity .15s .15s,-webkit-transform .15s cubic-bezier(.4,0,.2,1) .15s;transition:left 0s .3s,transform .15s cubic-bezier(.4,0,.2,1) .15s,opacity .15s .15s;transition:left 0s .3s,transform .15s cubic-bezier(.4,0,.2,1) .15s,opacity .15s .15s,-webkit-transform .15s cubic-bezier(.4,0,.2,1) .15s;opacity:0;z-index:2}[data-md-toggle=search]:checked~.md-header .md-search__inner{left:0;-webkit-transform:translateX(0);transform:translateX(0);-webkit-transition:left 0s 0s,opacity .15s .15s,-webkit-transform .15s cubic-bezier(.1,.7,.1,1) .15s;transition:left 0s 0s,opacity .15s .15s,-webkit-transform .15s cubic-bezier(.1,.7,.1,1) .15s;transition:left 0s 0s,transform .15s cubic-bezier(.1,.7,.1,1) .15s,opacity .15s .15s;transition:left 0s 0s,transform .15s cubic-bezier(.1,.7,.1,1) .15s,opacity .15s .15s,-webkit-transform .15s cubic-bezier(.1,.7,.1,1) .15s;opacity:1}.md-search__input{width:100%;height:5.6rem;font-size:1.8rem}.md-search__icon{top:1.6rem;left:1.6rem}.md-search__icon:before{content:"arrow_back"}.md-search__output{top:5.6rem;bottom:0}}@media only screen and (max-width:76.1875em){[data-md-toggle=drawer]:checked~.md-overlay{width:100%;height:100%;-webkit-transition:width 0s,height 0s,opacity .25s;transition:width 0s,height 0s,opacity .25s;opacity:1}.md-header-nav__button.md-icon--home,.md-header-nav__button.md-logo{display:none}.md-nav--primary,.md-nav--primary .md-nav{display:-webkit-box;display:-ms-flexbox;display:flex;position:absolute;top:0;right:0;left:0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%;z-index:1}.md-nav--primary{background-color:#fff}.md-nav--primary .md-nav__toggle~.md-nav{box-shadow:0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.4);background-color:#fff}html .md-nav--primary .md-nav__title{position:relative;height:11.2rem;padding:6rem 1.6rem .4rem;background-color:rgba(0,0,0,.07);color:rgba(0,0,0,.54);font-weight:400;line-height:4.8rem;white-space:nowrap;cursor:pointer}html .md-nav--primary .md-nav__title:before{display:block;position:absolute;top:.4rem;left:.4rem;width:4rem;height:4rem;color:rgba(0,0,0,.54)}html .md-nav--primary .md-nav__title~.md-nav__list{background:-webkit-linear-gradient(top,#fff 10%,hsla(0,0%,100%,0)),-webkit-linear-gradient(top,rgba(0,0,0,.26),rgba(0,0,0,.07) 35%,transparent 60%);background:linear-gradient(180deg,#fff 10%,hsla(0,0%,100%,0)),linear-gradient(180deg,rgba(0,0,0,.26),rgba(0,0,0,.07) 35%,transparent 60%);background-attachment:local,scroll;background-color:#fff;background-repeat:no-repeat;background-size:100% 2rem,100% 1rem;box-shadow:inset 0 .1rem 0 rgba(0,0,0,.07)}html .md-nav--primary .md-nav__title~.md-nav__list>.md-nav__item:first-child{border-top:0}html .md-nav--primary .md-nav__title--site{position:relative;background-color:#3f51b5;color:#fff}html .md-nav--primary .md-nav__title--site .md-nav__button{display:block;position:absolute;top:.4rem;left:.4rem;width:6.4rem;height:6.4rem;font-size:4.8rem}html .md-nav--primary .md-nav__title--site:before{display:none}.md-nav--primary .md-nav__list{-webkit-box-flex:1;-ms-flex:1;flex:1;overflow-y:auto}.md-nav--primary .md-nav__item{padding:0;border-top:.1rem solid rgba(0,0,0,.07)}.md-nav--primary .md-nav__item--nested>.md-nav__link{padding-right:4.8rem}.md-nav--primary .md-nav__item--nested>.md-nav__link:after{content:"keyboard_arrow_right"}.md-nav--primary .md-nav__link{position:relative;padding:1.6rem}.md-nav--primary .md-nav__link:after{position:absolute;top:50%;right:1.2rem;margin-top:-1.2rem;color:rgba(0,0,0,.54);font-size:2.4rem}.md-nav--primary .md-nav__link:hover:after{color:inherit}.md-nav--primary .md-nav--secondary .md-nav{position:static}.md-nav--primary .md-nav--secondary .md-nav .md-nav__link{padding-left:2.8rem}.md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav__link{padding-left:4rem}.md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav__link{padding-left:5.2rem}.md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav .md-nav__link{padding-left:6.4rem}.md-nav__toggle~.md-nav{display:none}.csstransforms3d .md-nav__toggle~.md-nav{-webkit-transform:translateX(100%);transform:translateX(100%);-webkit-transition:opacity .125s .05s,-webkit-transform .25s cubic-bezier(.8,0,.6,1);transition:opacity .125s .05s,-webkit-transform .25s cubic-bezier(.8,0,.6,1);transition:transform .25s cubic-bezier(.8,0,.6,1),opacity .125s .05s;transition:transform .25s cubic-bezier(.8,0,.6,1),opacity .125s .05s,-webkit-transform .25s cubic-bezier(.8,0,.6,1);opacity:0}.csstransforms3d .md-nav__toggle~.md-nav,.md-nav__toggle:checked~.md-nav{display:-webkit-box;display:-ms-flexbox;display:flex}.csstransforms3d .md-nav__toggle:checked~.md-nav{-webkit-transform:translateX(0);transform:translateX(0);-webkit-transition:opacity .125s .125s,-webkit-transform .25s cubic-bezier(.4,0,.2,1);transition:opacity .125s .125s,-webkit-transform .25s cubic-bezier(.4,0,.2,1);transition:transform .25s cubic-bezier(.4,0,.2,1),opacity .125s .125s;transition:transform .25s cubic-bezier(.4,0,.2,1),opacity .125s .125s,-webkit-transform .25s cubic-bezier(.4,0,.2,1);opacity:1}.md-nav .md-nav__item,.md-nav .md-nav__title{font-size:1.6rem;line-height:1.5}.md-sidebar--primary{position:fixed;top:0;left:-24.2rem;width:24.2rem;height:100%;-webkit-transform:translateX(0);transform:translateX(0);-webkit-transition:box-shadow .25s,-webkit-transform .25s cubic-bezier(.4,0,.2,1);transition:box-shadow .25s,-webkit-transform .25s cubic-bezier(.4,0,.2,1);transition:transform .25s cubic-bezier(.4,0,.2,1),box-shadow .25s;transition:transform .25s cubic-bezier(.4,0,.2,1),box-shadow .25s,-webkit-transform .25s cubic-bezier(.4,0,.2,1);background-color:#fff;z-index:2}.no-csstransforms3d .md-sidebar--primary{display:none}[data-md-toggle=drawer]:checked~.md-container .md-sidebar--primary{box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12),0 5px 5px -3px rgba(0,0,0,.4);-webkit-transform:translateX(24.2rem);transform:translateX(24.2rem)}.no-csstransforms3d [data-md-toggle=drawer]:checked~.md-container .md-sidebar--primary{display:block}.md-sidebar--primary .md-sidebar__scrollwrap{overflow:hidden;position:absolute;top:0;right:0;bottom:0;left:0;margin:0}}@media only screen and (min-width:60em){.md-content{margin-right:24.2rem}.md-header-nav__button.md-icon--search{display:none}.md-header-nav__source{display:block;width:23rem;max-width:23rem;padding-right:1.2rem}.md-search{margin-right:2.8rem;padding:.4rem}.md-search__inner{display:table;position:relative;clear:both}.md-search__form{width:23rem;float:right;-webkit-transition:width .25s cubic-bezier(.1,.7,.1,1);transition:width .25s cubic-bezier(.1,.7,.1,1);border-radius:.2rem}.md-search__input{width:100%;height:4rem;padding-left:4.8rem;-webkit-transition:background-color .25s,color .25s;transition:background-color .25s,color .25s;border-radius:.2rem;background-color:rgba(0,0,0,.26);color:#fff;font-size:1.6rem}.md-search__input+.md-search__icon,.md-search__input::-webkit-input-placeholder{-webkit-transition:color .25s;transition:color .25s;color:#fff}.md-search__input+.md-search__icon,.md-search__input::-moz-placeholder{-webkit-transition:color .25s;transition:color .25s;color:#fff}.md-search__input+.md-search__icon,.md-search__input:-ms-input-placeholder{-webkit-transition:color .25s;transition:color .25s;color:#fff}.md-search__input+.md-search__icon,.md-search__input::placeholder{-webkit-transition:color .25s;transition:color .25s;color:#fff}.md-search__input:hover{background-color:hsla(0,0%,100%,.12)}[data-md-toggle=search]:checked~.md-header .md-search__input{border-radius:.2rem .2rem 0 0;background-color:#fff;color:rgba(0,0,0,.87);text-overflow:none}[data-md-toggle=search]:checked~.md-header .md-search__input+.md-search__icon,[data-md-toggle=search]:checked~.md-header .md-search__input::-webkit-input-placeholder{color:rgba(0,0,0,.54)}[data-md-toggle=search]:checked~.md-header .md-search__input+.md-search__icon,[data-md-toggle=search]:checked~.md-header .md-search__input::-moz-placeholder{color:rgba(0,0,0,.54)}[data-md-toggle=search]:checked~.md-header .md-search__input+.md-search__icon,[data-md-toggle=search]:checked~.md-header .md-search__input:-ms-input-placeholder{color:rgba(0,0,0,.54)}[data-md-toggle=search]:checked~.md-header .md-search__input+.md-search__icon,[data-md-toggle=search]:checked~.md-header .md-search__input::placeholder{color:rgba(0,0,0,.54)}.md-search__output{top:4rem;-webkit-transition:opacity .4s;transition:opacity .4s;opacity:0}[data-md-toggle=search]:checked~.md-header .md-search__output{box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px -1px rgba(0,0,0,.4);opacity:1}.md-search__scrollwrap{max-height:0}[data-md-toggle=search]:checked~.md-header .md-search__scrollwrap{max-height:75vh}.md-search__scrollwrap::-webkit-scrollbar{width:.4rem;height:.4rem}.md-search__scrollwrap::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.26)}.md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#536dfe}.md-search-result__link,.md-search-result__meta{padding-left:4.8rem}.md-sidebar--secondary{display:block;float:right}.md-sidebar--secondary[data-md-state=lock]{margin-left:100%;-webkit-transform:translate(-100%);transform:translate(-100%)}}@media only screen and (min-width:76.25em){.md-content{margin-left:24.2rem;overflow:auto}.md-content__inner{margin:2.4rem}.md-content__inner :last-child{margin-bottom:0}.md-header-nav__button.md-icon--menu{display:none}.md-nav[data-md-state=animate]{-webkit-transition:max-height .25s cubic-bezier(.86,0,.07,1);transition:max-height .25s cubic-bezier(.86,0,.07,1)}.md-nav__toggle~.md-nav{max-height:0;overflow:hidden}.md-nav[data-md-state=expand],.md-nav__toggle:checked~.md-nav{max-height:100%}.md-nav__item--nested>.md-nav>.md-nav__title{display:none}.md-nav__item--nested>.md-nav__link:after{display:inline-block;-webkit-transform-origin:.45em .45em;transform-origin:.45em .45em;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;vertical-align:-.125em}.js .md-nav__item--nested>.md-nav__link:after{-webkit-transition:-webkit-transform .4s;transition:-webkit-transform .4s;transition:transform .4s;transition:transform .4s,-webkit-transform .4s}.md-nav__item--nested .md-nav__toggle:checked~.md-nav__link:after{-webkit-transform:rotateX(180deg);transform:rotateX(180deg)}.md-search__scrollwrap,[data-md-toggle=search]:checked~.md-header .md-search__form{width:68.8rem}.md-sidebar__inner{border-right:.1rem solid rgba(0,0,0,.07)}}@media only screen and (max-width:29.9375em){.md-footer-nav__link--prev .md-footer-nav__title,.md-header-nav__parent{display:none}[data-md-toggle=search]:checked~.md-header .md-search__overlay{-webkit-transform:scale(45);transform:scale(45)}}@media only screen and (min-width:30em){.md-footer-nav__link{width:50%}}@media only screen and (min-width:45em){.md-footer-copyright{max-width:75%;float:left}.md-footer-social{padding:1.2rem 0;float:right}}@media only screen and (min-width:30em) and (max-width:44.9375em){[data-md-toggle=search]:checked~.md-header .md-search__overlay{-webkit-transform:scale(60);transform:scale(60)}}@media only screen and (min-width:45em) and (max-width:59.9375em){[data-md-toggle=search]:checked~.md-header .md-search__overlay{-webkit-transform:scale(75);transform:scale(75)}}@media only screen and (min-width:60em) and (max-width:76.1875em){.md-search__scrollwrap,[data-md-toggle=search]:checked~.md-header .md-search__form{width:46.8rem}}@media only screen and (min-width:60em) and (min-width:76.25em){.md-sidebar--secondary[data-md-state=lock]{margin-left:122rem}}
\ No newline at end of file
diff --git a/material/assets/stylesheets/application.css b/material/assets/stylesheets/application.css
deleted file mode 100644
index 965bbb3c87b89b2f4112895ac794896fc1a6fa35..0000000000000000000000000000000000000000
--- a/material/assets/stylesheets/application.css
+++ /dev/null
@@ -1 +0,0 @@
-html{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}*,:after,:before{box-sizing:inherit;-moz-box-sizing:inherit;-webkit-box-sizing:inherit}html{font-size:62.5%;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;text-size-adjust:none}a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,main,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0}main{display:block}ul{list-style:none}table{border-collapse:collapse;border-spacing:0}td{text-align:left;font-weight:400;vertical-align:middle}button{outline:0;padding:0;background:transparent;border:none;font-size:inherit}input{-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;appearance:none;outline:none;border:none}a{text-decoration:none;color:inherit}a,button,input,label{-webkit-tap-highlight-color:rgba(255,255,255,0);-webkit-tap-highlight-color:transparent}h1,h2,h3,h4,h5,h6{font-weight:inherit}pre{background:rgba(0,0,0,.05)}pre,pre code{color:rgba(0,0,0,.87)}.c,.c1,.cm,.o{color:rgba(0,0,0,.54)}.k,.kn{color:#a71d5d}.kd,.kt{color:#0086b3}.n.f,.nf{color:#795da3}.nx{color:#0086b3}.s,.s1{color:#183691}.bp,.mi{color:#9575cd}.icon{font-family:Icon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-search:before{content:"\e600"}.icon-back:before{content:"\e601"}.icon-link:before{content:"\e602"}.icon-close:before{content:"\e603"}.icon-menu:before{content:"\e604"}.icon-forward:before{content:"\e605"}.icon-twitter:before{content:"\e606"}.icon-github:before{content:"\e607"}.icon-download:before{content:"\e608"}.icon-star:before{content:"\e609"}.icon-warning:before{content:"\e610"}.icon-note:before{content:"\e611"}a{-webkit-transition:color .25s;transition:color .25s}.overlay{-webkit-transition:opacity .25s,width 0s .25s,height 0s .25s;transition:opacity .25s,width 0s .25s,height 0s .25s}#toggle-drawer:checked~.overlay,.toggle-drawer .overlay{-webkit-transition:opacity .25s,width 0s,height 0s;transition:opacity .25s,width 0s,height 0s}.js .header{-webkit-transition:background .6s,color .6s;transition:background .6s,color .6s}.js .header:before{-webkit-transition:background .6s;transition:background .6s}.button .icon{-webkit-transition:background .25s;transition:background .25s}body{color:rgba(0,0,0,.87)}@supports (-webkit-appearance:none){body{background:#e84e40}}.ios body{background:#fff}hr{border:0;border-top:1px solid rgba(0,0,0,.12)}.toggle-button{cursor:pointer;color:inherit}.backdrop,.backdrop-paper:after{background:#fff}.overlay{background:rgba(0,0,0,.54);opacity:0}#toggle-drawer:checked~.overlay,.toggle-drawer .overlay{opacity:1}.header{box-shadow:0 1.5px 3px rgba(0,0,0,.24),0 3px 8px rgba(0,0,0,.05);background:#e84e40;color:#fff}.ios.standalone .header:before{background:rgba(0,0,0,.12)}.bar .path{color:hsla(0,0%,100%,.7)}.button .icon{border-radius:100%}.button .icon:active{background:hsla(0,0%,100%,.12)}html{height:100%}body{position:relative;min-height:100%}hr{display:block;height:1px;padding:0;margin:0}.locked{height:100%;overflow:hidden}.scrollable{position:absolute;top:0;right:0;bottom:0;left:0;overflow:auto;-webkit-overflow-scrolling:touch}.scrollable .wrapper{height:100%}.ios .scrollable .wrapper{margin-bottom:2px}.toggle{display:none}.toggle-button{display:block}.backdrop{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1}.backdrop-paper{max-width:1200px;height:100%;margin-left:auto;margin-right:auto}.backdrop-paper:after{content:" ";display:block;height:100%;margin-left:262px}.overlay{width:0;height:0;z-index:3}.header,.overlay{position:fixed;top:0}.header{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;left:0;z-index:2;height:56px;padding:4px;overflow:hidden}.ios.standalone .header{position:absolute}.bar{display:table;max-width:1184px;margin-left:auto;margin-right:auto}.bar a{display:block}.no-js .bar .button-search{display:none}.bar .path .icon:before{vertical-align:-1.5px}.button{display:table-cell;vertical-align:top;width:1%}.button button{margin:0;padding:0}.button button:active:before{position:relative;top:0;left:0}.button .icon{display:inline-block;font-size:24px;padding:8px;margin:4px}.stretch{display:table;table-layout:fixed;width:100%}.header .stretch{padding:0 20px}.stretch .title{display:table-cell;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.header .stretch .title{font-size:18px;padding:13px 0}.main{max-width:1200px;margin-left:auto;margin-right:auto}body,input{font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.no-fontface body,.no-fontface input,body,input{font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.no-fontface code,.no-fontface kbd,.no-fontface pre,code,kbd,pre{font-family:Courier New,Courier,monospace}#toggle-drawer:checked~.main .drawer,.toggle-drawer .drawer{-webkit-transform:translateZ(0);transform:translateZ(0)}.no-csstransforms3d #toggle-drawer:checked~.main .drawer,.no-csstransforms3d .toggle-drawer .drawer{display:block}.project{-webkit-transition:none;transition:none}.project .logo img{-webkit-transition:box-shadow .4s;transition:box-shadow .4s}.repo a{-webkit-transition:box-shadow .4s,opacity .4s;transition:box-shadow .4s,opacity .4s}.drawer .toc a.current,.drawer .toc a:focus,.drawer .toc a:hover{color:#e84e40}.drawer .anchor a{border-left:2px solid #e84e40}.drawer .section{color:rgba(0,0,0,.54)}.ios.standalone .project:before{background:rgba(0,0,0,.12)}.project .logo img{background:#fff;border-radius:100%}.project:focus .logo img,.project:hover .logo img{box-shadow:0 4px 7px rgba(0,0,0,.23),0 8px 25px rgba(0,0,0,.05)}.repo a{background:#00bfa5;color:#fff;border-radius:3px}.repo a:focus,.repo a:hover{box-shadow:0 4px 7px rgba(0,0,0,.23),0 8px 25px rgba(0,0,0,.05);opacity:.8}.repo a .count{background:rgba(0,0,0,.26);color:#fff;border-radius:0 3px 3px 0}.repo a .count:before{border-width:15px 5px 15px 0;border-color:transparent rgba(0,0,0,.26);border-style:solid}.drawer{width:262px;font-size:13px;line-height:1em}.ios .drawer{overflow:scroll;-webkit-overflow-scrolling:touch}.drawer .toc li a{display:block;padding:14.5px 24px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.drawer .toc li.anchor a{margin-left:12px;padding:10px 24px 10px 12px}.drawer .toc li ul{margin-left:12px}.drawer .current+ul{margin-bottom:9px}.drawer .section{display:block;padding:14.5px 24px}.drawer .scrollable{top:104px;z-index:-1}.drawer .scrollable .wrapper{height:auto;min-height:100%}.drawer .scrollable .wrapper hr{margin:12px 0;margin-right:auto}.drawer .scrollable .wrapper .toc{margin:12px 0}.project{display:block}.project .banner{display:table;width:100%;height:104px;padding:20px}.project .logo{display:table-cell;width:64px;padding-right:12px}.project .logo img{display:block;width:64px;height:64px}.project .name{display:table-cell;padding-left:4px;font-size:14px;line-height:1.25em;vertical-align:middle}.project .logo+.name{font-size:12px}.repo{margin:24px 0;text-align:center}.repo li{display:inline-block;padding-right:12px;white-space:nowrap}.repo li:last-child{padding-right:0}.repo a{display:inline-block;padding:0 10px 0 6px;font-size:12px;line-height:30px;height:30px}.repo a .icon{font-size:18px;vertical-align:-3px}.repo a .count{display:inline-block;position:relative;padding:0 8px 0 4px;margin:0 -10px 0 8px;font-size:12px}.repo a .count:before{content:" ";display:block;position:absolute;top:0;left:-5px}.no-js .repo a .count{display:none}.drawer .toc li a{font-weight:700}.drawer .toc li.anchor a{font-weight:400}.drawer .section,.repo a{font-weight:700}.repo a{text-transform:uppercase}.repo a .count{text-transform:none;font-weight:700}pre span{-webkit-transition:color .25s;transition:color .25s}.copyright a{-webkit-transition:color .25s;transition:color .25s}.ios.standalone .article{background:-webkit-linear-gradient(top,#fff 50%,#e84e40 0);background:linear-gradient(180deg,#fff 50%,#e84e40 0)}.ios.standalone .article .wrapper{background:-webkit-linear-gradient(top,#fff 50%,#fff 0);background:linear-gradient(180deg,#fff 50%,#fff 0)}.article a,.article h1,.article h2{color:#e84e40}.article code{background:#eee}.article kbd{color:#555;background-color:#fcfcfc;border:1px solid #ccc;border-bottom-color:#bbb;border-radius:3px;box-shadow:inset 0 -1px 0 #bbb}.article h1{border-bottom:1px solid rgba(0,0,0,.12)}.article a{border-bottom:1px dotted}.article a:focus,.article a:hover{color:#00bfa5}.article .headerlink{color:rgba(0,0,0,.26);border:none}.article table{box-shadow:0 1.5px 3px rgba(0,0,0,.24),0 3px 8px rgba(0,0,0,.05);border-radius:3px}.article table th{background:#ee7a70;color:#fff}.article table td{border-top:1px solid rgba(0,0,0,.05)}.article blockquote{border-left:2px solid rgba(0,0,0,.54);color:rgba(0,0,0,.54)}.footer{background:#e84e40;color:#fff}.footer a{border:none}.copyright{color:rgba(0,0,0,.54)}.pagination a .button,.pagination a .title{color:#fff}.pagination .direction{color:hsla(0,0%,100%,.7)}.admonition{background:#29b6f6;color:#fff}.admonition pre{background:hsla(0,0%,100%,.3)}.admonition.warning{background:#e84e40}.admonition a,.admonition a:hover{color:#fff}.article{font-size:14px;line-height:1.7em}.article:after{content:" ";display:block;clear:both}.article .wrapper{padding:116px 16px 92px}.ios.standalone .article{position:absolute;top:56px;right:0;bottom:0;left:0;overflow:auto;-webkit-overflow-scrolling:touch}.ios.standalone .article .wrapper{position:relative;min-height:100%;padding-top:60px;margin-bottom:2px}.article h1{font-size:24px;line-height:1.333334em;padding:20px 0 42px}.article h2{font-size:20px;line-height:1.4em;padding-top:92px;margin-top:-56px}.ios.standalone .article h2{padding-top:36px;margin:0}.article h3,.article h4{font-size:14px;padding-top:76px;margin-top:-56px}.ios.standalone .article h3,.ios.standalone .article h4{padding-top:20px;margin-top:0}.article .headerlink{float:right;margin-left:20px;font-size:14px}h1 .article .headerlink{display:none}.article ol,.article p,.article ul{margin-top:1.5em}.article li,.article li ol,.article li ul{margin-top:.75em}.article li{margin-left:18px}.article li p{display:inline}.article ul>li:before{content:"\e602";display:block;float:left;font-family:Icon;font-size:16px;width:1.2em;margin-left:-1.2em;vertical-align:-.1em}.article p>code{white-space:nowrap;padding:2px 4px}.article kbd{display:inline-block;padding:3px 5px;line-height:10px}.article hr{margin-top:1.5em}.article img{max-width:100%}.article pre{padding:16px;margin:1.5em -16px 0;line-height:1.5em;overflow:auto;-webkit-overflow-scrolling:touch}.article table{margin:3em 0 1.5em;font-size:13px;overflow:hidden}.no-js .article table{display:inline-block;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch}.article table th{min-width:100px;font-size:12px;text-align:left}.article table td,.article table th{padding:12px 16px;vertical-align:top}.article blockquote{padding-left:16px}.article .data{margin:1.5em -16px;padding:1.5em 0;overflow:auto;-webkit-overflow-scrolling:touch;text-align:center}.article .data table{display:inline-block;margin:0 16px;text-align:left}.footer{position:absolute;bottom:0;left:0;right:0;padding:0 4px}.copyright{margin:1.5em 0}.pagination{max-width:1184px;height:92px;padding:4px 0;margin-left:auto;margin-right:auto;overflow:hidden}.pagination a{display:block;height:100%}.pagination .next,.pagination .previous{position:relative;float:left;height:100%}.pagination .previous{width:25%}.pagination .previous .direction,.pagination .previous .stretch{display:none}.pagination .next{width:75%;text-align:right}.pagination .page{display:table;position:absolute;bottom:4px}.pagination .direction{display:block;position:absolute;bottom:40px;width:100%;font-size:15px;line-height:20px;padding:0 52px}.pagination .stretch{padding:0 4px}.pagination .stretch .title{font-size:18px;padding:11px 0 13px}.admonition{margin:20px -16px 0;padding:20px 16px}.admonition>:first-child{margin-top:0}.admonition .admonition-title{font-size:20px}.admonition .admonition-title:before{content:"\e611";display:block;float:left;font-family:Icon;font-size:24px;vertical-align:-.1em;margin-right:5px}.admonition.warning .admonition-title:before{content:"\e610"}.article h3{font-weight:700}.article h4{font-weight:400;font-style:italic}.article h2 a,.article h3 a,.article h4 a,.article h5 a,.article h6 a{font-weight:400;font-style:normal}.bar{-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-transition:opacity .2s cubic-bezier(.75,0,.25,1),-webkit-transform .4s cubic-bezier(.75,0,.25,1);transition:opacity .2s cubic-bezier(.75,0,.25,1),-webkit-transform .4s cubic-bezier(.75,0,.25,1);transition:opacity .2s cubic-bezier(.75,0,.25,1),transform .4s cubic-bezier(.75,0,.25,1);transition:opacity .2s cubic-bezier(.75,0,.25,1),transform .4s cubic-bezier(.75,0,.25,1),-webkit-transform .4s cubic-bezier(.75,0,.25,1)}#toggle-search:checked~.header .bar,.toggle-search .bar{-webkit-transform:translate3d(0,-56px,0);transform:translate3d(0,-56px,0)}.bar.search .button-reset{-webkit-transform:scale(.5);transform:scale(.5);-webkit-transition:opacity .4s cubic-bezier(.1,.7,.1,1),-webkit-transform .4s cubic-bezier(.1,.7,.1,1);transition:opacity .4s cubic-bezier(.1,.7,.1,1),-webkit-transform .4s cubic-bezier(.1,.7,.1,1);transition:opacity .4s cubic-bezier(.1,.7,.1,1),transform .4s cubic-bezier(.1,.7,.1,1);transition:opacity .4s cubic-bezier(.1,.7,.1,1),transform .4s cubic-bezier(.1,.7,.1,1),-webkit-transform .4s cubic-bezier(.1,.7,.1,1);opacity:0}.bar.search.non-empty .button-reset{-webkit-transform:scale(1);transform:scale(1);opacity:1}.results{-webkit-transition:opacity .3s .1s,width 0s .4s,height 0s .4s;transition:opacity .3s .1s,width 0s .4s,height 0s .4s}#toggle-search:checked~.main .results,.toggle-search .results{-webkit-transition:opacity .4s,width 0s,height 0s;transition:opacity .4s,width 0s,height 0s}.results .list a{-webkit-transition:background .25s;transition:background .25s}.no-csstransforms3d .bar.default{display:table}.no-csstransforms3d .bar.search{display:none;margin-top:0}.no-csstransforms3d #toggle-search:checked~.header .bar.default,.no-csstransforms3d .toggle-search .bar.default{display:none}.no-csstransforms3d #toggle-search:checked~.header .bar.search,.no-csstransforms3d .toggle-search .bar.search{display:table}.bar.search{opacity:0}.bar.search .query{background:transparent;color:rgba(0,0,0,.87)}.bar.search .query::-webkit-input-placeholder{color:rgba(0,0,0,.26)}.bar.search .query:-moz-placeholder,.bar.search .query::-moz-placeholder{color:rgba(0,0,0,.26)}.bar.search .query:-ms-input-placeholder{color:rgba(0,0,0,.26)}.bar.search .button .icon:active{background:rgba(0,0,0,.12)}.results{box-shadow:0 4px 7px rgba(0,0,0,.23),0 8px 25px rgba(0,0,0,.05);background:#fff;color:rgba(0,0,0,.87);opacity:0}#toggle-search:checked~.main .results,.toggle-search .results{opacity:1}.results .meta{background:#e84e40;color:#fff}.results .list a{border-bottom:1px solid rgba(0,0,0,.12)}.results .list a:last-child{border-bottom:none}.results .list a:active{background:rgba(0,0,0,.12)}.result span{color:rgba(0,0,0,.54)}#toggle-search:checked~.header,.toggle-search .header{background:#fff;color:rgba(0,0,0,.54)}#toggle-search:checked~.header:before,.toggle-search .header:before{background:rgba(0,0,0,.54)}#toggle-search:checked~.header .bar.default,.toggle-search .header .bar.default{opacity:0}#toggle-search:checked~.header .bar.search,.toggle-search .header .bar.search{opacity:1}.bar.search{margin-top:8px}.bar.search .query{font-size:18px;padding:13px 0;margin:0;width:100%;height:48px}.bar.search .query::-ms-clear{display:none}.results{position:fixed;top:0;left:0;width:0;height:100%;z-index:1;overflow-y:scroll;-webkit-overflow-scrolling:touch}.results .scrollable{top:56px}#toggle-search:checked~.main .results,.toggle-search .results{width:100%;overflow-y:visible}.results .meta{font-weight:700}.results .meta strong{display:block;font-size:11px;max-width:1200px;margin-left:auto;margin-right:auto;padding:16px}.results .list a{display:block}.result{max-width:1200px;margin-left:auto;margin-right:auto;padding:12px 16px 16px}.result h1{line-height:24px}.result h1,.result span{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.result span{font-size:12px}.no-csstransforms3d .results{display:none}.no-csstransforms3d #toggle-search:checked~.main .results,.no-csstransforms3d .toggle-search .results{display:block;overflow:auto}.meta{text-transform:uppercase;font-weight:700}@media only screen and (min-width:960px){.backdrop{background:#f2f2f2}.backdrop-paper:after{box-shadow:0 1.5px 3px rgba(0,0,0,.24),0 3px 8px rgba(0,0,0,.05)}.button-menu{display:none}.drawer{float:left;height:auto;margin-bottom:96px;padding-top:80px}.drawer,.drawer .scrollable{position:static}.article{margin-left:262px}.footer{z-index:4}.copyright{margin-bottom:64px}.results{height:auto;top:64px}.results .scrollable{position:static;max-height:413px}}@media only screen and (max-width:959px){#toggle-drawer:checked~.overlay,.toggle-drawer .overlay{width:100%;height:100%}.drawer{-webkit-transform:translate3d(-262px,0,0);transform:translate3d(-262px,0,0);-webkit-transition:-webkit-transform .25s cubic-bezier(.4,0,.2,1);transition:-webkit-transform .25s cubic-bezier(.4,0,.2,1);transition:transform .25s cubic-bezier(.4,0,.2,1);transition:transform .25s cubic-bezier(.4,0,.2,1),-webkit-transform .25s cubic-bezier(.4,0,.2,1)}.no-csstransforms3d .drawer{display:none}.drawer{background:#fff}.project{box-shadow:0 1.5px 3px rgba(0,0,0,.24),0 3px 8px rgba(0,0,0,.05);background:#e84e40;color:#fff}.drawer{position:fixed;z-index:4}#toggle-search:checked~.main .results,.drawer,.toggle-search .results{height:100%}}@media only screen and (min-width:720px){.header{height:64px;padding:8px}.header .stretch{padding:0 16px}.header .stretch .title{font-size:20px;padding:12px 0}.project .name{margin:26px 0 0 5px}.article .wrapper{padding:128px 24px 96px}.article .data{margin:1.5em -24px}.article .data table{margin:0 24px}.article h2{padding-top:100px;margin-top:-64px}.ios.standalone .article h2{padding-top:28px;margin-top:8px}.article h3,.article h4{padding-top:84px;margin-top:-64px}.ios.standalone .article h3,.ios.standalone .article h4{padding-top:20px;margin-top:0}.article pre{padding:1.5em 24px;margin:1.5em -24px 0}.footer{padding:0 8px}.pagination{height:96px;padding:8px 0}.pagination .direction{padding:0 56px;bottom:40px}.pagination .stretch{padding:0 8px}.admonition{margin:20px -24px 0;padding:20px 24px}.bar.search .query{font-size:20px;padding:12px 0}.results .scrollable{top:64px}.results .meta strong{padding:16px 24px}.result{padding:16px 24px 20px}}@media only screen and (min-width:1200px){.header{width:100%}.drawer .scrollable .wrapper hr{width:48px}}@media only screen and (orientation:portrait){.ios.standalone .header{height:76px;padding-top:24px}.ios.standalone .header:before{content:" ";position:absolute;top:0;left:0;z-index:3;width:100%;height:20px}.ios.standalone .drawer .scrollable{top:124px}.ios.standalone .project{padding-top:20px}.ios.standalone .project:before{content:" ";position:absolute;top:0;left:0;z-index:3;width:100%;height:20px}.ios.standalone .article{position:absolute;top:76px;right:0;bottom:0;left:0}.ios.standalone .results .scrollable{top:76px}}@media only screen and (orientation:portrait) and (min-width:720px){.ios.standalone .header{height:84px;padding-top:28px}.ios.standalone .results .scrollable{top:84px}}@media only screen and (max-width:719px){.bar .path{display:none}}@media only screen and (max-width:479px){.button-github,.button-twitter{display:none}}@media only screen and (min-width:720px) and (max-width:959px){.header .stretch{padding:0 24px}}@media only screen and (min-width:480px){.pagination .next,.pagination .previous{width:50%}.pagination .previous .direction{display:block}.pagination .previous .stretch{display:table}}@media print{.drawer,.footer,.header,.headerlink{display:none}.article .wrapper{padding-top:0}.article pre,.article pre *{color:rgba(0,0,0,.87)!important}.article pre{border:1px solid rgba(0,0,0,.12)}.article table{border-radius:none;box-shadow:none}.article table th{color:#e84e40}}
\ No newline at end of file
diff --git a/material/assets/stylesheets/palettes-05ab2406df.css b/material/assets/stylesheets/palettes-05ab2406df.css
deleted file mode 100644
index ead0d849bf5c31d986114d6b045bc4afd7fe522c..0000000000000000000000000000000000000000
--- a/material/assets/stylesheets/palettes-05ab2406df.css
+++ /dev/null
@@ -1 +0,0 @@
-@supports (-webkit-appearance:none){.palette-primary-red{background:#e84e40}}.palette-primary-red .footer,.palette-primary-red .header{background:#e84e40}.palette-primary-red .drawer .toc a.current,.palette-primary-red .drawer .toc a:focus,.palette-primary-red .drawer .toc a:hover{color:#e84e40}.palette-primary-red .drawer .anchor a{border-left:2px solid #e84e40}.ios.standalone .palette-primary-red .article{background:-webkit-linear-gradient(top,#fff 50%,#e84e40 0);background:linear-gradient(180deg,#fff 50%,#e84e40 0)}.palette-primary-red .article a,.palette-primary-red .article code,.palette-primary-red .article h1,.palette-primary-red .article h2{color:#e84e40}.palette-primary-red .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-red .article table th{background:#ee7a70}.palette-primary-red .results .meta{background:#e84e40}@supports (-webkit-appearance:none){.palette-primary-pink{background:#e91e63}}.palette-primary-pink .footer,.palette-primary-pink .header{background:#e91e63}.palette-primary-pink .drawer .toc a.current,.palette-primary-pink .drawer .toc a:focus,.palette-primary-pink .drawer .toc a:hover{color:#e91e63}.palette-primary-pink .drawer .anchor a{border-left:2px solid #e91e63}.ios.standalone .palette-primary-pink .article{background:-webkit-linear-gradient(top,#fff 50%,#e91e63 0);background:linear-gradient(180deg,#fff 50%,#e91e63 0)}.palette-primary-pink .article a,.palette-primary-pink .article code,.palette-primary-pink .article h1,.palette-primary-pink .article h2{color:#e91e63}.palette-primary-pink .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-pink .article table th{background:#ef568a}.palette-primary-pink .results .meta{background:#e91e63}@supports (-webkit-appearance:none){.palette-primary-purple{background:#ab47bc}}.palette-primary-purple .footer,.palette-primary-purple .header{background:#ab47bc}.palette-primary-purple .drawer .toc a.current,.palette-primary-purple .drawer .toc a:focus,.palette-primary-purple .drawer .toc a:hover{color:#ab47bc}.palette-primary-purple .drawer .anchor a{border-left:2px solid #ab47bc}.ios.standalone .palette-primary-purple .article{background:-webkit-linear-gradient(top,#fff 50%,#ab47bc 0);background:linear-gradient(180deg,#fff 50%,#ab47bc 0)}.palette-primary-purple .article a,.palette-primary-purple .article code,.palette-primary-purple .article h1,.palette-primary-purple .article h2{color:#ab47bc}.palette-primary-purple .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-purple .article table th{background:#c075cd}.palette-primary-purple .results .meta{background:#ab47bc}@supports (-webkit-appearance:none){.palette-primary-deep-purple{background:#7e57c2}}.palette-primary-deep-purple .footer,.palette-primary-deep-purple .header{background:#7e57c2}.palette-primary-deep-purple .drawer .toc a.current,.palette-primary-deep-purple .drawer .toc a:focus,.palette-primary-deep-purple .drawer .toc a:hover{color:#7e57c2}.palette-primary-deep-purple .drawer .anchor a{border-left:2px solid #7e57c2}.ios.standalone .palette-primary-deep-purple .article{background:-webkit-linear-gradient(top,#fff 50%,#7e57c2 0);background:linear-gradient(180deg,#fff 50%,#7e57c2 0)}.palette-primary-deep-purple .article a,.palette-primary-deep-purple .article code,.palette-primary-deep-purple .article h1,.palette-primary-deep-purple .article h2{color:#7e57c2}.palette-primary-deep-purple .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-deep-purple .article table th{background:#9e81d1}.palette-primary-deep-purple .results .meta{background:#7e57c2}@supports (-webkit-appearance:none){.palette-primary-indigo{background:#3f51b5}}.palette-primary-indigo .footer,.palette-primary-indigo .header{background:#3f51b5}.palette-primary-indigo .drawer .toc a.current,.palette-primary-indigo .drawer .toc a:focus,.palette-primary-indigo .drawer .toc a:hover{color:#3f51b5}.palette-primary-indigo .drawer .anchor a{border-left:2px solid #3f51b5}.ios.standalone .palette-primary-indigo .article{background:-webkit-linear-gradient(top,#fff 50%,#3f51b5 0);background:linear-gradient(180deg,#fff 50%,#3f51b5 0)}.palette-primary-indigo .article a,.palette-primary-indigo .article code,.palette-primary-indigo .article h1,.palette-primary-indigo .article h2{color:#3f51b5}.palette-primary-indigo .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-indigo .article table th{background:#6f7dc8}.palette-primary-indigo .results .meta{background:#3f51b5}@supports (-webkit-appearance:none){.palette-primary-blue{background:#5677fc}}.palette-primary-blue .footer,.palette-primary-blue .header{background:#5677fc}.palette-primary-blue .drawer .toc a.current,.palette-primary-blue .drawer .toc a:focus,.palette-primary-blue .drawer .toc a:hover{color:#5677fc}.palette-primary-blue .drawer .anchor a{border-left:2px solid #5677fc}.ios.standalone .palette-primary-blue .article{background:-webkit-linear-gradient(top,#fff 50%,#5677fc 0);background:linear-gradient(180deg,#fff 50%,#5677fc 0)}.palette-primary-blue .article a,.palette-primary-blue .article code,.palette-primary-blue .article h1,.palette-primary-blue .article h2{color:#5677fc}.palette-primary-blue .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-blue .article table th{background:#8099fd}.palette-primary-blue .results .meta{background:#5677fc}@supports (-webkit-appearance:none){.palette-primary-light-blue{background:#03a9f4}}.palette-primary-light-blue .footer,.palette-primary-light-blue .header{background:#03a9f4}.palette-primary-light-blue .drawer .toc a.current,.palette-primary-light-blue .drawer .toc a:focus,.palette-primary-light-blue .drawer .toc a:hover{color:#03a9f4}.palette-primary-light-blue .drawer .anchor a{border-left:2px solid #03a9f4}.ios.standalone .palette-primary-light-blue .article{background:-webkit-linear-gradient(top,#fff 50%,#03a9f4 0);background:linear-gradient(180deg,#fff 50%,#03a9f4 0)}.palette-primary-light-blue .article a,.palette-primary-light-blue .article code,.palette-primary-light-blue .article h1,.palette-primary-light-blue .article h2{color:#03a9f4}.palette-primary-light-blue .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-light-blue .article table th{background:#42bff7}.palette-primary-light-blue .results .meta{background:#03a9f4}@supports (-webkit-appearance:none){.palette-primary-cyan{background:#00bcd4}}.palette-primary-cyan .footer,.palette-primary-cyan .header{background:#00bcd4}.palette-primary-cyan .drawer .toc a.current,.palette-primary-cyan .drawer .toc a:focus,.palette-primary-cyan .drawer .toc a:hover{color:#00bcd4}.palette-primary-cyan .drawer .anchor a{border-left:2px solid #00bcd4}.ios.standalone .palette-primary-cyan .article{background:-webkit-linear-gradient(top,#fff 50%,#00bcd4 0);background:linear-gradient(180deg,#fff 50%,#00bcd4 0)}.palette-primary-cyan .article a,.palette-primary-cyan .article code,.palette-primary-cyan .article h1,.palette-primary-cyan .article h2{color:#00bcd4}.palette-primary-cyan .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-cyan .article table th{background:#40cddf}.palette-primary-cyan .results .meta{background:#00bcd4}@supports (-webkit-appearance:none){.palette-primary-teal{background:#009688}}.palette-primary-teal .footer,.palette-primary-teal .header{background:#009688}.palette-primary-teal .drawer .toc a.current,.palette-primary-teal .drawer .toc a:focus,.palette-primary-teal .drawer .toc a:hover{color:#009688}.palette-primary-teal .drawer .anchor a{border-left:2px solid #009688}.ios.standalone .palette-primary-teal .article{background:-webkit-linear-gradient(top,#fff 50%,#009688 0);background:linear-gradient(180deg,#fff 50%,#009688 0)}.palette-primary-teal .article a,.palette-primary-teal .article code,.palette-primary-teal .article h1,.palette-primary-teal .article h2{color:#009688}.palette-primary-teal .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-teal .article table th{background:#40b0a6}.palette-primary-teal .results .meta{background:#009688}@supports (-webkit-appearance:none){.palette-primary-green{background:#259b24}}.palette-primary-green .footer,.palette-primary-green .header{background:#259b24}.palette-primary-green .drawer .toc a.current,.palette-primary-green .drawer .toc a:focus,.palette-primary-green .drawer .toc a:hover{color:#259b24}.palette-primary-green .drawer .anchor a{border-left:2px solid #259b24}.ios.standalone .palette-primary-green .article{background:-webkit-linear-gradient(top,#fff 50%,#259b24 0);background:linear-gradient(180deg,#fff 50%,#259b24 0)}.palette-primary-green .article a,.palette-primary-green .article code,.palette-primary-green .article h1,.palette-primary-green .article h2{color:#259b24}.palette-primary-green .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-green .article table th{background:#5cb45b}.palette-primary-green .results .meta{background:#259b24}@supports (-webkit-appearance:none){.palette-primary-light-green{background:#7cb342}}.palette-primary-light-green .footer,.palette-primary-light-green .header{background:#7cb342}.palette-primary-light-green .drawer .toc a.current,.palette-primary-light-green .drawer .toc a:focus,.palette-primary-light-green .drawer .toc a:hover{color:#7cb342}.palette-primary-light-green .drawer .anchor a{border-left:2px solid #7cb342}.ios.standalone .palette-primary-light-green .article{background:-webkit-linear-gradient(top,#fff 50%,#7cb342 0);background:linear-gradient(180deg,#fff 50%,#7cb342 0)}.palette-primary-light-green .article a,.palette-primary-light-green .article code,.palette-primary-light-green .article h1,.palette-primary-light-green .article h2{color:#7cb342}.palette-primary-light-green .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-light-green .article table th{background:#9dc671}.palette-primary-light-green .results .meta{background:#7cb342}@supports (-webkit-appearance:none){.palette-primary-lime{background:#c0ca33}}.palette-primary-lime .footer,.palette-primary-lime .header{background:#c0ca33}.palette-primary-lime .drawer .toc a.current,.palette-primary-lime .drawer .toc a:focus,.palette-primary-lime .drawer .toc a:hover{color:#c0ca33}.palette-primary-lime .drawer .anchor a{border-left:2px solid #c0ca33}.ios.standalone .palette-primary-lime .article{background:-webkit-linear-gradient(top,#fff 50%,#c0ca33 0);background:linear-gradient(180deg,#fff 50%,#c0ca33 0)}.palette-primary-lime .article a,.palette-primary-lime .article code,.palette-primary-lime .article h1,.palette-primary-lime .article h2{color:#c0ca33}.palette-primary-lime .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-lime .article table th{background:#d0d766}.palette-primary-lime .results .meta{background:#c0ca33}@supports (-webkit-appearance:none){.palette-primary-yellow{background:#f9a825}}.palette-primary-yellow .footer,.palette-primary-yellow .header{background:#f9a825}.palette-primary-yellow .drawer .toc a.current,.palette-primary-yellow .drawer .toc a:focus,.palette-primary-yellow .drawer .toc a:hover{color:#f9a825}.palette-primary-yellow .drawer .anchor a{border-left:2px solid #f9a825}.ios.standalone .palette-primary-yellow .article{background:-webkit-linear-gradient(top,#fff 50%,#f9a825 0);background:linear-gradient(180deg,#fff 50%,#f9a825 0)}.palette-primary-yellow .article a,.palette-primary-yellow .article code,.palette-primary-yellow .article h1,.palette-primary-yellow .article h2{color:#f9a825}.palette-primary-yellow .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-yellow .article table th{background:#fbbe5c}.palette-primary-yellow .results .meta{background:#f9a825}@supports (-webkit-appearance:none){.palette-primary-amber{background:#ffb300}}.palette-primary-amber .footer,.palette-primary-amber .header{background:#ffb300}.palette-primary-amber .drawer .toc a.current,.palette-primary-amber .drawer .toc a:focus,.palette-primary-amber .drawer .toc a:hover{color:#ffb300}.palette-primary-amber .drawer .anchor a{border-left:2px solid #ffb300}.ios.standalone .palette-primary-amber .article{background:-webkit-linear-gradient(top,#fff 50%,#ffb300 0);background:linear-gradient(180deg,#fff 50%,#ffb300 0)}.palette-primary-amber .article a,.palette-primary-amber .article code,.palette-primary-amber .article h1,.palette-primary-amber .article h2{color:#ffb300}.palette-primary-amber .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-amber .article table th{background:#ffc640}.palette-primary-amber .results .meta{background:#ffb300}@supports (-webkit-appearance:none){.palette-primary-orange{background:#fb8c00}}.palette-primary-orange .footer,.palette-primary-orange .header{background:#fb8c00}.palette-primary-orange .drawer .toc a.current,.palette-primary-orange .drawer .toc a:focus,.palette-primary-orange .drawer .toc a:hover{color:#fb8c00}.palette-primary-orange .drawer .anchor a{border-left:2px solid #fb8c00}.ios.standalone .palette-primary-orange .article{background:-webkit-linear-gradient(top,#fff 50%,#fb8c00 0);background:linear-gradient(180deg,#fff 50%,#fb8c00 0)}.palette-primary-orange .article a,.palette-primary-orange .article code,.palette-primary-orange .article h1,.palette-primary-orange .article h2{color:#fb8c00}.palette-primary-orange .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-orange .article table th{background:#fca940}.palette-primary-orange .results .meta{background:#fb8c00}@supports (-webkit-appearance:none){.palette-primary-deep-orange{background:#ff7043}}.palette-primary-deep-orange .footer,.palette-primary-deep-orange .header{background:#ff7043}.palette-primary-deep-orange .drawer .toc a.current,.palette-primary-deep-orange .drawer .toc a:focus,.palette-primary-deep-orange .drawer .toc a:hover{color:#ff7043}.palette-primary-deep-orange .drawer .anchor a{border-left:2px solid #ff7043}.ios.standalone .palette-primary-deep-orange .article{background:-webkit-linear-gradient(top,#fff 50%,#ff7043 0);background:linear-gradient(180deg,#fff 50%,#ff7043 0)}.palette-primary-deep-orange .article a,.palette-primary-deep-orange .article code,.palette-primary-deep-orange .article h1,.palette-primary-deep-orange .article h2{color:#ff7043}.palette-primary-deep-orange .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-deep-orange .article table th{background:#ff9472}.palette-primary-deep-orange .results .meta{background:#ff7043}@supports (-webkit-appearance:none){.palette-primary-brown{background:#795548}}.palette-primary-brown .footer,.palette-primary-brown .header{background:#795548}.palette-primary-brown .drawer .toc a.current,.palette-primary-brown .drawer .toc a:focus,.palette-primary-brown .drawer .toc a:hover{color:#795548}.palette-primary-brown .drawer .anchor a{border-left:2px solid #795548}.ios.standalone .palette-primary-brown .article{background:-webkit-linear-gradient(top,#fff 50%,#795548 0);background:linear-gradient(180deg,#fff 50%,#795548 0)}.palette-primary-brown .article a,.palette-primary-brown .article code,.palette-primary-brown .article h1,.palette-primary-brown .article h2{color:#795548}.palette-primary-brown .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-brown .article table th{background:#9b8076}.palette-primary-brown .results .meta{background:#795548}@supports (-webkit-appearance:none){.palette-primary-grey{background:#757575}}.palette-primary-grey .footer,.palette-primary-grey .header{background:#757575}.palette-primary-grey .drawer .toc a.current,.palette-primary-grey .drawer .toc a:focus,.palette-primary-grey .drawer .toc a:hover{color:#757575}.palette-primary-grey .drawer .anchor a{border-left:2px solid #757575}.ios.standalone .palette-primary-grey .article{background:-webkit-linear-gradient(top,#fff 50%,#757575 0);background:linear-gradient(180deg,#fff 50%,#757575 0)}.palette-primary-grey .article a,.palette-primary-grey .article code,.palette-primary-grey .article h1,.palette-primary-grey .article h2{color:#757575}.palette-primary-grey .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-grey .article table th{background:#989898}.palette-primary-grey .results .meta{background:#757575}@supports (-webkit-appearance:none){.palette-primary-blue-grey{background:#546e7a}}.palette-primary-blue-grey .footer,.palette-primary-blue-grey .header{background:#546e7a}.palette-primary-blue-grey .drawer .toc a.current,.palette-primary-blue-grey .drawer .toc a:focus,.palette-primary-blue-grey .drawer .toc a:hover{color:#546e7a}.palette-primary-blue-grey .drawer .anchor a{border-left:2px solid #546e7a}.ios.standalone .palette-primary-blue-grey .article{background:-webkit-linear-gradient(top,#fff 50%,#546e7a 0);background:linear-gradient(180deg,#fff 50%,#546e7a 0)}.palette-primary-blue-grey .article a,.palette-primary-blue-grey .article code,.palette-primary-blue-grey .article h1,.palette-primary-blue-grey .article h2{color:#546e7a}.palette-primary-blue-grey .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-blue-grey .article table th{background:#7f929b}.palette-primary-blue-grey .results .meta{background:#546e7a}.palette-accent-red .article a:focus,.palette-accent-red .article a:hover{color:#ff2d6f}.palette-accent-red .repo a{background:#ff2d6f}.palette-accent-pink .article a:focus,.palette-accent-pink .article a:hover{color:#f50057}.palette-accent-pink .repo a{background:#f50057}.palette-accent-purple .article a:focus,.palette-accent-purple .article a:hover{color:#e040fb}.palette-accent-purple .repo a{background:#e040fb}.palette-accent-deep-purple .article a:focus,.palette-accent-deep-purple .article a:hover{color:#7c4dff}.palette-accent-deep-purple .repo a{background:#7c4dff}.palette-accent-indigo .article a:focus,.palette-accent-indigo .article a:hover{color:#536dfe}.palette-accent-indigo .repo a{background:#536dfe}.palette-accent-blue .article a:focus,.palette-accent-blue .article a:hover{color:#6889ff}.palette-accent-blue .repo a{background:#6889ff}.palette-accent-light-blue .article a:focus,.palette-accent-light-blue .article a:hover{color:#0091ea}.palette-accent-light-blue .repo a{background:#0091ea}.palette-accent-cyan .article a:focus,.palette-accent-cyan .article a:hover{color:#00b8d4}.palette-accent-cyan .repo a{background:#00b8d4}.palette-accent-teal .article a:focus,.palette-accent-teal .article a:hover{color:#00bfa5}.palette-accent-teal .repo a{background:#00bfa5}.palette-accent-green .article a:focus,.palette-accent-green .article a:hover{color:#12c700}.palette-accent-green .repo a{background:#12c700}.palette-accent-light-green .article a:focus,.palette-accent-light-green .article a:hover{color:#64dd17}.palette-accent-light-green .repo a{background:#64dd17}.palette-accent-lime .article a:focus,.palette-accent-lime .article a:hover{color:#aeea00}.palette-accent-lime .repo a{background:#aeea00}.palette-accent-yellow .article a:focus,.palette-accent-yellow .article a:hover{color:#ffd600}.palette-accent-yellow .repo a{background:#ffd600}.palette-accent-amber .article a:focus,.palette-accent-amber .article a:hover{color:#ffab00}.palette-accent-amber .repo a{background:#ffab00}.palette-accent-orange .article a:focus,.palette-accent-orange .article a:hover{color:#ff9100}.palette-accent-orange .repo a{background:#ff9100}.palette-accent-deep-orange .article a:focus,.palette-accent-deep-orange .article a:hover{color:#ff6e40}.palette-accent-deep-orange .repo a{background:#ff6e40}@media only screen and (max-width:959px){.palette-primary-red .project{background:#e84e40}.palette-primary-pink .project{background:#e91e63}.palette-primary-purple .project{background:#ab47bc}.palette-primary-deep-purple .project{background:#7e57c2}.palette-primary-indigo .project{background:#3f51b5}.palette-primary-blue .project{background:#5677fc}.palette-primary-light-blue .project{background:#03a9f4}.palette-primary-cyan .project{background:#00bcd4}.palette-primary-teal .project{background:#009688}.palette-primary-green .project{background:#259b24}.palette-primary-light-green .project{background:#7cb342}.palette-primary-lime .project{background:#c0ca33}.palette-primary-yellow .project{background:#f9a825}.palette-primary-amber .project{background:#ffb300}.palette-primary-orange .project{background:#fb8c00}.palette-primary-deep-orange .project{background:#ff7043}.palette-primary-brown .project{background:#795548}.palette-primary-grey .project{background:#757575}.palette-primary-blue-grey .project{background:#546e7a}}
\ No newline at end of file
diff --git a/material/assets/stylesheets/palettes.css b/material/assets/stylesheets/palettes.css
deleted file mode 100644
index ead0d849bf5c31d986114d6b045bc4afd7fe522c..0000000000000000000000000000000000000000
--- a/material/assets/stylesheets/palettes.css
+++ /dev/null
@@ -1 +0,0 @@
-@supports (-webkit-appearance:none){.palette-primary-red{background:#e84e40}}.palette-primary-red .footer,.palette-primary-red .header{background:#e84e40}.palette-primary-red .drawer .toc a.current,.palette-primary-red .drawer .toc a:focus,.palette-primary-red .drawer .toc a:hover{color:#e84e40}.palette-primary-red .drawer .anchor a{border-left:2px solid #e84e40}.ios.standalone .palette-primary-red .article{background:-webkit-linear-gradient(top,#fff 50%,#e84e40 0);background:linear-gradient(180deg,#fff 50%,#e84e40 0)}.palette-primary-red .article a,.palette-primary-red .article code,.palette-primary-red .article h1,.palette-primary-red .article h2{color:#e84e40}.palette-primary-red .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-red .article table th{background:#ee7a70}.palette-primary-red .results .meta{background:#e84e40}@supports (-webkit-appearance:none){.palette-primary-pink{background:#e91e63}}.palette-primary-pink .footer,.palette-primary-pink .header{background:#e91e63}.palette-primary-pink .drawer .toc a.current,.palette-primary-pink .drawer .toc a:focus,.palette-primary-pink .drawer .toc a:hover{color:#e91e63}.palette-primary-pink .drawer .anchor a{border-left:2px solid #e91e63}.ios.standalone .palette-primary-pink .article{background:-webkit-linear-gradient(top,#fff 50%,#e91e63 0);background:linear-gradient(180deg,#fff 50%,#e91e63 0)}.palette-primary-pink .article a,.palette-primary-pink .article code,.palette-primary-pink .article h1,.palette-primary-pink .article h2{color:#e91e63}.palette-primary-pink .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-pink .article table th{background:#ef568a}.palette-primary-pink .results .meta{background:#e91e63}@supports (-webkit-appearance:none){.palette-primary-purple{background:#ab47bc}}.palette-primary-purple .footer,.palette-primary-purple .header{background:#ab47bc}.palette-primary-purple .drawer .toc a.current,.palette-primary-purple .drawer .toc a:focus,.palette-primary-purple .drawer .toc a:hover{color:#ab47bc}.palette-primary-purple .drawer .anchor a{border-left:2px solid #ab47bc}.ios.standalone .palette-primary-purple .article{background:-webkit-linear-gradient(top,#fff 50%,#ab47bc 0);background:linear-gradient(180deg,#fff 50%,#ab47bc 0)}.palette-primary-purple .article a,.palette-primary-purple .article code,.palette-primary-purple .article h1,.palette-primary-purple .article h2{color:#ab47bc}.palette-primary-purple .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-purple .article table th{background:#c075cd}.palette-primary-purple .results .meta{background:#ab47bc}@supports (-webkit-appearance:none){.palette-primary-deep-purple{background:#7e57c2}}.palette-primary-deep-purple .footer,.palette-primary-deep-purple .header{background:#7e57c2}.palette-primary-deep-purple .drawer .toc a.current,.palette-primary-deep-purple .drawer .toc a:focus,.palette-primary-deep-purple .drawer .toc a:hover{color:#7e57c2}.palette-primary-deep-purple .drawer .anchor a{border-left:2px solid #7e57c2}.ios.standalone .palette-primary-deep-purple .article{background:-webkit-linear-gradient(top,#fff 50%,#7e57c2 0);background:linear-gradient(180deg,#fff 50%,#7e57c2 0)}.palette-primary-deep-purple .article a,.palette-primary-deep-purple .article code,.palette-primary-deep-purple .article h1,.palette-primary-deep-purple .article h2{color:#7e57c2}.palette-primary-deep-purple .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-deep-purple .article table th{background:#9e81d1}.palette-primary-deep-purple .results .meta{background:#7e57c2}@supports (-webkit-appearance:none){.palette-primary-indigo{background:#3f51b5}}.palette-primary-indigo .footer,.palette-primary-indigo .header{background:#3f51b5}.palette-primary-indigo .drawer .toc a.current,.palette-primary-indigo .drawer .toc a:focus,.palette-primary-indigo .drawer .toc a:hover{color:#3f51b5}.palette-primary-indigo .drawer .anchor a{border-left:2px solid #3f51b5}.ios.standalone .palette-primary-indigo .article{background:-webkit-linear-gradient(top,#fff 50%,#3f51b5 0);background:linear-gradient(180deg,#fff 50%,#3f51b5 0)}.palette-primary-indigo .article a,.palette-primary-indigo .article code,.palette-primary-indigo .article h1,.palette-primary-indigo .article h2{color:#3f51b5}.palette-primary-indigo .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-indigo .article table th{background:#6f7dc8}.palette-primary-indigo .results .meta{background:#3f51b5}@supports (-webkit-appearance:none){.palette-primary-blue{background:#5677fc}}.palette-primary-blue .footer,.palette-primary-blue .header{background:#5677fc}.palette-primary-blue .drawer .toc a.current,.palette-primary-blue .drawer .toc a:focus,.palette-primary-blue .drawer .toc a:hover{color:#5677fc}.palette-primary-blue .drawer .anchor a{border-left:2px solid #5677fc}.ios.standalone .palette-primary-blue .article{background:-webkit-linear-gradient(top,#fff 50%,#5677fc 0);background:linear-gradient(180deg,#fff 50%,#5677fc 0)}.palette-primary-blue .article a,.palette-primary-blue .article code,.palette-primary-blue .article h1,.palette-primary-blue .article h2{color:#5677fc}.palette-primary-blue .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-blue .article table th{background:#8099fd}.palette-primary-blue .results .meta{background:#5677fc}@supports (-webkit-appearance:none){.palette-primary-light-blue{background:#03a9f4}}.palette-primary-light-blue .footer,.palette-primary-light-blue .header{background:#03a9f4}.palette-primary-light-blue .drawer .toc a.current,.palette-primary-light-blue .drawer .toc a:focus,.palette-primary-light-blue .drawer .toc a:hover{color:#03a9f4}.palette-primary-light-blue .drawer .anchor a{border-left:2px solid #03a9f4}.ios.standalone .palette-primary-light-blue .article{background:-webkit-linear-gradient(top,#fff 50%,#03a9f4 0);background:linear-gradient(180deg,#fff 50%,#03a9f4 0)}.palette-primary-light-blue .article a,.palette-primary-light-blue .article code,.palette-primary-light-blue .article h1,.palette-primary-light-blue .article h2{color:#03a9f4}.palette-primary-light-blue .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-light-blue .article table th{background:#42bff7}.palette-primary-light-blue .results .meta{background:#03a9f4}@supports (-webkit-appearance:none){.palette-primary-cyan{background:#00bcd4}}.palette-primary-cyan .footer,.palette-primary-cyan .header{background:#00bcd4}.palette-primary-cyan .drawer .toc a.current,.palette-primary-cyan .drawer .toc a:focus,.palette-primary-cyan .drawer .toc a:hover{color:#00bcd4}.palette-primary-cyan .drawer .anchor a{border-left:2px solid #00bcd4}.ios.standalone .palette-primary-cyan .article{background:-webkit-linear-gradient(top,#fff 50%,#00bcd4 0);background:linear-gradient(180deg,#fff 50%,#00bcd4 0)}.palette-primary-cyan .article a,.palette-primary-cyan .article code,.palette-primary-cyan .article h1,.palette-primary-cyan .article h2{color:#00bcd4}.palette-primary-cyan .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-cyan .article table th{background:#40cddf}.palette-primary-cyan .results .meta{background:#00bcd4}@supports (-webkit-appearance:none){.palette-primary-teal{background:#009688}}.palette-primary-teal .footer,.palette-primary-teal .header{background:#009688}.palette-primary-teal .drawer .toc a.current,.palette-primary-teal .drawer .toc a:focus,.palette-primary-teal .drawer .toc a:hover{color:#009688}.palette-primary-teal .drawer .anchor a{border-left:2px solid #009688}.ios.standalone .palette-primary-teal .article{background:-webkit-linear-gradient(top,#fff 50%,#009688 0);background:linear-gradient(180deg,#fff 50%,#009688 0)}.palette-primary-teal .article a,.palette-primary-teal .article code,.palette-primary-teal .article h1,.palette-primary-teal .article h2{color:#009688}.palette-primary-teal .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-teal .article table th{background:#40b0a6}.palette-primary-teal .results .meta{background:#009688}@supports (-webkit-appearance:none){.palette-primary-green{background:#259b24}}.palette-primary-green .footer,.palette-primary-green .header{background:#259b24}.palette-primary-green .drawer .toc a.current,.palette-primary-green .drawer .toc a:focus,.palette-primary-green .drawer .toc a:hover{color:#259b24}.palette-primary-green .drawer .anchor a{border-left:2px solid #259b24}.ios.standalone .palette-primary-green .article{background:-webkit-linear-gradient(top,#fff 50%,#259b24 0);background:linear-gradient(180deg,#fff 50%,#259b24 0)}.palette-primary-green .article a,.palette-primary-green .article code,.palette-primary-green .article h1,.palette-primary-green .article h2{color:#259b24}.palette-primary-green .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-green .article table th{background:#5cb45b}.palette-primary-green .results .meta{background:#259b24}@supports (-webkit-appearance:none){.palette-primary-light-green{background:#7cb342}}.palette-primary-light-green .footer,.palette-primary-light-green .header{background:#7cb342}.palette-primary-light-green .drawer .toc a.current,.palette-primary-light-green .drawer .toc a:focus,.palette-primary-light-green .drawer .toc a:hover{color:#7cb342}.palette-primary-light-green .drawer .anchor a{border-left:2px solid #7cb342}.ios.standalone .palette-primary-light-green .article{background:-webkit-linear-gradient(top,#fff 50%,#7cb342 0);background:linear-gradient(180deg,#fff 50%,#7cb342 0)}.palette-primary-light-green .article a,.palette-primary-light-green .article code,.palette-primary-light-green .article h1,.palette-primary-light-green .article h2{color:#7cb342}.palette-primary-light-green .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-light-green .article table th{background:#9dc671}.palette-primary-light-green .results .meta{background:#7cb342}@supports (-webkit-appearance:none){.palette-primary-lime{background:#c0ca33}}.palette-primary-lime .footer,.palette-primary-lime .header{background:#c0ca33}.palette-primary-lime .drawer .toc a.current,.palette-primary-lime .drawer .toc a:focus,.palette-primary-lime .drawer .toc a:hover{color:#c0ca33}.palette-primary-lime .drawer .anchor a{border-left:2px solid #c0ca33}.ios.standalone .palette-primary-lime .article{background:-webkit-linear-gradient(top,#fff 50%,#c0ca33 0);background:linear-gradient(180deg,#fff 50%,#c0ca33 0)}.palette-primary-lime .article a,.palette-primary-lime .article code,.palette-primary-lime .article h1,.palette-primary-lime .article h2{color:#c0ca33}.palette-primary-lime .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-lime .article table th{background:#d0d766}.palette-primary-lime .results .meta{background:#c0ca33}@supports (-webkit-appearance:none){.palette-primary-yellow{background:#f9a825}}.palette-primary-yellow .footer,.palette-primary-yellow .header{background:#f9a825}.palette-primary-yellow .drawer .toc a.current,.palette-primary-yellow .drawer .toc a:focus,.palette-primary-yellow .drawer .toc a:hover{color:#f9a825}.palette-primary-yellow .drawer .anchor a{border-left:2px solid #f9a825}.ios.standalone .palette-primary-yellow .article{background:-webkit-linear-gradient(top,#fff 50%,#f9a825 0);background:linear-gradient(180deg,#fff 50%,#f9a825 0)}.palette-primary-yellow .article a,.palette-primary-yellow .article code,.palette-primary-yellow .article h1,.palette-primary-yellow .article h2{color:#f9a825}.palette-primary-yellow .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-yellow .article table th{background:#fbbe5c}.palette-primary-yellow .results .meta{background:#f9a825}@supports (-webkit-appearance:none){.palette-primary-amber{background:#ffb300}}.palette-primary-amber .footer,.palette-primary-amber .header{background:#ffb300}.palette-primary-amber .drawer .toc a.current,.palette-primary-amber .drawer .toc a:focus,.palette-primary-amber .drawer .toc a:hover{color:#ffb300}.palette-primary-amber .drawer .anchor a{border-left:2px solid #ffb300}.ios.standalone .palette-primary-amber .article{background:-webkit-linear-gradient(top,#fff 50%,#ffb300 0);background:linear-gradient(180deg,#fff 50%,#ffb300 0)}.palette-primary-amber .article a,.palette-primary-amber .article code,.palette-primary-amber .article h1,.palette-primary-amber .article h2{color:#ffb300}.palette-primary-amber .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-amber .article table th{background:#ffc640}.palette-primary-amber .results .meta{background:#ffb300}@supports (-webkit-appearance:none){.palette-primary-orange{background:#fb8c00}}.palette-primary-orange .footer,.palette-primary-orange .header{background:#fb8c00}.palette-primary-orange .drawer .toc a.current,.palette-primary-orange .drawer .toc a:focus,.palette-primary-orange .drawer .toc a:hover{color:#fb8c00}.palette-primary-orange .drawer .anchor a{border-left:2px solid #fb8c00}.ios.standalone .palette-primary-orange .article{background:-webkit-linear-gradient(top,#fff 50%,#fb8c00 0);background:linear-gradient(180deg,#fff 50%,#fb8c00 0)}.palette-primary-orange .article a,.palette-primary-orange .article code,.palette-primary-orange .article h1,.palette-primary-orange .article h2{color:#fb8c00}.palette-primary-orange .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-orange .article table th{background:#fca940}.palette-primary-orange .results .meta{background:#fb8c00}@supports (-webkit-appearance:none){.palette-primary-deep-orange{background:#ff7043}}.palette-primary-deep-orange .footer,.palette-primary-deep-orange .header{background:#ff7043}.palette-primary-deep-orange .drawer .toc a.current,.palette-primary-deep-orange .drawer .toc a:focus,.palette-primary-deep-orange .drawer .toc a:hover{color:#ff7043}.palette-primary-deep-orange .drawer .anchor a{border-left:2px solid #ff7043}.ios.standalone .palette-primary-deep-orange .article{background:-webkit-linear-gradient(top,#fff 50%,#ff7043 0);background:linear-gradient(180deg,#fff 50%,#ff7043 0)}.palette-primary-deep-orange .article a,.palette-primary-deep-orange .article code,.palette-primary-deep-orange .article h1,.palette-primary-deep-orange .article h2{color:#ff7043}.palette-primary-deep-orange .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-deep-orange .article table th{background:#ff9472}.palette-primary-deep-orange .results .meta{background:#ff7043}@supports (-webkit-appearance:none){.palette-primary-brown{background:#795548}}.palette-primary-brown .footer,.palette-primary-brown .header{background:#795548}.palette-primary-brown .drawer .toc a.current,.palette-primary-brown .drawer .toc a:focus,.palette-primary-brown .drawer .toc a:hover{color:#795548}.palette-primary-brown .drawer .anchor a{border-left:2px solid #795548}.ios.standalone .palette-primary-brown .article{background:-webkit-linear-gradient(top,#fff 50%,#795548 0);background:linear-gradient(180deg,#fff 50%,#795548 0)}.palette-primary-brown .article a,.palette-primary-brown .article code,.palette-primary-brown .article h1,.palette-primary-brown .article h2{color:#795548}.palette-primary-brown .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-brown .article table th{background:#9b8076}.palette-primary-brown .results .meta{background:#795548}@supports (-webkit-appearance:none){.palette-primary-grey{background:#757575}}.palette-primary-grey .footer,.palette-primary-grey .header{background:#757575}.palette-primary-grey .drawer .toc a.current,.palette-primary-grey .drawer .toc a:focus,.palette-primary-grey .drawer .toc a:hover{color:#757575}.palette-primary-grey .drawer .anchor a{border-left:2px solid #757575}.ios.standalone .palette-primary-grey .article{background:-webkit-linear-gradient(top,#fff 50%,#757575 0);background:linear-gradient(180deg,#fff 50%,#757575 0)}.palette-primary-grey .article a,.palette-primary-grey .article code,.palette-primary-grey .article h1,.palette-primary-grey .article h2{color:#757575}.palette-primary-grey .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-grey .article table th{background:#989898}.palette-primary-grey .results .meta{background:#757575}@supports (-webkit-appearance:none){.palette-primary-blue-grey{background:#546e7a}}.palette-primary-blue-grey .footer,.palette-primary-blue-grey .header{background:#546e7a}.palette-primary-blue-grey .drawer .toc a.current,.palette-primary-blue-grey .drawer .toc a:focus,.palette-primary-blue-grey .drawer .toc a:hover{color:#546e7a}.palette-primary-blue-grey .drawer .anchor a{border-left:2px solid #546e7a}.ios.standalone .palette-primary-blue-grey .article{background:-webkit-linear-gradient(top,#fff 50%,#546e7a 0);background:linear-gradient(180deg,#fff 50%,#546e7a 0)}.palette-primary-blue-grey .article a,.palette-primary-blue-grey .article code,.palette-primary-blue-grey .article h1,.palette-primary-blue-grey .article h2{color:#546e7a}.palette-primary-blue-grey .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-blue-grey .article table th{background:#7f929b}.palette-primary-blue-grey .results .meta{background:#546e7a}.palette-accent-red .article a:focus,.palette-accent-red .article a:hover{color:#ff2d6f}.palette-accent-red .repo a{background:#ff2d6f}.palette-accent-pink .article a:focus,.palette-accent-pink .article a:hover{color:#f50057}.palette-accent-pink .repo a{background:#f50057}.palette-accent-purple .article a:focus,.palette-accent-purple .article a:hover{color:#e040fb}.palette-accent-purple .repo a{background:#e040fb}.palette-accent-deep-purple .article a:focus,.palette-accent-deep-purple .article a:hover{color:#7c4dff}.palette-accent-deep-purple .repo a{background:#7c4dff}.palette-accent-indigo .article a:focus,.palette-accent-indigo .article a:hover{color:#536dfe}.palette-accent-indigo .repo a{background:#536dfe}.palette-accent-blue .article a:focus,.palette-accent-blue .article a:hover{color:#6889ff}.palette-accent-blue .repo a{background:#6889ff}.palette-accent-light-blue .article a:focus,.palette-accent-light-blue .article a:hover{color:#0091ea}.palette-accent-light-blue .repo a{background:#0091ea}.palette-accent-cyan .article a:focus,.palette-accent-cyan .article a:hover{color:#00b8d4}.palette-accent-cyan .repo a{background:#00b8d4}.palette-accent-teal .article a:focus,.palette-accent-teal .article a:hover{color:#00bfa5}.palette-accent-teal .repo a{background:#00bfa5}.palette-accent-green .article a:focus,.palette-accent-green .article a:hover{color:#12c700}.palette-accent-green .repo a{background:#12c700}.palette-accent-light-green .article a:focus,.palette-accent-light-green .article a:hover{color:#64dd17}.palette-accent-light-green .repo a{background:#64dd17}.palette-accent-lime .article a:focus,.palette-accent-lime .article a:hover{color:#aeea00}.palette-accent-lime .repo a{background:#aeea00}.palette-accent-yellow .article a:focus,.palette-accent-yellow .article a:hover{color:#ffd600}.palette-accent-yellow .repo a{background:#ffd600}.palette-accent-amber .article a:focus,.palette-accent-amber .article a:hover{color:#ffab00}.palette-accent-amber .repo a{background:#ffab00}.palette-accent-orange .article a:focus,.palette-accent-orange .article a:hover{color:#ff9100}.palette-accent-orange .repo a{background:#ff9100}.palette-accent-deep-orange .article a:focus,.palette-accent-deep-orange .article a:hover{color:#ff6e40}.palette-accent-deep-orange .repo a{background:#ff6e40}@media only screen and (max-width:959px){.palette-primary-red .project{background:#e84e40}.palette-primary-pink .project{background:#e91e63}.palette-primary-purple .project{background:#ab47bc}.palette-primary-deep-purple .project{background:#7e57c2}.palette-primary-indigo .project{background:#3f51b5}.palette-primary-blue .project{background:#5677fc}.palette-primary-light-blue .project{background:#03a9f4}.palette-primary-cyan .project{background:#00bcd4}.palette-primary-teal .project{background:#009688}.palette-primary-green .project{background:#259b24}.palette-primary-light-green .project{background:#7cb342}.palette-primary-lime .project{background:#c0ca33}.palette-primary-yellow .project{background:#f9a825}.palette-primary-amber .project{background:#ffb300}.palette-primary-orange .project{background:#fb8c00}.palette-primary-deep-orange .project{background:#ff7043}.palette-primary-brown .project{background:#795548}.palette-primary-grey .project{background:#757575}.palette-primary-blue-grey .project{background:#546e7a}}
\ No newline at end of file
diff --git a/material/base.html b/material/base.html
index 340e7aa593cd4c70e45101c4a39227c2461c08fa..046e7d67dbf7491c0af00d69c71f1cf029d148a2 100644
--- a/material/base.html
+++ b/material/base.html
@@ -1,180 +1,139 @@
+{% import "partials/language.html" as lang %}
 <!DOCTYPE html>
-<!--[if lt IE 7 ]><html class="no-js ie6"><![endif]-->
-<!--[if IE 7 ]><html class="no-js ie7"><![endif]-->
-<!--[if IE 8 ]><html class="no-js ie8"><![endif]-->
-<!--[if IE 9 ]><html class="no-js ie9"><![endif]-->
-<!--[if (gt IE 9)|!(IE)]><!--> <html class="no-js"> <!--<![endif]-->
+<html class="no-js">
   <head>
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1">
-    {% block htmltitle %}
-      {% if page_title %}
-        <title>{{ page_title }} - {{ site_name }}</title>
-      {% elif page_description %}
-        <title>{{ site_name }} - {{ page_description }}</title>
+    {% block site_meta %}
+      <meta charset="utf-8">
+      <meta name="viewport" content="width=device-width,initial-scale=1">
+      {% if config.site_description %}
+        <meta name="description" content="{{ config.site_description }}">
+      {% endif %}
+      {% if page.canonical_url %}
+        <link rel="canonical" href="{{ page.canonical_url }}">
+      {% endif %}
+      {% if config.site_author %}
+        <meta name="author" content="{{ config.site_author }}">
+      {% endif %}
+      {% if config.site_favicon %}
+        <link rel="shortcut icon" href="{{ base_url }}/{{ config.site_favicon }}">
       {% else %}
-        <title>{{ site_name }}</title>
+        <link rel="shortcut icon" href="{{ base_url }}/assets/images/favicon.ico">
       {% endif %}
-      {% if page_description %}
-        <meta name="description" content="{{ page_description }}">
+      <meta name="generator" content="mkdocs+mkdocs-material#1.0.2">
+    {% endblock %}
+    {% block htmltitle %}
+      {% if page.title %}
+        <title>{{ page.title }} - {{ config.site_name }}</title>
+      {% elif config.site_description %}
+        <title>{{ config.site_name }} - {{ config.site_description }}</title>
+      {% else %}
+        <title>{{ config.site_name }}</title>
       {% endif %}
-      {% if canonical_url %}
-        <link rel="canonical" href="{{ canonical_url }}">
+    {% endblock %}
+    {% block libs %}
+      <script src="{{ base_url }}/assets/javascripts/modernizr-facb31f4a3.js"></script>
+    {% endblock %}
+    {% block fonts %}
+      {% if config.extra.font != "none" %}
+        {% set text = config.extra.get("font", {}).text | default("Roboto") %}
+        {% set code = config.extra.get("font", {}).code
+                    | default("Roboto Mono") %}
+        {% set font = text + ':300,400,400i,700|' + code | replace(' ', '+') %}
+        <link rel="stylesheet" href="https://fonts.googleapis.com/css?family={{ font }}">
+        <style>body,input{font-family:"{{ text }}","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"{{ code }}","Courier New",Courier,monospace}</style>
       {% endif %}
-      {% if site_author %}
-        <meta name="author" content="{{ site_author }}">
+      <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
+    {% endblock %}
+    {% block styles %}
+      <link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-f3ab63f78a.css">
+      {% if config.extra.palette %}
+        <link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-02ce7adcc2.palette.css">
       {% endif %}
+      {% for path in extra_css %}
+        <link rel="stylesheet" href="{{ path }}">
+      {% endfor %}
     {% endblock %}
-    <meta property="og:url" content="{{ canonical_url }}">
-    <meta property="og:title" content="{{ site_name }}">
-    <meta property="og:image" content="{{ canonical_url }}/{{ base_url }}/{{ config.extra.logo }}">
-    <meta name="apple-mobile-web-app-title" content="{{ site_name }}">
-    <meta name="apple-mobile-web-app-capable" content="yes">
-    <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
-    {% if config.extra.logo %}
-      <link rel="apple-touch-icon" href="{{ base_url }}/{{ config.extra.logo }}">
-    {% endif %}
-    {% set favicon = favicon | default("assets/images/favicon-e565ddfa3b.ico", true) %}
-    <link rel="shortcut icon" type="image/x-icon" href="{{ base_url }}/{{ favicon }}">
-    <link rel="icon" type="image/x-icon" href="{{ base_url }}/{{ favicon }}">
-    <style>
-      @font-face {
-      	font-family: 'Icon';
-      	src: url('{{ base_url }}/assets/fonts/icon.eot?52m981');
-      	src: url('{{ base_url }}/assets/fonts/icon.eot?#iefix52m981')
-               format('embedded-opentype'),
-      		   url('{{ base_url }}/assets/fonts/icon.woff?52m981')
-               format('woff'),
-      		   url('{{ base_url }}/assets/fonts/icon.ttf?52m981')
-               format('truetype'),
-      		   url('{{ base_url }}/assets/fonts/icon.svg?52m981#icon')
-               format('svg');
-      	font-weight: normal;
-      	font-style: normal;
-      }
-    </style>
-    <link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-a422ff04cc.css">
-    {% if config.extra.palette %}
-      <link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/palettes-05ab2406df.css">
-    {% endif %}
-    {% if config.extra.font != "none" %}
-      {% set text = config.extra.get("font", {}).text | default("Ubuntu") %}
-      {% set code = config.extra.get("font", {}).code | default("Ubuntu Mono") %}
-      {% set font = text + ':400,700|' + code | replace(' ', '+') %}
-      <link rel="stylesheet" href="https://fonts.googleapis.com/css?family={{ font }}">
-      <style>
-        body, input {
-          font-family: '{{ text }}', Helvetica, Arial, sans-serif;
-        }
-        pre, code {
-          font-family: '{{ code }}', 'Courier New', 'Courier', monospace;
-        }
-      </style>
-    {% endif %}
-    {% for path in extra_css %}
-      <link rel="stylesheet" href="{{ path }}">
-    {% endfor %}
-    <script src="{{ base_url }}/assets/javascripts/modernizr-4ab42b99fd.js"></script>
     {% block extrahead %}{% endblock %}
   </head>
   {% set palette = config.extra.get("palette", {}) %}
-  {% set primary = palette.primary | replace(' ', '-') | lower %}
-  {% set accent  = palette.accent  | replace(' ', '-') | lower %}
-  <body class="{% if primary %}palette-primary-{{ primary }}{% endif %} {% if accent %}palette-accent-{{ accent }}{% endif %}">
-    {% if repo_name == "GitHub" and repo_url %}
-      {% set repo_id = repo_url | replace("https://github.com/", "") %}
-      {% if repo_id[-1:] == "/" %}
-        {% set repo_id = repo_id[:-1] %}
-      {% endif %}
-    {% endif %}
-    <div class="backdrop">
-      <div class="backdrop-paper"></div>
-    </div>
-    <input class="toggle" type="checkbox" id="toggle-drawer">
-    <input class="toggle" type="checkbox" id="toggle-search">
-    <label class="toggle-button overlay" for="toggle-drawer"></label>
-    <header class="header">
-      {% include "header.html" %}
-    </header>
-    <main class="main">
-      {% set h1 = "\x3ch1 id=" in content %}
-      <div class="drawer">
-        {% include "drawer.html" %}
-      </div>
-      <article class="article">
-        <div class="wrapper">
-          {% if not h1 %}
-            <h1>{{ page_title | default(site_name, true)}}</h1>
-          {% endif %}
-          {{ content }}
-          <aside class="copyright" role="note">
-            {% if copyright %}
-              {{ copyright }} &ndash;
+  {% set primary = palette.primary | replace(" ", "-") | lower %}
+  {% set accent  = palette.accent  | replace(" ", "-") | lower %}
+  {% if primary or accent %}
+    <body data-md-color-primary="{{ primary }}" data-md-color-accent="{{ accent }}">
+  {% else %}
+    <body>
+  {% endif %}
+    <svg class="md-svg">
+      <defs>
+        {% set platform = config.extra.repo_icon or config.repo_url %}
+        {% if "github" in platform %}
+          {% include "assets/images/icons/github-1da075986e.svg" %}
+        {% elif "gitlab" in platform %}
+          {% include "assets/images/icons/gitlab-5ad3f9f9e5.svg" %}
+        {% elif "bitbucket" in platform %}
+          {% include "assets/images/icons/bitbucket-670608a71a.svg" %}
+        {% endif %}
+      </defs>
+    </svg>
+    <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="drawer">
+    <input class="md-toggle" data-md-toggle="search" type="checkbox" id="search">
+    <label class="md-overlay" data-md-component="overlay" for="drawer"></label>
+    {% block header %}
+      {% include "partials/header.html" %}
+    {% endblock %}
+    <div class="md-container">
+      <main class="md-main">
+        <div class="md-main__inner md-grid" data-md-component="container">
+          {% block site_nav %}
+            {% if nav %}
+              <div class="md-sidebar md-sidebar--primary" data-md-component="navigation">
+                <div class="md-sidebar__scrollwrap">
+                  <div class="md-sidebar__inner">
+                    {% include "partials/nav.html" %}
+                  </div>
+                </div>
+              </div>
+            {% endif %}
+            {% if page.toc %}
+              <div class="md-sidebar md-sidebar--secondary" data-md-component="toc">
+                <div class="md-sidebar__scrollwrap">
+                  <div class="md-sidebar__inner">
+                    {% include "partials/toc.html" %}
+                  </div>
+                </div>
+              </div>
             {% endif %}
-            Documentation built with
-            <a href="http://www.mkdocs.org" target="_blank">MkDocs</a>
-            using the
-            <a href="http://squidfunk.github.io/mkdocs-material/" target="_blank">
-              Material
-            </a>
-            theme.
-          </aside>
-          {% block footer %}
-            <footer class="footer">
-              {% include "footer.html" %}
-            </footer>
           {% endblock %}
-        </div>
-      </article>
-      <div class="results" role="status" aria-live="polite">
-        <div class="scrollable">
-          <div class="wrapper">
-            <div class="meta"></div>
-            <div class="list"></div>
+          <div class="md-content">
+            <article class="md-content__inner md-typeset">
+               {% if config.edit_uri %}
+                 <a href="{{ page.edit_url }}" title="{{ lang.t('edit.link.title') }}" class="md-icon md-content__edit">edit</a>
+               {% endif %}
+              {% block content %}
+                {% if not "\x3ch1 id=" in page.content %}
+                  <h1>{{ page.title | default(config.site_name, true)}}</h1>
+                {% endif %}
+                {{ page.content }}
+              {% endblock %}
+            </article>
           </div>
         </div>
-      </div>
-    </main>
-    <script>
-      var base_url = '{{ base_url }}';
-      var repo_id  = '{{ repo_id }}';
-    </script>
-    <script src="{{ base_url }}/assets/javascripts/application-997097ee0c.js"></script>
-    {% for path in extra_javascript %}
-      <script src="{{ path }}"></script>
-    {% endfor %}
-    {% if google_analytics %}
-      <script>
-        (function(i,s,o,g,r,a,m){
-          i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||
-          []).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
-          m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;
-          m.parentNode.insertBefore(a,m)
-        })(window, document,
-          'script', 'https://www.google-analytics.com/analytics.js', 'ga');
-        /* General initialization */
-        ga('create', '{{ google_analytics[0] }}', '{{ google_analytics[1] }}');
-        ga('set', 'anonymizeIp', true);
-        ga('send', 'pageview');
-        /* Track outbound links */
-        var buttons = document.querySelectorAll('a');
-        Array.prototype.map.call(buttons, function(item) {
-          if (item.host != document.location.host) {
-            item.addEventListener('click', function() {
-              var action = item.getAttribute('data-action') || 'follow';
-              ga('send', 'event', 'outbound', action, item.href);
-            });
-          }
-        });
-        /* Register handler to log search on blur */
-        var query = document.querySelector('.query');
-        query.addEventListener('blur', function() {
-          if (this.value) {
-            var path = document.location.pathname;
-            ga('send', 'pageview', path + '?q=' + this.value);
-          }
-        });
-      </script>
-    {% endif %}
+      </main>
+      {% block footer %}
+        {% include "partials/footer.html" %}
+      {% endblock %}
+    </div>
+    {% block scripts %}
+      <script src="{{ base_url }}/assets/javascripts/application-16f434a21a.js"></script>
+      <script>var config={url:{base:"{{ base_url }}"}},app=new Application(config);app.initialize()</script>
+      {% for path in extra_javascript %}
+        <script src="{{ path }}"></script>
+      {% endfor %}
+    {% endblock %}
+    {% block analytics %}
+      {% if config.google_analytics %}
+      <script>!function(e,t,a,n,o,c,i){e.GoogleAnalyticsObject=o,e[o]=e[o]||function(){(e[o].q=e[o].q||[]).push(arguments)},e[o].l=1*new Date,c=t.createElement(a),i=t.getElementsByTagName(a)[0],c.async=1,c.src=n,i.parentNode.insertBefore(c,i)}(window,document,"script","https://www.google-analytics.com/analytics.js","ga"),ga("create","{{ config.google_analytics[0] }}","{{ config.google_analytics[1] }}"),ga("set","anonymizeIp",!0),ga("send","pageview");var links=document.getElementsByTagName("a");Array.prototype.map.call(links,function(e){e.host!=document.location.host&&e.addEventListener("click",function(){var t=e.getAttribute("data-md-action")||"follow";ga("send","event","outbound",t,e.href)})});var query=document.forms.search.query;query.addEventListener("blur",function(){if(this.value){var e=document.location.pathname;ga("send","pageview",e+"?q="+this.value)}})</script>
+      {% endif %}
+    {% endblock %}
   </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/material/drawer.html b/material/drawer.html
deleted file mode 100644
index 30edd3a0b93673c81332058f99f2ea12d0d60bcc..0000000000000000000000000000000000000000
--- a/material/drawer.html
+++ /dev/null
@@ -1,76 +0,0 @@
-<nav aria-label="Navigation">
-  {% set home = repo_url | default("/", true) %}
-  {% if repo_name == "GitHub" and repo_url %}
-  <a href="{{ home }}" class="project">
-    <div class="banner">
-      {% if config.extra.logo %}
-        <div class="logo">
-          <img src="{{ base_url }}/{{ config.extra.logo }}">
-        </div>
-      {% endif %}
-      <div class="name">
-        <strong>
-          {{ site_name }}
-          <span class="version">
-            {{ config.extra.version }}
-          </span>
-        </strong>
-        {% if repo_id %}
-          <br>
-          {{ repo_id }}
-        {% endif %}
-      </div>
-    </div>
-  </a>
-  {% endif %}
-  <div class="scrollable">
-    <div class="wrapper">
-      {% if repo_name == "GitHub" and repo_url %}
-        <ul class="repo">
-          <li class="repo-download">
-            {% set version = config.extra.version | default("master") %}
-            <a href="{{ repo_url }}/archive/{{ version }}.zip" target="_blank" title="Download" data-action="download">
-              <i class="icon icon-download"></i> Download
-            </a>
-          </li>
-          <li class="repo-stars">
-            <a href="{{ repo_url }}/stargazers" target="_blank" title="Stargazers" data-action="star">
-              <i class="icon icon-star"></i> Stars
-              <span class="count">&ndash;</span>
-            </a>
-          </li>
-        </ul>
-        <hr>
-      {% endif %}
-      <div class="toc">
-        <ul>
-          {% for nav_item in nav %}
-            {% include "nav.html" %}
-          {% endfor %}
-        </ul>
-        {% if config.extra.author %}
-          <hr>
-          <span class="section">The author</span>
-          <ul>
-            {% if config.extra.author.twitter %}
-              {% set author = config.extra.author.twitter %}
-              <li>
-                <a href="https://twitter.com/{{ author }}" target="_blank" title="@{{ author }} on Twitter">
-                  @{{ author }} on Twitter
-                </a>
-              </li>
-            {% endif %}
-            {% if config.extra.author.github %}
-              {% set author = config.extra.author.github %}
-              <li>
-                <a href="https://github.com/{{ author }}" target="_blank" title="@{{ author }} on GitHub">
-                  @{{ author }} on GitHub
-                </a>
-              </li>
-            {% endif %}
-          </ul>
-        {% endif %}
-      </div>
-    </div>
-  </div>
-</nav>
diff --git a/material/footer.html b/material/footer.html
deleted file mode 100644
index 660b28f675bed601c659042ae28edc4e8001cbf5..0000000000000000000000000000000000000000
--- a/material/footer.html
+++ /dev/null
@@ -1,42 +0,0 @@
-{% if include_next_prev %}
-  <nav class="pagination" aria-label="Footer">
-    <div class="previous">
-      {% if previous_page %}
-        <a href="{{ previous_page.url }}" title="{{ previous_page.title }}">
-          <span class="direction">
-            {{ config.extra.get("i18n", {}).prev | default("Previous") }}
-          </span>
-          <div class="page">
-            <div class="button button-previous" role="button" aria-label="Previous">
-              <i class="icon icon-back"></i>
-            </div>
-            <div class="stretch">
-              <div class="title">
-                {{ previous_page.title }}
-              </div>
-            </div>
-          </div>
-        </a>
-      {% endif %}
-    </div>
-    <div class="next">
-      {% if next_page %}
-        <a href="{{ next_page.url }}" title="{{ next_page.title }}">
-          <span class="direction">
-            {{ config.extra.get("i18n", {}).next | default("Next") }}
-          </span>
-          <div class="page">
-            <div class="stretch">
-              <div class="title">
-                {{ next_page.title }}
-              </div>
-            </div>
-            <div class="button button-next" role="button" aria-label="Next">
-              <i class="icon icon-forward"></i>
-            </div>
-          </div>
-        </a>
-      {% endif %}
-    </div>
-  </nav>
-{% endif %}
\ No newline at end of file
diff --git a/material/header.html b/material/header.html
deleted file mode 100644
index f910b5b8d1bc937098b0201a91385178d60d793e..0000000000000000000000000000000000000000
--- a/material/header.html
+++ /dev/null
@@ -1,54 +0,0 @@
-<nav aria-label="Header">
-  <div class="bar default">
-    <div class="button button-menu" role="button" aria-label="Menu">
-      <label class="toggle-button icon icon-menu" for="toggle-drawer">
-        <span></span>
-      </label>
-    </div>
-    <div class="stretch">
-      <div class="title">
-        {% if current_page %}
-          <span class="path">
-            {% for doc in current_page.ancestors %}
-              {% if doc.link %}
-                <a href="{{ doc.link | e }}">{{ doc.title }}</a>
-                <i class="icon icon-link"></i>
-              {% else %}
-                {{ doc.title }} <i class="icon icon-link"></i>
-              {% endif %}
-            {% endfor %}
-          </span>
-        {% endif %}
-        {{ page_title | default(site_name, true) }}
-      </div>
-    </div>
-    {% if config.extra.get("author", {}).twitter %}
-      {% set author = config.extra.author.twitter %}
-      <div class="button button-twitter" role="button" aria-label="Twitter">
-        <a href="https://twitter.com/{{ author }}" title="@{{ author }} on Twitter" target="_blank" class="toggle-button icon icon-twitter"></a>
-      </div>
-    {% endif %}
-    {% if config.extra.get("author", {}).github %}
-      {% set author = config.extra.author.github %}
-      <div class="button button-github" role="button" aria-label="GitHub">
-        <a href="https://github.com/{{ author }}" title="@{{ author }} on GitHub" target="_blank" class="toggle-button icon icon-github"></a>
-      </div>
-    {% endif %}
-    <div class="button button-search" role="button" aria-label="Search">
-      <label class="toggle-button icon icon-search" title="Search" for="toggle-search"></label>
-    </div>
-  </div>
-  <div class="bar search">
-    <div class="button button-close" role="button" aria-label="Close">
-      <label class="toggle-button icon icon-back" for="toggle-search"></label>
-    </div>
-    <div class="stretch">
-      <div class="field">
-        <input class="query" type="text" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck>
-      </div>
-    </div>
-    <div class="button button-reset" role="button" aria-label="Search">
-      <button class="toggle-button icon icon-close" id="reset-search"></button>
-    </div>
-  </div>
-</nav>
\ No newline at end of file
diff --git a/material/main.html b/material/main.html
new file mode 100644
index 0000000000000000000000000000000000000000..94d9808cc760156cb7ab46e326c0267f3406125e
--- /dev/null
+++ b/material/main.html
@@ -0,0 +1 @@
+{% extends "base.html" %}
diff --git a/material/nav.html b/material/nav.html
deleted file mode 100644
index 1faf8c2fef11e7e013bde0ce8ab0ba09b0fab0fa..0000000000000000000000000000000000000000
--- a/material/nav.html
+++ /dev/null
@@ -1,34 +0,0 @@
-{% if not nav_item.title.startswith("&nbsp;") %}
-{% if nav_item.children %}
-  <li>
-    <span class="section">{{ nav_item.title }}</span>
-    <ul>
-      {% for nav_item in nav_item.children %}
-        {% include "nav.html" %}
-      {% endfor %}
-    </ul>
-  </li>
-{% else %}
-  <li>
-    <a class="{% if nav_item.active %}current{% endif %}" title="{{ nav_item.title }}" href="{{ nav_item.url }}">
-      {{ nav_item.title }}
-    </a>
-    {% if nav_item == current_page %}
-      {% if h1 %}
-        {% set toc = (toc | first).children %}
-      {% endif %}
-      {% if toc and (toc | first) %}
-        <ul>
-          {% for toc_item in toc %}
-            <li class="anchor">
-              <a title="{{ toc_item.title }}" href="{{ toc_item.url }}">
-                {{ toc_item.title }}
-              </a>
-            </li>
-          {% endfor %}
-        </ul>
-      {% endif %}
-    {% endif %}
-  </li>
-{% endif %}
-{% endif %}
diff --git a/material/partials/footer.html b/material/partials/footer.html
new file mode 100644
index 0000000000000000000000000000000000000000..afadcdd62bd1a7de1217692336dd49b85d2c3d4f
--- /dev/null
+++ b/material/partials/footer.html
@@ -0,0 +1,58 @@
+{% import "partials/language.html" as lang %}
+<footer class="md-footer">
+  {% if page.previous_page or page.next_page %}
+    <div class="md-footer-nav">
+      <nav class="md-footer-nav__inner md-grid">
+        {% if page.previous_page %}
+          <a href="{{ page.previous_page.url }}" title="{{ page.previous_page.title }}" class="md-flex md-footer-nav__link md-footer-nav__link--prev" rel="prev">
+            <div class="md-flex__cell md-flex__cell--shrink">
+              <i class="md-icon md-icon--arrow-back md-footer-nav__button"></i>
+            </div>
+            <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title">
+              <span class="md-flex__ellipsis">
+                <span class="md-footer-nav__direction">
+                  {{ lang.t('footer.previous') }}
+                </span>
+                {{ page.previous_page.title }}
+              </span>
+            </div>
+          </a>
+        {% endif %}
+        {% if page.next_page %}
+          <a href="{{ page.next_page.url }}" title="{{ page.next_page.title }}" class="md-flex md-footer-nav__link md-footer-nav__link--next" rel="next">
+            <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title">
+              <span class="md-flex__ellipsis">
+                <span class="md-footer-nav__direction">
+                  {{ lang.t('footer.next') }}
+                </span>
+                {{ page.next_page.title }}
+              </span>
+            </div>
+            <div class="md-flex__cell md-flex__cell--shrink">
+              <i class="md-icon md-icon--arrow-forward md-footer-nav__button"></i>
+            </div>
+          </a>
+        {% endif %}
+      </nav>
+    </div>
+  {% endif %}
+  <div class="md-footer-meta md-typeset">
+    <div class="md-footer-meta__inner md-grid">
+      <div class="md-footer-copyright">
+        {% if config.copyright %}
+          <div class="md-footer-copyright__highlight">
+            {{ config.copyright }}
+          </div>
+        {% endif %}
+        powered by
+        <a href="http://www.mkdocs.org" title="MkDocs">MkDocs</a>
+        and
+        <a href="http://squidfunk.github.io/mkdocs-material/" title="Material for MkDocs">
+          Material for MkDocs</a>
+      </div>
+      {% block social %}
+        {% include "partials/social.html" %}
+      {% endblock %}
+    </div>
+  </div>
+</footer>
diff --git a/material/partials/header.html b/material/partials/header.html
new file mode 100644
index 0000000000000000000000000000000000000000..ead153730fbc37c8d8be652621dc87f456ea730a
--- /dev/null
+++ b/material/partials/header.html
@@ -0,0 +1,43 @@
+<header class="md-header">
+  <nav class="md-header-nav md-grid">
+    <div class="md-flex">
+      <div class="md-flex__cell md-flex__cell--shrink">
+        <a href="{{ nav.homepage.url }}" title="{{ config.site_name }}" class="{% if config.extra.logo %} md-logo {% else %} md-icon md-icon--home {% endif %} md-header-nav__button">
+          {% if config.extra.logo %}
+            <img src="{{ base_url }}/{{ config.extra.logo }}" width="24" height="24">
+          {% endif %}
+        </a>
+      </div>
+      <div class="md-flex__cell md-flex__cell--shrink">
+        <label class="md-icon md-icon--menu md-header-nav__button" for="drawer"></label>
+      </div>
+      <div class="md-flex__cell md-flex__cell--stretch">
+        <span class="md-flex__ellipsis md-header-nav__title">
+          {% block site_name %}
+            {% if page %}
+              {% for parent in page.ancestors %}
+                <span class="md-header-nav__parent">
+                  {{ parent.title }}
+                </span>
+              {% endfor %}
+            {% endif %}
+            {{ page.title | default(config.site_name, true) }}
+          {% endblock %}
+        </span>
+      </div>
+      <div class="md-flex__cell md-flex__cell--shrink">
+        {% block search_box %}
+          <label class="md-icon md-icon--search md-header-nav__button" for="search"></label>
+          {% include "partials/search.html" %}
+        {% endblock %}
+      </div>
+      <div class="md-flex__cell md-flex__cell--shrink">
+          <div class="md-header-nav__source">
+            {% if config.repo_url %}
+              {% include "partials/source.html" %}
+            {% endif %}
+          </div>
+      </div>
+    </div>
+  </nav>
+</header>
diff --git a/material/partials/language.html b/material/partials/language.html
new file mode 100644
index 0000000000000000000000000000000000000000..bf43cf5884bf71fcaafaf62532efe913e7fc7f81
--- /dev/null
+++ b/material/partials/language.html
@@ -0,0 +1,8 @@
+{% macro t(key) %}{{ {
+  "edit.link.title": "Edit this page",
+  "footer.previous": "Previous",
+  "footer.next": "Next",
+  "search.placeholder": "Search",
+  "source.link.title": "Go to repository",
+  "toc.title": "Table of contents"
+}[key] }}{% endmacro %}
diff --git a/material/partials/nav-item.html b/material/partials/nav-item.html
new file mode 100644
index 0000000000000000000000000000000000000000..651c6012013d18f04c950a92f7716b673bd36b76
--- /dev/null
+++ b/material/partials/nav-item.html
@@ -0,0 +1,55 @@
+{% if nav_item.children %}
+  <li class="md-nav__item md-nav__item--nested">
+    {% if nav_item.active %}
+      <input class="md-toggle md-nav__toggle" data-md-toggle="{{ path }}" type="checkbox" id="{{ path }}" checked>
+    {% else %}
+      <input class="md-toggle md-nav__toggle" data-md-toggle="{{ path }}" type="checkbox" id="{{ path }}">
+    {% endif %}
+    <label class="md-nav__link" for="{{ path }}">
+      {{ nav_item.title }}
+    </label>
+    <nav class="md-nav" data-md-component="collapsible">
+      <label class="md-nav__title" for="{{ path }}">
+        {{ nav_item.title}}
+      </label>
+      <ul class="md-nav__list" data-md-scrollfix>
+        {% set base = path %}
+        {% for nav_item in nav_item.children %}
+          {% set path = base + "-" + loop.index | string %}
+          {% include "partials/nav-item.html"  %}
+        {% endfor %}
+      </ul>
+    </nav>
+  </li>
+{% elif nav_item == page %}
+  <li class="md-nav__item">
+    {% set toc_ = page.toc %}
+    <input class="md-toggle md-nav__toggle" data-md-toggle="toc" type="checkbox" id="toc">
+    {% if "\x3ch1 id=" in page.content %}
+      {% set toc_ = (toc_ | first).children %}
+    {% endif %}
+    {% if toc_ and (toc_ | first) %}
+      <label class="md-nav__link md-nav__link--active" for="toc">
+        {{ nav_item.title }}
+      </label>
+    {% endif %}
+    <a href="{{ nav_item.url }}" title="{{ nav_item.title }}" class="md-nav__link md-nav__link--active">
+      {{ nav_item.title }}
+    </a>
+    {% if page.toc %}
+      {% include "partials/toc.html" %}
+    {% endif %}
+  </li>
+{% else %}
+  <li class="md-nav__item">
+    {% if nav_item.active %}
+      <a href="{{ nav_item.url }}" title="{{ nav_item.title }}" class="md-nav__link md-nav__link--active">
+        {{ nav_item.title }}
+      </a>
+    {% else %}
+      <a href="{{ nav_item.url }}" title="{{ nav_item.title }}" class="md-nav__link">
+        {{ nav_item.title }}
+      </a>
+    {% endif %}
+  </li>
+{% endif %}
diff --git a/material/partials/nav.html b/material/partials/nav.html
new file mode 100644
index 0000000000000000000000000000000000000000..2d2eb8e786b8fa45f5d09a9e4e353659bb7f1ecf
--- /dev/null
+++ b/material/partials/nav.html
@@ -0,0 +1,21 @@
+<nav class="md-nav md-nav--primary">
+  <label class="md-nav__title md-nav__title--site" for="drawer">
+    <i class="{% if config.extra.logo %} md-logo {% else %} md-icon md-icon--home {% endif %} md-nav__button">
+      {% if config.extra.logo %}
+        <img src="{{ base_url }}/{{ config.extra.logo }}">
+      {% endif %}
+    </i>
+    {{ config.site_name }}
+  </label>
+  {% if config.repo_url %}
+    <div class="md-nav__source">
+      {% include "partials/source.html" %}
+    </div>
+  {% endif %}
+  <ul class="md-nav__list" data-md-scrollfix>
+    {% for nav_item in nav %}
+      {% set path = "nav-" + loop.index | string %}
+      {% include "partials/nav-item.html" %}
+    {% endfor %}
+  </ul>
+</nav>
diff --git a/material/partials/search.html b/material/partials/search.html
new file mode 100644
index 0000000000000000000000000000000000000000..87783dbf081ec57d523990c8c95c5e8fc9a4915e
--- /dev/null
+++ b/material/partials/search.html
@@ -0,0 +1,15 @@
+{% import "partials/language.html" as lang %}
+<div class="md-search" data-md-component="search">
+  <div class="md-search__overlay"></div>
+  <div class="md-search__inner">
+    <form class="md-search__form" name="search">
+      <input type="text" class="md-search__input" name="query" placeholder="{{ lang.t('search.placeholder') }}" accesskey="s" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false">
+      <label class="md-icon md-search__icon" for="search"></label>
+    </form>
+    <div class="md-search__output">
+      <div class="md-search__scrollwrap" data-md-scrollfix>
+        <div class="md-search-result" data-md-component="result"></div>
+      </div>
+    </div>
+  </div>
+</div>
diff --git a/material/partials/social.html b/material/partials/social.html
new file mode 100644
index 0000000000000000000000000000000000000000..cb68735adf221f7665afcecb8f1efab292030876
--- /dev/null
+++ b/material/partials/social.html
@@ -0,0 +1,9 @@
+{% if config.extra.social %}
+  <div class="md-footer-social">
+    {% set path = "ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" %}
+    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/{{ path }}">
+    {% for social in config.extra.social %}
+      <a href="{{ social.link }}" class="md-footer-social__link fa fa-{{ social.type }}"></a>
+    {% endfor %}
+  </div>
+{% endif %}
diff --git a/material/partials/source.html b/material/partials/source.html
new file mode 100644
index 0000000000000000000000000000000000000000..221b551ab3d8a87c7fa14a3c8f63760be395f902
--- /dev/null
+++ b/material/partials/source.html
@@ -0,0 +1,25 @@
+{% import "partials/language.html" as lang %}
+{% set platform = config.extra.repo_icon or config.repo_url %}
+{% if "github" in platform %}
+  {% set repo_type = "github" %}
+{% elif "gitlab" in platform %}
+  {% set repo_type = "gitlab" %}
+{% elif "bitbucket" in platform %}
+  {% set repo_type = "bitbucket" %}
+{% else %}
+  {% set repo_type = "" %}
+{% endif %}
+{% block repo %}
+  <a href="{{ config.repo_url }}" title="{{ lang.t('source.link.title') }}" class="md-source" data-md-source="{{ repo_type }}">
+    {% if repo_type %}
+      <div class="md-source__icon">
+        <svg viewBox="0 0 24 24" width="24" height="24">
+          <use xlink:href="#{{ repo_type }}" width="24" height="24"></use>
+        </svg>
+      </div>
+    {% endif %}
+    <div class="md-source__repository">
+      {{ config.repo_name }}
+    </div>
+  </a>
+{% endblock %}
diff --git a/material/partials/toc-item.html b/material/partials/toc-item.html
new file mode 100644
index 0000000000000000000000000000000000000000..3b4f4d76ceed626801891dbf0cf024df7882c1ee
--- /dev/null
+++ b/material/partials/toc-item.html
@@ -0,0 +1,14 @@
+<li class="md-nav__item">
+  <a href="{{ toc_item.url }}" title="{{ toc_item.title }}" class="md-nav__link">
+    {{ toc_item.title }}
+  </a>
+  {% if toc_item.children %}
+    <nav class="md-nav">
+      <ul class="md-nav__list">
+        {% for toc_item in toc_item.children %}
+          {% include "partials/toc-item.html" %}
+        {% endfor %}
+      </ul>
+    </nav>
+  {% endif %}
+</li>
diff --git a/material/partials/toc.html b/material/partials/toc.html
new file mode 100644
index 0000000000000000000000000000000000000000..004067dda9103cf62ed2b27b9b50dc38f84b5b2f
--- /dev/null
+++ b/material/partials/toc.html
@@ -0,0 +1,15 @@
+{% import "partials/language.html" as lang %}
+<nav class="md-nav md-nav--secondary">
+  {% set toc_ = page.toc %}
+  {% if "\x3ch1 id=" in page.content %}
+    {% set toc_ = (toc_ | first).children %}
+  {% endif %}
+  {% if toc_ and (toc_ | first) %}
+    <label class="md-nav__title" for="toc">{{ lang.t('toc.title') }}</label>
+    <ul class="md-nav__list" data-md-scrollfix>
+      {% for toc_item in toc_ %}
+        {% include "partials/toc-item.html" %}
+      {% endfor %}
+    </ul>
+  {% endif %}
+</nav>
diff --git a/mkdocs.yml b/mkdocs.yml
index 89336bdef54bb2c8cabc7ef585f92eed5fd54829..519ad11829759615dd6862528931b196204e4672 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -37,8 +37,8 @@ pages:
     - Job Submission and Execution: anselm-cluster-documentation/job-submission-and-execution.md
     - Capacity computing: anselm-cluster-documentation/capacity-computing.md
     - Storage: anselm-cluster-documentation/storage.md
-  - Anselm Cluster Software: anselm-cluster-documentation/software/index.md
-  - '&nbsp;Anselm Cluster Software':
+#  - Anselm Cluster Software: anselm-cluster-documentation/software/index.md
+  - 'Anselm Cluster Software':
     - Modules: modules-anselm.md
     - COMSOL: anselm-cluster-documentation/software/comsol-multiphysics.md
     - ParaView: anselm-cluster-documentation/software/paraview.md
@@ -51,59 +51,59 @@ pages:
     - Virtualization: anselm-cluster-documentation/software/kvirtualization.md
     - Java: anselm-cluster-documentation/software/java.md
     - Operating System: anselm-cluster-documentation/software/operating-system.md
-  - '&nbsp;Anselm Cluster Intel Suite':
-    - Introduction: anselm-cluster-documentation/software/intel-suite/introduction.md
-    - Intel MKL: anselm-cluster-documentation/software/intel-suite/intel-mkl.md
-    - Intel Compilers: anselm-cluster-documentation/software/intel-suite/intel-compilers.md
-    - Intel IPP: anselm-cluster-documentation/software/intel-suite/intel-integrated-performance-primitives.md
-    - Intel TBB: anselm-cluster-documentation/software/intel-suite/intel-tbb.md
-    - Intel Debugger: anselm-cluster-documentation/software/intel-suite/intel-debugger.md
-  - '&nbsp;Anselm Cluster MPI':
-    - Introduction: anselm-cluster-documentation/software/mpi/mpi.md
-    - MPI4Py (MPI for Python): anselm-cluster-documentation/software/mpi/mpi4py-mpi-for-python.md
-    - Running OpenMPI: anselm-cluster-documentation/software/mpi/Running_OpenMPI.md
-    - Running MPICH2: anselm-cluster-documentation/software/mpi/running-mpich2.md
-  - '&nbsp;Anselm Cluster Numerical Libraries':
-    - Intel numerical libraries: anselm-cluster-documentation/software/numerical-libraries/intel-numerical-libraries.md
-    - PETSc: anselm-cluster-documentation/software/numerical-libraries/petsc.md
-    - Trilinos: anselm-cluster-documentation/software/numerical-libraries/trilinos.md
-    - FFTW: anselm-cluster-documentation/software/numerical-libraries/fftw.md
-    - GSL: anselm-cluster-documentation/software/numerical-libraries/gsl.md
-    - MAGMA for Intel Xeon Phi: anselm-cluster-documentation/software/numerical-libraries/magma-for-intel-xeon-phi.md
-    - HDF5: anselm-cluster-documentation/software/numerical-libraries/hdf5.md
-  - '&nbsp;Anselm Cluster Omics Master':
-    - Diagnostic component (TEAM): anselm-cluster-documentation/software/omics-master/diagnostic-component-team.md
-    - Priorization component (BiERApp): anselm-cluster-documentation/software/omics-master/priorization-component-bierapp.md
-    - Overview: anselm-cluster-documentation/software/omics-master/overview.md
-  - '&nbsp;Anselm Cluster Debuggers':
-    - Valgrind: anselm-cluster-documentation/software/debuggers/valgrind.md
-    - PAPI: anselm-cluster-documentation/software/debuggers/papi.md
-    - Allinea Forge (DDT,MAP): anselm-cluster-documentation/software/debuggers/allinea-ddt.md
-    - Total View: anselm-cluster-documentation/software/debuggers/total-view.md
-    - CUBE: anselm-cluster-documentation/software/debuggers/cube.md
-    - Intel VTune Amplifier: anselm-cluster-documentation/software/debuggers/intel-vtune-amplifier.md
-    - VNC: anselm-cluster-documentation/software/debuggers/debuggers.md
-    - Scalasca: anselm-cluster-documentation/software/debuggers/scalasca.md
-    - Score-P: anselm-cluster-documentation/software/debuggers/score-p.md
-    - Intel Performance Counter Monitor: anselm-cluster-documentation/software/debuggers/intel-performance-counter-monitor.md
-    - Allinea Performance Reports: anselm-cluster-documentation/software/debuggers/allinea-performance-reports.md
-    - Vampir: anselm-cluster-documentation/software/debuggers/vampir.md
-  - '&nbsp;Anselm Cluster Numerical Languages':
-    - Introduction: anselm-cluster-documentation/software/numerical-languages/introduction.md
-    - R: anselm-cluster-documentation/software/numerical-languages/r.md
-    - Matlab 2013-2014: anselm-cluster-documentation/software/numerical-languages/matlab_1314.md
-    - Matlab: anselm-cluster-documentation/software/numerical-languages/matlab.md
-    - Octave: anselm-cluster-documentation/software/numerical-languages/octave.md
-  - '&nbsp;Anselm Cluster Chemistry':
-    - Molpro: anselm-cluster-documentation/software/chemistry/molpro.md
-    - NWChem: anselm-cluster-documentation/software/chemistry/nwchem.md
-  - '&nbsp;Anselm Cluster Ansys':
-    - Introduction: anselm-cluster-documentation/software/ansys/ansys.md
-    - ANSYS CFX: anselm-cluster-documentation/software/ansys/ansys-cfx.md
-    - ANSYS LS-DYNA: anselm-cluster-documentation/software/ansys/ansys-ls-dyna.md
-    - ANSYS MAPDL: anselm-cluster-documentation/software/ansys/ansys-mechanical-apdl.md
-    - LS-DYNA: anselm-cluster-documentation/software/ansys/ls-dyna.md
-    - ANSYS Fluent: anselm-cluster-documentation/software/ansys/ansys-fluent.md
+    - 'Intel Suite':
+      - Introduction: anselm-cluster-documentation/software/intel-suite/introduction.md
+      - Intel MKL: anselm-cluster-documentation/software/intel-suite/intel-mkl.md
+      - Intel Compilers: anselm-cluster-documentation/software/intel-suite/intel-compilers.md
+      - Intel IPP: anselm-cluster-documentation/software/intel-suite/intel-integrated-performance-primitives.md
+      - Intel TBB: anselm-cluster-documentation/software/intel-suite/intel-tbb.md
+      - Intel Debugger: anselm-cluster-documentation/software/intel-suite/intel-debugger.md
+    - 'MPI':
+      - Introduction: anselm-cluster-documentation/software/mpi/mpi.md
+      - MPI4Py (MPI for Python): anselm-cluster-documentation/software/mpi/mpi4py-mpi-for-python.md
+      - Running OpenMPI: anselm-cluster-documentation/software/mpi/Running_OpenMPI.md
+      - Running MPICH2: anselm-cluster-documentation/software/mpi/running-mpich2.md
+    - 'Numerical Libraries':
+      - Intel numerical libraries: anselm-cluster-documentation/software/numerical-libraries/intel-numerical-libraries.md
+      - PETSc: anselm-cluster-documentation/software/numerical-libraries/petsc.md
+      - Trilinos: anselm-cluster-documentation/software/numerical-libraries/trilinos.md
+      - FFTW: anselm-cluster-documentation/software/numerical-libraries/fftw.md
+      - GSL: anselm-cluster-documentation/software/numerical-libraries/gsl.md
+      - MAGMA for Intel Xeon Phi: anselm-cluster-documentation/software/numerical-libraries/magma-for-intel-xeon-phi.md
+      - HDF5: anselm-cluster-documentation/software/numerical-libraries/hdf5.md
+    - 'Omics Master':
+      - Diagnostic component (TEAM): anselm-cluster-documentation/software/omics-master/diagnostic-component-team.md
+      - Priorization component (BiERApp): anselm-cluster-documentation/software/omics-master/priorization-component-bierapp.md
+      - Overview: anselm-cluster-documentation/software/omics-master/overview.md
+    - 'Debuggers':
+      - Valgrind: anselm-cluster-documentation/software/debuggers/valgrind.md
+      - PAPI: anselm-cluster-documentation/software/debuggers/papi.md
+      - Allinea Forge (DDT,MAP): anselm-cluster-documentation/software/debuggers/allinea-ddt.md
+      - Total View: anselm-cluster-documentation/software/debuggers/total-view.md
+      - CUBE: anselm-cluster-documentation/software/debuggers/cube.md
+      - Intel VTune Amplifier: anselm-cluster-documentation/software/debuggers/intel-vtune-amplifier.md
+      - VNC: anselm-cluster-documentation/software/debuggers/debuggers.md
+      - Scalasca: anselm-cluster-documentation/software/debuggers/scalasca.md
+      - Score-P: anselm-cluster-documentation/software/debuggers/score-p.md
+      - Intel Performance Counter Monitor: anselm-cluster-documentation/software/debuggers/intel-performance-counter-monitor.md
+      - Allinea Performance Reports: anselm-cluster-documentation/software/debuggers/allinea-performance-reports.md
+      - Vampir: anselm-cluster-documentation/software/debuggers/vampir.md
+    - 'Numerical Languages':
+      - Introduction: anselm-cluster-documentation/software/numerical-languages/introduction.md
+      - R: anselm-cluster-documentation/software/numerical-languages/r.md
+      - Matlab 2013-2014: anselm-cluster-documentation/software/numerical-languages/matlab_1314.md
+      - Matlab: anselm-cluster-documentation/software/numerical-languages/matlab.md
+      - Octave: anselm-cluster-documentation/software/numerical-languages/octave.md
+    - 'Chemistry':
+      - Molpro: anselm-cluster-documentation/software/chemistry/molpro.md
+      - NWChem: anselm-cluster-documentation/software/chemistry/nwchem.md
+    - 'Ansys':
+      - Introduction: anselm-cluster-documentation/software/ansys/ansys.md
+      - ANSYS CFX: anselm-cluster-documentation/software/ansys/ansys-cfx.md
+      - ANSYS LS-DYNA: anselm-cluster-documentation/software/ansys/ansys-ls-dyna.md
+      - ANSYS MAPDL: anselm-cluster-documentation/software/ansys/ansys-mechanical-apdl.md
+      - LS-DYNA: anselm-cluster-documentation/software/ansys/ls-dyna.md
+      - ANSYS Fluent: anselm-cluster-documentation/software/ansys/ansys-fluent.md
   - Salomon Cluster Documentation:
     - Introduction: salomon/introduction.md
     - PRACE User Support: salomon/prace.md
@@ -121,74 +121,75 @@ pages:
     - Job submission and execution: salomon/job-submission-and-execution.md
     - Capacity computing: salomon/capacity-computing.md
     - Storage: salomon/storage.md
-  - Salomon Cluster Software: salomon/software/index.md
-  - '&nbsp;Salomon Cluster Software':
+  - 'Salomon Cluster Software':
     - Modules: modules-salomon.md
     - UV Modules: modules-salomon-uv.md
     - Compilers: salomon/software/compilers.md
     - Intel Xeon Phi: salomon/software/intel-xeon-phi.md
     - Java: salomon/software/java.md
     - Operating System: salomon/software/operating-system.md
-  - '&nbsp;Salomon Cluster Intel Suite':
-    - Introduction: salomon/software/intel-suite/intel-parallel-studio-introduction.md
-    - Intel MKL: salomon/software/intel-suite/intel-mkl.md
-    - Intel Compilers: salomon/software/intel-suite/intel-compilers.md
-    - Intel IPP: salomon/software/intel-suite/intel-integrated-performance-primitives.md
-    - Intel TBB: salomon/software/intel-suite/intel-tbb.md
-    - Intel Debugger: salomon/software/intel-suite/intel-debugger.md
-    - Intel Inspector: salomon/software/intel-suite/intel-inspector.md
-    - Intel Trace Analyzer and Collector: salomon/software/intel-suite/intel-trace-analyzer-and-collector.md
-    - Intel Advisor: salomon/software/intel-suite/intel-advisor.md
-  - '&nbsp;Salomon Cluster MPI':
-    - Introduction: salomon/software/mpi/mpi.md
-    - MPI4Py (MPI for Python): salomon/software/mpi/mpi4py-mpi-for-python.md
-    - Running OpenMPI: salomon/software/mpi/Running_OpenMPI.md
-  - '&nbsp;Salomon Cluster Debuggers':
-    - Introduction: salomon/software/debuggers/Introduction.md
-    - Valgrind: salomon/software/debuggers/valgrind.md
-    - Allinea Forge (DDT,MAP): salomon/software/debuggers/allinea-ddt.md
-    - Total View: salomon/software/debuggers/total-view.md
-    - Intel VTune Amplifier XE: salomon/software/debuggers/intel-vtune-amplifier.md
-    - Aislinn: salomon/software/debuggers/aislinn.md
-    - Allinea Performance Reports: salomon/software/debuggers/allinea-performance-reports.md
-    - Vampir: salomon/software/debuggers/vampir.md
-  - '&nbsp;Salomon Cluster Numerical Languages':
-    - Introduction: salomon/software/numerical-languages/introduction.md
-    - R: salomon/software/numerical-languages/r.md
-    - Matlab: salomon/software/numerical-languages/matlab.md
-    - Octave: salomon/software/numerical-languages/octave.md
-  - '&nbsp;Salomon Cluster Chemistry':
-    - Molpro: salomon/software/chemistry/molpro.md
-    - Phono3py: salomon/software/chemistry/phono3py.md
-    - NWChem: salomon/software/chemistry/nwchem.md
-  - '&nbsp;Salomon Cluster Comsol':
-    - COMSOL: salomon/software/comsol/comsol-multiphysics.md
-    - Licensing and Available Versions: salomon/software/comsol/licensing-and-available-versions.md
-  - '&nbsp;Salomon Cluster Ansys':
-    - Introduction: salomon/software/ansys/ansys.md
-    - Workbench: salomon/software/ansys/workbench.md
-    - ANSYS CFX: salomon/software/ansys/ansys-cfx.md
-    - ANSYS LS-DYNA: salomon/software/ansys/ansys-ls-dyna.md
-    - ANSYS MAPDL: salomon/software/ansys/ansys-mechanical-apdl.md
-    - ANSYS Fluent: salomon/software/ansys/ansys-fluent.md
-    - Setting license preferences: salomon/software/ansys/licensing.md
-    - Licensing and Available Versions: salomon/software/ansys/setting-license-preferences.md
+    - 'Intel Suite':
+      - Introduction: salomon/software/intel-suite/intel-parallel-studio-introduction.md
+      - Intel MKL: salomon/software/intel-suite/intel-mkl.md
+      - Intel Compilers: salomon/software/intel-suite/intel-compilers.md
+      - Intel IPP: salomon/software/intel-suite/intel-integrated-performance-primitives.md
+      - Intel TBB: salomon/software/intel-suite/intel-tbb.md
+      - Intel Debugger: salomon/software/intel-suite/intel-debugger.md
+      - Intel Inspector: salomon/software/intel-suite/intel-inspector.md
+      - Intel Trace Analyzer and Collector: salomon/software/intel-suite/intel-trace-analyzer-and-collector.md
+      - Intel Advisor: salomon/software/intel-suite/intel-advisor.md
+    - 'MPI':
+      - Introduction: salomon/software/mpi/mpi.md
+      - MPI4Py (MPI for Python): salomon/software/mpi/mpi4py-mpi-for-python.md
+      - Running OpenMPI: salomon/software/mpi/Running_OpenMPI.md
+    - 'Debuggers':
+      - Introduction: salomon/software/debuggers/Introduction.md
+      - Valgrind: salomon/software/debuggers/valgrind.md
+      - Allinea Forge (DDT,MAP): salomon/software/debuggers/allinea-ddt.md
+      - Total View: salomon/software/debuggers/total-view.md
+      - Intel VTune Amplifier XE: salomon/software/debuggers/intel-vtune-amplifier.md
+      - Aislinn: salomon/software/debuggers/aislinn.md
+      - Allinea Performance Reports: salomon/software/debuggers/allinea-performance-reports.md
+      - Vampir: salomon/software/debuggers/vampir.md
+    - 'Numerical Languages':
+      - Introduction: salomon/software/numerical-languages/introduction.md
+      - R: salomon/software/numerical-languages/r.md
+      - Matlab: salomon/software/numerical-languages/matlab.md
+      - Octave: salomon/software/numerical-languages/octave.md
+    - 'Chemistry':
+      - Molpro: salomon/software/chemistry/molpro.md
+      - Phono3py: salomon/software/chemistry/phono3py.md
+      - NWChem: salomon/software/chemistry/nwchem.md
+    - 'Comsol':
+      - COMSOL: salomon/software/comsol/comsol-multiphysics.md
+      - Licensing and Available Versions: salomon/software/comsol/licensing-and-available-versions.md
+    - 'Ansys':
+      - Introduction: salomon/software/ansys/ansys.md
+      - Workbench: salomon/software/ansys/workbench.md
+      - ANSYS CFX: salomon/software/ansys/ansys-cfx.md
+      - ANSYS LS-DYNA: salomon/software/ansys/ansys-ls-dyna.md
+      - ANSYS MAPDL: salomon/software/ansys/ansys-mechanical-apdl.md
+      - ANSYS Fluent: salomon/software/ansys/ansys-fluent.md
+      - Setting license preferences: salomon/software/ansys/licensing.md
+      - Licensing and Available Versions: salomon/software/ansys/setting-license-preferences.md
   - PBSPro Documentation: pbspro-documentation/pbspro.md
+  - Colors: colors.md
+  - All modules: all_modules.md
 
 extra:
-  logo: img/logo2.png
+  #logo: img/logo2.png
   palette:
     primary: 'grey'
-    accent: 'light blue'
+    accent: 'yellow'
   font:
-    text: 'Roboto'
-    code: 'Roboto Mono'
+    text: 'Ubuntu'
+    code: 'Ubuntu Mono'
   i18n:
     prev: 'Previous'
     next: 'Next'
 
 markdown_extensions:
-  - codehilite(css_class=code)
+  - codehilite
   - admonition
   - toc:
-      permalink: '#'
+      permalink: '(H)'