Page MenuHomeFreeBSD

D11194.id29599.diff
No OneTemporary

D11194.id29599.diff

This file is larger than 256 KB, so syntax highlighting was skipped.
Index: Makefile
===================================================================
--- /dev/null
+++ Makefile
@@ -0,0 +1,83 @@
+# Created by: Jov <amutu@amutu.com>
+# $FreeBSD$
+
+PORTNAME= tensorflow
+PORTVERSION= 1.1.0
+DISTVERSIONPREFIX= v
+CATEGORIES= science python
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= amutu@amutu.com
+COMMENT= Computation using data flow graphs for scalable machine learning
+
+LICENSE= APACHE20
+
+BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}wheel>=0.29.0:devel/py-wheel \
+ ${PYTHON_PKGNAMEPREFIX}numpy>=1.11.2:math/py-numpy \
+ bash:shells/bash
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>=1.11.2:math/py-numpy \
+ ${PYTHON_PKGNAMEPREFIX}protobuf>=3.2.0:devel/py-protobuf
+
+USE_GITHUB= yes
+GH_TUPLE= amutu:tensorflow_third_party:9c2d26b:tf/tensorflow_third_party
+USES= python:2.7+ shebangfix
+BAZEL_BOOT= --output_user_root=${WRKSRC}/bazel_ot --batch
+BAZEL_COPT=
+
+SHEBANG_LANG= python
+SHEBANG_GLOB= *.py
+
+.include <bsd.port.pre.mk>
+
+.if ${OSREL:R} == "10"
+BUILD_DEPENDS+= bazel:devel/bazel_clang38
+.else
+BUILD_DEPENDS+= bazel:devel/bazel
+.endif
+
+#clang has this check enabled by default,disable it
+#see: https://github.com/tensorflow/tensorflow/issues/8894
+.if ${ARCH} == "i386"
+BAZEL_COPT+= --copt=-Wno-c++11-narrowing
+.endif
+
+post-patch:
+ (cd ${WRKSRC} && \
+ ${REINPLACE_CMD} "s#bazel \([cf]\)#echo bazel ${BAZEL_BOOT} \1#g" \
+ ${WRKSRC}/configure && \
+ ${REINPLACE_CMD} "s#tensorflow_third_party#${WRKSRC}/&#g" \
+ ${WRKSRC}/WORKSPACE && \
+ ${REINPLACE_CMD} "s#tensorflow_third_party#${WRKSRC}/&#g" \
+ tensorflow/workspace.bzl)
+
+do-configure:
+ (cd ${WRKSRC} && ${SETENV} \
+ PYTHON_BIN_PATH=${PYTHON_CMD} \
+ TF_NEED_MKL=N \
+ CC_OPT_FLAGS="${CFLAGS}" \
+ TF_NEED_GCP=N TF_NEED_HDFS=N \
+ TF_ENABLE_XLA=N \
+ TF_NEED_OPENCL=N \
+ TF_NEED_CUDA=N \
+ PYTHON_LIB_PATH="${PYTHON_SITELIBDIR}" \
+ ./configure)
+
+do-build:
+ (cd ${WRKSRC} && bazel ${BAZEL_BOOT} info && \
+ bazel ${BAZEL_BOOT} build ${BAZEL_COPT} --config=opt \
+ //tensorflow/tools/pip_package:build_pip_package --verbose_failures)
+ (cd ${WRKSRC} && ${SETENV} TMPDIR=${WRKDIR} \
+ bazel-bin/tensorflow/tools/pip_package/build_pip_package \
+ ${WRKDIR}/whl)
+
+do-install:
+ @${MKDIR} ${STAGEDIR}/${PYTHON_SITELIBDIR}
+ @${MKDIR} ${WRKDIR}/tmp
+ @${UNZIP_NATIVE_CMD} -d ${WRKDIR}/tmp ${WRKDIR}/whl/${PORTNAME}-${PORTVERSION}-*.whl
+ @${FIND} ${WRKDIR}/tmp -name "*.so*" | ${XARGS} ${STRIP_CMD}
+ cd ${WRKDIR}/tmp && ${COPYTREE_SHARE} ${PORTNAME}-${PORTVERSION}.dist-info \
+ ${STAGEDIR}${PYTHON_SITELIBDIR}
+ cd ${WRKDIR}/tmp/${PORTNAME}-${PORTVERSION}.data/purelib && \
+ ${COPYTREE_SHARE} . ${STAGEDIR}${PYTHON_SITELIBDIR}
+
+.include <bsd.port.post.mk>
Index: distinfo
===================================================================
--- /dev/null
+++ distinfo
@@ -0,0 +1,5 @@
+TIMESTAMP = 1497272083
+SHA256 (tensorflow-tensorflow-v1.1.0_GH0.tar.gz) = aad4470f52fa59f54de7b9a2da727429e6755d91d756f245f952698c42a60027
+SIZE (tensorflow-tensorflow-v1.1.0_GH0.tar.gz) = 11651671
+SHA256 (amutu-tensorflow_third_party-9c2d26b_GH0.tar.gz) = bc20c07a354c19379ea9fba809e3310ccafa814eba9ae73e22c1afc8f117a930
+SIZE (amutu-tensorflow_third_party-9c2d26b_GH0.tar.gz) = 170128405
Index: files/patch-WORKSPACE
===================================================================
--- /dev/null
+++ files/patch-WORKSPACE
@@ -0,0 +1,782 @@
+--- WORKSPACE.orig 2017-06-13 09:21:20 UTC
++++ WORKSPACE
+@@ -1,13 +1,8 @@
+ workspace(name = "org_tensorflow")
+
+-http_archive(
++local_repository(
+ name = "io_bazel_rules_closure",
+- sha256 = "60fc6977908f999b23ca65698c2bb70213403824a84f7904310b6000d78be9ce",
+- strip_prefix = "rules_closure-5ca1dab6df9ad02050f7ba4e816407f88690cf7d",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/bazelbuild/rules_closure/archive/5ca1dab6df9ad02050f7ba4e816407f88690cf7d.tar.gz", # 2017-02-03
+- "https://github.com/bazelbuild/rules_closure/archive/5ca1dab6df9ad02050f7ba4e816407f88690cf7d.tar.gz",
+- ],
++ path = "tensorflow_third_party/io_bazel_rules_closure"
+ )
+
+ load("@io_bazel_rules_closure//closure:defs.bzl", "closure_repositories")
+@@ -24,7 +19,7 @@ check_version("0.4.2")
+ # Uncomment and update the paths in these entries to build the Android demo.
+ #android_sdk_repository(
+ # name = "androidsdk",
+-# api_level = 23,
++# path = "tensorflow_third_party/androidsdk"
+ # build_tools_version = "25.0.1",
+ # # Replace with path to Android SDK on your system
+ # path = "<PATH_TO_SDK>",
+@@ -38,486 +33,482 @@ check_version("0.4.2")
+ # Please add all new TensorFlow dependencies in workspace.bzl.
+ tf_workspace()
+
+-new_http_archive(
++local_repository(
+ name = "inception5h",
+- build_file = "models.BUILD",
+- url = "https://storage.googleapis.com/download.tensorflow.org/models/inception5h.zip",
+- sha256 = "d13569f6a98159de37e92e9c8ec4dae8f674fbf475f69fe6199b514f756d4364"
++ path = "tensorflow_third_party/inception5h"
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "mobile_multibox",
+- build_file = "models.BUILD",
+- url = "https://storage.googleapis.com/download.tensorflow.org/models/mobile_multibox_v1a.zip",
+- sha256 = "859edcddf84dddb974c36c36cfc1f74555148e9c9213dedacf1d6b613ad52b96"
++ path = "tensorflow_third_party/mobile_multibox"
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "stylize",
+- build_file = "models.BUILD",
+- url = "https://storage.googleapis.com/download.tensorflow.org/models/stylize_v1.zip",
+- sha256 = "3d374a730aef330424a356a8d4f04d8a54277c425e274ecb7d9c83aa912c6bfa"
++ path = "tensorflow_third_party/stylize"
+ )
+
+ # TENSORBOARD_BOWER_AUTOGENERATED_BELOW_THIS_LINE_DO_NOT_EDIT
+
+-new_http_archive(
++local_repository(
+ name = "d3",
+- build_file = "bower.BUILD",
+- url = "https://github.com/mbostock-bower/d3-bower/archive/v3.5.15.tar.gz",
+- strip_prefix = "d3-bower-3.5.15",
++ path = "tensorflow_third_party/d3"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "dagre",
+- build_file = "bower.BUILD",
+- url = "https://github.com/cpettitt/dagre/archive/v0.7.4.tar.gz",
+- strip_prefix = "dagre-0.7.4",
++ path = "tensorflow_third_party/dagre"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "es6_promise",
+- build_file = "bower.BUILD",
+- url = "https://github.com/components/es6-promise/archive/v2.1.0.tar.gz",
+- strip_prefix = "es6-promise-2.1.0",
++ path = "tensorflow_third_party/es6_promise"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "font_roboto",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/font-roboto/archive/v1.0.1.tar.gz",
+- strip_prefix = "font-roboto-1.0.1",
++ path = "tensorflow_third_party/font_roboto"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "graphlib",
+- build_file = "bower.BUILD",
+- url = "https://github.com/cpettitt/graphlib/archive/v1.0.7.tar.gz",
+- strip_prefix = "graphlib-1.0.7",
++ path = "tensorflow_third_party/graphlib"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "iron_a11y_announcer",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/iron-a11y-announcer/archive/v1.0.5.tar.gz",
+- strip_prefix = "iron-a11y-announcer-1.0.5",
++ path = "tensorflow_third_party/iron_a11y_announcer"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "iron_a11y_keys_behavior",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/iron-a11y-keys-behavior/archive/v1.1.8.tar.gz",
+- strip_prefix = "iron-a11y-keys-behavior-1.1.8",
++ path = "tensorflow_third_party/iron_a11y_keys_behavior"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "iron_ajax",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/iron-ajax/archive/v1.2.0.tar.gz",
+- strip_prefix = "iron-ajax-1.2.0",
++ path = "tensorflow_third_party/iron_ajax"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "iron_autogrow_textarea",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/iron-autogrow-textarea/archive/v1.0.12.tar.gz",
+- strip_prefix = "iron-autogrow-textarea-1.0.12",
++ path = "tensorflow_third_party/iron_autogrow_textarea"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "iron_behaviors",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/iron-behaviors/archive/v1.0.17.tar.gz",
+- strip_prefix = "iron-behaviors-1.0.17",
++ path = "tensorflow_third_party/iron_behaviors"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "iron_checked_element_behavior",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/iron-checked-element-behavior/archive/v1.0.4.tar.gz",
+- strip_prefix = "iron-checked-element-behavior-1.0.4",
++ path = "tensorflow_third_party/iron_checked_element_behavior"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "iron_collapse",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/iron-collapse/archive/v1.0.8.tar.gz",
+- strip_prefix = "iron-collapse-1.0.8",
++ path = "tensorflow_third_party/iron_collapse"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "iron_dropdown",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/iron-dropdown/archive/v1.4.0.tar.gz",
+- strip_prefix = "iron-dropdown-1.4.0",
++ path = "tensorflow_third_party/iron_dropdown"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "iron_fit_behavior",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/iron-fit-behavior/archive/v1.2.5.tar.gz",
+- strip_prefix = "iron-fit-behavior-1.2.5",
++ path = "tensorflow_third_party/iron_fit_behavior"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "iron_flex_layout",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/iron-flex-layout/archive/v1.3.0.tar.gz",
+- strip_prefix = "iron-flex-layout-1.3.0",
++ path = "tensorflow_third_party/iron_flex_layout"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "iron_form_element_behavior",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/iron-form-element-behavior/archive/v1.0.6.tar.gz",
+- strip_prefix = "iron-form-element-behavior-1.0.6",
++ path = "tensorflow_third_party/iron_form_element_behavior"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "iron_icon",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/iron-icon/archive/v1.0.11.tar.gz",
+- strip_prefix = "iron-icon-1.0.11",
++ path = "tensorflow_third_party/iron_icon"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "iron_icons",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/iron-icons/archive/v1.1.3.tar.gz",
+- strip_prefix = "iron-icons-1.1.3",
++ path = "tensorflow_third_party/iron_icons"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "iron_iconset_svg",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/iron-iconset-svg/archive/v1.1.0.tar.gz",
+- strip_prefix = "iron-iconset-svg-1.1.0",
++ path = "tensorflow_third_party/iron_iconset_svg"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "iron_input",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/iron-input/archive/1.0.10.tar.gz",
+- strip_prefix = "iron-input-1.0.10",
++ path = "tensorflow_third_party/iron_input"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "iron_list",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/iron-list/archive/v1.3.9.tar.gz",
+- strip_prefix = "iron-list-1.3.9",
++ path = "tensorflow_third_party/iron_list"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "iron_menu_behavior",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/iron-menu-behavior/archive/v1.1.10.tar.gz",
+- strip_prefix = "iron-menu-behavior-1.1.10",
++ path = "tensorflow_third_party/iron_menu_behavior"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "iron_meta",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/iron-meta/archive/v1.1.1.tar.gz",
+- strip_prefix = "iron-meta-1.1.1",
++ path = "tensorflow_third_party/iron_meta"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "iron_overlay_behavior",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/iron-overlay-behavior/archive/v1.10.1.tar.gz",
+- strip_prefix = "iron-overlay-behavior-1.10.1",
++ path = "tensorflow_third_party/iron_overlay_behavior"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "iron_range_behavior",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/iron-range-behavior/archive/v1.0.4.tar.gz",
+- strip_prefix = "iron-range-behavior-1.0.4",
++ path = "tensorflow_third_party/iron_range_behavior"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "iron_resizable_behavior",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/iron-resizable-behavior/archive/v1.0.3.tar.gz",
+- strip_prefix = "iron-resizable-behavior-1.0.3",
++ path = "tensorflow_third_party/iron_resizable_behavior"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "iron_scroll_target_behavior",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/iron-scroll-target-behavior/archive/v1.0.3.tar.gz",
+- strip_prefix = "iron-scroll-target-behavior-1.0.3",
++ path = "tensorflow_third_party/iron_scroll_target_behavior"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "iron_selector",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/iron-selector/archive/v1.5.2.tar.gz",
+- strip_prefix = "iron-selector-1.5.2",
++ path = "tensorflow_third_party/iron_selector"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "iron_validatable_behavior",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/iron-validatable-behavior/archive/v1.1.1.tar.gz",
+- strip_prefix = "iron-validatable-behavior-1.1.1",
++ path = "tensorflow_third_party/iron_validatable_behavior"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "lodash",
+- build_file = "bower.BUILD",
+- url = "https://github.com/lodash/lodash/archive/3.8.0.tar.gz",
+- strip_prefix = "lodash-3.8.0",
++ path = "tensorflow_third_party/lodash"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "neon_animation",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/neon-animation/archive/v1.2.2.tar.gz",
+- strip_prefix = "neon-animation-1.2.2",
++ path = "tensorflow_third_party/neon_animation"
++
++
+ )
+
+-http_file(
++local_repository(
+ name = "numericjs_numeric_min_js",
+- url = "https://cdnjs.cloudflare.com/ajax/libs/numeric/1.2.6/numeric.min.js",
++ path = "tensorflow_third_party/numericjs_numeric_min_js"
+ )
+
+-new_http_archive(
++local_repository(
+ name = "paper_behaviors",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/paper-behaviors/archive/v1.0.12.tar.gz",
+- strip_prefix = "paper-behaviors-1.0.12",
++ path = "tensorflow_third_party/paper_behaviors"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "paper_button",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/paper-button/archive/v1.0.11.tar.gz",
+- strip_prefix = "paper-button-1.0.11",
++ path = "tensorflow_third_party/paper_button"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "paper_checkbox",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/paper-checkbox/archive/v1.4.0.tar.gz",
+- strip_prefix = "paper-checkbox-1.4.0",
++ path = "tensorflow_third_party/paper_checkbox"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "paper_dialog",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/paper-dialog/archive/v1.0.4.tar.gz",
+- strip_prefix = "paper-dialog-1.0.4",
++ path = "tensorflow_third_party/paper_dialog"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "paper_dialog_behavior",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/paper-dialog-behavior/archive/v1.2.5.tar.gz",
+- strip_prefix = "paper-dialog-behavior-1.2.5",
++ path = "tensorflow_third_party/paper_dialog_behavior"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "paper_dialog_scrollable",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/paper-dialog-scrollable/archive/1.1.5.tar.gz",
+- strip_prefix = "paper-dialog-scrollable-1.1.5",
++ path = "tensorflow_third_party/paper_dialog_scrollable"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "paper_dropdown_menu",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/paper-dropdown-menu/archive/v1.4.0.tar.gz",
+- strip_prefix = "paper-dropdown-menu-1.4.0",
++ path = "tensorflow_third_party/paper_dropdown_menu"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "paper_header_panel",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/paper-header-panel/archive/v1.1.4.tar.gz",
+- strip_prefix = "paper-header-panel-1.1.4",
++ path = "tensorflow_third_party/paper_header_panel"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "paper_icon_button",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/paper-icon-button/archive/v1.1.3.tar.gz",
+- strip_prefix = "paper-icon-button-1.1.3",
++ path = "tensorflow_third_party/paper_icon_button"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "paper_input",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/paper-input/archive/v1.1.18.tar.gz",
+- strip_prefix = "paper-input-1.1.18",
++ path = "tensorflow_third_party/paper_input"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "paper_item",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/paper-item/archive/v1.1.4.tar.gz",
+- strip_prefix = "paper-item-1.1.4",
++ path = "tensorflow_third_party/paper_item"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "paper_listbox",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/paper-listbox/archive/v1.1.2.tar.gz",
+- strip_prefix = "paper-listbox-1.1.2",
++ path = "tensorflow_third_party/paper_listbox"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "paper_material",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/paper-material/archive/v1.0.6.tar.gz",
+- strip_prefix = "paper-material-1.0.6",
++ path = "tensorflow_third_party/paper_material"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "paper_menu",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/paper-menu/archive/v1.2.2.tar.gz",
+- strip_prefix = "paper-menu-1.2.2",
++ path = "tensorflow_third_party/paper_menu"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "paper_menu_button",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/paper-menu-button/archive/v1.5.1.tar.gz",
+- strip_prefix = "paper-menu-button-1.5.1",
++ path = "tensorflow_third_party/paper_menu_button"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "paper_progress",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/paper-progress/archive/v1.0.9.tar.gz",
+- strip_prefix = "paper-progress-1.0.9",
++ path = "tensorflow_third_party/paper_progress"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "paper_radio_button",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/paper-radio-button/archive/v1.1.2.tar.gz",
+- strip_prefix = "paper-radio-button-1.1.2",
++ path = "tensorflow_third_party/paper_radio_button"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "paper_radio_group",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/paper-radio-group/archive/v1.0.9.tar.gz",
+- strip_prefix = "paper-radio-group-1.0.9",
++ path = "tensorflow_third_party/paper_radio_group"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "paper_ripple",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/paper-ripple/archive/v1.0.5.tar.gz",
+- strip_prefix = "paper-ripple-1.0.5",
++ path = "tensorflow_third_party/paper_ripple"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "paper_slider",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/paper-slider/archive/v1.0.10.tar.gz",
+- strip_prefix = "paper-slider-1.0.10",
++ path = "tensorflow_third_party/paper_slider"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "paper_spinner",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/paper-spinner/archive/v1.1.1.tar.gz",
+- strip_prefix = "paper-spinner-1.1.1",
++ path = "tensorflow_third_party/paper_spinner"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "paper_styles",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/paper-styles/archive/v1.1.4.tar.gz",
+- strip_prefix = "paper-styles-1.1.4",
++ path = "tensorflow_third_party/paper_styles"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "paper_tabs",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/paper-tabs/archive/v1.7.0.tar.gz",
+- strip_prefix = "paper-tabs-1.7.0",
++ path = "tensorflow_third_party/paper_tabs"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "paper_toast",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/paper-toast/archive/v1.3.0.tar.gz",
+- strip_prefix = "paper-toast-1.3.0",
++ path = "tensorflow_third_party/paper_toast"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "paper_toggle_button",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/paper-toggle-button/archive/v1.2.0.tar.gz",
+- strip_prefix = "paper-toggle-button-1.2.0",
++ path = "tensorflow_third_party/paper_toggle_button"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "paper_toolbar",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/paper-toolbar/archive/v1.1.4.tar.gz",
+- strip_prefix = "paper-toolbar-1.1.4",
++ path = "tensorflow_third_party/paper_toolbar"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "paper_tooltip",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerelements/paper-tooltip/archive/v1.1.2.tar.gz",
+- strip_prefix = "paper-tooltip-1.1.2",
++ path = "tensorflow_third_party/paper_tooltip"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "plottable",
+- build_file = "bower.BUILD",
+- url = "https://github.com/palantir/plottable/archive/v1.16.1.tar.gz",
+- strip_prefix = "plottable-1.16.1",
++ path = "tensorflow_third_party/plottable"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "polymer",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymer/polymer/archive/v1.7.0.tar.gz",
+- strip_prefix = "polymer-1.7.0",
++ path = "tensorflow_third_party/polymer"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "promise_polyfill",
+- build_file = "bower.BUILD",
+- url = "https://github.com/polymerlabs/promise-polyfill/archive/v1.0.0.tar.gz",
+- strip_prefix = "promise-polyfill-1.0.0",
++ path = "tensorflow_third_party/promise_polyfill"
++
++
+ )
+
+-http_file(
++local_repository(
+ name = "three_js_three_min_js",
+- url = "https://raw.githubusercontent.com/mrdoob/three.js/r77/build/three.min.js",
++ path = "tensorflow_third_party/three_js_three_min_js"
+ )
+
+-http_file(
++local_repository(
+ name = "three_js_orbitcontrols_js",
+- url = "https://raw.githubusercontent.com/mrdoob/three.js/r77/examples/js/controls/OrbitControls.js",
++ path = "tensorflow_third_party/three_js_orbitcontrols_js"
+ )
+
+-new_http_archive(
++local_repository(
+ name = "web_animations_js",
+- build_file = "bower.BUILD",
+- url = "https://github.com/web-animations/web-animations-js/archive/2.2.1.tar.gz",
+- strip_prefix = "web-animations-js-2.2.1",
++ path = "tensorflow_third_party/web_animations_js"
++
++
+ )
+
+-new_http_archive(
++local_repository(
+ name = "webcomponentsjs",
+- build_file = "bower.BUILD",
+- url = "https://github.com/webcomponents/webcomponentsjs/archive/v0.7.22.tar.gz",
+- strip_prefix = "webcomponentsjs-0.7.22",
++ path = "tensorflow_third_party/webcomponentsjs"
++
++
+ )
+
+-http_file(
++local_repository(
+ name = "weblas_weblas_js",
+- url = "https://raw.githubusercontent.com/waylonflinn/weblas/v0.9.0/dist/weblas.js",
++ path = "tensorflow_third_party/weblas_weblas_js"
+ )
Index: files/patch-tensorflow__third__party_grpc_include_grpc_impl_codegen_port__platform.h
===================================================================
--- /dev/null
+++ files/patch-tensorflow__third__party_grpc_include_grpc_impl_codegen_port__platform.h
@@ -0,0 +1,47 @@
+--- tensorflow_third_party/grpc/include/grpc/impl/codegen/port_platform.h.orig 2017-06-12 12:45:01 UTC
++++ tensorflow_third_party/grpc/include/grpc/impl/codegen/port_platform.h
+@@ -131,7 +131,7 @@
+ #define GPR_POSIX_SOCKETUTILS 1
+ #define GPR_SUPPORT_CHANNELS_FROM_FD 1
+ #define GPR_HAVE_UNIX_SOCKET 1
+-#define GPR_HAVE_IP_PKTINFO 1
++//#define GPR_HAVE_IP_PKTINFO 1
+ #define GPR_HAVE_IPV6_RECVPKTINFO 1
+ #define GPR_LINUX_ENV 1
+ #define GPR_POSIX_FILE 1
+@@ -176,7 +176,7 @@
+ #define GPR_SUPPORT_CHANNELS_FROM_FD 1
+ #define GPR_HAVE_MSG_NOSIGNAL 1
+ #define GPR_HAVE_UNIX_SOCKET 1
+-#define GPR_HAVE_IP_PKTINFO 1
++//#define GPR_HAVE_IP_PKTINFO 1
+ #define GPR_HAVE_IPV6_RECVPKTINFO 1
+ #elif defined(__linux__)
+ #define GPR_POSIX_CRASH_HANDLER 1
+@@ -202,7 +202,7 @@
+ #define GPR_POSIX_SOCKETADDR 1
+ #define GPR_SUPPORT_CHANNELS_FROM_FD 1
+ #define GPR_HAVE_UNIX_SOCKET 1
+-#define GPR_HAVE_IP_PKTINFO 1
++//#define GPR_HAVE_IP_PKTINFO 1
+ #define GPR_HAVE_IPV6_RECVPKTINFO 1
+ #ifdef __GLIBC_PREREQ
+ #if __GLIBC_PREREQ(2, 9)
+@@ -269,7 +269,7 @@
+ #define GPR_SUPPORT_CHANNELS_FROM_FD 1
+ #define GPR_HAVE_SO_NOSIGPIPE 1
+ #define GPR_HAVE_UNIX_SOCKET 1
+-#define GPR_HAVE_IP_PKTINFO 1
++//#define GPR_HAVE_IP_PKTINFO 1
+ #ifdef _LP64
+ #define GPR_ARCH_64 1
+ #else /* _LP64 */
+@@ -301,7 +301,7 @@
+ #define GPR_SUPPORT_CHANNELS_FROM_FD 1
+ #define GPR_HAVE_SO_NOSIGPIPE 1
+ #define GPR_HAVE_UNIX_SOCKET 1
+-#define GPR_HAVE_IP_PKTINFO 1
++//#define GPR_HAVE_IP_PKTINFO 1
+ #define GPR_HAVE_IPV6_RECVPKTINFO 1
+ #ifdef _LP64
+ #define GPR_ARCH_64 1
Index: files/patch-tensorflow__third__party_protobuf_src_google_protobuf_compiler_plugin.pb.h
===================================================================
--- /dev/null
+++ files/patch-tensorflow__third__party_protobuf_src_google_protobuf_compiler_plugin.pb.h
@@ -0,0 +1,37 @@
+--- tensorflow_third_party/protobuf/src/google/protobuf/compiler/plugin.pb.h.orig 2017-06-12 12:45:01 UTC
++++ tensorflow_third_party/protobuf/src/google/protobuf/compiler/plugin.pb.h
+@@ -235,14 +235,14 @@ class LIBPROTOC_EXPORT Version : public
+ bool has_major() const;
+ void clear_major();
+ static const int kMajorFieldNumber = 1;
+- ::google::protobuf::int32 major() const;
++ ::google::protobuf::int32 _major() const;
+ void set_major(::google::protobuf::int32 value);
+
+ // optional int32 minor = 2;
+ bool has_minor() const;
+ void clear_minor();
+ static const int kMinorFieldNumber = 2;
+- ::google::protobuf::int32 minor() const;
++ ::google::protobuf::int32 _minor() const;
+ void set_minor(::google::protobuf::int32 value);
+
+ // optional int32 patch = 3;
+@@ -702,7 +702,7 @@ inline void Version::clear_major() {
+ major_ = 0;
+ clear_has_major();
+ }
+-inline ::google::protobuf::int32 Version::major() const {
++inline ::google::protobuf::int32 Version::_major() const {
+ // @@protoc_insertion_point(field_get:google.protobuf.compiler.Version.major)
+ return major_;
+ }
+@@ -726,7 +726,7 @@ inline void Version::clear_minor() {
+ minor_ = 0;
+ clear_has_minor();
+ }
+-inline ::google::protobuf::int32 Version::minor() const {
++inline ::google::protobuf::int32 Version::_minor() const {
+ // @@protoc_insertion_point(field_get:google.protobuf.compiler.Version.minor)
+ return minor_;
+ }
Index: files/patch-tensorflow__third__party_protobuf_src_google_protobuf_compiler_plugin.pb.cc
===================================================================
--- /dev/null
+++ files/patch-tensorflow__third__party_protobuf_src_google_protobuf_compiler_plugin.pb.cc
@@ -0,0 +1,80 @@
+--- tensorflow_third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc.orig 2017-06-12 12:45:01 UTC
++++ tensorflow_third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc
+@@ -370,12 +370,12 @@ void Version::SerializeWithCachedSizes(
+ // @@protoc_insertion_point(serialize_start:google.protobuf.compiler.Version)
+ // optional int32 major = 1;
+ if (has_major()) {
+- ::google::protobuf::internal::WireFormatLite::WriteInt32(1, this->major(), output);
++ ::google::protobuf::internal::WireFormatLite::WriteInt32(1, this->_major(), output);
+ }
+
+ // optional int32 minor = 2;
+ if (has_minor()) {
+- ::google::protobuf::internal::WireFormatLite::WriteInt32(2, this->minor(), output);
++ ::google::protobuf::internal::WireFormatLite::WriteInt32(2, this->_minor(), output);
+ }
+
+ // optional int32 patch = 3;
+@@ -406,12 +406,12 @@ void Version::SerializeWithCachedSizes(
+ // @@protoc_insertion_point(serialize_to_array_start:google.protobuf.compiler.Version)
+ // optional int32 major = 1;
+ if (has_major()) {
+- target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(1, this->major(), target);
++ target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(1, this->_major(), target);
+ }
+
+ // optional int32 minor = 2;
+ if (has_minor()) {
+- target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(2, this->minor(), target);
++ target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(2, this->_minor(), target);
+ }
+
+ // optional int32 patch = 3;
+@@ -459,14 +459,14 @@ size_t Version::ByteSizeLong() const {
+ if (has_major()) {
+ total_size += 1 +
+ ::google::protobuf::internal::WireFormatLite::Int32Size(
+- this->major());
++ this->_major());
+ }
+
+ // optional int32 minor = 2;
+ if (has_minor()) {
+ total_size += 1 +
+ ::google::protobuf::internal::WireFormatLite::Int32Size(
+- this->minor());
++ this->_minor());
+ }
+
+ // optional int32 patch = 3;
+@@ -509,10 +509,10 @@ void Version::MergeFrom(const Version& f
+ suffix_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.suffix_);
+ }
+ if (from.has_major()) {
+- set_major(from.major());
++ set_major(from._major());
+ }
+ if (from.has_minor()) {
+- set_minor(from.minor());
++ set_minor(from._minor());
+ }
+ if (from.has_patch()) {
+ set_patch(from.patch());
+@@ -574,7 +574,7 @@ void Version::clear_major() {
+ major_ = 0;
+ clear_has_major();
+ }
+-::google::protobuf::int32 Version::major() const {
++::google::protobuf::int32 Version::_major() const {
+ // @@protoc_insertion_point(field_get:google.protobuf.compiler.Version.major)
+ return major_;
+ }
+@@ -598,7 +598,7 @@ void Version::clear_minor() {
+ minor_ = 0;
+ clear_has_minor();
+ }
+-::google::protobuf::int32 Version::minor() const {
++::google::protobuf::int32 Version::_minor() const {
+ // @@protoc_insertion_point(field_get:google.protobuf.compiler.Version.minor)
+ return minor_;
+ }
Index: files/patch-tensorflow_workspace.bzl
===================================================================
--- /dev/null
+++ files/patch-tensorflow_workspace.bzl
@@ -0,0 +1,2082 @@
+--- tensorflow/workspace.bzl.orig 2017-06-13 09:19:44 UTC
++++ tensorflow/workspace.bzl
+@@ -71,26 +71,14 @@ def tf_workspace(path_prefix = "", tf_re
+ if tf_repo_name:
+ print("tf_repo_name was specified to tf_workspace but is no longer used and will be removed in the future.")
+
+- native.new_http_archive(
++ native.local_repository(
+ name = "eigen_archive",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/bitbucket.org/eigen/eigen/get/9c6361787292.tar.gz",
+- "https://bitbucket.org/eigen/eigen/get/9c6361787292.tar.gz",
+- ],
+- sha256 = "e6ec2502a5d82dd5df0b9b16e7697f5fccb81c322d0be8e3492969eecb66badd",
+- strip_prefix = "eigen-eigen-9c6361787292",
+- build_file = str(Label("//third_party:eigen.BUILD")),
++ path = "tensorflow_third_party/eigen_archive"
+ )
+
+- native.new_http_archive(
++ native.local_repository(
+ name = "libxsmm_archive",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/hfp/libxsmm/archive/1.7.1.tar.gz",
+- "https://github.com/hfp/libxsmm/archive/1.7.1.tar.gz",
+- ],
+- sha256 = "9d3f63ce3eed62f04e4036de6f2be2ce0ff07781ca571af6e0bf85b077edf17a",
+- strip_prefix = "libxsmm-1.7.1",
+- build_file = str(Label("//third_party:libxsmm.BUILD")),
++ path = "tensorflow_third_party/libxsmm_archive"
+ )
+
+ native.bind(
+@@ -98,35 +86,19 @@ def tf_workspace(path_prefix = "", tf_re
+ actual = "@libxsmm_archive//third_party:xsmm_avx",
+ )
+
+- native.http_archive(
++ native.local_repository(
+ name = "com_googlesource_code_re2",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/google/re2/archive/b94b7cd42e9f02673cd748c1ac1d16db4052514c.tar.gz",
+- "https://github.com/google/re2/archive/b94b7cd42e9f02673cd748c1ac1d16db4052514c.tar.gz",
+- ],
+- sha256 = "bd63550101e056427c9e7ff12a408c1c8b74e9803f393ca916b2926fc2c4906f",
+- strip_prefix = "re2-b94b7cd42e9f02673cd748c1ac1d16db4052514c",
++ path = "tensorflow_third_party/com_googlesource_code_re2"
+ )
+
+- native.http_archive(
++ native.local_repository(
+ name = "gemmlowp",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/google/gemmlowp/archive/a6f29d8ac48d63293f845f2253eccbf86bc28321.tar.gz",
+- "https://github.com/google/gemmlowp/archive/a6f29d8ac48d63293f845f2253eccbf86bc28321.tar.gz",
+- ],
+- sha256 = "75d40ea8e68b0d1644f052fffe8f14a410b2a73d40ccb859a95c0578d194ec26",
+- strip_prefix = "gemmlowp-a6f29d8ac48d63293f845f2253eccbf86bc28321",
++ path = "tensorflow_third_party/gemmlowp"
+ )
+
+- native.new_http_archive(
++ native.local_repository(
+ name = "farmhash_archive",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/google/farmhash/archive/92e897b282426729f4724d91a637596c7e2fe28f.zip",
+- "https://github.com/google/farmhash/archive/92e897b282426729f4724d91a637596c7e2fe28f.zip",
+- ],
+- sha256 = "4c626d1f306bda2c6804ab955892f803f5245f4dcaecb4979dc08b091256da54",
+- strip_prefix = "farmhash-92e897b282426729f4724d91a637596c7e2fe28f",
+- build_file = str(Label("//third_party:farmhash.BUILD")),
++ path = "tensorflow_third_party/farmhash_archive"
+ )
+
+ native.bind(
+@@ -134,83 +106,39 @@ def tf_workspace(path_prefix = "", tf_re
+ actual = "@farmhash//:farmhash",
+ )
+
+- native.new_http_archive(
++ native.local_repository(
+ name = "highwayhash",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/google/highwayhash/archive/dfcb97ca4fe9277bf9dc1802dd979b071896453b.tar.gz",
+- "https://github.com/google/highwayhash/archive/dfcb97ca4fe9277bf9dc1802dd979b071896453b.tar.gz",
+- ],
+- sha256 = "0f30a15b1566d93f146c8d149878a06e91d9bb7ec2cfd76906df62a82be4aac9",
+- strip_prefix = "highwayhash-dfcb97ca4fe9277bf9dc1802dd979b071896453b",
+- build_file = str(Label("//third_party:highwayhash.BUILD")),
++ path = "tensorflow_third_party/highwayhash"
+ )
+
+- native.new_http_archive(
++ native.local_repository(
+ name = "nasm",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/www.nasm.us/pub/nasm/releasebuilds/2.12.02/nasm-2.12.02.tar.bz2",
+- "http://pkgs.fedoraproject.org/repo/pkgs/nasm/nasm-2.12.02.tar.bz2/d15843c3fb7db39af80571ee27ec6fad/nasm-2.12.02.tar.bz2",
+- ],
+- sha256 = "00b0891c678c065446ca59bcee64719d0096d54d6886e6e472aeee2e170ae324",
+- strip_prefix = "nasm-2.12.02",
+- build_file = str(Label("//third_party:nasm.BUILD")),
++ path = "tensorflow_third_party/nasm"
+ )
+
+- temp_workaround_http_archive(
++ native.local_repository(
+ name = "jpeg",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/libjpeg-turbo/libjpeg-turbo/archive/1.5.1.tar.gz",
+- "https://github.com/libjpeg-turbo/libjpeg-turbo/archive/1.5.1.tar.gz",
+- ],
+- sha256 = "c15a9607892113946379ccea3ca8b85018301b200754f209453ab21674268e77",
+- strip_prefix = "libjpeg-turbo-1.5.1",
+- build_file = str(Label("//third_party/jpeg:jpeg.BUILD")),
+- repository = tf_repo_name,
++ path = "tensorflow_third_party/jpeg"
+ )
+
+- native.new_http_archive(
++ native.local_repository(
+ name = "png_archive",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/glennrp/libpng/archive/v1.2.53.zip",
+- "https://github.com/glennrp/libpng/archive/v1.2.53.zip",
+- ],
+- sha256 = "c35bcc6387495ee6e757507a68ba036d38ad05b415c2553b3debe2a57647a692",
+- strip_prefix = "libpng-1.2.53",
+- build_file = str(Label("//third_party:png.BUILD")),
++ path = "tensorflow_third_party/png_archive"
+ )
+
+- native.new_http_archive(
++ native.local_repository(
+ name = "gif_archive",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/ufpr.dl.sourceforge.net/project/giflib/giflib-5.1.4.tar.gz",
+- "http://ufpr.dl.sourceforge.net/project/giflib/giflib-5.1.4.tar.gz",
+- "http://pilotfiber.dl.sourceforge.net/project/giflib/giflib-5.1.4.tar.gz",
+- ],
+- sha256 = "34a7377ba834397db019e8eb122e551a49c98f49df75ec3fcc92b9a794a4f6d1",
+- strip_prefix = "giflib-5.1.4",
+- build_file = str(Label("//third_party:gif.BUILD")),
++ path = "tensorflow_third_party/gif_archive"
+ )
+
+- native.new_http_archive(
++ native.local_repository(
+ name = "six_archive",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/pypi.python.org/packages/source/s/six/six-1.10.0.tar.gz",
+- "http://pypi.python.org/packages/source/s/six/six-1.10.0.tar.gz",
+- ],
+- sha256 = "105f8d68616f8248e24bf0e9372ef04d3cc10104f1980f54d57b2ce73a5ad56a",
+- strip_prefix = "six-1.10.0",
+- build_file = str(Label("//third_party:six.BUILD")),
++ path = "tensorflow_third_party/six_archive"
+ )
+
+- native.new_http_archive(
++ native.local_repository(
+ name = "org_pocoo_werkzeug",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/pypi.python.org/packages/b7/7f/44d3cfe5a12ba002b253f6985a4477edfa66da53787a2a838a40f6415263/Werkzeug-0.11.10.tar.gz",
+- "https://pypi.python.org/packages/b7/7f/44d3cfe5a12ba002b253f6985a4477edfa66da53787a2a838a40f6415263/Werkzeug-0.11.10.tar.gz",
+- ],
+- strip_prefix = "Werkzeug-0.11.10",
+- sha256 = "cc64dafbacc716cdd42503cf6c44cb5a35576443d82f29f6829e5c49264aeeee",
+- build_file = str(Label("//third_party:werkzeug.BUILD")),
++ path = "tensorflow_third_party/org_pocoo_werkzeug"
+ )
+
+ native.bind(
+@@ -218,25 +146,14 @@ def tf_workspace(path_prefix = "", tf_re
+ actual = "@six_archive//:six",
+ )
+
+- native.http_archive(
++ native.local_repository(
+ name = "protobuf",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/google/protobuf/archive/2b7430d96aeff2bb624c8d52182ff5e4b9f7f18a.tar.gz",
+- "https://github.com/google/protobuf/archive/2b7430d96aeff2bb624c8d52182ff5e4b9f7f18a.tar.gz",
+- ],
+- sha256 = "e5d3d4e227a0f7afb8745df049bbd4d55474b158ca5aaa2a0e31099af24be1d0",
+- strip_prefix = "protobuf-2b7430d96aeff2bb624c8d52182ff5e4b9f7f18a",
++ path = "tensorflow_third_party/protobuf"
+ )
+
+- native.new_http_archive(
++ native.local_repository(
+ name = "gmock_archive",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/google/googletest/archive/release-1.8.0.zip",
+- "https://github.com/google/googletest/archive/release-1.8.0.zip",
+- ],
+- sha256 = "f3ed3b58511efd272eb074a3a6d6fb79d7c2e6a0e374323d1e6bcbcc1ef141bf",
+- strip_prefix = "googletest-release-1.8.0",
+- build_file = str(Label("//third_party:gmock.BUILD")),
++ path = "tensorflow_third_party/gmock_archive"
+ )
+
+ native.bind(
+@@ -254,43 +171,21 @@ def tf_workspace(path_prefix = "", tf_re
+ actual = str(Label("//util/python:python_headers")),
+ )
+
+- native.new_http_archive(
++ native.local_repository(
+ name = "pcre",
+- sha256 = "ccdf7e788769838f8285b3ee672ed573358202305ee361cfec7a4a4fb005bbc7",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/ftp.exim.org/pub/pcre/pcre-8.39.tar.gz",
+- "http://ftp.exim.org/pub/pcre/pcre-8.39.tar.gz",
+- ],
+- strip_prefix = "pcre-8.39",
+- build_file = str(Label("//third_party:pcre.BUILD")),
++ path = "tensorflow_third_party/pcre"
+ )
+
+- native.new_http_archive(
++ native.local_repository(
+ name = "swig",
+- sha256 = "58a475dbbd4a4d7075e5fe86d4e54c9edde39847cdb96a3053d87cb64a23a453",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/ufpr.dl.sourceforge.net/project/swig/swig/swig-3.0.8/swig-3.0.8.tar.gz",
+- "http://ufpr.dl.sourceforge.net/project/swig/swig/swig-3.0.8/swig-3.0.8.tar.gz",
+- "http://pilotfiber.dl.sourceforge.net/project/swig/swig/swig-3.0.8/swig-3.0.8.tar.gz",
+- ],
+- strip_prefix = "swig-3.0.8",
+- build_file = str(Label("//third_party:swig.BUILD")),
++ path = "tensorflow_third_party/swig"
+ )
+
+- temp_workaround_http_archive(
++ native.local_repository(
+ name = "curl",
+- sha256 = "ff3e80c1ca6a068428726cd7dd19037a47cc538ce58ef61c59587191039b2ca6",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/curl.haxx.se/download/curl-7.49.1.tar.gz",
+- "https://curl.haxx.se/download/curl-7.49.1.tar.gz",
+- ],
+- strip_prefix = "curl-7.49.1",
+- build_file = str(Label("//third_party:curl.BUILD")),
+- repository = tf_repo_name
++ path = "tensorflow_third_party/curl"
+ )
+
+- # grpc expects //external:protobuf_clib and //external:protobuf_compiler
+- # to point to the protobuf's compiler library.
+ native.bind(
+ name = "protobuf_clib",
+ actual = "@protobuf//:protoc_lib",
+@@ -301,19 +196,11 @@ def tf_workspace(path_prefix = "", tf_re
+ actual = "@protobuf//:protoc_lib",
+ )
+
+- native.new_http_archive(
++ native.local_repository(
+ name = "grpc",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/grpc/grpc/archive/d7ff4ff40071d2b486a052183e3e9f9382afb745.tar.gz",
+- "https://github.com/grpc/grpc/archive/d7ff4ff40071d2b486a052183e3e9f9382afb745.tar.gz",
+- ],
+- sha256 = "a15f352436ab92c521b1ac11e729e155ace38d0856380cf25048c5d1d9ba8e31",
+- strip_prefix = "grpc-d7ff4ff40071d2b486a052183e3e9f9382afb745",
+- build_file = str(Label("//third_party:grpc.BUILD")),
++ path = "tensorflow_third_party/grpc"
+ )
+
+- # protobuf expects //external:grpc_cpp_plugin to point to grpc's
+- # C++ plugin code generator.
+ native.bind(
+ name = "grpc_cpp_plugin",
+ actual = "@grpc//:grpc_cpp_plugin",
+@@ -324,40 +211,19 @@ def tf_workspace(path_prefix = "", tf_re
+ actual = "@grpc//:grpc++_unsecure",
+ )
+
+- native.new_http_archive(
++ native.local_repository(
+ name = "linenoise",
+- sha256 = "7f51f45887a3d31b4ce4fa5965210a5e64637ceac12720cfce7954d6a2e812f7",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/antirez/linenoise/archive/c894b9e59f02203dbe4e2be657572cf88c4230c3.tar.gz",
+- "https://github.com/antirez/linenoise/archive/c894b9e59f02203dbe4e2be657572cf88c4230c3.tar.gz",
+- ],
+- strip_prefix = "linenoise-c894b9e59f02203dbe4e2be657572cf88c4230c3",
+- build_file = str(Label("//third_party:linenoise.BUILD")),
++ path = "tensorflow_third_party/linenoise"
+ )
+
+- # TODO(phawkins): currently, this rule uses an unofficial LLVM mirror.
+- # Switch to an official source of snapshots if/when possible.
+- temp_workaround_http_archive(
++ native.local_repository(
+ name = "llvm",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/llvm-mirror/llvm/archive/53a96f264ef1148873c2c08bededc4c04a17078c.tar.gz",
+- "https://github.com/llvm-mirror/llvm/archive/53a96f264ef1148873c2c08bededc4c04a17078c.tar.gz",
+- ],
+- sha256 = "0ffea06dc2f6565dfc1ae2d9fef7f2c55ee561c9343fc7c1d6306cd8cfbe76b0",
+- strip_prefix = "llvm-53a96f264ef1148873c2c08bededc4c04a17078c",
+- build_file = str(Label("//third_party/llvm:llvm.BUILD")),
+- repository = tf_repo_name,
++ path = "tensorflow_third_party/llvm"
+ )
+
+- native.new_http_archive(
++ native.local_repository(
+ name = "jsoncpp_git",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/open-source-parsers/jsoncpp/archive/11086dd6a7eba04289944367ca82cea71299ed70.tar.gz",
+- "https://github.com/open-source-parsers/jsoncpp/archive/11086dd6a7eba04289944367ca82cea71299ed70.tar.gz",
+- ],
+- sha256 = "07d34db40593d257324ec5fb9debc4dc33f29f8fb44e33a2eeb35503e61d0fe2",
+- strip_prefix = "jsoncpp-11086dd6a7eba04289944367ca82cea71299ed70",
+- build_file = str(Label("//third_party:jsoncpp.BUILD")),
++ path = "tensorflow_third_party/jsoncpp_git"
+ )
+
+ native.bind(
+@@ -365,25 +231,14 @@ def tf_workspace(path_prefix = "", tf_re
+ actual = "@jsoncpp_git//:jsoncpp",
+ )
+
+- native.http_archive(
++ native.local_repository(
+ name = "boringssl",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/google/boringssl/archive/bbcaa15b0647816b9a1a9b9e0d209cd6712f0105.tar.gz",
+- "https://github.com/google/boringssl/archive/bbcaa15b0647816b9a1a9b9e0d209cd6712f0105.tar.gz", # 2016-07-11
+- ],
+- sha256 = "025264d6e9a7ad371f2f66d17a28b6627de0c9592dc2eb54afd062f68f1f9aa3",
+- strip_prefix = "boringssl-bbcaa15b0647816b9a1a9b9e0d209cd6712f0105",
++ path = "tensorflow_third_party/boringssl"
+ )
+
+- native.new_http_archive(
++ native.local_repository(
+ name = "nanopb_git",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/nanopb/nanopb/archive/1251fa1065afc0d62f635e0f63fec8276e14e13c.tar.gz",
+- "https://github.com/nanopb/nanopb/archive/1251fa1065afc0d62f635e0f63fec8276e14e13c.tar.gz",
+- ],
+- sha256 = "ab1455c8edff855f4f55b68480991559e51c11e7dab060bbab7cffb12dd3af33",
+- strip_prefix = "nanopb-1251fa1065afc0d62f635e0f63fec8276e14e13c",
+- build_file = str(Label("//third_party:nanopb.BUILD")),
++ path = "tensorflow_third_party/nanopb_git"
+ )
+
+ native.bind(
+@@ -391,15 +246,9 @@ def tf_workspace(path_prefix = "", tf_re
+ actual = "@nanopb_git//:nanopb",
+ )
+
+- native.new_http_archive(
++ native.local_repository(
+ name = "zlib_archive",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/zlib.net/zlib-1.2.8.tar.gz",
+- "http://zlib.net/fossils/zlib-1.2.8.tar.gz",
+- ],
+- sha256 = "36658cb768a54c1d4dec43c3116c27ed893e88b02ecfcb44f2166f9c0b7f2a0d",
+- strip_prefix = "zlib-1.2.8",
+- build_file = str(Label("//third_party:zlib.BUILD")),
++ path = "tensorflow_third_party/zlib_archive"
+ )
+
+ native.bind(
+@@ -407,1552 +256,398 @@ def tf_workspace(path_prefix = "", tf_re
+ actual = "@zlib_archive//:zlib",
+ )
+
+- temp_workaround_http_archive(
++ native.local_repository(
+ name = "nccl_archive",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/nvidia/nccl/archive/024d1e267845f2ed06f3e2e42476d50f04a00ee6.tar.gz",
+- "https://github.com/nvidia/nccl/archive/024d1e267845f2ed06f3e2e42476d50f04a00ee6.tar.gz",
+- ],
+- sha256 = "6787f0eed88d52ee8e32956fa4947d92c139da469f1d8e311c307f27d641118e",
+- strip_prefix = "nccl-024d1e267845f2ed06f3e2e42476d50f04a00ee6",
+- build_file = str(Label("//third_party:nccl.BUILD")),
+- repository = tf_repo_name,
++ path = "tensorflow_third_party/nccl_archive"
+ )
+
+- java_import_external(
++ native.local_repository(
+ name = "junit",
+- jar_sha256 = "59721f0805e223d84b90677887d9ff567dc534d7c502ca903c0c2b17f05c116a",
+- jar_urls = [
+- "http://bazel-mirror.storage.googleapis.com/repo1.maven.org/maven2/junit/junit/4.12/junit-4.12.jar",
+- "http://repo1.maven.org/maven2/junit/junit/4.12/junit-4.12.jar",
+- "http://maven.ibiblio.org/maven2/junit/junit/4.12/junit-4.12.jar",
+- ],
+- licenses = ["reciprocal"], # Common Public License Version 1.0
+- testonly_ = True,
+- deps = ["@org_hamcrest_core"],
++ path = "tensorflow_third_party/junit"
+ )
+
+- java_import_external(
++ native.local_repository(
+ name = "org_hamcrest_core",
+- jar_sha256 = "66fdef91e9739348df7a096aa384a5685f4e875584cce89386a7a47251c4d8e9",
+- jar_urls = [
+- "http://bazel-mirror.storage.googleapis.com/repo1.maven.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar",
+- "http://repo1.maven.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar",
+- "http://maven.ibiblio.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar",
+- ],
+- licenses = ["notice"], # New BSD License
+- testonly_ = True,
++ path = "tensorflow_third_party/org_hamcrest_core"
+ )
+
+- temp_workaround_http_archive(
++ native.local_repository(
+ name = "jemalloc",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/jemalloc/jemalloc/archive/4.4.0.tar.gz",
+- "https://github.com/jemalloc/jemalloc/archive/4.4.0.tar.gz",
+- ],
+- sha256 = "3c8f25c02e806c3ce0ab5fb7da1817f89fc9732709024e2a81b6b82f7cc792a8",
+- strip_prefix = "jemalloc-4.4.0",
+- build_file = str(Label("//third_party:jemalloc.BUILD")),
+- repository = tf_repo_name,
++ path = "tensorflow_third_party/jemalloc"
+ )
+
+- ##############################################################################
+- # TensorBoard Build Tools
+-
+- filegroup_external(
++ native.local_repository(
+ name = "org_nodejs",
+- # MIT with portions licensed:
+- # - MIT
+- # - Old MIT
+- # - 2-Clause-BSD
+- # - 3-Clause-BSD
+- # - ISC
+- # - Unicode
+- # - zlib
+- # - Artistic 2.0
+- licenses = ["notice"],
+- sha256_urls_extract_macos = {
+- "47109a00cac344d80296c195451bb5eee7c21727fcef1594384ddfe1f852957a": [
+- "http://bazel-mirror.storage.googleapis.com/nodejs.org/dist/v4.3.2/node-v4.3.2-darwin-x64.tar.xz",
+- "http://nodejs.org/dist/v4.3.2/node-v4.3.2-darwin-x64.tar.xz",
+- ],
+- },
+- sha256_urls_windows = {
+- "606c44c42d17866c017c50c0afadad411d9492ac4281d2431b937f881911614e": [
+- "http://bazel-mirror.storage.googleapis.com/nodejs.org/dist/v4.3.2/win-x64/node.exe",
+- "http://nodejs.org/dist/v4.3.2/win-x64/node.exe",
+- ],
+- "451a40570099a95488d6438f175813629e0430f87f23c8659bc18dc42494820a": [
+- "http://bazel-mirror.storage.googleapis.com/nodejs.org/dist/v4.3.2/win-x64/node.lib",
+- "http://nodejs.org/dist/v4.3.2/win-x64/node.lib",
+- ],
+- },
+- sha256_urls_extract = {
+- "4350d0431b49697517c6cca5d66adf5f74eb9101c52f52ae959fa94225822d44": [
+- "http://bazel-mirror.storage.googleapis.com/nodejs.org/dist/v4.3.2/node-v4.3.2-linux-x64.tar.xz",
+- "http://nodejs.org/dist/v4.3.2/node-v4.3.2-linux-x64.tar.xz",
+- ],
+- },
+- strip_prefix = {
+- "node-v4.3.2-darwin-x64.tar.xz": "node-v4.3.2-darwin-x64",
+- "node-v4.3.2-linux-x64.tar.xz": "node-v4.3.2-linux-x64",
+- },
+- executable = [
+- "node",
+- "node.exe",
+- ],
++ path = "tensorflow_third_party/org_nodejs"
+ )
+
+- filegroup_external(
++ native.local_repository(
+ name = "com_microsoft_typescript",
+- licenses = ["notice"], # Apache 2.0
+- sha256_urls = {
+- "e3d9e320a2cae99be4aaa37953961a48323cdf16ba9aa2557a44d69571cd9b8d": [
+- "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/Microsoft/TypeScript/v2.1.6/lib/tsc.js",
+- "https://raw.githubusercontent.com/Microsoft/TypeScript/v2.1.6/lib/tsc.js",
+- ],
+- "f189cebe96eb76b238c6e364e72d4b0324e699f83eeae5deac23506cb3764fc6": [
+- "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/Microsoft/TypeScript/v2.1.6/lib/lib.es6.d.ts",
+- "https://raw.githubusercontent.com/Microsoft/TypeScript/v2.1.6/lib/lib.es6.d.ts",
+- ],
+- },
+- extra_build_file_content = "\n".join([
+- "sh_binary(",
+- " name = \"tsc\",",
+- " srcs = [\"tsc.sh\"],",
+- " data = [",
+- " \"tsc.js\",",
+- " \"@org_nodejs\",",
+- " ],",
+- ")",
+- "",
+- "genrule(",
+- " name = \"tsc_sh\",",
+- " outs = [\"tsc.sh\"],",
+- " cmd = \"cat >$@ <<'EOF'\\n\" +",
+- " \"#!/bin/bash\\n\" +",
+- " \"NODE=external/org_nodejs/bin/node\\n\" +",
+- " \"if [[ -e external/org_nodejs/node.exe ]]; then\\n\" +",
+- " \" NODE=external/org_nodejs/node.exe\\n\" +",
+- " \"fi\\n\" +",
+- " \"exec $${NODE} external/com_microsoft_typescript/tsc.js \\\"$$@\\\"\\n\" +",
+- " \"EOF\",",
+- " executable = True,",
+- ")",
+- ]),
++ path = "tensorflow_third_party/com_microsoft_typescript"
+ )
+
+- ##############################################################################
+- # TensorBoard JavaScript Production Dependencies
+-
+- filegroup_external(
++ native.local_repository(
+ name = "com_lodash",
+- licenses = ["notice"], # MIT
+- sha256_urls = {
+- "7c7b391810bc08cf815683431857c51b5ee190062ae4f557e1e4689d6dd910ea": [
+- "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/lodash/lodash/3.8.0/lodash.js",
+- "https://raw.githubusercontent.com/lodash/lodash/3.8.0/lodash.js",
+- ],
+- },
++ path = "tensorflow_third_party/com_lodash"
+ )
+
+- filegroup_external(
++ native.local_repository(
+ name = "com_numericjs",
+- # no @license header
+- licenses = ["notice"], # MIT
+- sha256_urls = {
+- "dfaca3b8485bee735788cc6eebca82ea25719adc1fb8911c7799c6bd5a95df3b": [
+- "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/sloisel/numeric/v1.2.6/src/numeric.js",
+- "https://raw.githubusercontent.com/sloisel/numeric/v1.2.6/src/numeric.js",
+- ],
+- },
++ path = "tensorflow_third_party/com_numericjs"
+ )
+
+- filegroup_external(
++ native.local_repository(
+ name = "com_palantir_plottable",
+- # no @license header
+- licenses = ["notice"], # MIT
+- sha256_urls = {
+- "77510d7538dbd3b59f1c8a06f68131b38562e3be546364747618d5112723e818": [
+- "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/palantir/plottable/v1.16.1/plottable.css",
+- "https://raw.githubusercontent.com/palantir/plottable/v1.16.1/plottable.css",
+- ],
+- "cd46dc709b01cd361e8399f797760871a6a207bc832e08fcff385ced02ef2b43": [
+- "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/palantir/plottable/v1.16.1/plottable.d.ts",
+- "https://raw.githubusercontent.com/palantir/plottable/v1.16.1/plottable.d.ts",
+- ],
+- "32647b0fb4175fa875a71e6d56c761b88d975186ed6a8820e2c7854165a8988d": [
+- "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/palantir/plottable/v1.16.1/plottable.js",
+- "https://raw.githubusercontent.com/palantir/plottable/v1.16.1/plottable.js",
+- ],
+- },
++ path = "tensorflow_third_party/com_palantir_plottable"
+ )
+
+- filegroup_external(
++ native.local_repository(
+ name = "io_github_cpettitt_dagre",
+- # no @license header
+- licenses = ["notice"], # MIT
+- sha256_urls = {
+- "7323829ddd77924a69e2b1235ded3eac30acd990da0f037e0fbd3c8e9035b50d": [
+- "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/cpettitt/dagre/v0.7.4/dist/dagre.core.js",
+- "https://raw.githubusercontent.com/cpettitt/dagre/v0.7.4/dist/dagre.core.js",
+- ],
+- },
++ path = "tensorflow_third_party/io_github_cpettitt_dagre"
+ )
+
+- filegroup_external(
++ native.local_repository(
+ name = "io_github_cpettitt_graphlib",
+- # no @license header
+- licenses = ["notice"], # MIT
+- sha256_urls = {
+- "772045d412b1513b549be991c2e1846c38019429d43974efcae943fbe83489bf": [
+- "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/cpettitt/graphlib/v1.0.7/dist/graphlib.core.js",
+- "https://raw.githubusercontent.com/cpettitt/graphlib/v1.0.7/dist/graphlib.core.js",
+- ],
+- },
++ path = "tensorflow_third_party/io_github_cpettitt_graphlib"
+ )
+
+- filegroup_external(
++ native.local_repository(
+ name = "io_github_waylonflinn_weblas",
+- # no @license header
+- licenses = ["notice"], # MIT
+- sha256_urls = {
+- "f138fce57f673ca8a633f4aee5ae5b6fcb6ad0de59069a42a74e996fd04d8fcc": [
+- "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/waylonflinn/weblas/v0.9.0/dist/weblas.js",
+- "https://raw.githubusercontent.com/waylonflinn/weblas/v0.9.0/dist/weblas.js",
+- ],
+- },
++ path = "tensorflow_third_party/io_github_waylonflinn_weblas"
+ )
+
+- filegroup_external(
++ native.local_repository(
+ name = "org_d3js",
+- # no @license header
+- licenses = ["notice"], # BSD-3-Clause
+- sha256_urls = {
+- "bc1e38838f5c5c8e040132d41efee6bfddbef728210bd566479dc1694af1d3f5": [
+- "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/d3/d3/v3.5.15/d3.js",
+- "https://raw.githubusercontent.com/d3/d3/v3.5.15/d3.js",
+- ],
+- },
++ path = "tensorflow_third_party/org_d3js"
+ )
+
+- filegroup_external(
++ native.local_repository(
+ name = "org_definitelytyped",
+- licenses = ["notice"], # MIT
+- sha256_urls = {
+- "b7da645f6e5555feb7aeede73775da0023ce2257df9c8e76c9159266035a9c0d": [
+- "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/ebc69904eb78f94030d5d517b42db20867f679c0/chai/chai.d.ts",
+- "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/ebc69904eb78f94030d5d517b42db20867f679c0/chai/chai.d.ts",
+- ],
+- "177293828c7a206bf2a7f725753d51396d38668311aa37c96445f91bbf8128a7": [
+- "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/6e2f2280ef16ef277049d0ce8583af167d586c59/d3/d3.d.ts",
+- "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/6e2f2280ef16ef277049d0ce8583af167d586c59/d3/d3.d.ts",
+- ],
+- "e4cd3d5de0eb3bc7b1063b50d336764a0ac82a658b39b5cf90511f489ffdee60": [
+- "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/efd40e67ff323f7147651bdbef03c03ead7b1675/lodash/lodash.d.ts",
+- "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/efd40e67ff323f7147651bdbef03c03ead7b1675/lodash/lodash.d.ts",
+- ],
+- "695a03dd2ccb238161d97160b239ab841562710e5c4e42886aefd4ace2ce152e": [
+- "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/ebc69904eb78f94030d5d517b42db20867f679c0/mocha/mocha.d.ts",
+- "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/ebc69904eb78f94030d5d517b42db20867f679c0/mocha/mocha.d.ts",
+- ],
+- },
++ path = "tensorflow_third_party/org_definitelytyped"
+ )
+
+- filegroup_external(
++ native.local_repository(
+ name = "org_threejs",
+- # no @license header
+- licenses = ["notice"], # MIT
+- sha256_urls = {
+- "7aff264bd84c90bed3c72a4dc31db8c19151853c6df6980f52b01d3e9872c82d": [
+- "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/mrdoob/three.js/ad419d40bdaab80abbb34b8f359b4ee840033a02/build/three.js",
+- "https://raw.githubusercontent.com/mrdoob/three.js/ad419d40bdaab80abbb34b8f359b4ee840033a02/build/three.js",
+- ],
+- "0e98ded15bb7fe398a655667e76b39909d36c0973a8950d01c62f65f93161c27": [
+- "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/mrdoob/three.js/ad419d40bdaab80abbb34b8f359b4ee840033a02/examples/js/controls/OrbitControls.js",
+- "https://raw.githubusercontent.com/mrdoob/three.js/ad419d40bdaab80abbb34b8f359b4ee840033a02/examples/js/controls/OrbitControls.js",
+- ],
+- },
++ path = "tensorflow_third_party/org_threejs"
+ )
+
+- ##############################################################################
+- # TensorBoard JavaScript Testing Dependencies
+-
+- filegroup_external(
++ native.local_repository(
+ name = "com_chaijs",
+- # no @license header
+- licenses = ["notice"], # MIT
+- sha256_urls = {
+- "b926b325ad9843bf0b7a6d580ef78bb560e47c484b98680098d4fd9b31b77cd9": [
+- "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/chaijs/chai/2.3.0/chai.js",
+- "https://raw.githubusercontent.com/chaijs/chai/2.3.0/chai.js",
+- ],
+- },
++ path = "tensorflow_third_party/com_chaijs"
+ )
+
+- filegroup_external(
++ native.local_repository(
+ name = "org_mochajs",
+- # no @license header
+- licenses = ["notice"], # MIT
+- sha256_urls = {
+- "e36d865a17ffdf5868e55e736526ae30f3d4bc667c85a2a28cd5c850a82361e2": [
+- "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/mochajs/mocha/2.3.4/mocha.js",
+- "https://raw.githubusercontent.com/mochajs/mocha/2.3.4/mocha.js",
+- ],
+- },
++ path = "tensorflow_third_party/org_mochajs"
+ )
+
+- ##############################################################################
+- # TensorBoard Polymer Dependencies
+-
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_font_roboto",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "fae51429b56a4a4c15f1f0c23b733c7095940cc9c04c275fa7adb3bf055b23b3",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/font-roboto/archive/v1.0.1.tar.gz",
+- "https://github.com/PolymerElements/font-roboto/archive/v1.0.1.tar.gz",
+- ],
+- strip_prefix = "font-roboto-1.0.1",
+- path = "/font-roboto",
+- srcs = ["roboto.html"],
++ path = "tensorflow_third_party/org_polymer_font_roboto"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_iron_a11y_announcer",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "6bce143db7a374a68535ec8b861a5f30e81f2f1e4ee36a55bda2a891f6fd2818",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-a11y-announcer/archive/v1.0.5.tar.gz",
+- "https://github.com/PolymerElements/iron-a11y-announcer/archive/v1.0.5.tar.gz",
+- ],
+- strip_prefix = "iron-a11y-announcer-1.0.5",
+- path = "/iron-a11y-announcer",
+- srcs = ["iron-a11y-announcer.html"],
+- deps = ["@org_polymer"],
++ path = "tensorflow_third_party/org_polymer_iron_a11y_announcer"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_iron_a11y_keys_behavior",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "6823efc47a83208fd51d39c5a1d3eb0c0bebc705df1ce01310509da22a13ebd2",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-a11y-keys-behavior/archive/v1.1.8.tar.gz",
+- "https://github.com/PolymerElements/iron-a11y-keys-behavior/archive/v1.1.8.tar.gz",
+- ],
+- strip_prefix = "iron-a11y-keys-behavior-1.1.8",
+- path = "/iron-a11y-keys-behavior",
+- srcs = ["iron-a11y-keys-behavior.html"],
+- deps = ["@org_polymer"],
++ path = "tensorflow_third_party/org_polymer_iron_a11y_keys_behavior"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_iron_ajax",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "9162d8af4611e911ac3ebbfc08bb7038ac04f6e79a9287b1476fe36ad6770bc5",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-ajax/archive/v1.2.0.tar.gz",
+- "https://github.com/PolymerElements/iron-ajax/archive/v1.2.0.tar.gz",
+- ],
+- strip_prefix = "iron-ajax-1.2.0",
+- path = "/iron-ajax",
+- srcs = [
+- "iron-ajax.html",
+- "iron-request.html",
+- ],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_promise_polyfill",
+- ],
++ path = "tensorflow_third_party/org_polymer_iron_ajax"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_iron_autogrow_textarea",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "50bbb901d2c8f87462e3552e3d671a552faa12c37c485e548d7a234ebffbc427",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-autogrow-textarea/archive/v1.0.12.tar.gz",
+- "https://github.com/PolymerElements/iron-autogrow-textarea/archive/v1.0.12.tar.gz",
+- ],
+- strip_prefix = "iron-autogrow-textarea-1.0.12",
+- path = "/iron-autogrow-textarea",
+- srcs = ["iron-autogrow-textarea.html"],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_behaviors",
+- "@org_polymer_iron_flex_layout",
+- "@org_polymer_iron_form_element_behavior",
+- "@org_polymer_iron_validatable_behavior",
+- ],
++ path = "tensorflow_third_party/org_polymer_iron_autogrow_textarea"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_iron_behaviors",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "a1e8d4b7a13f3d36beba9c2a6b186ed33a53e6af2e79f98c1fcc7e85e7b53f89",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-behaviors/archive/v1.0.17.tar.gz",
+- "https://github.com/PolymerElements/iron-behaviors/archive/v1.0.17.tar.gz",
+- ],
+- strip_prefix = "iron-behaviors-1.0.17",
+- path = "/iron-behaviors",
+- srcs = [
+- "iron-button-state.html",
+- "iron-control-state.html",
+- ],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_a11y_keys_behavior",
+- ],
++ path = "tensorflow_third_party/org_polymer_iron_behaviors"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_iron_checked_element_behavior",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "539a0e1c4df0bc702d3bd342388e4e56c77ec4c2066cce69e41426a69f92e8bd",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-checked-element-behavior/archive/v1.0.4.tar.gz",
+- "https://github.com/PolymerElements/iron-checked-element-behavior/archive/v1.0.4.tar.gz",
+- ],
+- strip_prefix = "iron-checked-element-behavior-1.0.4",
+- path = "/iron-checked-element-behavior",
+- srcs = ["iron-checked-element-behavior.html"],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_form_element_behavior",
+- "@org_polymer_iron_validatable_behavior",
+- ],
++ path = "tensorflow_third_party/org_polymer_iron_checked_element_behavior"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_iron_collapse",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "275808994a609a2f9923e2dd2db1957945ab141ba840eadc33f19e1f406d600e",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-collapse/archive/v1.0.8.tar.gz",
+- "https://github.com/PolymerElements/iron-collapse/archive/v1.0.8.tar.gz",
+- ],
+- strip_prefix = "iron-collapse-1.0.8",
+- path = "/iron-collapse",
+- srcs = ["iron-collapse.html"],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_resizable_behavior",
+- ],
++ path = "tensorflow_third_party/org_polymer_iron_collapse"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_iron_demo_helpers",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "aa7458492a6ac3d1f6344640a4c2ab07bce64e7ad0422b83b5d665707598cce6",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-demo-helpers/archive/v1.1.0.tar.gz",
+- "https://github.com/PolymerElements/iron-demo-helpers/archive/v1.1.0.tar.gz",
+- ],
+- strip_prefix = "iron-demo-helpers-1.1.0",
+- path = "/iron-demo-helpers",
+- srcs = [
+- "demo-pages-shared-styles.html",
+- "demo-snippet.html",
+- ],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_flex_layout",
+- "@org_polymer_iron_icons",
+- "@org_polymer_marked_element",
+- "@org_polymer_paper_icon_button",
+- "@org_polymer_paper_styles",
+- "@org_polymer_prism_element",
+- ],
++ path = "tensorflow_third_party/org_polymer_iron_demo_helpers"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_iron_dropdown",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "f7e4a31d096d10d8af1920397695cb17f3eb1cbe5e5ff91a861dabfcc085f376",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-dropdown/archive/v1.4.0.tar.gz",
+- "https://github.com/PolymerElements/iron-dropdown/archive/v1.4.0.tar.gz",
+- ],
+- strip_prefix = "iron-dropdown-1.4.0",
+- path = "/iron-dropdown",
+- srcs = [
+- "iron-dropdown.html",
+- "iron-dropdown-scroll-manager.html",
+- ],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_a11y_keys_behavior",
+- "@org_polymer_iron_behaviors",
+- "@org_polymer_iron_overlay_behavior",
+- "@org_polymer_iron_resizable_behavior",
+- "@org_polymer_neon_animation",
+- ],
++ path = "tensorflow_third_party/org_polymer_iron_dropdown"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_iron_fit_behavior",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "10132a2ea309a37c4c07b8fead71f64abc588ee6107931e34680f5f36dd8291e",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-fit-behavior/archive/v1.2.5.tar.gz",
+- "https://github.com/PolymerElements/iron-fit-behavior/archive/v1.2.5.tar.gz",
+- ],
+- strip_prefix = "iron-fit-behavior-1.2.5",
+- path = "/iron-fit-behavior",
+- srcs = ["iron-fit-behavior.html"],
+- deps = ["@org_polymer"],
++ path = "tensorflow_third_party/org_polymer_iron_fit_behavior"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_iron_flex_layout",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "79287f6ca1c2d4e003f68b88fe19d03a1b6a0011e2b4cae579fe4d1474163a2e",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-flex-layout/archive/v1.3.0.tar.gz",
+- "https://github.com/PolymerElements/iron-flex-layout/archive/v1.3.0.tar.gz",
+- ],
+- strip_prefix = "iron-flex-layout-1.3.0",
+- path = "/iron-flex-layout",
+- srcs = [
+- "classes/iron-flex-layout.html",
+- "classes/iron-shadow-flex-layout.html",
+- "iron-flex-layout.html",
+- "iron-flex-layout-classes.html",
+- ],
+- deps = ["@org_polymer"],
++ path = "tensorflow_third_party/org_polymer_iron_flex_layout"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_iron_form_element_behavior",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "1dd9371c638e5bc2ecba8a64074aa680dfb8712198e9612f9ed24d387efc8f26",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-form-element-behavior/archive/v1.0.6.tar.gz",
+- "https://github.com/PolymerElements/iron-form-element-behavior/archive/v1.0.6.tar.gz",
+- ],
+- strip_prefix = "iron-form-element-behavior-1.0.6",
+- path = "/iron-form-element-behavior",
+- srcs = ["iron-form-element-behavior.html"],
+- deps = ["@org_polymer"],
++ path = "tensorflow_third_party/org_polymer_iron_form_element_behavior"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_iron_icon",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "9ed58a69159a02c07a6050d242e6d4e585a29f3245b8c8c390cfd52ddb786dc4",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-icon/archive/v1.0.11.tar.gz",
+- "https://github.com/PolymerElements/iron-icon/archive/v1.0.11.tar.gz",
+- ],
+- strip_prefix = "iron-icon-1.0.11",
+- path = "/iron-icon",
+- srcs = ["iron-icon.html"],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_flex_layout",
+- "@org_polymer_iron_meta",
+- ],
++ path = "tensorflow_third_party/org_polymer_iron_icon"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_iron_icons",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "3b18542c147c7923dc3a36b1a51984a73255d610f297d43c9aaccc52859bd0d0",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-icons/archive/v1.1.3.tar.gz",
+- "https://github.com/PolymerElements/iron-icons/archive/v1.1.3.tar.gz",
+- ],
+- strip_prefix = "iron-icons-1.1.3",
+- path = "/iron-icons",
+- srcs = [
+- "av-icons.html",
+- "communication-icons.html",
+- "device-icons.html",
+- "editor-icons.html",
+- "hardware-icons.html",
+- "image-icons.html",
+- "iron-icons.html",
+- "maps-icons.html",
+- "notification-icons.html",
+- "places-icons.html",
+- "social-icons.html",
+- ],
+- deps = [
+- "@org_polymer_iron_icon",
+- "@org_polymer_iron_iconset_svg",
+- ],
++ path = "tensorflow_third_party/org_polymer_iron_icons"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_iron_iconset_svg",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "7e3925b7e63a7d22524c4b43ce16ab80d06a576649644783643c11a003284368",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-iconset-svg/archive/v1.1.0.tar.gz",
+- "https://github.com/PolymerElements/iron-iconset-svg/archive/v1.1.0.tar.gz",
+- ],
+- strip_prefix = "iron-iconset-svg-1.1.0",
+- path = "/iron-iconset-svg",
+- srcs = ["iron-iconset-svg.html"],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_meta",
+- ],
++ path = "tensorflow_third_party/org_polymer_iron_iconset_svg"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_iron_input",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "c505101ead08ab25526b1f49baecc8c28b4221b92a65e7334c783bdc81553c36",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-input/archive/1.0.10.tar.gz",
+- "https://github.com/PolymerElements/iron-input/archive/1.0.10.tar.gz",
+- ],
+- strip_prefix = "iron-input-1.0.10",
+- path = "/iron-input",
+- srcs = ["iron-input.html"],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_a11y_announcer",
+- "@org_polymer_iron_validatable_behavior",
+- ],
++ path = "tensorflow_third_party/org_polymer_iron_input"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_iron_list",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "72a6530b9f0ad5557f5d287845792a0ada74d8b159198e27f940e226313dc116",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-list/archive/v1.3.9.tar.gz",
+- "https://github.com/PolymerElements/iron-list/archive/v1.3.9.tar.gz",
+- ],
+- strip_prefix = "iron-list-1.3.9",
+- path = "/iron-list",
+- srcs = ["iron-list.html"],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_a11y_keys_behavior",
+- "@org_polymer_iron_resizable_behavior",
+- "@org_polymer_iron_scroll_target_behavior",
+- ],
++ path = "tensorflow_third_party/org_polymer_iron_list"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_iron_menu_behavior",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "ad27889343bc9a709258b073f69abc028bb1ffd3fdb975cd2d3939f7f5d7bb6c",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-menu-behavior/archive/v1.1.10.tar.gz",
+- "https://github.com/PolymerElements/iron-menu-behavior/archive/v1.1.10.tar.gz",
+- ],
+- strip_prefix = "iron-menu-behavior-1.1.10",
+- path = "/iron-menu-behavior",
+- srcs = [
+- "iron-menu-behavior.html",
+- "iron-menubar-behavior.html",
+- ],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_a11y_keys_behavior",
+- "@org_polymer_iron_selector",
+- ],
++ path = "tensorflow_third_party/org_polymer_iron_menu_behavior"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_iron_meta",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "fb05e6031bae6b4effe5f15d44b3f548d5807f9e3b3aa2442ba17cf4b8b84361",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-meta/archive/v1.1.1.tar.gz",
+- "https://github.com/PolymerElements/iron-meta/archive/v1.1.1.tar.gz",
+- ],
+- strip_prefix = "iron-meta-1.1.1",
+- path = "/iron-meta",
+- srcs = ["iron-meta.html"],
+- deps = ["@org_polymer"],
++ path = "tensorflow_third_party/org_polymer_iron_meta"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_iron_overlay_behavior",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "3df5b54ff2e0510c87a2aff8c9d730d3fe83d3d11277cc1a49fa29b549acb46c",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-overlay-behavior/archive/v1.10.1.tar.gz",
+- "https://github.com/PolymerElements/iron-overlay-behavior/archive/v1.10.1.tar.gz",
+- ],
+- strip_prefix = "iron-overlay-behavior-1.10.1",
+- path = "/iron-overlay-behavior",
+- srcs = [
+- "iron-focusables-helper.html",
+- "iron-overlay-backdrop.html",
+- "iron-overlay-behavior.html",
+- "iron-overlay-manager.html",
+- ],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_a11y_keys_behavior",
+- "@org_polymer_iron_fit_behavior",
+- "@org_polymer_iron_resizable_behavior",
+- ],
++ path = "tensorflow_third_party/org_polymer_iron_overlay_behavior"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_iron_range_behavior",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "b2f2b6d52284542330bd30b586e217926eb0adec5e13934a3cef557717c22dc2",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-range-behavior/archive/v1.0.4.tar.gz",
+- "https://github.com/PolymerElements/iron-range-behavior/archive/v1.0.4.tar.gz",
+- ],
+- strip_prefix = "iron-range-behavior-1.0.4",
+- path = "/iron-range-behavior",
+- srcs = ["iron-range-behavior.html"],
+- deps = ["@org_polymer"],
++ path = "tensorflow_third_party/org_polymer_iron_range_behavior"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_iron_resizable_behavior",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "a87a78ee9223c2f6afae7fc94a3ff91cbce6f7e2a7ed3f2979af7945c9281616",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-resizable-behavior/archive/v1.0.3.tar.gz",
+- "https://github.com/PolymerElements/iron-resizable-behavior/archive/v1.0.3.tar.gz",
+- ],
+- strip_prefix = "iron-resizable-behavior-1.0.3",
+- path = "/iron-resizable-behavior",
+- srcs = ["iron-resizable-behavior.html"],
+- deps = ["@org_polymer"],
++ path = "tensorflow_third_party/org_polymer_iron_resizable_behavior"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_iron_scroll_target_behavior",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "d0de0c804b1ec91d814754144afd9da1cdb082690de88bd5e47fd5f41990746f",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-scroll-target-behavior/archive/v1.0.3.tar.gz",
+- "https://github.com/PolymerElements/iron-scroll-target-behavior/archive/v1.0.3.tar.gz",
+- ],
+- strip_prefix = "iron-scroll-target-behavior-1.0.3",
+- path = "/iron-scroll-target-behavior",
+- srcs = ["iron-scroll-target-behavior.html"],
+- deps = ["@org_polymer"],
++ path = "tensorflow_third_party/org_polymer_iron_scroll_target_behavior"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_iron_selector",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "ba28a47443bad3b744611c9d7a79fb21dbdf2e35edc5ef8f812e2dcd72b16747",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-selector/archive/v1.5.2.tar.gz",
+- "https://github.com/PolymerElements/iron-selector/archive/v1.5.2.tar.gz",
+- ],
+- strip_prefix = "iron-selector-1.5.2",
+- path = "/iron-selector",
+- srcs = [
+- "iron-multi-selectable.html",
+- "iron-selectable.html",
+- "iron-selection.html",
+- "iron-selector.html",
+- ],
+- deps = ["@org_polymer"],
++ path = "tensorflow_third_party/org_polymer_iron_selector"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_iron_validatable_behavior",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "aef4901e68043824f36104799269573dd345ffaac494186e466fdc79c06fdb63",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-validatable-behavior/archive/v1.1.1.tar.gz",
+- "https://github.com/PolymerElements/iron-validatable-behavior/archive/v1.1.1.tar.gz",
+- ],
+- strip_prefix = "iron-validatable-behavior-1.1.1",
+- path = "/iron-validatable-behavior",
+- srcs = ["iron-validatable-behavior.html"],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_meta",
+- ],
++ path = "tensorflow_third_party/org_polymer_iron_validatable_behavior"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_marked",
+- licenses = ["notice"], # MIT
+- sha256 = "93d30bd593736ca440938d77808b7ef5972da0f3fcfe4ae63ae7b4ce117da2cb",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/chjj/marked/archive/v0.3.2.zip",
+- "https://github.com/chjj/marked/archive/v0.3.2.zip",
+- ],
+- strip_prefix = "marked-0.3.2",
+- path = "/marked",
+- srcs = ["lib/marked.js"],
++ path = "tensorflow_third_party/org_polymer_marked"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_marked_element",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "7547616df95f8b903757e6afbabfcdba5322c2bcec3f17c726b8bba5adf4bc5f",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/marked-element/archive/v1.1.3.tar.gz",
+- "https://github.com/PolymerElements/marked-element/archive/v1.1.3.tar.gz",
+- ],
+- strip_prefix = "marked-element-1.1.3",
+- path = "/marked-element",
+- srcs = [
+- "marked-element.html",
+- "marked-import.html",
+- ],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_marked",
+- ],
++ path = "tensorflow_third_party/org_polymer_marked_element"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_neon_animation",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "8800c314a76b2da190a2b203259c1091f6d38e0057ed37c2a3d0b734980fa9a5",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/neon-animation/archive/v1.2.2.tar.gz",
+- "https://github.com/PolymerElements/neon-animation/archive/v1.2.2.tar.gz",
+- ],
+- strip_prefix = "neon-animation-1.2.2",
+- path = "/neon-animation",
+- srcs = [
+- "animations/cascaded-animation.html",
+- "animations/fade-in-animation.html",
+- "animations/fade-out-animation.html",
+- "animations/hero-animation.html",
+- "animations/opaque-animation.html",
+- "animations/reverse-ripple-animation.html",
+- "animations/ripple-animation.html",
+- "animations/scale-down-animation.html",
+- "animations/scale-up-animation.html",
+- "animations/slide-down-animation.html",
+- "animations/slide-from-bottom-animation.html",
+- "animations/slide-from-left-animation.html",
+- "animations/slide-from-right-animation.html",
+- "animations/slide-from-top-animation.html",
+- "animations/slide-left-animation.html",
+- "animations/slide-right-animation.html",
+- "animations/slide-up-animation.html",
+- "animations/transform-animation.html",
+- "neon-animatable.html",
+- "neon-animatable-behavior.html",
+- "neon-animated-pages.html",
+- "neon-animation.html",
+- "neon-animation-behavior.html",
+- "neon-animation-runner-behavior.html",
+- "neon-animations.html",
+- "neon-shared-element-animatable-behavior.html",
+- "neon-shared-element-animation-behavior.html",
+- "web-animations.html",
+- ],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_meta",
+- "@org_polymer_iron_resizable_behavior",
+- "@org_polymer_iron_selector",
+- "@org_polymer_web_animations_js",
+- ],
++ path = "tensorflow_third_party/org_polymer_neon_animation"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_paper_behaviors",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "7cfcb9082ef9909da262df6b5c120bc62dbeaff278cb563e8fc60465ddd387e5",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-behaviors/archive/v1.0.12.tar.gz",
+- "https://github.com/PolymerElements/paper-behaviors/archive/v1.0.12.tar.gz",
+- ],
+- strip_prefix = "paper-behaviors-1.0.12",
+- path = "/paper-behaviors",
+- srcs = [
+- "paper-button-behavior.html",
+- "paper-checked-element-behavior.html",
+- "paper-inky-focus-behavior.html",
+- "paper-ripple-behavior.html",
+- ],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_behaviors",
+- "@org_polymer_iron_checked_element_behavior",
+- "@org_polymer_paper_ripple",
+- ],
++ path = "tensorflow_third_party/org_polymer_paper_behaviors"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_paper_button",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "896c0a7e34bfcce63fc23c63e105ed9c4d62fa3a6385b7161e1e5cd4058820a6",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-button/archive/v1.0.11.tar.gz",
+- "https://github.com/PolymerElements/paper-button/archive/v1.0.11.tar.gz",
+- ],
+- strip_prefix = "paper-button-1.0.11",
+- path = "/paper-button",
+- srcs = ["paper-button.html"],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_flex_layout",
+- "@org_polymer_paper_behaviors",
+- "@org_polymer_paper_material",
+- "@org_polymer_paper_ripple",
+- ],
++ path = "tensorflow_third_party/org_polymer_paper_button"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_paper_checkbox",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "6828a6954a048b1230fbd2606faffbae950ba1d042175b96ec50ae355786a166",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-checkbox/archive/v1.4.0.tar.gz",
+- "https://github.com/PolymerElements/paper-checkbox/archive/v1.4.0.tar.gz",
+- ],
+- strip_prefix = "paper-checkbox-1.4.0",
+- path = "/paper-checkbox",
+- srcs = ["paper-checkbox.html"],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_paper_behaviors",
+- "@org_polymer_paper_styles",
+- ],
++ path = "tensorflow_third_party/org_polymer_paper_checkbox"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_paper_dialog",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "c6a9709e7f528d03dcd574503c18b72d4751ca30017346d16e6a791d37ed9259",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-dialog/archive/v1.0.4.tar.gz",
+- "https://github.com/PolymerElements/paper-dialog/archive/v1.0.4.tar.gz",
+- ],
+- strip_prefix = "paper-dialog-1.0.4",
+- path = "/paper-dialog",
+- srcs = ["paper-dialog.html"],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_neon_animation",
+- "@org_polymer_paper_dialog_behavior",
+- ],
++ path = "tensorflow_third_party/org_polymer_paper_dialog"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_paper_dialog_behavior",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "a7e0e27ce63554bc14f384cf94bcfa24da8dc5f5120dfd565f45e166261aee40",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-dialog-behavior/archive/v1.2.5.tar.gz",
+- "https://github.com/PolymerElements/paper-dialog-behavior/archive/v1.2.5.tar.gz",
+- ],
+- strip_prefix = "paper-dialog-behavior-1.2.5",
+- path = "/paper-dialog-behavior",
+- srcs = [
+- "paper-dialog-behavior.html",
+- "paper-dialog-common.css",
+- "paper-dialog-shared-styles.html",
+- ],
+- suppress = ["cssSyntax"],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_flex_layout",
+- "@org_polymer_iron_overlay_behavior",
+- "@org_polymer_paper_styles",
+- ],
++ path = "tensorflow_third_party/org_polymer_paper_dialog_behavior"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_paper_dialog_scrollable",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "a2e69283e7674f782c44d811387a0f8da2d01fac0172743d1add65e253e6b5ff",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-dialog-scrollable/archive/1.1.5.tar.gz",
+- "https://github.com/PolymerElements/paper-dialog-scrollable/archive/1.1.5.tar.gz",
+- ],
+- strip_prefix = "paper-dialog-scrollable-1.1.5",
+- path = "/paper-dialog-scrollable",
+- srcs = ["paper-dialog-scrollable.html"],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_flex_layout",
+- "@org_polymer_paper_dialog_behavior",
+- "@org_polymer_paper_styles",
+- ],
++ path = "tensorflow_third_party/org_polymer_paper_dialog_scrollable"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_paper_dropdown_menu",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "9d88f654ec03ee9be211df9e69bede9e8a22b51bf1dbcc63b79762e4256d81ad",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-dropdown-menu/archive/v1.4.0.tar.gz",
+- "https://github.com/PolymerElements/paper-dropdown-menu/archive/v1.4.0.tar.gz",
+- ],
+- strip_prefix = "paper-dropdown-menu-1.4.0",
+- path = "/paper-dropdown-menu",
+- srcs = [
+- "paper-dropdown-menu.html",
+- "paper-dropdown-menu-icons.html",
+- "paper-dropdown-menu-light.html",
+- "paper-dropdown-menu-shared-styles.html",
+- ],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_a11y_keys_behavior",
+- "@org_polymer_iron_behaviors",
+- "@org_polymer_iron_form_element_behavior",
+- "@org_polymer_iron_icon",
+- "@org_polymer_iron_iconset_svg",
+- "@org_polymer_iron_validatable_behavior",
+- "@org_polymer_paper_behaviors",
+- "@org_polymer_paper_input",
+- "@org_polymer_paper_menu_button",
+- "@org_polymer_paper_ripple",
+- "@org_polymer_paper_styles",
+- ],
++ path = "tensorflow_third_party/org_polymer_paper_dropdown_menu"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_paper_header_panel",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "0db4bd8a4bf6f20dcd0dffb4f907b31c93a8647c9c021344239cf30b40b87075",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-header-panel/archive/v1.1.4.tar.gz",
+- "https://github.com/PolymerElements/paper-header-panel/archive/v1.1.4.tar.gz",
+- ],
+- strip_prefix = "paper-header-panel-1.1.4",
+- path = "/paper-header-panel",
+- srcs = ["paper-header-panel.html"],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_flex_layout",
+- ],
++ path = "tensorflow_third_party/org_polymer_paper_header_panel"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_paper_icon_button",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "9cba5bcfd6aeb4c41581c1392c678cf2278d360e9d122f4d9db54a9ebb404496",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-icon-button/archive/v1.1.3.tar.gz",
+- "https://github.com/PolymerElements/paper-icon-button/archive/v1.1.3.tar.gz",
+- ],
+- strip_prefix = "paper-icon-button-1.1.3",
+- path = "/paper-icon-button",
+- srcs = [
+- "paper-icon-button.html",
+- "paper-icon-button-light.html",
+- ],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_icon",
+- "@org_polymer_paper_behaviors",
+- "@org_polymer_paper_styles",
+- ],
++ path = "tensorflow_third_party/org_polymer_paper_icon_button"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_paper_input",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "17c3dea9bb1c2026cc61324696c6c774214a0dc37686b91ca214a6af550994db",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-input/archive/v1.1.18.tar.gz",
+- "https://github.com/PolymerElements/paper-input/archive/v1.1.18.tar.gz",
+- ],
+- strip_prefix = "paper-input-1.1.18",
+- path = "/paper-input",
+- srcs = [
+- "paper-input.html",
+- "paper-input-addon-behavior.html",
+- "paper-input-behavior.html",
+- "paper-input-char-counter.html",
+- "paper-input-container.html",
+- "paper-input-error.html",
+- "paper-textarea.html",
+- ],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_a11y_keys_behavior",
+- "@org_polymer_iron_autogrow_textarea",
+- "@org_polymer_iron_behaviors",
+- "@org_polymer_iron_flex_layout",
+- "@org_polymer_iron_form_element_behavior",
+- "@org_polymer_iron_input",
+- "@org_polymer_paper_styles",
+- ],
++ path = "tensorflow_third_party/org_polymer_paper_input"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_paper_item",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "12ee0dcb61b0d5721c5988571f6974d7b2211e97724f4195893fbcc9058cdac8",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-item/archive/v1.1.4.tar.gz",
+- "https://github.com/PolymerElements/paper-item/archive/v1.1.4.tar.gz",
+- ],
+- strip_prefix = "paper-item-1.1.4",
+- path = "/paper-item",
+- srcs = [
+- "paper-icon-item.html",
+- "paper-item.html",
+- "paper-item-behavior.html",
+- "paper-item-body.html",
+- "paper-item-shared-styles.html",
+- ],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_behaviors",
+- "@org_polymer_iron_flex_layout",
+- "@org_polymer_paper_styles",
+- ],
++ path = "tensorflow_third_party/org_polymer_paper_item"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_paper_listbox",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "3cb35f4fe9a3f15185a9e91711dba8f27e9291c8cd371ebf1be21b8f1d5f65fb",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-listbox/archive/v1.1.2.tar.gz",
+- "https://github.com/PolymerElements/paper-listbox/archive/v1.1.2.tar.gz",
+- ],
+- strip_prefix = "paper-listbox-1.1.2",
+- path = "/paper-listbox",
+- srcs = ["paper-listbox.html"],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_menu_behavior",
+- "@org_polymer_paper_styles",
+- ],
++ path = "tensorflow_third_party/org_polymer_paper_listbox"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_paper_material",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "09f6c8bd6ddbea2be541dc86306efe41cdfb31bec0b69d35a5dc29772bbc8506",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-material/archive/v1.0.6.tar.gz",
+- "https://github.com/PolymerElements/paper-material/archive/v1.0.6.tar.gz",
+- ],
+- strip_prefix = "paper-material-1.0.6",
+- path = "/paper-material",
+- srcs = [
+- "paper-material.html",
+- "paper-material-shared-styles.html",
+- ],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_paper_styles",
+- ],
++ path = "tensorflow_third_party/org_polymer_paper_material"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_paper_menu",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "a3cee220926e315f7412236b3628288774694447c0da4428345f36d0f127ba3b",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-menu/archive/v1.2.2.tar.gz",
+- "https://github.com/PolymerElements/paper-menu/archive/v1.2.2.tar.gz",
+- ],
+- strip_prefix = "paper-menu-1.2.2",
+- path = "/paper-menu",
+- srcs = [
+- "paper-menu.html",
+- "paper-menu-shared-styles.html",
+- "paper-submenu.html",
+- ],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_behaviors",
+- "@org_polymer_iron_collapse",
+- "@org_polymer_iron_flex_layout",
+- "@org_polymer_iron_menu_behavior",
+- "@org_polymer_paper_styles",
+- ],
++ path = "tensorflow_third_party/org_polymer_paper_menu"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_paper_menu_button",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "be3290c288a2bd4f9887213db22c75add99cc29ff4d088100c0bc4eb0e57997b",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-menu-button/archive/v1.5.1.tar.gz",
+- "https://github.com/PolymerElements/paper-menu-button/archive/v1.5.1.tar.gz",
+- ],
+- strip_prefix = "paper-menu-button-1.5.1",
+- path = "/paper-menu-button",
+- srcs = [
+- "paper-menu-button.html",
+- "paper-menu-button-animations.html",
+- ],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_a11y_keys_behavior",
+- "@org_polymer_iron_behaviors",
+- "@org_polymer_iron_dropdown",
+- "@org_polymer_neon_animation",
+- "@org_polymer_paper_styles",
+- ],
++ path = "tensorflow_third_party/org_polymer_paper_menu_button"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_paper_progress",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "2b6776b2f023c1f344feea17ba29b58d879e46f8ed43b7256495054b5183fff6",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-progress/archive/v1.0.9.tar.gz",
+- "https://github.com/PolymerElements/paper-progress/archive/v1.0.9.tar.gz",
+- ],
+- strip_prefix = "paper-progress-1.0.9",
+- path = "/paper-progress",
+- srcs = ["paper-progress.html"],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_flex_layout",
+- "@org_polymer_iron_range_behavior",
+- "@org_polymer_paper_styles",
+- ],
++ path = "tensorflow_third_party/org_polymer_paper_progress"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_paper_radio_button",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "6e911d0c308aa388136b3af79d1bdcbe5a1f4159cbc79d71efb4ff3b6c0b4e91",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-radio-button/archive/v1.1.2.tar.gz",
+- "https://github.com/PolymerElements/paper-radio-button/archive/v1.1.2.tar.gz",
+- ],
+- strip_prefix = "paper-radio-button-1.1.2",
+- path = "/paper-radio-button",
+- srcs = ["paper-radio-button.html"],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_paper_behaviors",
+- "@org_polymer_paper_styles",
+- ],
++ path = "tensorflow_third_party/org_polymer_paper_radio_button"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_paper_radio_group",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "7885ad1f81e9dcc03dcea4139b54a201ff55c18543770cd44f94530046c9e163",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-radio-group/archive/v1.0.9.tar.gz",
+- "https://github.com/PolymerElements/paper-radio-group/archive/v1.0.9.tar.gz",
+- ],
+- strip_prefix = "paper-radio-group-1.0.9",
+- path = "/paper-radio-group",
+- srcs = ["paper-radio-group.html"],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_a11y_keys_behavior",
+- "@org_polymer_iron_selector",
+- "@org_polymer_paper_radio_button",
+- ],
++ path = "tensorflow_third_party/org_polymer_paper_radio_group"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_paper_ripple",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "ba76bfb1c737260a8a103d3ca97faa1f7c3288c7db9b2519f401b7a782147c09",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-ripple/archive/v1.0.5.tar.gz",
+- "https://github.com/PolymerElements/paper-ripple/archive/v1.0.5.tar.gz",
+- ],
+- strip_prefix = "paper-ripple-1.0.5",
+- path = "/paper-ripple",
+- srcs = ["paper-ripple.html"],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_a11y_keys_behavior",
+- ],
++ path = "tensorflow_third_party/org_polymer_paper_ripple"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_paper_slider",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "08e7c541dbf5d2e959208810bfc03188e82ced87e4d30d325172967f67962c3c",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-slider/archive/v1.0.10.tar.gz",
+- "https://github.com/PolymerElements/paper-slider/archive/v1.0.10.tar.gz",
+- ],
+- strip_prefix = "paper-slider-1.0.10",
+- path = "/paper-slider",
+- srcs = ["paper-slider.html"],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_a11y_keys_behavior",
+- "@org_polymer_iron_flex_layout",
+- "@org_polymer_iron_form_element_behavior",
+- "@org_polymer_iron_range_behavior",
+- "@org_polymer_paper_behaviors",
+- "@org_polymer_paper_input",
+- "@org_polymer_paper_progress",
+- "@org_polymer_paper_styles",
+- ],
++ path = "tensorflow_third_party/org_polymer_paper_slider"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_paper_spinner",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "6a752907fab7899cbeed15b478e7b9299047c15fbf9d1561d6eb4d204bdbd178",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-spinner/archive/v1.1.1.tar.gz",
+- "https://github.com/PolymerElements/paper-spinner/archive/v1.1.1.tar.gz",
+- ],
+- strip_prefix = "paper-spinner-1.1.1",
+- path = "/paper-spinner",
+- srcs = [
+- "paper-spinner.html",
+- "paper-spinner-behavior.html",
+- "paper-spinner-lite.html",
+- "paper-spinner-styles.html"
+- ],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_flex_layout",
+- "@org_polymer_paper_styles",
+- ],
++ path = "tensorflow_third_party/org_polymer_paper_spinner"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_paper_styles",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "6d26b0a4c286402098853dc7388f6b22f30dfb7a74e47b34992ac03380144bb2",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-styles/archive/v1.1.4.tar.gz",
+- "https://github.com/PolymerElements/paper-styles/archive/v1.1.4.tar.gz",
+- ],
+- strip_prefix = "paper-styles-1.1.4",
+- path = "/paper-styles",
+- srcs = [
+- "classes/global.html",
+- "classes/shadow.html",
+- "classes/shadow-layout.html",
+- "classes/typography.html",
+- "color.html",
+- "default-theme.html",
+- "demo.css",
+- "demo-pages.html",
+- "paper-styles.html",
+- "paper-styles-classes.html",
+- "shadow.html",
+- "typography.html",
+- ],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_font_roboto",
+- "@org_polymer_iron_flex_layout",
+- ],
++ path = "tensorflow_third_party/org_polymer_paper_styles"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_paper_tabs",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "c23b6a5221db35e5b1ed3eb8e8696b952572563e285adaec96aba1e3134db825",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-tabs/archive/v1.7.0.tar.gz",
+- "https://github.com/PolymerElements/paper-tabs/archive/v1.7.0.tar.gz",
+- ],
+- strip_prefix = "paper-tabs-1.7.0",
+- path = "/paper-tabs",
+- srcs = [
+- "paper-tab.html",
+- "paper-tabs.html",
+- "paper-tabs-icons.html",
+- ],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_behaviors",
+- "@org_polymer_iron_flex_layout",
+- "@org_polymer_iron_icon",
+- "@org_polymer_iron_iconset_svg",
+- "@org_polymer_iron_menu_behavior",
+- "@org_polymer_iron_resizable_behavior",
+- "@org_polymer_paper_behaviors",
+- "@org_polymer_paper_icon_button",
+- "@org_polymer_paper_styles",
+- ],
++ path = "tensorflow_third_party/org_polymer_paper_tabs"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_paper_toast",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "55f623712ed1f2bae6d6fadc522a2458e083ccd44cc0a907672547e7b10758a9",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-toast/archive/v1.3.0.tar.gz",
+- "https://github.com/PolymerElements/paper-toast/archive/v1.3.0.tar.gz",
+- ],
+- strip_prefix = "paper-toast-1.3.0",
+- path = "/paper-toast",
+- srcs = ["paper-toast.html"],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_a11y_announcer",
+- "@org_polymer_iron_overlay_behavior",
+- ],
++ path = "tensorflow_third_party/org_polymer_paper_toast"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_paper_toggle_button",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "4aa7cf0396fa2994a8bc2ac6e8428f48b07b945bb7c41bd52041ef5827b45de3",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-toggle-button/archive/v1.2.0.tar.gz",
+- "https://github.com/PolymerElements/paper-toggle-button/archive/v1.2.0.tar.gz",
+- ],
+- strip_prefix = "paper-toggle-button-1.2.0",
+- path = "/paper-toggle-button",
+- srcs = ["paper-toggle-button.html"],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_flex_layout",
+- "@org_polymer_paper_behaviors",
+- "@org_polymer_paper_styles",
+- ],
++ path = "tensorflow_third_party/org_polymer_paper_toggle_button"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_paper_toolbar",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "dbddffc0654d9fb5fb48843087eebe16bf7a134902495a664c96c11bf8a2c63d",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-toolbar/archive/v1.1.4.tar.gz",
+- "https://github.com/PolymerElements/paper-toolbar/archive/v1.1.4.tar.gz",
+- ],
+- strip_prefix = "paper-toolbar-1.1.4",
+- path = "/paper-toolbar",
+- srcs = ["paper-toolbar.html"],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_iron_flex_layout",
+- "@org_polymer_paper_styles",
+- ],
++ path = "tensorflow_third_party/org_polymer_paper_toolbar"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_paper_tooltip",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "4c6667acf01f73da14c3cbc0aa574bf14280304567987ee0314534328377d2ad",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-tooltip/archive/v1.1.2.tar.gz",
+- "https://github.com/PolymerElements/paper-tooltip/archive/v1.1.2.tar.gz",
+- ],
+- strip_prefix = "paper-tooltip-1.1.2",
+- path = "/paper-tooltip",
+- srcs = ["paper-tooltip.html"],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_neon_animation",
+- ],
++ path = "tensorflow_third_party/org_polymer_paper_tooltip"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "07a9e62ffb52193da3af09adda2fbac5cc690439978520e2d03e783863f65f91",
+- strip_prefix = "polymer-1.7.0",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/polymer/polymer/archive/v1.7.0.tar.gz",
+- "https://github.com/polymer/polymer/archive/v1.7.0.tar.gz",
+- ],
+- path = "/polymer",
+- srcs = [
+- "polymer.html",
+- "polymer-micro.html",
+- "polymer-mini.html",
+- ],
++ path = "tensorflow_third_party/org_polymer"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_prism",
+- licenses = ["notice"], # MIT
+- sha256 = "e06eb54f2a80e6b3cd0bd4d59f900423bcaee53fc03998a056df63740c684683",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PrismJS/prism/archive/abee2b7587f1925e57777044270e2a1860810994.tar.gz",
+- "https://github.com/PrismJS/prism/archive/abee2b7587f1925e57777044270e2a1860810994.tar.gz",
+- ],
+- strip_prefix = "prism-abee2b7587f1925e57777044270e2a1860810994",
+- path = "/prism",
+- srcs = [
+- "prism.js",
+- "themes/prism.css",
+- ],
++ path = "tensorflow_third_party/org_polymer_prism"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_prism_element",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "ad70bf9cd5bbdf525d465e1b0658867ab4022193eb9c74087a839044b46312b4",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/prism-element/archive/1.0.4.tar.gz",
+- "https://github.com/PolymerElements/prism-element/archive/1.0.4.tar.gz",
+- ],
+- strip_prefix = "prism-element-1.0.4",
+- path = "/prism-element",
+- srcs = [
+- "prism-highlighter.html",
+- "prism-import.html",
+- ],
+- deps = [
+- "@org_polymer",
+- "@org_polymer_prism",
+- ],
++ path = "tensorflow_third_party/org_polymer_prism_element"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_promise_polyfill",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "4495450e5d884c3e16b537b43afead7f84d17c7dc061bcfcbf440eac083e4ef5",
+- strip_prefix = "promise-polyfill-1.0.0",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/PolymerLabs/promise-polyfill/archive/v1.0.0.tar.gz",
+- "https://github.com/PolymerLabs/promise-polyfill/archive/v1.0.0.tar.gz",
+- ],
+- path = "/promise-polyfill",
+- srcs = [
+- "Promise.js",
+- "Promise-Statics.js",
+- "promise-polyfill.html",
+- "promise-polyfill-lite.html"
+- ],
+- deps = ["@org_polymer"],
++ path = "tensorflow_third_party/org_polymer_promise_polyfill"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_web_animations_js",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "f8bd760cbdeba131f6790bd5abe170bcbf7b1755ff58ed16d0b82fa8a7f34a7f",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/web-animations/web-animations-js/archive/2.2.1.tar.gz",
+- "https://github.com/web-animations/web-animations-js/archive/2.2.1.tar.gz",
+- ],
+- strip_prefix = "web-animations-js-2.2.1",
+- path = "/web-animations-js",
+- srcs = ["web-animations-next-lite.min.js"],
++ path = "tensorflow_third_party/org_polymer_web_animations_js"
+ )
+
+- webfiles_external(
++ native.local_repository(
+ name = "org_polymer_webcomponentsjs",
+- licenses = ["notice"], # BSD-3-Clause
+- sha256 = "138c43306ee0a6d699ddca9b3c6b0f4982974ea8b7bdad291ea7276c72301df9",
+- urls = [
+- "http://bazel-mirror.storage.googleapis.com/github.com/webcomponents/webcomponentsjs/archive/v0.7.22.tar.gz",
+- "https://github.com/webcomponents/webcomponentsjs/archive/v0.7.22.tar.gz",
+- ],
+- strip_prefix = "webcomponentsjs-0.7.22",
+- path = "/webcomponentsjs",
+- srcs = [
+- "CustomElements.js",
+- "CustomElements.min.js",
+- "HTMLImports.js",
+- "HTMLImports.min.js",
+- "MutationObserver.js",
+- "MutationObserver.min.js",
+- "ShadowDOM.js",
+- "ShadowDOM.min.js",
+- "webcomponents.js",
+- "webcomponents.min.js",
+- "webcomponents-lite.js",
+- "webcomponents-lite.min.js",
+- ],
++ path = "tensorflow_third_party/org_polymer_webcomponentsjs"
+ )
++
Index: pkg-descr
===================================================================
--- /dev/null
+++ pkg-descr
@@ -0,0 +1,12 @@
+TensorFlow is an open source software library for numerical computation using
+data flow graphs. Nodes in the graph represent mathematical operations, while
+the graph edges represent the multidimensional data arrays (tensors)
+communicated between them. The flexible architecture allows you to deploy
+computation to one or more CPUs or GPUs in a desktop, server, or mobile device
+with a single API. TensorFlow was originally developed by researchers and
+engineers working on the Google Brain Team within Google's Machine Intelligence
+research organization for the purposes of conducting machine learning and deep
+neural networks research, but the system is general enough to be applicable in
+a wide variety of other domains as well.
+
+WWW: https://www.tensorflow.org
Index: pkg-plist
===================================================================
--- /dev/null
+++ pkg-plist
@@ -0,0 +1,3649 @@
+%%PYTHON_SITELIBDIR%%/external/__init__.py
+%%PYTHON_SITELIBDIR%%/external/boringssl/LICENSE
+%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/LICENSE
+%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/re2/bitmap256.h
+%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/re2/filtered_re2.h
+%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/re2/prefilter.h
+%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/re2/prefilter_tree.h
+%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/re2/prog.h
+%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/re2/re2.h
+%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/re2/regexp.h
+%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/re2/set.h
+%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/re2/stringpiece.h
+%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/re2/unicode_casefold.h
+%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/re2/unicode_groups.h
+%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/re2/walker-inl.h
+%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/util/flags.h
+%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/util/logging.h
+%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/util/mix.h
+%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/util/mutex.h
+%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/util/sparse_array.h
+%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/util/sparse_set.h
+%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/util/strutil.h
+%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/util/utf.h
+%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/util/util.h
+%%PYTHON_SITELIBDIR%%/external/curl/COPYING
+%%PYTHON_SITELIBDIR%%/external/d3/d3.js
+%%PYTHON_SITELIBDIR%%/external/d3/d3.min.js
+%%PYTHON_SITELIBDIR%%/external/d3/package.js
+%%PYTHON_SITELIBDIR%%/external/dagre/dist/dagre.core.js
+%%PYTHON_SITELIBDIR%%/external/dagre/dist/dagre.core.min.js
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/COPYING.MPL2
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/Cholesky
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/CholmodSupport
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/Core
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/Dense
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/Eigenvalues
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/Geometry
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/Householder
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/Jacobi
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/LU
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/OrderingMethods
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/PaStiXSupport
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/PardisoSupport
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/QR
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/QtAlignedMalloc
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/SPQRSupport
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/SVD
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/SparseCore
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/SparseQR
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/StdDeque
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/StdList
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/StdVector
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/SuperLUSupport
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/UmfPackSupport
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Cholesky/LDLT.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Cholesky/LLT.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Cholesky/LLT_LAPACKE.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/CholmodSupport/CholmodSupport.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/ArithmeticSequence.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Array.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/ArrayBase.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/ArrayWrapper.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Assign.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/AssignEvaluator.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Assign_MKL.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/BandMatrix.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Block.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/BooleanRedux.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/CommaInitializer.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/ConditionEstimator.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/CoreEvaluators.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/CoreIterators.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/CwiseBinaryOp.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/CwiseNullaryOp.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/CwiseTernaryOp.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/CwiseUnaryOp.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/CwiseUnaryView.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/DenseBase.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/DenseCoeffsBase.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/DenseStorage.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Diagonal.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/DiagonalMatrix.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/DiagonalProduct.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Dot.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/EigenBase.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/ForceAlignedAccess.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Fuzzy.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/GeneralProduct.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/GenericPacketMath.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/GlobalFunctions.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/IO.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/IndexedView.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Inverse.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Map.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/MapBase.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/MathFunctions.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/MathFunctionsImpl.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Matrix.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/MatrixBase.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/NestByValue.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/NoAlias.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/NumTraits.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/PermutationMatrix.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/PlainObjectBase.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Product.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/ProductEvaluators.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Random.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Redux.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Ref.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Replicate.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/ReturnByValue.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Reverse.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Select.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/SelfAdjointView.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/SelfCwiseBinaryOp.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Solve.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/SolveTriangular.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/SolverBase.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/StableNorm.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Stride.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Swap.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Transpose.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Transpositions.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/TriangularMatrix.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/VectorBlock.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/VectorwiseOp.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Visitor.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/AVX/Complex.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/AVX/MathFunctions.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/AVX/PacketMath.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/AVX/TypeCasting.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/AVX512/MathFunctions.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/AVX512/PacketMath.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/AltiVec/Complex.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/AltiVec/MathFunctions.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/AltiVec/PacketMath.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/CUDA/Complex.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/CUDA/Half.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/CUDA/MathFunctions.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/CUDA/PacketMath.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/CUDA/PacketMathHalf.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/CUDA/TypeCasting.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/Default/Settings.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/NEON/Complex.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/NEON/MathFunctions.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/NEON/PacketMath.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/SSE/Complex.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/SSE/MathFunctions.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/SSE/PacketMath.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/SSE/TypeCasting.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/ZVector/Complex.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/ZVector/MathFunctions.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/ZVector/PacketMath.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/functors/AssignmentFunctors.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/functors/BinaryFunctors.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/functors/NullaryFunctors.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/functors/StlFunctors.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/functors/TernaryFunctors.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/functors/UnaryFunctors.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/GeneralBlockPanelKernel.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/GeneralMatrixMatrix.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/GeneralMatrixVector.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/Parallelizer.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/SelfadjointMatrixMatrix.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/SelfadjointMatrixVector.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/SelfadjointProduct.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/SelfadjointRank2Update.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/TriangularMatrixMatrix.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/TriangularMatrixVector.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/TriangularSolverMatrix.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/TriangularSolverVector.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/util/BlasUtil.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/util/Constants.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/util/DisableStupidWarnings.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/util/ForwardDeclarations.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/util/IndexedViewHelper.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/util/IntegralConstant.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/util/MKL_support.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/util/Macros.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/util/Memory.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/util/Meta.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/util/ReenableStupidWarnings.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/util/StaticAssert.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/util/SymbolicIndex.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/util/XprHelper.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Eigenvalues/ComplexEigenSolver.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Eigenvalues/ComplexSchur.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Eigenvalues/EigenSolver.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Eigenvalues/HessenbergDecomposition.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Eigenvalues/RealQZ.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Eigenvalues/RealSchur.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Eigenvalues/Tridiagonalization.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/AlignedBox.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/AngleAxis.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/EulerAngles.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/Homogeneous.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/Hyperplane.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/OrthoMethods.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/ParametrizedLine.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/Quaternion.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/Rotation2D.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/RotationBase.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/Scaling.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/Transform.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/Translation.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/Umeyama.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/arch/Geometry_SSE.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Householder/BlockHouseholder.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Householder/Householder.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Householder/HouseholderSequence.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Jacobi/Jacobi.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/LU/Determinant.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/LU/FullPivLU.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/LU/InverseImpl.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/LU/PartialPivLU.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/LU/PartialPivLU_LAPACKE.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/LU/arch/Inverse_SSE.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/MetisSupport/MetisSupport.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/OrderingMethods/Eigen_Colamd.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/OrderingMethods/Ordering.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/PaStiXSupport/PaStiXSupport.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/PardisoSupport/PardisoSupport.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/QR/ColPivHouseholderQR.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/QR/CompleteOrthogonalDecomposition.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/QR/FullPivHouseholderQR.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/QR/HouseholderQR.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/QR/HouseholderQR_LAPACKE.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SVD/BDCSVD.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SVD/JacobiSVD.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SVD/JacobiSVD_LAPACKE.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SVD/SVDBase.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SVD/UpperBidiagonalization.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/AmbiVector.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/CompressedStorage.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/MappedSparseMatrix.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseAssign.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseBlock.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseColEtree.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseCompressedBase.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseCwiseBinaryOp.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseCwiseUnaryOp.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseDenseProduct.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseDiagonalProduct.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseDot.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseFuzzy.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseMap.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseMatrix.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseMatrixBase.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparsePermutation.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseProduct.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseRedux.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseRef.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseSelfAdjointView.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseSolverBase.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseSparseProductWithPruning.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseTranspose.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseTriangularView.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseUtil.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseVector.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseView.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/TriangularSolver.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLUImpl.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_Memory.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_Structs.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_Utils.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_column_bmod.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_column_dfs.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_gemm_kernel.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_kernel_bmod.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_panel_bmod.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_panel_dfs.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_pivotL.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_pruneL.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_relax_snode.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseQR/SparseQR.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/StlSupport/StdDeque.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/StlSupport/StdList.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/StlSupport/StdVector.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/StlSupport/details.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SuperLUSupport/SuperLUSupport.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/UmfPackSupport/UmfPackSupport.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/misc/Image.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/misc/Kernel.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/misc/RealSvd2x2.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/misc/blas.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/misc/lapack.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/misc/lapacke.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/misc/lapacke_mangling.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/plugins/ArrayCwiseBinaryOps.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/plugins/ArrayCwiseUnaryOps.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/plugins/BlockMethods.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/plugins/CommonCwiseBinaryOps.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/plugins/CommonCwiseUnaryOps.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/plugins/IndexedViewMethods.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/plugins/MatrixCwiseBinaryOps.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/plugins/MatrixCwiseUnaryOps.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/CMakeLists.txt
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/Tensor
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/TensorSymmetry
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/ThreadPool
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/README.md
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/Tensor.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorContractionSycl.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorConvolutionSycl.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorGlobalFunctions.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorRandom.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorReductionSycl.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorScan.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSycl.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclConvertToDeviceExpression.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclExprConstructor.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclExtractAccessor.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclExtractFunctors.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclFunctors.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclLeafCount.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclPlaceHolderExpr.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclRun.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclTuple.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorVolumePatch.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/EventCount.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/RunQueue.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/SimpleThreadPool.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/ThreadCancel.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/ThreadEnvironment.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/ThreadLocal.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/ThreadYield.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/util/CXX11Meta.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/util/EmulateArray.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/util/EmulateCXX11Meta.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/util/MaxSizeVector.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/FFT
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/KroneckerProduct
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/MatrixFunctions
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/SpecialFunctions
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/src/FFT/ei_fftw_impl.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/src/FFT/ei_kissfft_impl.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsArrayAPI.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsFunctors.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsHalf.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsImpl.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsPacketMath.h
+%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/src/SpecialFunctions/arch/CUDA/CudaSpecialFunctions.h
+%%PYTHON_SITELIBDIR%%/external/es6_promise/promise.js
+%%PYTHON_SITELIBDIR%%/external/es6_promise/promise.min.js
+%%PYTHON_SITELIBDIR%%/external/farmhash_archive/COPYING
+%%PYTHON_SITELIBDIR%%/external/farmhash_archive/src/farmhash.h
+%%PYTHON_SITELIBDIR%%/external/font_roboto/roboto.html
+%%PYTHON_SITELIBDIR%%/external/gemmlowp/LICENSE
+%%PYTHON_SITELIBDIR%%/external/gif_archive/COPYING
+%%PYTHON_SITELIBDIR%%/external/gif_archive/lib/gif_hash.h
+%%PYTHON_SITELIBDIR%%/external/gif_archive/lib/gif_lib.h
+%%PYTHON_SITELIBDIR%%/external/gif_archive/lib/gif_lib_private.h
+%%PYTHON_SITELIBDIR%%/external/graphlib/dist/graphlib.core.js
+%%PYTHON_SITELIBDIR%%/external/graphlib/dist/graphlib.core.min.js
+%%PYTHON_SITELIBDIR%%/external/grpc/LICENSE
+%%PYTHON_SITELIBDIR%%/external/highwayhash/LICENSE
+%%PYTHON_SITELIBDIR%%/external/highwayhash/highwayhash/arch_specific.h
+%%PYTHON_SITELIBDIR%%/external/highwayhash/highwayhash/compiler_specific.h
+%%PYTHON_SITELIBDIR%%/external/highwayhash/highwayhash/sip_hash.h
+%%PYTHON_SITELIBDIR%%/external/highwayhash/highwayhash/state_helpers.h
+%%PYTHON_SITELIBDIR%%/external/iron_a11y_announcer/index.html
+%%PYTHON_SITELIBDIR%%/external/iron_a11y_announcer/iron-a11y-announcer.html
+%%PYTHON_SITELIBDIR%%/external/iron_a11y_keys_behavior/index.html
+%%PYTHON_SITELIBDIR%%/external/iron_a11y_keys_behavior/iron-a11y-keys-behavior.html
+%%PYTHON_SITELIBDIR%%/external/iron_ajax/index.html
+%%PYTHON_SITELIBDIR%%/external/iron_ajax/iron-ajax.html
+%%PYTHON_SITELIBDIR%%/external/iron_ajax/iron-request.html
+%%PYTHON_SITELIBDIR%%/external/iron_autogrow_textarea/index.html
+%%PYTHON_SITELIBDIR%%/external/iron_autogrow_textarea/iron-autogrow-textarea.html
+%%PYTHON_SITELIBDIR%%/external/iron_behaviors/index.html
+%%PYTHON_SITELIBDIR%%/external/iron_behaviors/iron-button-state.html
+%%PYTHON_SITELIBDIR%%/external/iron_behaviors/iron-control-state.html
+%%PYTHON_SITELIBDIR%%/external/iron_checked_element_behavior/index.html
+%%PYTHON_SITELIBDIR%%/external/iron_checked_element_behavior/iron-checked-element-behavior.html
+%%PYTHON_SITELIBDIR%%/external/iron_collapse/index.html
+%%PYTHON_SITELIBDIR%%/external/iron_collapse/iron-collapse.html
+%%PYTHON_SITELIBDIR%%/external/iron_dropdown/index.html
+%%PYTHON_SITELIBDIR%%/external/iron_dropdown/iron-dropdown-scroll-manager.html
+%%PYTHON_SITELIBDIR%%/external/iron_dropdown/iron-dropdown.html
+%%PYTHON_SITELIBDIR%%/external/iron_fit_behavior/index.html
+%%PYTHON_SITELIBDIR%%/external/iron_fit_behavior/iron-fit-behavior.html
+%%PYTHON_SITELIBDIR%%/external/iron_flex_layout/classes/iron-flex-layout.html
+%%PYTHON_SITELIBDIR%%/external/iron_flex_layout/classes/iron-shadow-flex-layout.html
+%%PYTHON_SITELIBDIR%%/external/iron_flex_layout/index.html
+%%PYTHON_SITELIBDIR%%/external/iron_flex_layout/iron-flex-layout-classes.html
+%%PYTHON_SITELIBDIR%%/external/iron_flex_layout/iron-flex-layout.html
+%%PYTHON_SITELIBDIR%%/external/iron_form_element_behavior/index.html
+%%PYTHON_SITELIBDIR%%/external/iron_form_element_behavior/iron-form-element-behavior.html
+%%PYTHON_SITELIBDIR%%/external/iron_icon/index.html
+%%PYTHON_SITELIBDIR%%/external/iron_icon/iron-icon.html
+%%PYTHON_SITELIBDIR%%/external/iron_icons/av-icons.html
+%%PYTHON_SITELIBDIR%%/external/iron_icons/communication-icons.html
+%%PYTHON_SITELIBDIR%%/external/iron_icons/device-icons.html
+%%PYTHON_SITELIBDIR%%/external/iron_icons/editor-icons.html
+%%PYTHON_SITELIBDIR%%/external/iron_icons/hardware-icons.html
+%%PYTHON_SITELIBDIR%%/external/iron_icons/image-icons.html
+%%PYTHON_SITELIBDIR%%/external/iron_icons/index.html
+%%PYTHON_SITELIBDIR%%/external/iron_icons/iron-icons.html
+%%PYTHON_SITELIBDIR%%/external/iron_icons/maps-icons.html
+%%PYTHON_SITELIBDIR%%/external/iron_icons/notification-icons.html
+%%PYTHON_SITELIBDIR%%/external/iron_icons/places-icons.html
+%%PYTHON_SITELIBDIR%%/external/iron_icons/social-icons.html
+%%PYTHON_SITELIBDIR%%/external/iron_iconset_svg/index.html
+%%PYTHON_SITELIBDIR%%/external/iron_iconset_svg/iron-iconset-svg.html
+%%PYTHON_SITELIBDIR%%/external/iron_input/index.html
+%%PYTHON_SITELIBDIR%%/external/iron_input/iron-input.html
+%%PYTHON_SITELIBDIR%%/external/iron_list/index.html
+%%PYTHON_SITELIBDIR%%/external/iron_list/iron-list.html
+%%PYTHON_SITELIBDIR%%/external/iron_list/test/smoke/avg-worst-case.html
+%%PYTHON_SITELIBDIR%%/external/iron_list/test/smoke/dummy-data.html
+%%PYTHON_SITELIBDIR%%/external/iron_list/test/smoke/index.html
+%%PYTHON_SITELIBDIR%%/external/iron_list/test/smoke/physical-count.html
+%%PYTHON_SITELIBDIR%%/external/iron_menu_behavior/index.html
+%%PYTHON_SITELIBDIR%%/external/iron_menu_behavior/iron-menu-behavior.html
+%%PYTHON_SITELIBDIR%%/external/iron_menu_behavior/iron-menubar-behavior.html
+%%PYTHON_SITELIBDIR%%/external/iron_meta/index.html
+%%PYTHON_SITELIBDIR%%/external/iron_meta/iron-meta.html
+%%PYTHON_SITELIBDIR%%/external/iron_overlay_behavior/index.html
+%%PYTHON_SITELIBDIR%%/external/iron_overlay_behavior/iron-focusables-helper.html
+%%PYTHON_SITELIBDIR%%/external/iron_overlay_behavior/iron-overlay-backdrop.html
+%%PYTHON_SITELIBDIR%%/external/iron_overlay_behavior/iron-overlay-behavior.html
+%%PYTHON_SITELIBDIR%%/external/iron_overlay_behavior/iron-overlay-manager.html
+%%PYTHON_SITELIBDIR%%/external/iron_range_behavior/index.html
+%%PYTHON_SITELIBDIR%%/external/iron_range_behavior/iron-range-behavior.html
+%%PYTHON_SITELIBDIR%%/external/iron_resizable_behavior/demo/src/x-app.html
+%%PYTHON_SITELIBDIR%%/external/iron_resizable_behavior/index.html
+%%PYTHON_SITELIBDIR%%/external/iron_resizable_behavior/iron-resizable-behavior.html
+%%PYTHON_SITELIBDIR%%/external/iron_scroll_target_behavior/index.html
+%%PYTHON_SITELIBDIR%%/external/iron_scroll_target_behavior/iron-scroll-target-behavior.html
+%%PYTHON_SITELIBDIR%%/external/iron_selector/index.html
+%%PYTHON_SITELIBDIR%%/external/iron_selector/iron-multi-selectable.html
+%%PYTHON_SITELIBDIR%%/external/iron_selector/iron-selectable.html
+%%PYTHON_SITELIBDIR%%/external/iron_selector/iron-selection.html
+%%PYTHON_SITELIBDIR%%/external/iron_selector/iron-selector.html
+%%PYTHON_SITELIBDIR%%/external/iron_validatable_behavior/index.html
+%%PYTHON_SITELIBDIR%%/external/iron_validatable_behavior/iron-validatable-behavior.html
+%%PYTHON_SITELIBDIR%%/external/jemalloc/COPYING
+%%PYTHON_SITELIBDIR%%/external/jpeg/LICENSE.md
+%%PYTHON_SITELIBDIR%%/external/jpeg/jccolext.c
+%%PYTHON_SITELIBDIR%%/external/jpeg/jchuff.h
+%%PYTHON_SITELIBDIR%%/external/jpeg/jconfig.h
+%%PYTHON_SITELIBDIR%%/external/jpeg/jconfigint.h
+%%PYTHON_SITELIBDIR%%/external/jpeg/jdcoefct.h
+%%PYTHON_SITELIBDIR%%/external/jpeg/jdcol565.c
+%%PYTHON_SITELIBDIR%%/external/jpeg/jdcolext.c
+%%PYTHON_SITELIBDIR%%/external/jpeg/jdct.h
+%%PYTHON_SITELIBDIR%%/external/jpeg/jdhuff.h
+%%PYTHON_SITELIBDIR%%/external/jpeg/jdmainct.h
+%%PYTHON_SITELIBDIR%%/external/jpeg/jdmaster.h
+%%PYTHON_SITELIBDIR%%/external/jpeg/jdmrg565.c
+%%PYTHON_SITELIBDIR%%/external/jpeg/jdmrgext.c
+%%PYTHON_SITELIBDIR%%/external/jpeg/jdsample.h
+%%PYTHON_SITELIBDIR%%/external/jpeg/jerror.h
+%%PYTHON_SITELIBDIR%%/external/jpeg/jinclude.h
+%%PYTHON_SITELIBDIR%%/external/jpeg/jmemsys.h
+%%PYTHON_SITELIBDIR%%/external/jpeg/jmorecfg.h
+%%PYTHON_SITELIBDIR%%/external/jpeg/jpeg_nbits_table.h
+%%PYTHON_SITELIBDIR%%/external/jpeg/jpegcomp.h
+%%PYTHON_SITELIBDIR%%/external/jpeg/jpegint.h
+%%PYTHON_SITELIBDIR%%/external/jpeg/jpeglib.h
+%%PYTHON_SITELIBDIR%%/external/jpeg/jsimd.h
+%%PYTHON_SITELIBDIR%%/external/jpeg/jsimddct.h
+%%PYTHON_SITELIBDIR%%/external/jpeg/jstdhuff.c
+%%PYTHON_SITELIBDIR%%/external/jpeg/jversion.h
+%%PYTHON_SITELIBDIR%%/external/libxsmm_archive/LICENSE
+%%PYTHON_SITELIBDIR%%/external/local_config_sycl/sycl/LICENSE.text
+%%PYTHON_SITELIBDIR%%/external/lodash/lodash.js
+%%PYTHON_SITELIBDIR%%/external/lodash/lodash.min.js
+%%PYTHON_SITELIBDIR%%/external/nanopb_git/LICENSE.txt
+%%PYTHON_SITELIBDIR%%/external/nccl_archive/LICENSE.txt
+%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/cascaded-animation.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/fade-in-animation.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/fade-out-animation.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/hero-animation.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/opaque-animation.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/reverse-ripple-animation.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/ripple-animation.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/scale-down-animation.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/scale-up-animation.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/slide-down-animation.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/slide-from-bottom-animation.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/slide-from-left-animation.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/slide-from-right-animation.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/slide-from-top-animation.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/slide-left-animation.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/slide-right-animation.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/slide-up-animation.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/transform-animation.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/card/index.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/card/x-card.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/card/x-cards-list.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/declarative/index.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/doc/index.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/doc/my-animatable.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/doc/my-dialog.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/dropdown/animated-dropdown.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/dropdown/index.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/grid/animated-grid.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/grid/fullsize-page-with-card.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/grid/index.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/list/full-view.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/list/index.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/list/list-demo.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/list/list-view.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/load/animated-grid.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/load/full-page.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/load/index.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/reprojection/animated-grid.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/reprojection/fullsize-page-with-card.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/reprojection/index.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/reprojection/reprojected-pages.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/tiles/circles-page.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/tiles/index.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/tiles/squares-page.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/index.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/neon-animatable-behavior.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/neon-animatable.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/neon-animated-pages.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/neon-animation-behavior.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/neon-animation-runner-behavior.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/neon-animation.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/neon-animations.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/neon-shared-element-animatable-behavior.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/neon-shared-element-animation-behavior.html
+%%PYTHON_SITELIBDIR%%/external/neon_animation/web-animations.html
+%%PYTHON_SITELIBDIR%%/external/numericjs_numeric_min_js/file/numeric.min.js
+%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/LICENSE
+%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/__init__.py
+%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/__init__.py
+%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/_compat.py
+%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/_internal.py
+%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/_reloader.py
+%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/datastructures.py
+%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/exceptions.py
+%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/filesystem.py
+%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/formparser.py
+%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/http.py
+%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/local.py
+%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/posixemulation.py
+%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/routing.py
+%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/script.py
+%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/security.py
+%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/serving.py
+%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/test.py
+%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/testapp.py
+%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/urls.py
+%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/useragents.py
+%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/utils.py
+%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/wrappers.py
+%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/wsgi.py
+%%PYTHON_SITELIBDIR%%/external/paper_behaviors/index.html
+%%PYTHON_SITELIBDIR%%/external/paper_behaviors/paper-button-behavior.html
+%%PYTHON_SITELIBDIR%%/external/paper_behaviors/paper-checked-element-behavior.html
+%%PYTHON_SITELIBDIR%%/external/paper_behaviors/paper-inky-focus-behavior.html
+%%PYTHON_SITELIBDIR%%/external/paper_behaviors/paper-ripple-behavior.html
+%%PYTHON_SITELIBDIR%%/external/paper_button/index.html
+%%PYTHON_SITELIBDIR%%/external/paper_button/paper-button.html
+%%PYTHON_SITELIBDIR%%/external/paper_checkbox/index.html
+%%PYTHON_SITELIBDIR%%/external/paper_checkbox/paper-checkbox.html
+%%PYTHON_SITELIBDIR%%/external/paper_dialog/index.html
+%%PYTHON_SITELIBDIR%%/external/paper_dialog/paper-dialog.html
+%%PYTHON_SITELIBDIR%%/external/paper_dialog_behavior/index.html
+%%PYTHON_SITELIBDIR%%/external/paper_dialog_behavior/paper-dialog-behavior.html
+%%PYTHON_SITELIBDIR%%/external/paper_dialog_behavior/paper-dialog-common.css
+%%PYTHON_SITELIBDIR%%/external/paper_dialog_behavior/paper-dialog-shared-styles.html
+%%PYTHON_SITELIBDIR%%/external/paper_dialog_scrollable/index.html
+%%PYTHON_SITELIBDIR%%/external/paper_dialog_scrollable/paper-dialog-scrollable.html
+%%PYTHON_SITELIBDIR%%/external/paper_dropdown_menu/index.html
+%%PYTHON_SITELIBDIR%%/external/paper_dropdown_menu/paper-dropdown-menu-icons.html
+%%PYTHON_SITELIBDIR%%/external/paper_dropdown_menu/paper-dropdown-menu-light.html
+%%PYTHON_SITELIBDIR%%/external/paper_dropdown_menu/paper-dropdown-menu-shared-styles.html
+%%PYTHON_SITELIBDIR%%/external/paper_dropdown_menu/paper-dropdown-menu.html
+%%PYTHON_SITELIBDIR%%/external/paper_header_panel/index.html
+%%PYTHON_SITELIBDIR%%/external/paper_header_panel/paper-header-panel.html
+%%PYTHON_SITELIBDIR%%/external/paper_icon_button/index.html
+%%PYTHON_SITELIBDIR%%/external/paper_icon_button/paper-icon-button-light.html
+%%PYTHON_SITELIBDIR%%/external/paper_icon_button/paper-icon-button.html
+%%PYTHON_SITELIBDIR%%/external/paper_input/all-imports.html
+%%PYTHON_SITELIBDIR%%/external/paper_input/index.html
+%%PYTHON_SITELIBDIR%%/external/paper_input/paper-input-addon-behavior.html
+%%PYTHON_SITELIBDIR%%/external/paper_input/paper-input-behavior.html
+%%PYTHON_SITELIBDIR%%/external/paper_input/paper-input-char-counter.html
+%%PYTHON_SITELIBDIR%%/external/paper_input/paper-input-container.html
+%%PYTHON_SITELIBDIR%%/external/paper_input/paper-input-error.html
+%%PYTHON_SITELIBDIR%%/external/paper_input/paper-input.html
+%%PYTHON_SITELIBDIR%%/external/paper_input/paper-textarea.html
+%%PYTHON_SITELIBDIR%%/external/paper_item/all-imports.html
+%%PYTHON_SITELIBDIR%%/external/paper_item/index.html
+%%PYTHON_SITELIBDIR%%/external/paper_item/paper-icon-item.html
+%%PYTHON_SITELIBDIR%%/external/paper_item/paper-item-behavior.html
+%%PYTHON_SITELIBDIR%%/external/paper_item/paper-item-body.html
+%%PYTHON_SITELIBDIR%%/external/paper_item/paper-item-shared-styles.html
+%%PYTHON_SITELIBDIR%%/external/paper_item/paper-item.html
+%%PYTHON_SITELIBDIR%%/external/paper_listbox/index.html
+%%PYTHON_SITELIBDIR%%/external/paper_listbox/paper-listbox.html
+%%PYTHON_SITELIBDIR%%/external/paper_material/index.html
+%%PYTHON_SITELIBDIR%%/external/paper_material/paper-material-shared-styles.html
+%%PYTHON_SITELIBDIR%%/external/paper_material/paper-material.html
+%%PYTHON_SITELIBDIR%%/external/paper_menu/index.html
+%%PYTHON_SITELIBDIR%%/external/paper_menu/paper-menu-shared-styles.html
+%%PYTHON_SITELIBDIR%%/external/paper_menu/paper-menu.html
+%%PYTHON_SITELIBDIR%%/external/paper_menu/paper-submenu.html
+%%PYTHON_SITELIBDIR%%/external/paper_menu_button/index.html
+%%PYTHON_SITELIBDIR%%/external/paper_menu_button/paper-menu-button-animations.html
+%%PYTHON_SITELIBDIR%%/external/paper_menu_button/paper-menu-button.html
+%%PYTHON_SITELIBDIR%%/external/paper_progress/index.html
+%%PYTHON_SITELIBDIR%%/external/paper_progress/paper-progress.html
+%%PYTHON_SITELIBDIR%%/external/paper_radio_button/index.html
+%%PYTHON_SITELIBDIR%%/external/paper_radio_button/paper-radio-button.html
+%%PYTHON_SITELIBDIR%%/external/paper_radio_group/index.html
+%%PYTHON_SITELIBDIR%%/external/paper_radio_group/paper-radio-group.html
+%%PYTHON_SITELIBDIR%%/external/paper_ripple/index.html
+%%PYTHON_SITELIBDIR%%/external/paper_ripple/paper-ripple.html
+%%PYTHON_SITELIBDIR%%/external/paper_slider/index.html
+%%PYTHON_SITELIBDIR%%/external/paper_slider/paper-slider.html
+%%PYTHON_SITELIBDIR%%/external/paper_spinner/index.html
+%%PYTHON_SITELIBDIR%%/external/paper_spinner/paper-spinner-behavior.html
+%%PYTHON_SITELIBDIR%%/external/paper_spinner/paper-spinner-lite.html
+%%PYTHON_SITELIBDIR%%/external/paper_spinner/paper-spinner-styles.html
+%%PYTHON_SITELIBDIR%%/external/paper_spinner/paper-spinner.html
+%%PYTHON_SITELIBDIR%%/external/paper_styles/classes/global.html
+%%PYTHON_SITELIBDIR%%/external/paper_styles/classes/shadow-layout.html
+%%PYTHON_SITELIBDIR%%/external/paper_styles/classes/shadow.html
+%%PYTHON_SITELIBDIR%%/external/paper_styles/classes/typography.html
+%%PYTHON_SITELIBDIR%%/external/paper_styles/color.html
+%%PYTHON_SITELIBDIR%%/external/paper_styles/default-theme.html
+%%PYTHON_SITELIBDIR%%/external/paper_styles/demo-pages.html
+%%PYTHON_SITELIBDIR%%/external/paper_styles/demo.css
+%%PYTHON_SITELIBDIR%%/external/paper_styles/index.html
+%%PYTHON_SITELIBDIR%%/external/paper_styles/paper-styles-classes.html
+%%PYTHON_SITELIBDIR%%/external/paper_styles/paper-styles.html
+%%PYTHON_SITELIBDIR%%/external/paper_styles/shadow.html
+%%PYTHON_SITELIBDIR%%/external/paper_styles/typography.html
+%%PYTHON_SITELIBDIR%%/external/paper_tabs/index.html
+%%PYTHON_SITELIBDIR%%/external/paper_tabs/paper-tab.html
+%%PYTHON_SITELIBDIR%%/external/paper_tabs/paper-tabs-icons.html
+%%PYTHON_SITELIBDIR%%/external/paper_tabs/paper-tabs.html
+%%PYTHON_SITELIBDIR%%/external/paper_toast/index.html
+%%PYTHON_SITELIBDIR%%/external/paper_toast/paper-toast.html
+%%PYTHON_SITELIBDIR%%/external/paper_toggle_button/index.html
+%%PYTHON_SITELIBDIR%%/external/paper_toggle_button/paper-toggle-button.html
+%%PYTHON_SITELIBDIR%%/external/paper_toolbar/index.html
+%%PYTHON_SITELIBDIR%%/external/paper_toolbar/paper-toolbar.html
+%%PYTHON_SITELIBDIR%%/external/paper_tooltip/index.html
+%%PYTHON_SITELIBDIR%%/external/paper_tooltip/paper-tooltip.html
+%%PYTHON_SITELIBDIR%%/external/plottable/plottable.css
+%%PYTHON_SITELIBDIR%%/external/plottable/plottable.js
+%%PYTHON_SITELIBDIR%%/external/plottable/plottable.min.js
+%%PYTHON_SITELIBDIR%%/external/png_archive/LICENSE
+%%PYTHON_SITELIBDIR%%/external/png_archive/png.h
+%%PYTHON_SITELIBDIR%%/external/png_archive/pngconf.h
+%%PYTHON_SITELIBDIR%%/external/polymer/polymer-micro.html
+%%PYTHON_SITELIBDIR%%/external/polymer/polymer-mini.html
+%%PYTHON_SITELIBDIR%%/external/polymer/polymer.html
+%%PYTHON_SITELIBDIR%%/external/promise_polyfill/Gruntfile.js
+%%PYTHON_SITELIBDIR%%/external/promise_polyfill/Promise-Statics.js
+%%PYTHON_SITELIBDIR%%/external/promise_polyfill/Promise.js
+%%PYTHON_SITELIBDIR%%/external/promise_polyfill/Promise.min.js
+%%PYTHON_SITELIBDIR%%/external/promise_polyfill/promise-polyfill-lite.html
+%%PYTHON_SITELIBDIR%%/external/promise_polyfill/promise-polyfill.html
+%%PYTHON_SITELIBDIR%%/external/protobuf/LICENSE
+%%PYTHON_SITELIBDIR%%/external/protobuf/__init__.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/__init__.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/__init__.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/__init__.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/any_pb2.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/api_pb2.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/compiler/__init__.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/compiler/plugin_pb2.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/descriptor.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/descriptor_database.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/descriptor_pb2.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/descriptor_pool.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/duration_pb2.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/empty_pb2.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/field_mask_pb2.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/internal/__init__.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/internal/_api_implementation.so
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/internal/_parameterized.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/internal/api_implementation.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/internal/containers.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/internal/decoder.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/internal/encoder.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/internal/enum_type_wrapper.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/internal/message_listener.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/internal/python_message.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/internal/testing_refleaks.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/internal/type_checkers.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/internal/well_known_types.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/internal/wire_format.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/json_format.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/message.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/message_factory.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/proto_builder.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/pyext/__init__.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/pyext/_message.so
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/pyext/cpp_message.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/reflection.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/service.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/service_reflection.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/source_context_pb2.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/struct_pb2.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/symbol_database.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/text_encoding.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/text_format.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/timestamp_pb2.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/type_pb2.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/wrappers_pb2.py
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/any.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/any.pb.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/api.pb.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/arena.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/arena_test_util.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/arenastring.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/code_generator.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/command_line_interface.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_enum.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_enum_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_extension.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_file.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_generator.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_helpers.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_map_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_message.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_message_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_options.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_primitive_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_service.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_string_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_unittest.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_doc_comment.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_enum.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_enum_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_field_base.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_generator.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_helpers.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_map_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_message.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_message_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_names.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_options.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_primitive_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_reflection_class.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_source_generator_base.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_wrapper_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/importer.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_context.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_doc_comment.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_enum.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_enum_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_enum_field_lite.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_enum_lite.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_extension.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_extension_lite.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_file.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_generator.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_generator_factory.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_helpers.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_lazy_message_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_lazy_message_field_lite.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_map_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_map_field_lite.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_message.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_message_builder.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_message_builder_lite.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_message_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_message_field_lite.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_message_lite.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_name_resolver.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_names.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_options.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_primitive_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_primitive_field_lite.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_service.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_shared_code_generator.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_string_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_string_field_lite.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/javanano/javanano_enum.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/javanano/javanano_enum_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/javanano/javanano_extension.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/javanano/javanano_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/javanano/javanano_file.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/javanano/javanano_generator.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/javanano/javanano_helpers.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/javanano/javanano_map_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/javanano/javanano_message.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/javanano/javanano_message_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/javanano/javanano_params.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/javanano/javanano_primitive_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/js/js_generator.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/js/well_known_types_embed.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/mock_code_generator.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/objectivec/objectivec_enum.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/objectivec/objectivec_enum_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/objectivec/objectivec_extension.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/objectivec/objectivec_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/objectivec/objectivec_file.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/objectivec/objectivec_generator.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/objectivec/objectivec_helpers.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/objectivec/objectivec_map_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/objectivec/objectivec_message.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/objectivec/objectivec_message_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/objectivec/objectivec_oneof.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/package_info.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/parser.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/php/php_generator.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/plugin.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/plugin.pb.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/python/python_generator.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/ruby/ruby_generator.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/subprocess.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/zip_writer.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/descriptor.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/descriptor.pb.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/descriptor_database.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/duration.pb.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/dynamic_message.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/empty.pb.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/extension_set.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/field_mask.pb.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/generated_enum_reflection.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/generated_enum_util.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/generated_message_reflection.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/generated_message_util.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/has_bits.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/io/coded_stream.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/io/coded_stream_inl.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/io/gzip_stream.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/io/package_info.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/io/printer.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/io/strtod.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/io/tokenizer.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/io/zero_copy_stream.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/io/zero_copy_stream_impl.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/map.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/map_entry.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/map_entry_lite.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/map_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/map_field_inl.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/map_field_lite.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/map_lite_test_util.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/map_test_util.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/map_test_util_impl.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/map_type_handler.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/message.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/message_lite.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/metadata.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/package_info.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/reflection.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/reflection_internal.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/reflection_ops.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/repeated_field.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/service.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/source_context.pb.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/struct.pb.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomic_sequence_num.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomicops.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomicops_internals_arm64_gcc.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomicops_internals_arm_gcc.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomicops_internals_arm_qnx.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomicops_internals_atomicword_compat.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomicops_internals_generic_c11_atomic.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomicops_internals_generic_gcc.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomicops_internals_mips_gcc.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomicops_internals_power.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomicops_internals_ppc_gcc.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomicops_internals_solaris.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomicops_internals_tsan.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomicops_internals_x86_gcc.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomicops_internals_x86_msvc.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/bytestream.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/callback.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/casts.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/common.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/fastmem.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/hash.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/int128.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/logging.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/macros.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/map_util.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/mathlimits.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/mathutil.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/mutex.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/once.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/platform_macros.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/port.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/scoped_ptr.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/shared_ptr.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/singleton.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/status.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/status_macros.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/statusor.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/stl_util.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/stringpiece.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/stringprintf.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/strutil.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/substitute.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/template_util.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/time.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/type_traits.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/test_util.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/test_util_lite.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/testing/file.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/testing/googletest.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/text_format.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/timestamp.pb.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/type.pb.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/unknown_field_set.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/field_comparator.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/field_mask_util.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/constants.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/datapiece.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/default_value_objectwriter.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/error_listener.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/expecting_objectwriter.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/field_mask_utility.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/json_escaping.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/json_objectwriter.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/json_stream_parser.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/location_tracker.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/mock_error_listener.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/object_location_tracker.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/object_source.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/object_writer.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/proto_writer.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/protostream_objectsource.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/protostream_objectwriter.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/structured_objectwriter.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/type_info.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/type_info_test_helper.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/utility.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/json_util.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/message_differencer.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/package_info.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/time_util.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/type_resolver.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/type_resolver_util.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/wire_format.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/wire_format_lite.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/wire_format_lite_inl.h
+%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/wrappers.pb.h
+%%PYTHON_SITELIBDIR%%/external/six_archive/LICENSE
+%%PYTHON_SITELIBDIR%%/external/six_archive/__init__.py
+%%PYTHON_SITELIBDIR%%/external/six_archive/six.py
+%%PYTHON_SITELIBDIR%%/external/three_js_orbitcontrols_js/file/OrbitControls.js
+%%PYTHON_SITELIBDIR%%/external/three_js_three_min_js/file/three.min.js
+%%PYTHON_SITELIBDIR%%/external/web_animations_js/web-animations-next-lite.min.js
+%%PYTHON_SITELIBDIR%%/external/web_animations_js/web-animations-next.min.js
+%%PYTHON_SITELIBDIR%%/external/web_animations_js/web-animations.html
+%%PYTHON_SITELIBDIR%%/external/web_animations_js/web-animations.min.js
+%%PYTHON_SITELIBDIR%%/external/webcomponentsjs/CustomElements.js
+%%PYTHON_SITELIBDIR%%/external/webcomponentsjs/CustomElements.min.js
+%%PYTHON_SITELIBDIR%%/external/webcomponentsjs/HTMLImports.js
+%%PYTHON_SITELIBDIR%%/external/webcomponentsjs/HTMLImports.min.js
+%%PYTHON_SITELIBDIR%%/external/webcomponentsjs/MutationObserver.js
+%%PYTHON_SITELIBDIR%%/external/webcomponentsjs/MutationObserver.min.js
+%%PYTHON_SITELIBDIR%%/external/webcomponentsjs/ShadowDOM.js
+%%PYTHON_SITELIBDIR%%/external/webcomponentsjs/ShadowDOM.min.js
+%%PYTHON_SITELIBDIR%%/external/webcomponentsjs/webcomponents-lite.js
+%%PYTHON_SITELIBDIR%%/external/webcomponentsjs/webcomponents-lite.min.js
+%%PYTHON_SITELIBDIR%%/external/webcomponentsjs/webcomponents.js
+%%PYTHON_SITELIBDIR%%/external/webcomponentsjs/webcomponents.min.js
+%%PYTHON_SITELIBDIR%%/external/weblas_weblas_js/file/weblas.js
+%%PYTHON_SITELIBDIR%%/external/zlib_archive/crc32.h
+%%PYTHON_SITELIBDIR%%/external/zlib_archive/deflate.h
+%%PYTHON_SITELIBDIR%%/external/zlib_archive/gzguts.h
+%%PYTHON_SITELIBDIR%%/external/zlib_archive/inffast.h
+%%PYTHON_SITELIBDIR%%/external/zlib_archive/inffixed.h
+%%PYTHON_SITELIBDIR%%/external/zlib_archive/inflate.h
+%%PYTHON_SITELIBDIR%%/external/zlib_archive/inftrees.h
+%%PYTHON_SITELIBDIR%%/external/zlib_archive/trees.h
+%%PYTHON_SITELIBDIR%%/external/zlib_archive/zconf.h
+%%PYTHON_SITELIBDIR%%/external/zlib_archive/zlib.h
+%%PYTHON_SITELIBDIR%%/external/zlib_archive/zutil.h
+%%PYTHON_SITELIBDIR%%/tensorflow-1.1.0.dist-info/DESCRIPTION.rst
+%%PYTHON_SITELIBDIR%%/tensorflow-1.1.0.dist-info/METADATA
+%%PYTHON_SITELIBDIR%%/tensorflow-1.1.0.dist-info/RECORD
+%%PYTHON_SITELIBDIR%%/tensorflow-1.1.0.dist-info/WHEEL
+%%PYTHON_SITELIBDIR%%/tensorflow-1.1.0.dist-info/entry_points.txt
+%%PYTHON_SITELIBDIR%%/tensorflow-1.1.0.dist-info/metadata.json
+%%PYTHON_SITELIBDIR%%/tensorflow-1.1.0.dist-info/top_level.txt
+%%PYTHON_SITELIBDIR%%/tensorflow/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/python/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/python/ops/entropy.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/python/ops/entropy_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/python/ops/monte_carlo.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/python/ops/monte_carlo_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/python/ops/stochastic_gradient_estimators.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/python/ops/stochastic_graph.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/python/ops/stochastic_graph_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/python/ops/stochastic_tensor.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/python/ops/stochastic_tensor_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/python/ops/stochastic_variables.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/python/ops/variational_inference.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/python/ops/variational_inference_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cloud/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cloud/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cloud/python/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cloud/python/ops/bigquery_reader_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cloud/python/ops/gen_bigquery_reader_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cmake/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cmake/tools/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cmake/tools/create_def_file.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/compiler/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/compiler/jit.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/copy_graph/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/copy_graph/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/copy_graph/python/util/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/copy_graph/python/util/copy_elements.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/crf/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/crf/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/crf/python/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/crf/python/ops/crf.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cudnn_rnn/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cudnn_rnn/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cudnn_rnn/ops/gen_cudnn_rnn_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cudnn_rnn/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cudnn_rnn/python/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cudnn_rnn/python/ops/_cudnn_rnn_ops.so
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cudnn_rnn/python/ops/cudnn_rnn_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/deprecated/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bernoulli.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/beta.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/affine.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/affine_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/affine_linear_operator.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/affine_linear_operator_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/bijector.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/bijector_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/bijector_test_util.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/chain.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/chain_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/cholesky_outer_product.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/cholesky_outer_product_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/conditional_bijector.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/conditional_bijector_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/exp.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/exp_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/identity.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/identity_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/inline.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/inline_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/invert.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/invert_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/power_transform.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/power_transform_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/sigmoid.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/sigmoid_centered.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/sigmoid_centered_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/sigmoid_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/softmax_centered.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/softmax_centered_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/softplus.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/softplus_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/binomial.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/categorical.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/chi2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/conditional_distribution.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/conditional_transformed_distribution.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/deterministic.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/dirichlet.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/dirichlet_multinomial.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/distribution.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/distribution_util.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/exponential.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/gamma.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/geometric.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/gumbel.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/inverse_gamma.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/kullback_leibler.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/laplace.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/logistic.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/mixture.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/multinomial.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/mvn_diag.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/mvn_diag_plus_low_rank.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/mvn_linear_operator.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/mvn_tril.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/negative_binomial.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/normal.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/normal_conjugate_posteriors.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/onehot_categorical.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/operator_pd.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/operator_pd_cholesky.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/operator_pd_diag.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/operator_pd_full.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/operator_pd_identity.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/operator_pd_vdvt_update.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/operator_test_util.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/poisson.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/quantized_distribution.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/relaxed_bernoulli.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/relaxed_onehot_categorical.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/shape.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/special_math.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/student_t.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/transformed_distribution.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/uniform.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/vector_student_t.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/wishart.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/factorization/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/factorization/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/factorization/python/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/factorization/python/ops/_clustering_ops.so
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/factorization/python/ops/_factorization_ops.so
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/factorization/python/ops/clustering_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/factorization/python/ops/factorization_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/factorization/python/ops/gen_clustering_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/factorization/python/ops/gen_factorization_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/factorization/python/ops/gmm.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/factorization/python/ops/gmm_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/ffmpeg/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/ffmpeg/ffmpeg.so
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/ffmpeg/ffmpeg_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/ffmpeg/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/ffmpeg/ops/gen_decode_audio_op_py.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/ffmpeg/ops/gen_encode_audio_op_py.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/framework/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/framework/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/framework/python/framework/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/framework/python/framework/checkpoint_utils.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/framework/python/framework/experimental.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/framework/python/framework/tensor_util.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/framework/python/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/framework/python/ops/_variable_ops.so
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/framework/python/ops/arg_scope.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/framework/python/ops/gen_variable_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/framework/python/ops/ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/framework/python/ops/prettyprint_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/framework/python/ops/variables.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/graph_editor/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/graph_editor/edit.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/graph_editor/reroute.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/graph_editor/select.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/graph_editor/subgraph.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/graph_editor/tests/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/graph_editor/tests/match.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/graph_editor/transform.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/graph_editor/util.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/grid_rnn/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/grid_rnn/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/grid_rnn/python/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/grid_rnn/python/ops/grid_rnn_cell.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/hooks/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/hooks/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/hooks/python/training/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/hooks/python/training/profiler_hook.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/image/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/image/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/image/ops/gen_image_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/image/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/image/python/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/image/python/ops/_image_ops.so
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/image/python/ops/image_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/imperative/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/imperative/imperative_graph.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/imperative/imperative_mode.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/input_pipeline/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/input_pipeline/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/input_pipeline/ops/gen_input_pipeline_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/input_pipeline/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/input_pipeline/python/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/input_pipeline/python/ops/_input_pipeline_ops.so
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/input_pipeline/python/ops/input_pipeline_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/input_pipeline/python/ops/input_pipeline_ops_test.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/integrate/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/integrate/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/integrate/python/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/integrate/python/ops/odes.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/activations/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/applications/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/applications/inception_v3/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/applications/resnet50/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/applications/vgg16/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/applications/vgg19/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/applications/xception/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/backend/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/callbacks/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/constraints/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/datasets/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/datasets/boston_housing/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/datasets/cifar10/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/datasets/cifar100/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/datasets/imdb/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/datasets/mnist/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/datasets/reuters/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/initializers/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/layers/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/losses/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/metrics/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/models/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/optimizers/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/preprocessing/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/preprocessing/image/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/preprocessing/sequence/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/preprocessing/text/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/regularizers/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/utils/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/wrappers/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/wrappers/scikit_learn/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/activations.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/applications/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/applications/imagenet_utils.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/applications/inception_v3.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/applications/resnet50.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/applications/vgg16.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/applications/vgg19.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/applications/xception.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/backend.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/callbacks.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/constraints.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/datasets/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/datasets/boston_housing.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/datasets/cifar.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/datasets/cifar10.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/datasets/cifar100.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/datasets/imdb.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/datasets/mnist.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/datasets/reuters.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/engine/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/engine/topology.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/engine/training.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/initializers.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/layers/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/layers/advanced_activations.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/layers/convolutional.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/layers/convolutional_recurrent.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/layers/core.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/layers/embeddings.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/layers/local.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/layers/merge.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/layers/noise.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/layers/normalization.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/layers/pooling.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/layers/recurrent.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/layers/serialization.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/layers/wrappers.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/losses.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/metrics.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/models.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/optimizers.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/preprocessing/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/preprocessing/image.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/preprocessing/sequence.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/preprocessing/text.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/regularizers.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/testing_utils.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/utils/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/utils/conv_utils.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/utils/data_utils.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/utils/generic_utils.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/utils/io_utils.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/utils/layer_utils.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/utils/np_utils.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/utils/vis_utils.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/wrappers/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/wrappers/scikit_learn.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/labeled_tensor/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/labeled_tensor/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/labeled_tensor/python/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/labeled_tensor/python/ops/_typecheck.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/labeled_tensor/python/ops/core.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/labeled_tensor/python/ops/io_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/labeled_tensor/python/ops/nn.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/labeled_tensor/python/ops/ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/labeled_tensor/python/ops/sugar.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/labeled_tensor/python/ops/test_util.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/ops/gen_bucketization_op.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/ops/gen_sparse_feature_cross_op.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/layers/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/layers/embedding_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/layers/encoders.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/layers/feature_column.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/layers/feature_column_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/layers/initializers.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/layers/layers.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/layers/optimizers.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/layers/regularizers.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/layers/summaries.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/layers/target_column.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/layers/utils.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/ops/_bucketization_op.so
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/ops/_sparse_feature_cross_op.so
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/ops/bucketization_op.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/ops/sparse_feature_cross_op.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/ops/sparse_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/basic_session_run_hooks.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/dataframe.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/estimator_utils.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/queues/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/queues/feeding_functions.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/queues/feeding_queue_runner.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/series.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/tensorflow_dataframe.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transform.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/batch.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/binary_transforms.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/boolean_mask.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/csv_parser.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/densify.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/difference.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/example_parser.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/hashes.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/in_memory_source.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/reader_source.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/sparsify.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/split_mask.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/sum.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/unary_transforms.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/datasets/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/datasets/base.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/datasets/data/boston_house_prices.csv
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/datasets/data/iris.csv
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/datasets/data/text_test.csv
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/datasets/data/text_train.csv
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/datasets/mnist.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/datasets/produce_small_datasets.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/datasets/synthetic.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/datasets/text_datasets.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/_sklearn.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/composable_model.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/constants.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/dnn.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/dnn_linear_combined.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/dynamic_rnn_estimator.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/estimator.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/estimator_test_utils.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/head.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/kmeans.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/linear.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/logistic_regressor.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/metric_key.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/model_fn.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/prediction_key.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/rnn_common.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/run_config.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/state_saving_rnn_estimator.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/svm.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/tensor_signature.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/test_data.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/evaluable.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/experiment.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/export_strategy.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/graph_actions.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/learn_io/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/learn_io/dask_io.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/learn_io/data_feeder.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/learn_io/graph_io.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/learn_io/numpy_io.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/learn_io/pandas_io.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/learn_runner.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/metric_spec.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/models.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/monitored_session.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/monitors.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/ops/embeddings_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/ops/losses_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/ops/seq2seq_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/preprocessing/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/preprocessing/categorical.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/preprocessing/categorical_vocabulary.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/preprocessing/tests/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/preprocessing/text.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/session_run_hook.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/summary_writer_cache.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/tests/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/tests/dataframe/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/tests/dataframe/mocks.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/trainable.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/utils/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/utils/export.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/utils/gc.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/utils/input_fn_utils.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/utils/inspect_checkpoint.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/utils/saved_model_export_utils.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/legacy_seq2seq/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/legacy_seq2seq/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/legacy_seq2seq/python/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/legacy_seq2seq/python/ops/seq2seq.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linalg/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linalg/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linalg/python/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linalg/python/ops/linear_operator.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linalg/python/ops/linear_operator_addition.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linalg/python/ops/linear_operator_composition.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linalg/python/ops/linear_operator_diag.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linalg/python/ops/linear_operator_full_matrix.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linalg/python/ops/linear_operator_identity.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linalg/python/ops/linear_operator_test_util.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linalg/python/ops/linear_operator_tril.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linalg/python/ops/linear_operator_udvh_update.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linalg/python/ops/linear_operator_util.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linear_optimizer/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linear_optimizer/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linear_optimizer/python/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linear_optimizer/python/ops/sdca_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linear_optimizer/python/ops/sharded_mutable_dense_hashtable.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linear_optimizer/python/ops/sparse_feature_column.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linear_optimizer/python/sdca_estimator.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linear_optimizer/python/sdca_optimizer.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/lookup/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/lookup/lookup_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/losses/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/losses/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/losses/python/losses/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/losses/python/losses/loss_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/memory_stats/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/memory_stats/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/memory_stats/ops/gen_memory_stats_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/memory_stats/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/memory_stats/python/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/memory_stats/python/ops/_memory_stats_ops.so
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/memory_stats/python/ops/memory_stats_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/metrics/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/metrics/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/metrics/python/metrics/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/metrics/python/metrics/classification.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/metrics/python/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/metrics/python/ops/confusion_matrix_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/metrics/python/ops/histogram_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/metrics/python/ops/metric_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/metrics/python/ops/set_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/nccl/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/nccl/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/nccl/ops/gen_nccl_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/nccl/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/nccl/python/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/nccl/python/ops/_nccl_ops.so
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/nccl/python/ops/nccl_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/ndlstm/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/ndlstm/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/ndlstm/python/lstm1d.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/ndlstm/python/lstm2d.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/ndlstm/python/misc.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/nn/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/nn/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/nn/python/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/nn/python/ops/cross_entropy.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/opt/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/opt/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/opt/python/training/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/opt/python/training/external_optimizer.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/opt/python/training/lazy_adam_optimizer.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/opt/python/training/moving_average_optimizer.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/opt/python/training/variable_clipping_optimizer.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/quantization/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/quantization/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/quantization/python/array_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/quantization/python/math_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/quantization/python/nn_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/ops/gen_gru_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/ops/gen_lstm_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/python/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/python/ops/_gru_ops.so
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/python/ops/_lstm_ops.so
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/python/ops/core_rnn.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/python/ops/core_rnn_cell.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/python/ops/core_rnn_cell_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/python/ops/fused_rnn_cell.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/python/ops/gru_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/python/ops/lstm_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/python/ops/rnn.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/python/ops/rnn_cell.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/saved_model/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/saved_model/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/saved_model/python/saved_model/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/saved_model/python/saved_model/signature_def_utils.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/seq2seq/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/seq2seq/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/seq2seq/python/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/seq2seq/python/ops/basic_decoder.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/seq2seq/python/ops/decoder.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/seq2seq/python/ops/dynamic_attention_wrapper.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/seq2seq/python/ops/helper.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/seq2seq/python/ops/loss.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/session_bundle/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/session_bundle/bundle_shim.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/session_bundle/constants.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/session_bundle/exporter.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/session_bundle/gc.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/session_bundle/manifest_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/session_bundle/session_bundle.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/nets.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/data/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/data/data_decoder.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/data/data_provider.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/data/dataset.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/data/dataset_data_provider.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/data/parallel_reader.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/data/prefetch_queue.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/data/test_utils.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/data/tfexample_decoder.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/evaluation.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/learning.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/model_analyzer.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/nets/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/nets/alexnet.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/nets/inception.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/nets/inception_v1.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/nets/inception_v2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/nets/inception_v3.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/nets/overfeat.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/nets/resnet_utils.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/nets/resnet_v1.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/nets/resnet_v2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/nets/vgg.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/queues.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/solvers/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/solvers/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/solvers/python/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/solvers/python/ops/lanczos.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/solvers/python/ops/least_squares.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/solvers/python/ops/linear_equations.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/solvers/python/ops/util.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/sparsemax/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/sparsemax/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/sparsemax/python/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/sparsemax/python/ops/sparsemax.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/sparsemax/python/ops/sparsemax_loss.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/specs/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/specs/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/specs/python/params_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/specs/python/specs.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/specs/python/specs_lib.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/specs/python/specs_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/specs/python/summaries.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/stat_summarizer/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/client/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/client/eval_metrics.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/client/random_forest.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/ops/gen_training_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/hybrid_layer.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/hybrid_model.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/layers/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/layers/decisions_to_data.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/layers/fully_connected.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/models/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/models/decisions_to_data_then_nn.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/models/forest_to_data_then_nn.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/models/hard_decisions_to_data_then_nn.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/models/k_feature_decisions_to_data_then_nn.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/models/nn.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/models/stochastic_hard_decisions_to_data_then_nn.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/models/stochastic_soft_decisions_to_data_then_nn.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/ops/_training_ops.so
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/ops/training_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/python/constants.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/python/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/python/ops/_tensor_forest_ops.so
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/python/ops/data_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/python/ops/gen_tensor_forest_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/python/ops/tensor_forest_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/python/tensor_forest.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensorboard/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensorboard/graph_explorer/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensorboard/graph_explorer/proto/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensorboard/graph_explorer/proto/graph_explorer_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensorboard/plugins/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensorboard/plugins/projector/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensorboard/plugins/projector/projector_config_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensorboard/plugins/trace/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensorboard/plugins/trace/trace.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensorboard/plugins/trace/trace_info_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/testing/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/testing/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/testing/python/framework/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/testing/python/framework/fake_summary_writer.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/testing/python/framework/util_test.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tfprof/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tfprof/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tfprof/python/tools/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tfprof/python/tools/tfprof/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tfprof/python/tools/tfprof/_pywrap_tensorflow_print_model_analysis_lib.so
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tfprof/python/tools/tfprof/model_analyzer.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tfprof/python/tools/tfprof/pywrap_tensorflow_print_model_analysis_lib.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tfprof/python/tools/tfprof/tfprof_logger.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/training/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/training/bucket_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/training/device_setter.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/training/evaluation.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/training/failure_tolerator.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/training/feeder.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/training/hparam.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/training/hparam_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/training/resample.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/training/sampling_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/training/sequence_queueing_state_saver.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/training/training.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/training/tuner.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/util/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/contrib/util/loader.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/example/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/example/example_parser_configuration_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/example/example_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/example/feature_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/allocation_description_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/attr_value_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/cost_graph_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/device_attributes_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/function_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/graph_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/graph_transfer_info_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/kernel_def_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/log_memory_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/node_def_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/op_def_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/remote_fused_graph_execute_info_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/resource_handle_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/step_stats_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/summary_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/tensor_description_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/tensor_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/tensor_shape_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/tensor_slice_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/types_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/variable_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/versions_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/lib/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/lib/core/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/lib/core/error_codes_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/protobuf/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/protobuf/config_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/protobuf/control_flow_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/protobuf/debug_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/protobuf/meta_graph_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/protobuf/named_tensor_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/protobuf/queue_runner_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/protobuf/rewriter_config_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/protobuf/saved_model_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/protobuf/saver_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/protobuf/tensor_bundle_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/protobuf/tensorflow_server_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/util/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/util/event_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/util/memmapped_file_system_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/util/saved_tensor_slice_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/core/util/test_log_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/examples/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/examples/tutorials/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/examples/tutorials/mnist/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/examples/tutorials/mnist/input_data.py
+%%PYTHON_SITELIBDIR%%/tensorflow/examples/tutorials/mnist/mnist.py
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/Cholesky
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/CholmodSupport
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/Core
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/Dense
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/Eigenvalues
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/Geometry
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/Householder
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/Jacobi
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/LU
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/OrderingMethods
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/PaStiXSupport
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/PardisoSupport
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/QR
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/QtAlignedMalloc
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/SPQRSupport
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/SVD
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/SparseCore
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/SparseQR
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/StdDeque
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/StdList
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/StdVector
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/SuperLUSupport
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/UmfPackSupport
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Cholesky/LDLT.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Cholesky/LLT.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Cholesky/LLT_LAPACKE.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/CholmodSupport/CholmodSupport.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/ArithmeticSequence.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Array.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/ArrayBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/ArrayWrapper.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Assign.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/AssignEvaluator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Assign_MKL.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/BandMatrix.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Block.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/BooleanRedux.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/CommaInitializer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/ConditionEstimator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/CoreEvaluators.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/CoreIterators.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/CwiseBinaryOp.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/CwiseNullaryOp.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/CwiseTernaryOp.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/CwiseUnaryOp.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/CwiseUnaryView.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/DenseBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/DenseCoeffsBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/DenseStorage.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Diagonal.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/DiagonalMatrix.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/DiagonalProduct.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Dot.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/EigenBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/ForceAlignedAccess.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Fuzzy.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/GeneralProduct.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/GenericPacketMath.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/GlobalFunctions.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/IO.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/IndexedView.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Inverse.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Map.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/MapBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/MathFunctions.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/MathFunctionsImpl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Matrix.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/MatrixBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/NestByValue.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/NoAlias.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/NumTraits.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/PermutationMatrix.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/PlainObjectBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Product.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/ProductEvaluators.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Random.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Redux.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Ref.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Replicate.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/ReturnByValue.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Reverse.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Select.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/SelfAdjointView.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/SelfCwiseBinaryOp.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Solve.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/SolveTriangular.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/SolverBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/StableNorm.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Stride.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Swap.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Transpose.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Transpositions.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/TriangularMatrix.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/VectorBlock.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/VectorwiseOp.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Visitor.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/AVX/Complex.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/AVX/MathFunctions.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/AVX/PacketMath.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/AVX/TypeCasting.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/AVX512/MathFunctions.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/AVX512/PacketMath.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/AltiVec/Complex.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/AltiVec/MathFunctions.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/AltiVec/PacketMath.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/CUDA/Complex.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/CUDA/Half.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/CUDA/MathFunctions.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/CUDA/PacketMath.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/CUDA/PacketMathHalf.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/CUDA/TypeCasting.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/Default/Settings.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/NEON/Complex.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/NEON/MathFunctions.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/NEON/PacketMath.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/SSE/Complex.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/SSE/MathFunctions.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/SSE/PacketMath.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/SSE/TypeCasting.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/ZVector/Complex.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/ZVector/MathFunctions.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/ZVector/PacketMath.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/functors/AssignmentFunctors.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/functors/BinaryFunctors.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/functors/NullaryFunctors.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/functors/StlFunctors.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/functors/TernaryFunctors.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/functors/UnaryFunctors.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/GeneralMatrixMatrix.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/GeneralMatrixVector.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/Parallelizer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/SelfadjointMatrixMatrix.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/SelfadjointMatrixVector.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/SelfadjointProduct.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/SelfadjointRank2Update.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/TriangularMatrixMatrix.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/TriangularMatrixVector.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/TriangularSolverMatrix.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/TriangularSolverVector.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/util/BlasUtil.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/util/Constants.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/util/DisableStupidWarnings.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/util/ForwardDeclarations.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/util/IndexedViewHelper.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/util/IntegralConstant.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/util/MKL_support.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/util/Macros.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/util/Memory.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/util/Meta.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/util/ReenableStupidWarnings.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/util/StaticAssert.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/util/SymbolicIndex.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/util/XprHelper.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Eigenvalues/ComplexEigenSolver.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Eigenvalues/ComplexSchur.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Eigenvalues/EigenSolver.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Eigenvalues/HessenbergDecomposition.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Eigenvalues/RealQZ.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Eigenvalues/RealSchur.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Eigenvalues/Tridiagonalization.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/AlignedBox.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/AngleAxis.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/EulerAngles.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/Homogeneous.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/Hyperplane.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/OrthoMethods.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/ParametrizedLine.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/Quaternion.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/Rotation2D.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/RotationBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/Scaling.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/Transform.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/Translation.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/Umeyama.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/arch/Geometry_SSE.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Householder/BlockHouseholder.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Householder/Householder.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Householder/HouseholderSequence.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Jacobi/Jacobi.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/LU/Determinant.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/LU/FullPivLU.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/LU/InverseImpl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/LU/PartialPivLU.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/LU/PartialPivLU_LAPACKE.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/LU/arch/Inverse_SSE.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/MetisSupport/MetisSupport.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/OrderingMethods/Eigen_Colamd.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/OrderingMethods/Ordering.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/PaStiXSupport/PaStiXSupport.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/PardisoSupport/PardisoSupport.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/QR/ColPivHouseholderQR.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/QR/CompleteOrthogonalDecomposition.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/QR/FullPivHouseholderQR.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/QR/HouseholderQR.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/QR/HouseholderQR_LAPACKE.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SVD/BDCSVD.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SVD/JacobiSVD.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SVD/JacobiSVD_LAPACKE.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SVD/SVDBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SVD/UpperBidiagonalization.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/AmbiVector.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/CompressedStorage.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/MappedSparseMatrix.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseAssign.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseBlock.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseColEtree.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseCompressedBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseCwiseBinaryOp.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseCwiseUnaryOp.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseDenseProduct.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseDiagonalProduct.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseDot.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseFuzzy.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseMap.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseMatrix.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseMatrixBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparsePermutation.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseProduct.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseRedux.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseRef.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseSelfAdjointView.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseSolverBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseSparseProductWithPruning.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseTranspose.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseTriangularView.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseUtil.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseVector.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseView.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/TriangularSolver.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLUImpl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_Memory.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_Structs.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_Utils.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_column_bmod.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_column_dfs.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_gemm_kernel.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_kernel_bmod.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_panel_bmod.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_panel_dfs.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_pivotL.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_pruneL.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_relax_snode.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseQR/SparseQR.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/StlSupport/StdDeque.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/StlSupport/StdList.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/StlSupport/StdVector.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/StlSupport/details.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SuperLUSupport/SuperLUSupport.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/UmfPackSupport/UmfPackSupport.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/misc/Image.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/misc/Kernel.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/misc/RealSvd2x2.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/misc/blas.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/misc/lapack.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/misc/lapacke.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/misc/lapacke_mangling.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/plugins/ArrayCwiseBinaryOps.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/plugins/ArrayCwiseUnaryOps.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/plugins/BlockMethods.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/plugins/CommonCwiseBinaryOps.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/plugins/CommonCwiseUnaryOps.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/plugins/IndexedViewMethods.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/plugins/MatrixCwiseBinaryOps.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/plugins/MatrixCwiseUnaryOps.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/COPYING.MPL2
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/Cholesky
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/CholmodSupport
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/Core
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/Dense
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/Eigenvalues
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/Geometry
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/Householder
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/Jacobi
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/LU
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/OrderingMethods
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/PaStiXSupport
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/PardisoSupport
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/QR
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/QtAlignedMalloc
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/SPQRSupport
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/SVD
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/SparseCore
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/SparseQR
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/StdDeque
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/StdList
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/StdVector
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/SuperLUSupport
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/UmfPackSupport
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Cholesky/LDLT.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Cholesky/LLT.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Cholesky/LLT_LAPACKE.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/CholmodSupport/CholmodSupport.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/ArithmeticSequence.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Array.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/ArrayBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/ArrayWrapper.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Assign.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/AssignEvaluator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Assign_MKL.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/BandMatrix.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Block.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/BooleanRedux.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/CommaInitializer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/ConditionEstimator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/CoreEvaluators.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/CoreIterators.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/CwiseBinaryOp.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/CwiseNullaryOp.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/CwiseTernaryOp.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/CwiseUnaryOp.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/CwiseUnaryView.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/DenseBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/DenseCoeffsBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/DenseStorage.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Diagonal.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/DiagonalMatrix.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/DiagonalProduct.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Dot.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/EigenBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/ForceAlignedAccess.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Fuzzy.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/GeneralProduct.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/GenericPacketMath.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/GlobalFunctions.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/IO.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/IndexedView.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Inverse.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Map.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/MapBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/MathFunctions.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/MathFunctionsImpl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Matrix.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/MatrixBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/NestByValue.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/NoAlias.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/NumTraits.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/PermutationMatrix.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/PlainObjectBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Product.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/ProductEvaluators.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Random.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Redux.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Ref.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Replicate.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/ReturnByValue.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Reverse.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Select.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/SelfAdjointView.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/SelfCwiseBinaryOp.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Solve.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/SolveTriangular.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/SolverBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/StableNorm.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Stride.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Swap.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Transpose.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Transpositions.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/TriangularMatrix.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/VectorBlock.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/VectorwiseOp.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Visitor.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/AVX/Complex.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/AVX/MathFunctions.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/AVX/PacketMath.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/AVX/TypeCasting.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/AVX512/MathFunctions.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/AVX512/PacketMath.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/AltiVec/Complex.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/AltiVec/MathFunctions.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/AltiVec/PacketMath.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/CUDA/Complex.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/CUDA/Half.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/CUDA/MathFunctions.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/CUDA/PacketMath.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/CUDA/PacketMathHalf.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/CUDA/TypeCasting.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/Default/Settings.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/NEON/Complex.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/NEON/MathFunctions.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/NEON/PacketMath.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/SSE/Complex.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/SSE/MathFunctions.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/SSE/PacketMath.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/SSE/TypeCasting.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/ZVector/Complex.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/ZVector/MathFunctions.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/ZVector/PacketMath.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/functors/AssignmentFunctors.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/functors/BinaryFunctors.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/functors/NullaryFunctors.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/functors/StlFunctors.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/functors/TernaryFunctors.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/functors/UnaryFunctors.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/GeneralBlockPanelKernel.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/GeneralMatrixMatrix.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/GeneralMatrixVector.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/Parallelizer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/SelfadjointMatrixMatrix.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/SelfadjointMatrixVector.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/SelfadjointProduct.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/SelfadjointRank2Update.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/TriangularMatrixMatrix.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/TriangularMatrixVector.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/TriangularSolverMatrix.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/TriangularSolverVector.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/util/BlasUtil.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/util/Constants.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/util/DisableStupidWarnings.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/util/ForwardDeclarations.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/util/IndexedViewHelper.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/util/IntegralConstant.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/util/MKL_support.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/util/Macros.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/util/Memory.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/util/Meta.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/util/ReenableStupidWarnings.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/util/StaticAssert.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/util/SymbolicIndex.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/util/XprHelper.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Eigenvalues/ComplexEigenSolver.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Eigenvalues/ComplexSchur.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Eigenvalues/EigenSolver.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Eigenvalues/HessenbergDecomposition.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Eigenvalues/RealQZ.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Eigenvalues/RealSchur.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Eigenvalues/Tridiagonalization.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/AlignedBox.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/AngleAxis.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/EulerAngles.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/Homogeneous.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/Hyperplane.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/OrthoMethods.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/ParametrizedLine.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/Quaternion.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/Rotation2D.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/RotationBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/Scaling.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/Transform.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/Translation.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/Umeyama.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/arch/Geometry_SSE.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Householder/BlockHouseholder.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Householder/Householder.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Householder/HouseholderSequence.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Jacobi/Jacobi.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/LU/Determinant.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/LU/FullPivLU.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/LU/InverseImpl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/LU/PartialPivLU.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/LU/PartialPivLU_LAPACKE.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/LU/arch/Inverse_SSE.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/MetisSupport/MetisSupport.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/OrderingMethods/Eigen_Colamd.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/OrderingMethods/Ordering.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/PaStiXSupport/PaStiXSupport.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/PardisoSupport/PardisoSupport.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/QR/ColPivHouseholderQR.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/QR/CompleteOrthogonalDecomposition.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/QR/FullPivHouseholderQR.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/QR/HouseholderQR.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/QR/HouseholderQR_LAPACKE.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SVD/BDCSVD.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SVD/JacobiSVD.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SVD/JacobiSVD_LAPACKE.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SVD/SVDBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SVD/UpperBidiagonalization.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/AmbiVector.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/CompressedStorage.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/MappedSparseMatrix.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseAssign.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseBlock.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseColEtree.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseCompressedBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseCwiseBinaryOp.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseCwiseUnaryOp.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseDenseProduct.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseDiagonalProduct.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseDot.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseFuzzy.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseMap.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseMatrix.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseMatrixBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparsePermutation.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseProduct.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseRedux.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseRef.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseSelfAdjointView.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseSolverBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseSparseProductWithPruning.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseTranspose.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseTriangularView.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseUtil.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseVector.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseView.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/TriangularSolver.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLUImpl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_Memory.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_Structs.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_Utils.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_column_bmod.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_column_dfs.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_gemm_kernel.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_kernel_bmod.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_panel_bmod.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_panel_dfs.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_pivotL.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_pruneL.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_relax_snode.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseQR/SparseQR.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/StlSupport/StdDeque.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/StlSupport/StdList.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/StlSupport/StdVector.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/StlSupport/details.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SuperLUSupport/SuperLUSupport.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/UmfPackSupport/UmfPackSupport.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/misc/Image.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/misc/Kernel.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/misc/RealSvd2x2.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/misc/blas.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/misc/lapack.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/misc/lapacke.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/misc/lapacke_mangling.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/plugins/ArrayCwiseBinaryOps.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/plugins/ArrayCwiseUnaryOps.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/plugins/BlockMethods.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/plugins/CommonCwiseBinaryOps.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/plugins/CommonCwiseUnaryOps.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/plugins/IndexedViewMethods.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/plugins/MatrixCwiseBinaryOps.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/plugins/MatrixCwiseUnaryOps.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/CMakeLists.txt
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/Tensor
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/TensorSymmetry
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/ThreadPool
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/README.md
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/Tensor.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorContractionSycl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorConvolutionSycl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorGlobalFunctions.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorRandom.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorReductionSycl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorScan.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSycl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclConvertToDeviceExpression.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclExprConstructor.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclExtractAccessor.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclExtractFunctors.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclFunctors.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclLeafCount.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclPlaceHolderExpr.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclRun.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclTuple.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorVolumePatch.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/EventCount.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/RunQueue.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/SimpleThreadPool.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/ThreadCancel.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/ThreadEnvironment.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/ThreadLocal.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/ThreadYield.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/util/CXX11Meta.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/util/EmulateArray.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/util/EmulateCXX11Meta.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/util/MaxSizeVector.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/FFT
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/KroneckerProduct
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/MatrixFunctions
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/SpecialFunctions
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/src/FFT/ei_fftw_impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/src/FFT/ei_kissfft_impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsArrayAPI.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsFunctors.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsHalf.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsImpl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsPacketMath.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/src/SpecialFunctions/arch/CUDA/CudaSpecialFunctions.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/any.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/any.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/api.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/arena.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/arena_test_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/arenastring.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/code_generator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/command_line_interface.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_enum.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_enum_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_extension.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_file.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_generator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_helpers.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_map_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_message.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_message_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_options.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_primitive_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_service.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_string_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_unittest.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_doc_comment.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_enum.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_enum_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_field_base.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_generator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_helpers.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_map_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_message.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_message_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_names.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_options.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_primitive_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_reflection_class.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_repeated_enum_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_repeated_message_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_source_generator_base.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_wrapper_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/importer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_context.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_doc_comment.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_enum.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_enum_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_enum_field_lite.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_enum_lite.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_extension.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_extension_lite.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_file.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_generator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_generator_factory.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_helpers.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_lazy_message_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_lazy_message_field_lite.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_map_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_map_field_lite.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_message.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_message_builder.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_message_builder_lite.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_message_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_message_field_lite.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_message_lite.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_name_resolver.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_names.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_options.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_primitive_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_primitive_field_lite.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_service.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_shared_code_generator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_string_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_string_field_lite.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/javanano/javanano_enum.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/javanano/javanano_enum_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/javanano/javanano_extension.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/javanano/javanano_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/javanano/javanano_file.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/javanano/javanano_generator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/javanano/javanano_helpers.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/javanano/javanano_map_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/javanano/javanano_message.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/javanano/javanano_message_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/javanano/javanano_params.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/javanano/javanano_primitive_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/js/js_generator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/js/well_known_types_embed.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/mock_code_generator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/objectivec/objectivec_enum.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/objectivec/objectivec_enum_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/objectivec/objectivec_extension.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/objectivec/objectivec_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/objectivec/objectivec_file.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/objectivec/objectivec_generator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/objectivec/objectivec_helpers.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/objectivec/objectivec_map_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/objectivec/objectivec_message.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/objectivec/objectivec_message_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/objectivec/objectivec_oneof.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/objectivec/objectivec_primitive_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/package_info.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/parser.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/php/php_generator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/plugin.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/plugin.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/python/python_generator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/ruby/ruby_generator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/subprocess.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/zip_writer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/descriptor.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/descriptor.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/descriptor_database.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/duration.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/dynamic_message.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/empty.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/extension_set.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/field_mask.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/generated_enum_reflection.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/generated_enum_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/generated_message_reflection.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/generated_message_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/has_bits.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/io/coded_stream.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/io/coded_stream_inl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/io/gzip_stream.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/io/package_info.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/io/printer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/io/strtod.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/io/tokenizer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/io/zero_copy_stream.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/io/zero_copy_stream_impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/io/zero_copy_stream_impl_lite.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/map.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/map_entry.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/map_entry_lite.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/map_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/map_field_inl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/map_field_lite.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/map_lite_test_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/map_test_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/map_test_util_impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/map_type_handler.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/message.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/message_lite.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/metadata.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/package_info.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/reflection.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/reflection_internal.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/reflection_ops.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/repeated_field.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/service.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/source_context.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/struct.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomic_sequence_num.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomicops.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomicops_internals_arm64_gcc.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomicops_internals_arm_gcc.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomicops_internals_arm_qnx.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomicops_internals_atomicword_compat.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomicops_internals_generic_c11_atomic.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomicops_internals_generic_gcc.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomicops_internals_mips_gcc.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomicops_internals_power.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomicops_internals_ppc_gcc.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomicops_internals_solaris.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomicops_internals_tsan.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomicops_internals_x86_gcc.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomicops_internals_x86_msvc.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/bytestream.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/callback.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/casts.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/common.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/fastmem.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/hash.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/int128.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/logging.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/macros.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/map_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/mathlimits.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/mathutil.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/mutex.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/once.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/platform_macros.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/port.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/scoped_ptr.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/shared_ptr.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/singleton.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/status.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/status_macros.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/statusor.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/stl_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/stringpiece.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/stringprintf.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/strutil.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/substitute.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/template_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/time.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/type_traits.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/test_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/test_util_lite.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/testing/file.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/testing/googletest.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/text_format.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/timestamp.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/type.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/unknown_field_set.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/field_comparator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/field_mask_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/constants.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/datapiece.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/default_value_objectwriter.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/error_listener.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/expecting_objectwriter.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/field_mask_utility.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/json_escaping.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/json_objectwriter.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/json_stream_parser.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/location_tracker.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/mock_error_listener.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/object_location_tracker.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/object_source.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/object_writer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/proto_writer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/protostream_objectsource.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/protostream_objectwriter.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/structured_objectwriter.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/type_info.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/type_info_test_helper.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/utility.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/json_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/message_differencer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/package_info.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/time_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/type_resolver.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/type_resolver_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/wire_format.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/wire_format_lite.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/wire_format_lite_inl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/wrappers.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/allocator_retry.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/bfc_allocator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/build_graph_options.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/constant_folding.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/copy_tensor.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/costmodel_manager.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/debugger_state_interface.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/device.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/device_factory.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/device_mgr.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/device_set.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/dma_helper.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/eigen_thread_pool.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/executor.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/function.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/graph_optimizer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/graph_runner.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/local_device.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/memory_types.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/mkl_cpu_allocator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/optimization_registry.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/pending_counts.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/process_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/profile_handler.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/rendezvous_mgr.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/session_factory.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/shape_refiner.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/simple_graph_execution_state.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/simple_placer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/stats_publisher_interface.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/step_stats_collector.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/threadpool_device.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/visitable_allocator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/example/example.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/example/example.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/example/example.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/example/example_parser_configuration.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/example/feature.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/example/feature.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/example/feature.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/example/feature_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/allocation_description.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/allocation_description.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/allocation_description.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/allocator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/allocator_registry.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/attr_value.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/attr_value.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/attr_value.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/attr_value_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/bfloat16.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/cancellation.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/common_shape_fns.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/control_flow.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/cost_graph.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/cost_graph.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/cost_graph.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/device_attributes.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/device_attributes.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/device_attributes.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/device_base.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/function.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/function.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/function.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/function.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/graph.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/graph.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/graph.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/graph_def_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/graph_transfer_info.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/graph_transfer_info.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/graph_transfer_info.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/kernel_def.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/kernel_def.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/kernel_def.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/kernel_def_builder.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/log_memory.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/log_memory.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/log_memory.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/log_memory.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/lookup_interface.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/memory_types.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/node_def.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/node_def.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/node_def.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/node_def_builder.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/node_def_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/numeric_op.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/numeric_types.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/op.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/op_def.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/op_def.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/op_def.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/op_def_builder.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/op_def_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/op_kernel.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/op_segment.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/partial_tensor_shape.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/queue_interface.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/reader_interface.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/reader_op_kernel.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/register_types.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/register_types_traits.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/remote_fused_graph_execute_info.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/remote_fused_graph_execute_info.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/remote_fused_graph_execute_info.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/rendezvous.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/resource_handle.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/resource_handle.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/resource_handle.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/resource_mgr.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/resource_op_kernel.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/selective_registration.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/session_state.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/shape_inference.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/step_stats.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/step_stats.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/step_stats.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/summary.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/summary.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/summary.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor_description.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor_description.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor_description.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor_reference.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor_shape.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor_shape.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor_shape.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor_shape.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor_slice.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor_slice.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor_slice.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor_slice.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor_types.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tracking_allocator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/type_index.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/type_traits.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/types.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/types.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/types.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/types.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/unique_tensor_references.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/variable.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/variable.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/variable.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/versions.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/versions.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/versions.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/versions.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/algorithm.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/colors.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/control_flow.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/costmodel.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/default_device.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/edgeset.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/equal_graph_def.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/gradients.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/graph.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/graph_constructor.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/graph_def_builder.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/graph_partition.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/mkl_layout_pass.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/mkl_optimizer_merge.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/mkl_tfconversion_pass.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/node_builder.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/optimizer_cse.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/quantize_training.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/subgraph.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/tensor_id.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/types.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/validate.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/clusters/cluster.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/grappler_item.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/optimizers/graph_optimizer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/optimizers/layout_optimizer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/optimizers/meta_optimizer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/utils.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/kernels/bounds_check.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/kernels/no_op.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/kernels/sendrecv_ops.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/arena.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/bitmap.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/bits.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/blocking_counter.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/casts.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/coding.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/error_codes.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/error_codes.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/error_codes.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/errors.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/notification.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/raw_coding.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/refcount.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/status.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/stringpiece.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/threadpool.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/array_slice.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/array_slice_internal.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/cleanup.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/edit_distance.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/flatmap.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/flatrep.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/flatset.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/inlined_vector.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/int_type.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/iterator_range.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/manual_constructor.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/map_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/optional.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/priority_queue_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/stl_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/top_n.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/hash/crc32c.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/hash/hash.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/histogram/histogram.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/block.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/block_builder.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/buffered_inputstream.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/compression.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/format.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/inputbuffer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/inputstream_interface.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/iterator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/path.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/proto_encode_helper.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/random_inputstream.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/record_reader.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/record_writer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/snappy/snappy_inputbuffer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/snappy/snappy_outputbuffer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/table.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/table_builder.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/table_options.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/two_level_iterator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/zlib_compression_options.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/zlib_inputstream.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/zlib_outputbuffer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/math/math_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/monitoring/collected_metrics.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/monitoring/collection_registry.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/monitoring/counter.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/monitoring/metric_def.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/monitoring/mobile_counter.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/monitoring/mobile_sampler.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/monitoring/sampler.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/png/png_io.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/random/distribution_sampler.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/random/exact_uniform_int.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/random/philox_random.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/random/random.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/random/random_distributions.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/random/simple_philox.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/random/weighted_picker.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/strings/base64.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/strings/numbers.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/strings/ordered_code.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/strings/proto_text_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/strings/scanner.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/strings/str_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/strings/strcat.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/strings/stringprintf.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/wav/wav_io.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/context.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/cpu_feature_guard.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/cpu_info.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/cuda.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/cuda_libdevice_path.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/cupti_wrapper.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/context.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/dynamic_annotations.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/fingerprint.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/from_stream_executor_status.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/integral_types.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/logging.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/mutex.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/notification.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/protobuf.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/stacktrace.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/stream_executor.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/stream_executor_no_cuda.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/strong_hash.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/thread_annotations.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/tracing_impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/demangle.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/denormal.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/dynamic_annotations.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/env.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/env_time.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/file_statistics.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/file_system.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/fingerprint.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/host_info.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/init_main.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/load_library.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/logging.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/macros.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/mem.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/mutex.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/net.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/notification.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/platform.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/png.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/posix/error.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/posix/posix_file_system.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/posix/subprocess.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/prefetch.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/profile_utils/android_armv7a_cpu_utils_helper.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/profile_utils/clock_cycle_profiler.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/profile_utils/cpu_utils.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/profile_utils/i_cpu_utils_helper.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/protobuf.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/protobuf_internal.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/regexp.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/setround.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/snappy.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/stacktrace.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/stream_executor.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/stream_executor_no_cuda.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/strong_hash.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/subprocess.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/tensor_coding.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/thread_annotations.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/tracing.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/types.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/windows/cpu_info.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/config.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/config.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/config.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/control_flow.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/debug.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/debug.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/debug.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/meta_graph.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/named_tensor.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/queue_runner.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/queue_runner.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/queue_runner.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/saved_model.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/saver.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/saver.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/saver.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/tensor_bundle.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/tensor_bundle.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/tensor_bundle.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/tensorflow_server.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/public/session.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/public/session_options.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/public/version.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/bcast.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/command_line_flags.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/cuda_kernel_helper.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/device_name_utils.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/env_var.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/event.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/events_writer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/example_proto_fast_parsing.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/example_proto_helper.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/guarded_philox_random.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/memmapped_file_system.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/memmapped_file_system.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/memmapped_file_system.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/memmapped_file_system.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/memmapped_file_system_writer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/mirror_pad_mode.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/mkl_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/padding.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/port.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/presized_cuckoo_map.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/saved_tensor_slice.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/saved_tensor_slice.pb_text-impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/saved_tensor_slice.pb_text.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/saved_tensor_slice_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/sparse/dim_comparator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/sparse/group_iterator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/sparse/sparse_tensor.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/stat_summarizer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/stream_executor_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/strided_slice_op.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/tensor_format.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/tensor_slice_reader.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/tensor_slice_reader_cache.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/tensor_slice_set.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/tensor_slice_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/tensor_slice_writer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/test_log.pb.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/use_cudnn.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/work_sharder.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/blas.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_activation.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_blas.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_diagnostics.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_dnn.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_driver.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_event.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_fft.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_gpu_executor.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_helpers.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_kernel.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_platform.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_platform_id.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_rng.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_stream.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_timer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/device_description.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/device_memory.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/device_options.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/dnn.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/dso_loader.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/event.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/executor_cache.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/fft.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/gpu_launch_dim.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/host/host_gpu_executor.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/host/host_platform.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/host/host_platform_id.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/host/host_stream.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/host/host_timer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/host_buffer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/kernel.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/kernel_cache_config.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/kernel_spec.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/launch_dim.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/array_slice.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/casts.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/demangle.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/env.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/error.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/human_readable.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/initialize.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/inlined_vector.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/mathutil.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/notification.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/numbers.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/path.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/process_state.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/ptr_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/stacktrace.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/static_threadlocal.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/status.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/status_macros.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/statusor.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/str_util.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/strcat.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/stringpiece.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/stringprintf.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/thread_options.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/threadpool.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/machine_manager.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/multi_platform_manager.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/platform.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/platform/default/mutex.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/platform/logging.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/platform/mutex.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/platform/port.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/platform/thread_annotations.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/plugin.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/plugin_registry.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/rng.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/scratch_allocator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/shared_memory_config.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/stream.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/stream_executor.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/stream_executor_internal.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/stream_executor_pimpl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/temporary_device_memory.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/temporary_memory_manager.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/timer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/trace_listener.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/Eigen/Cholesky
+%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/Eigen/Core
+%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/Eigen/Eigenvalues
+%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/Eigen/LU
+%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/Eigen/QR
+%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/Eigen/SVD
+%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/LICENSE
+%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/unsupported/Eigen/CXX11/FixedPoint
+%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/unsupported/Eigen/CXX11/Tensor
+%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/unsupported/Eigen/CXX11/ThreadPool
+%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/unsupported/Eigen/CXX11/src/FixedPoint/FixedPointTypes.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/unsupported/Eigen/CXX11/src/FixedPoint/MatMatProduct.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/unsupported/Eigen/CXX11/src/FixedPoint/MatMatProductAVX2.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/unsupported/Eigen/CXX11/src/FixedPoint/MatMatProductNEON.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/unsupported/Eigen/CXX11/src/FixedPoint/MatVecProduct.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/unsupported/Eigen/CXX11/src/FixedPoint/PacketMathAVX2.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/unsupported/Eigen/CXX11/src/FixedPoint/PacketMathAVX512.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/unsupported/Eigen/CXX11/src/FixedPoint/TypeCastingAVX2.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/unsupported/Eigen/CXX11/src/FixedPoint/TypeCastingAVX512.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/unsupported/Eigen/SpecialFunctions
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/CMakeLists.txt
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/Tensor
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/TensorSymmetry
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/ThreadPool
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/README.md
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/Tensor.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorContractionSycl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorConvolutionSycl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorGlobalFunctions.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorRandom.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorReductionSycl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorScan.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorSycl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorSyclConvertToDeviceExpression.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorSyclExprConstructor.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorSyclExtractAccessor.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorSyclExtractFunctors.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorSyclFunctors.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorSyclLeafCount.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorSyclPlaceHolderExpr.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorSyclRun.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorSyclTuple.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorVolumePatch.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/ThreadPool/EventCount.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/ThreadPool/RunQueue.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/ThreadPool/SimpleThreadPool.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/ThreadPool/ThreadCancel.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/ThreadPool/ThreadEnvironment.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/ThreadPool/ThreadLocal.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/ThreadPool/ThreadYield.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/util/CXX11Meta.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/util/EmulateArray.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/util/EmulateCXX11Meta.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/util/MaxSizeVector.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/FFT
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/KroneckerProduct
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/MatrixFunctions
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/SpecialFunctions
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/src/FFT/ei_fftw_impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/src/FFT/ei_kissfft_impl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsArrayAPI.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsFunctors.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsHalf.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsImpl.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsPacketMath.h
+%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/src/SpecialFunctions/arch/CUDA/CudaSpecialFunctions.h
+%%PYTHON_SITELIBDIR%%/tensorflow/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/_pywrap_tensorflow_internal.so
+%%PYTHON_SITELIBDIR%%/tensorflow/python/client/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/client/client_lib.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/client/device_lib.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/client/session.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/client/timeline.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/cli/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/cli/analyzer_cli.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/cli/base_ui.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/cli/cli_shared.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/cli/command_parser.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/cli/curses_ui.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/cli/curses_widgets.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/cli/debugger_cli_common.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/cli/offline_analyzer.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/cli/readline_ui.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/cli/stepper_cli.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/cli/tensor_format.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/cli/ui_factory.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/examples/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/examples/debug_errors.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/examples/debug_fibonacci.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/examples/debug_mnist.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/examples/debug_tflearn_iris.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/lib/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/lib/debug_data.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/lib/debug_utils.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/lib/session_debug_testlib.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/lib/source_utils.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/lib/stepper.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/wrappers/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/wrappers/dumping_wrapper.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/wrappers/framework.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/wrappers/grpc_wrapper.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/wrappers/hooks.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/wrappers/local_cli_wrapper.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/checkpoint_utils.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/estimator.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/estimator_lib.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/export/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/export/export.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/export/export_lib.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/export/export_output.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/inputs/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/inputs/inputs.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/inputs/numpy_io.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/inputs/pandas_io.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/inputs/queues/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/inputs/queues/feeding_functions.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/inputs/queues/feeding_queue_runner.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/model_fn.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/run_config.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/common_shapes.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/constant_op.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/cpp_shape_inference_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/device.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/dtypes.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/errors.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/errors_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/framework_lib.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/function.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/graph_io.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/graph_util.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/graph_util_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/importer.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/load_library.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/meta_graph.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/op_def_library.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/op_def_registry.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/random_seed.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/registry.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/sparse_tensor.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/subscribe.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/tensor_shape.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/tensor_util.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/test_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/test_util.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/versions.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/layers/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/layers/base.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/layers/convolutional.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/layers/core.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/layers/layers.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/layers/normalization.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/layers/pooling.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/layers/utils.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/lib/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/lib/io/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/lib/io/file_io.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/lib/io/python_io.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/lib/io/tf_record.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/array_grad.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/array_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/candidate_sampling_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/check_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/clip_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/confusion_matrix.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/control_flow_grad.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/control_flow_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/ctc_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/data_flow_grad.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/data_flow_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/embedding_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/functional_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_array_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_candidate_sampling_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_control_flow_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_ctc_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_data_flow_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_functional_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_image_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_io_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_linalg_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_logging_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_math_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_nn_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_parsing_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_random_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_resource_variable_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_script_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_sdca_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_set_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_sparse_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_spectral_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_state_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_string_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_user_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gradient_checker.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gradients.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gradients_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/histogram_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/image_grad.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/image_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/image_ops_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/init_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/io_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/linalg_grad.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/linalg_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/logging_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/losses/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/losses/losses.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/losses/losses_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/losses/util.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/math_grad.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/math_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/metrics.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/metrics_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/nn.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/nn_grad.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/nn_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/nn_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/numerics.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/parsing_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/partitioned_variables.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/random_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/resource_variable_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/resources.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/rnn.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/rnn_cell_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/script_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/sdca_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/session_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/sets.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/sets_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/sparse_grad.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/sparse_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/special_math_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/spectral_grad.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/spectral_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/standard_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/state_grad.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/state_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/string_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/summary_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/template.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/tensor_array_grad.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/tensor_array_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/variable_scope.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/variables.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/weights_broadcast_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/platform/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/platform/app.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/platform/benchmark.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/platform/control_imports.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/platform/flags.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/platform/gfile.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/platform/googletest.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/platform/parameterized.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/platform/resource_loader.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/platform/status_bar.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/platform/sysconfig.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/platform/test.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/platform/tf_logging.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/pywrap_tensorflow.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/pywrap_tensorflow_internal.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/builder.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/builder_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/constants.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/loader.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/loader_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/main_op.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/main_op_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/saved_model.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/signature_constants.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/signature_def_utils.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/signature_def_utils_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/tag_constants.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/utils.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/utils_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/summary/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/summary/plugin_asset.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/summary/summary.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/summary/summary_iterator.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/summary/writer/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/summary/writer/event_file_writer.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/summary/writer/writer.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/summary/writer/writer_cache.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/tools/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/tools/freeze_graph.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/tools/inspect_checkpoint.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/tools/optimize_for_inference.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/tools/optimize_for_inference_lib.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/tools/print_selective_registration_header.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/tools/selective_registration_header_lib.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/tools/strip_unused.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/tools/strip_unused_lib.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/adadelta.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/adagrad.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/adagrad_da.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/adam.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/basic_loops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/basic_session_run_hooks.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/checkpoint_state_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/coordinator.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/device_setter.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/evaluation.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/ftrl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/gen_training_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/gradient_descent.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/input.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/learning_rate_decay.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/momentum.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/monitored_session.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/moving_averages.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/optimizer.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/proximal_adagrad.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/proximal_gradient_descent.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/queue_runner.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/queue_runner_impl.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/rmsprop.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/saver.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/saver_test_utils.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/server_lib.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/session_manager.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/session_run_hook.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/slot_creator.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/summary_io.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/supervisor.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/sync_replicas_optimizer.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/tensorboard_logging.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/training.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/training_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/training/training_util.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/user_ops/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/user_ops/user_ops.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/util/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/util/all_util.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/util/compat.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/util/decorator_utils.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/util/deprecation.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/util/example_parser_configuration.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/util/future_api.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/util/keyword_args.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/util/nest.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/util/protobuf/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/python/util/protobuf/compare.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/TAG
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/__main__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/backend/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/backend/application.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/backend/event_processing/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/backend/event_processing/directory_watcher.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/backend/event_processing/event_accumulator.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/backend/event_processing/event_file_inspector.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/backend/event_processing/event_file_loader.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/backend/event_processing/event_multiplexer.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/backend/event_processing/io_wrapper.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/backend/event_processing/plugin_asset_util.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/backend/event_processing/reservoir.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/backend/process_graph.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/dist/bazel-html-imports.html
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/dist/index.html
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/dist/tf-tensorboard.html
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/lib/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/lib/css/global.css
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/lib/python/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/lib/python/http_util.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/lib/python/json_util.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/plugins/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/plugins/base_plugin.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/plugins/debugger/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/plugins/debugger/debugger_plugin.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/plugins/projector/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/plugins/projector/projector_plugin.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/tensorboard.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tools/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tools/pip_package/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tools/pip_package/setup.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tools/pip_package/simple_console.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tools/tfprof/__init__.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tools/tfprof/tfprof_log_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tools/tfprof/tfprof_options_pb2.py
+%%PYTHON_SITELIBDIR%%/tensorflow/tools/tfprof/tfprof_output_pb2.py

File Metadata

Mime Type
text/plain
Expires
Sat, Nov 15, 11:51 AM (7 h, 5 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
25325421
Default Alt Text
D11194.id29599.diff (412 KB)

Event Timeline