diff --git a/.gitignore b/.gitignore
index 211028c..f2c5bbc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -8,3 +8,6 @@ map1090
*.swp
.~
thumbs.db
+
+external/
+.gradle
diff --git a/AppData.cpp b/AppData.cpp
index 20b7578..22626d0 100644
--- a/AppData.cpp
+++ b/AppData.cpp
@@ -1,5 +1,5 @@
#include "AppData.h"
-
+#include "anet.h"
//
//carried over from view1090.c
//
diff --git a/Makefile b/Makefile
index 37ad1f8..e1c34e0 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
# sure that the variable PREFIX is defined, e.g. make PREFIX=/usr/local
#
-CFLAGS=-O2 -g -Wno-write-strings
+CPPFLAGS=-O2 -g -Wno-write-strings -I/usr/include/SDL2
LIBS=-lm -lSDL2 -lSDL2_ttf -lSDL2_gfx
CC=g++
diff --git a/README.md b/README.md
index 76c7da5..727032f 100644
--- a/README.md
+++ b/README.md
@@ -9,6 +9,8 @@ Tested and working on Ubuntu 18.04, Raspbian Stretch, Buster
```
sudo apt-get install libsdl2-dev libsdl2-ttf-dev libsdl2-gfx-dev librtlsdr-dev
```
+ Note: the sdl2-config output that would normally be passed to compiler flags points to the wrong directory on my distro. Instead I have manually linked to /usr/include/sdl2
+
Note: On Raspbian the SDL2 package requires X to be running. See the Raspberry Pi section for notes on running from the terminal and other improvements.
2. Download and build spidr
@@ -28,6 +30,12 @@ The getmap.sh pulls the svg file for the contiguous 48 US states and produces a
./getmap.sh
```
+## Android Notes [temp]
+
+to change Android version or Arm type
+android/app/build.gradle -> set compileSdkVersion, targetSdkVersion, abiFilters
+android/sdl2/build.gradle -> set compileSdkVersion, targetSdkVersion, abiFilters
+
###RUNNING
1. Start dump1090 (http://www.github.com/MalcolmRobb/dump1090) locally in network mode:
diff --git a/View.cpp b/View.cpp
index 8701742..babeb16 100644
--- a/View.cpp
+++ b/View.cpp
@@ -1,5 +1,9 @@
-#include "SDL2/SDL2_rotozoom.h"
-#include "SDL2/SDL2_gfxPrimitives.h"
+
+#include "SDL2_rotozoom.h"
+#include "SDL2_gfxPrimitives.h"
+
+// #include "SDL2/SDL2_rotozoom.h"
+// #include "SDL2/SDL2_gfxPrimitives.h"
//color schemes
#include "parula.h"
#include "monokai.h"
diff --git a/View.h b/View.h
index d8a12ba..550f652 100644
--- a/View.h
+++ b/View.h
@@ -3,8 +3,11 @@
#include "AppData.h"
#include "Map.h"
-#include "SDL2/SDL.h"
-#include "SDL2/SDL_ttf.h"
+//#include "SDL2/SDL.h"
+//#include "SDL2/SDL_ttf.h"
+#include
+#include "SDL_ttf.h"
+
//defs - should all move to config file setup
#define ROUND_RADIUS 3 //radius of text box corners
diff --git a/a.out b/a.out
new file mode 100755
index 0000000..8d02a22
Binary files /dev/null and b/a.out differ
diff --git a/android/.gitignore b/android/.gitignore
new file mode 100644
index 0000000..b16bce7
--- /dev/null
+++ b/android/.gitignore
@@ -0,0 +1,3 @@
+distribution/
+.gradle/
+.idea/
diff --git a/android/CMakeLists.txt b/android/CMakeLists.txt
new file mode 100644
index 0000000..c17d500
--- /dev/null
+++ b/android/CMakeLists.txt
@@ -0,0 +1,28 @@
+cmake_minimum_required(VERSION 3.4.1)
+
+message(${CMAKE_SOURCE_DIR})
+string(TOLOWER ${CMAKE_BUILD_TYPE} ANDROID_BUILD_DIR)
+set(DISTRIBUTION_DIR ${CMAKE_SOURCE_DIR}/distribution/android/SDL2/intermediates/ndkBuild)
+set(SOURCE_FILES ../map1090.cpp ../AppData.cpp ../AircraftList.cpp ../Aircraft.cpp ../anet.c ../interactive.c ../mode_ac.c ../mode_s.c ../net_io.c ../Input.cpp ../View.cpp ../Map.cpp ../parula.c ../monokai.c)
+
+set(SDL_LOCATION ${CMAKE_SOURCE_DIR}/external/SDL2)
+
+add_library( SDL2 SHARED IMPORTED )
+add_library( SDL2_ttf SHARED IMPORTED )
+add_library( SDL2_gfx SHARED IMPORTED )
+
+set_target_properties(SDL2 PROPERTIES IMPORTED_LOCATION
+${DISTRIBUTION_DIR}/${ANDROID_BUILD_DIR}/obj/local/${ANDROID_ABI}/libSDL2.so)
+set_target_properties(SDL2_ttf PROPERTIES IMPORTED_LOCATION
+${DISTRIBUTION_DIR}/${ANDROID_BUILD_DIR}/obj/local/${ANDROID_ABI}/libSDL2_ttf.so)
+set_target_properties(SDL2_gfx PROPERTIES IMPORTED_LOCATION
+${DISTRIBUTION_DIR}/${ANDROID_BUILD_DIR}/obj/local/${ANDROID_ABI}/libSDL2_gfx.so)
+
+include_directories(${SDL_LOCATION}/SDL2/include)
+include_directories(${SDL_LOCATION}/SDL2_ttf)
+include_directories(${SDL_LOCATION}/SDL2_gfx)
+
+
+add_library( main SHARED ${SDL_LOCATION}/SDL2/src/main/android/SDL_android_main.c ${SOURCE_FILES} )
+
+target_link_libraries( main SDL2 SDL2_ttf SDL2_gfx log)
diff --git a/android/SDL2/.gitignore b/android/SDL2/.gitignore
new file mode 100644
index 0000000..8375cf7
--- /dev/null
+++ b/android/SDL2/.gitignore
@@ -0,0 +1 @@
+.externalNativeBuild/
diff --git a/android/SDL2/build.gradle b/android/SDL2/build.gradle
new file mode 100644
index 0000000..39cafef
--- /dev/null
+++ b/android/SDL2/build.gradle
@@ -0,0 +1,38 @@
+apply plugin: 'com.android.library'
+
+android {
+ compileSdkVersion 29
+ buildToolsVersion "29.0.3"
+
+ defaultConfig {
+ minSdkVersion 21
+ targetSdkVersion 29
+ versionCode 1
+ versionName "1.0"
+
+ testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
+ ndk {
+ abiFilters "arm64-v8a"
+ }
+ }
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+ }
+ }
+ externalNativeBuild {
+ ndkBuild {
+ path '../external/SDL2/Android.mk'
+ }
+ }
+}
+
+dependencies {
+ compile fileTree(dir: 'libs', include: ['*.jar'])
+ androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
+ exclude group: 'com.android.support', module: 'support-annotations'
+ })
+ compile 'com.android.support:appcompat-v7:28.0.0'
+ testCompile 'junit:junit:4.12'
+}
diff --git a/android/SDL2/proguard-rules.pro b/android/SDL2/proguard-rules.pro
new file mode 100644
index 0000000..c662747
--- /dev/null
+++ b/android/SDL2/proguard-rules.pro
@@ -0,0 +1,25 @@
+# Add project specific ProGuard rules here.
+# By default, the flags in this file are appended to flags specified
+# in /home/luap/Logiciels/android-sdk/tools/proguard/proguard-android.txt
+# You can edit the include path and order by changing the proguardFiles
+# directive in build.gradle.
+#
+# For more details, see
+# http://developer.android.com/guide/developing/tools/proguard.html
+
+# Add any project specific keep options here:
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+# public *;
+#}
+
+# Uncomment this to preserve the line number information for
+# debugging stack traces.
+#-keepattributes SourceFile,LineNumberTable
+
+# If you keep the line number information, uncomment this to
+# hide the original source file name.
+#-renamesourcefileattribute SourceFile
diff --git a/android/SDL2/src/main/AndroidManifest.xml b/android/SDL2/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..dcf7107
--- /dev/null
+++ b/android/SDL2/src/main/AndroidManifest.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
diff --git a/android/SDL2/src/main/res/values/strings.xml b/android/SDL2/src/main/res/values/strings.xml
new file mode 100644
index 0000000..6461872
--- /dev/null
+++ b/android/SDL2/src/main/res/values/strings.xml
@@ -0,0 +1,3 @@
+
+ SDL2
+
diff --git a/android/app/.gitignore b/android/app/.gitignore
new file mode 100644
index 0000000..8375cf7
--- /dev/null
+++ b/android/app/.gitignore
@@ -0,0 +1 @@
+.externalNativeBuild/
diff --git a/android/app/build.gradle b/android/app/build.gradle
new file mode 100644
index 0000000..acb0f6b
--- /dev/null
+++ b/android/app/build.gradle
@@ -0,0 +1,45 @@
+apply plugin: 'com.android.application'
+
+android {
+ compileSdkVersion 29
+ buildToolsVersion "29.0.3"
+ defaultConfig {
+ applicationId "nmatsuda.com.github.spidr"
+ minSdkVersion 21
+ targetSdkVersion 29
+ versionCode 1
+ versionName "1.0"
+ testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
+ externalNativeBuild {
+ cmake {
+ cppFlags "-std=c++11 -frtti -fexceptions -Wno-narrowing"
+ }
+ }
+ ndk {
+ abiFilters "arm64-v8a"
+ }
+ }
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+ }
+ }
+ externalNativeBuild {
+ cmake {
+ path "../CMakeLists.txt"
+ }
+ }
+}
+
+dependencies {
+ compile fileTree(dir: 'libs', include: ['*.jar'])
+ androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
+ exclude group: 'com.android.support', module: 'support-annotations'
+ })
+ compile 'com.android.support:appcompat-v7:28.0.0'
+ // Uncomment this line to build SDL2
+ // Uncomment a line in ../gradle.settings as well
+ compile project(':SDL2')
+ testCompile 'junit:junit:4.12'
+}
diff --git a/android/app/proguard-rules.pro b/android/app/proguard-rules.pro
new file mode 100644
index 0000000..c662747
--- /dev/null
+++ b/android/app/proguard-rules.pro
@@ -0,0 +1,25 @@
+# Add project specific ProGuard rules here.
+# By default, the flags in this file are appended to flags specified
+# in /home/luap/Logiciels/android-sdk/tools/proguard/proguard-android.txt
+# You can edit the include path and order by changing the proguardFiles
+# directive in build.gradle.
+#
+# For more details, see
+# http://developer.android.com/guide/developing/tools/proguard.html
+
+# Add any project specific keep options here:
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+# public *;
+#}
+
+# Uncomment this to preserve the line number information for
+# debugging stack traces.
+#-keepattributes SourceFile,LineNumberTable
+
+# If you keep the line number information, uncomment this to
+# hide the original source file name.
+#-renamesourcefileattribute SourceFile
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..642077c
--- /dev/null
+++ b/android/app/src/main/AndroidManifest.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/app/src/main/assets/font/DroidSansMono.ttf.REMOVED.git-id b/android/app/src/main/assets/font/DroidSansMono.ttf.REMOVED.git-id
new file mode 100644
index 0000000..aba6c11
--- /dev/null
+++ b/android/app/src/main/assets/font/DroidSansMono.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+a007071944f7c90020e798eea53b10065e2b45a5
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/Envy Code R Bold.ttf.REMOVED.git-id b/android/app/src/main/assets/font/Envy Code R Bold.ttf.REMOVED.git-id
new file mode 100644
index 0000000..aa348d6
--- /dev/null
+++ b/android/app/src/main/assets/font/Envy Code R Bold.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+5e04b16605e6f165afada700fa09ec2c744bd4ca
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/Envy Code R Italic.ttf.REMOVED.git-id b/android/app/src/main/assets/font/Envy Code R Italic.ttf.REMOVED.git-id
new file mode 100644
index 0000000..080db4a
--- /dev/null
+++ b/android/app/src/main/assets/font/Envy Code R Italic.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+cf67fe0caf3e7853db2af48cdcd28a4522a15572
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/Envy Code R.ttf.REMOVED.git-id b/android/app/src/main/assets/font/Envy Code R.ttf.REMOVED.git-id
new file mode 100644
index 0000000..5c6e31e
--- /dev/null
+++ b/android/app/src/main/assets/font/Envy Code R.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+e8e4a6045fa8374ca37fd7f53dfa95c61142ae98
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/Monoid-Bold.ttf.REMOVED.git-id b/android/app/src/main/assets/font/Monoid-Bold.ttf.REMOVED.git-id
new file mode 100644
index 0000000..aac093f
--- /dev/null
+++ b/android/app/src/main/assets/font/Monoid-Bold.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+730c63d4b5435fc57d6551f5a71d64b7e7d60fbb
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/Monoid-Italic.ttf.REMOVED.git-id b/android/app/src/main/assets/font/Monoid-Italic.ttf.REMOVED.git-id
new file mode 100644
index 0000000..3e0aa9e
--- /dev/null
+++ b/android/app/src/main/assets/font/Monoid-Italic.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+97a5b8f6ed4324088d095d616a147d05cfe8917a
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/Monoid-Regular.ttf.REMOVED.git-id b/android/app/src/main/assets/font/Monoid-Regular.ttf.REMOVED.git-id
new file mode 100644
index 0000000..bb7eaee
--- /dev/null
+++ b/android/app/src/main/assets/font/Monoid-Regular.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+a09e9faff2c39c9dc56f6a0101a300851922e78d
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/Monoid-Retina.ttf.REMOVED.git-id b/android/app/src/main/assets/font/Monoid-Retina.ttf.REMOVED.git-id
new file mode 100644
index 0000000..e77b083
--- /dev/null
+++ b/android/app/src/main/assets/font/Monoid-Retina.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+ec881731ace782f1f692c4d9afabe1710ef6ac25
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/PxPlus/PxPlus_AmstradPC1512-2y.ttf.REMOVED.git-id b/android/app/src/main/assets/font/PxPlus/PxPlus_AmstradPC1512-2y.ttf.REMOVED.git-id
new file mode 100644
index 0000000..f455312
--- /dev/null
+++ b/android/app/src/main/assets/font/PxPlus/PxPlus_AmstradPC1512-2y.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+091001c845fa041bb58677bdb97edc546a43b72d
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/PxPlus/PxPlus_AmstradPC1512.ttf.REMOVED.git-id b/android/app/src/main/assets/font/PxPlus/PxPlus_AmstradPC1512.ttf.REMOVED.git-id
new file mode 100644
index 0000000..ec43a52
--- /dev/null
+++ b/android/app/src/main/assets/font/PxPlus/PxPlus_AmstradPC1512.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+248a001641f39a4ad8b75387b889698120fd4983
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_BIOS-2x.ttf.REMOVED.git-id b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_BIOS-2x.ttf.REMOVED.git-id
new file mode 100644
index 0000000..0177c5d
--- /dev/null
+++ b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_BIOS-2x.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+130bb4a9cecd7210769427502b3ee33cdb097341
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_BIOS-2y.ttf.REMOVED.git-id b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_BIOS-2y.ttf.REMOVED.git-id
new file mode 100644
index 0000000..b5a67e7
--- /dev/null
+++ b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_BIOS-2y.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+2a1ec89b5722143dfbdee504bbddab3a48b7bdd6
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_BIOS.ttf.REMOVED.git-id b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_BIOS.ttf.REMOVED.git-id
new file mode 100644
index 0000000..7ff8681
--- /dev/null
+++ b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_BIOS.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+672aac709f31f3596fe66420cbc409122c8cb706
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_CGA-2y.ttf.REMOVED.git-id b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_CGA-2y.ttf.REMOVED.git-id
new file mode 100644
index 0000000..357dec5
--- /dev/null
+++ b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_CGA-2y.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+f20e8486e0becccceddade23c1f89d5336aebc49
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_CGA.ttf.REMOVED.git-id b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_CGA.ttf.REMOVED.git-id
new file mode 100644
index 0000000..d4bbba6
--- /dev/null
+++ b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_CGA.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+11cbae78cf937af2f5c0236b8f86cad443162a2f
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_CGAthin-2y.ttf.REMOVED.git-id b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_CGAthin-2y.ttf.REMOVED.git-id
new file mode 100644
index 0000000..5371b0c
--- /dev/null
+++ b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_CGAthin-2y.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+e8aa21e61df3e92fb290abc35215afdfe9a6db0a
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_CGAthin.ttf.REMOVED.git-id b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_CGAthin.ttf.REMOVED.git-id
new file mode 100644
index 0000000..ea69cca
--- /dev/null
+++ b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_CGAthin.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+bca6a642079482aab1d8d68488c6302c9e0e284d
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_EGA8-2x.ttf.REMOVED.git-id b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_EGA8-2x.ttf.REMOVED.git-id
new file mode 100644
index 0000000..dde90b5
--- /dev/null
+++ b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_EGA8-2x.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+5aeb931af933ee4dd2557a465ecadf908dc53978
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_EGA8.ttf.REMOVED.git-id b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_EGA8.ttf.REMOVED.git-id
new file mode 100644
index 0000000..8439bf8
--- /dev/null
+++ b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_EGA8.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+22983e3d94e5c6e9c3f85f2bb6aff805b31657d0
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_EGA9-2x.ttf.REMOVED.git-id b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_EGA9-2x.ttf.REMOVED.git-id
new file mode 100644
index 0000000..15c8736
--- /dev/null
+++ b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_EGA9-2x.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+66c93d8a95903ec73a80ea4f49811d23525ed967
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_EGA9.ttf.REMOVED.git-id b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_EGA9.ttf.REMOVED.git-id
new file mode 100644
index 0000000..dad2805
--- /dev/null
+++ b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_EGA9.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+d07ca5d41b3a257274f42c5fe0b402a672ea612a
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_MDA.ttf.REMOVED.git-id b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_MDA.ttf.REMOVED.git-id
new file mode 100644
index 0000000..c85933c
--- /dev/null
+++ b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_MDA.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+db3b7b20ab68a2010a29158ad5a86a1fff1f86e5
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_VGA8-2x.ttf.REMOVED.git-id b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_VGA8-2x.ttf.REMOVED.git-id
new file mode 100644
index 0000000..5d81c78
--- /dev/null
+++ b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_VGA8-2x.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+6963c72346edf4b03a76271242ca933ac9afb750
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_VGA8.ttf.REMOVED.git-id b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_VGA8.ttf.REMOVED.git-id
new file mode 100644
index 0000000..336ad79
--- /dev/null
+++ b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_VGA8.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+0368d2bbae0b02dfeeb66950db2f79109714756e
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_VGA9-2x.ttf.REMOVED.git-id b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_VGA9-2x.ttf.REMOVED.git-id
new file mode 100644
index 0000000..e2201ea
--- /dev/null
+++ b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_VGA9-2x.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+f159709859ade068ba25e93720a5c8abc2fd20ce
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_VGA9.ttf.REMOVED.git-id b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_VGA9.ttf.REMOVED.git-id
new file mode 100644
index 0000000..97b020d
--- /dev/null
+++ b/android/app/src/main/assets/font/PxPlus/PxPlus_IBM_VGA9.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+53c606887962f52031d77dd4fe9c1ce85ce0783e
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/PxPlus/PxPlus_TandyNew_225-2y.ttf.REMOVED.git-id b/android/app/src/main/assets/font/PxPlus/PxPlus_TandyNew_225-2y.ttf.REMOVED.git-id
new file mode 100644
index 0000000..d0e8092
--- /dev/null
+++ b/android/app/src/main/assets/font/PxPlus/PxPlus_TandyNew_225-2y.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+e52ba0d0e32c0a8a9de183dc11352f59c754c764
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/PxPlus/PxPlus_TandyNew_225.ttf.REMOVED.git-id b/android/app/src/main/assets/font/PxPlus/PxPlus_TandyNew_225.ttf.REMOVED.git-id
new file mode 100644
index 0000000..5a95e3a
--- /dev/null
+++ b/android/app/src/main/assets/font/PxPlus/PxPlus_TandyNew_225.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+f279c6703790767cc5efae5941913527c039cb0b
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/PxPlus/PxPlus_TandyNew_TV-2y.ttf.REMOVED.git-id b/android/app/src/main/assets/font/PxPlus/PxPlus_TandyNew_TV-2y.ttf.REMOVED.git-id
new file mode 100644
index 0000000..b42dc2f
--- /dev/null
+++ b/android/app/src/main/assets/font/PxPlus/PxPlus_TandyNew_TV-2y.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+653a1008f0ee073bafcd84e21bddd930e03579b1
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/PxPlus/PxPlus_TandyNew_TV.ttf.REMOVED.git-id b/android/app/src/main/assets/font/PxPlus/PxPlus_TandyNew_TV.ttf.REMOVED.git-id
new file mode 100644
index 0000000..11015b7
--- /dev/null
+++ b/android/app/src/main/assets/font/PxPlus/PxPlus_TandyNew_TV.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+d206e1de86a19ab735257abba83e25bd1d296ebb
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/PxPlus/PxPlus_VGA_SquarePx.ttf.REMOVED.git-id b/android/app/src/main/assets/font/PxPlus/PxPlus_VGA_SquarePx.ttf.REMOVED.git-id
new file mode 100644
index 0000000..8d9102d
--- /dev/null
+++ b/android/app/src/main/assets/font/PxPlus/PxPlus_VGA_SquarePx.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+9fe3e4aecd84c498563c3af03fe7050924915f60
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/TerminusTTF-4.46.0.ttf.REMOVED.git-id b/android/app/src/main/assets/font/TerminusTTF-4.46.0.ttf.REMOVED.git-id
new file mode 100644
index 0000000..0fe2e2e
--- /dev/null
+++ b/android/app/src/main/assets/font/TerminusTTF-4.46.0.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+eafa3a6e408def39bcd002f60a6d9a9810d54234
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/TerminusTTF-Bold-4.46.0.ttf.REMOVED.git-id b/android/app/src/main/assets/font/TerminusTTF-Bold-4.46.0.ttf.REMOVED.git-id
new file mode 100644
index 0000000..c1e10e0
--- /dev/null
+++ b/android/app/src/main/assets/font/TerminusTTF-Bold-4.46.0.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+9dc2aed0a76993fd7ba9c28e0f55fce873a8c790
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/Ubuntu-B.ttf.REMOVED.git-id b/android/app/src/main/assets/font/Ubuntu-B.ttf.REMOVED.git-id
new file mode 100644
index 0000000..d8c3702
--- /dev/null
+++ b/android/app/src/main/assets/font/Ubuntu-B.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+b173da27417c00101dff72617f9b9a2b80ecc8f3
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/Ubuntu-BI.ttf.REMOVED.git-id b/android/app/src/main/assets/font/Ubuntu-BI.ttf.REMOVED.git-id
new file mode 100644
index 0000000..0a52557
--- /dev/null
+++ b/android/app/src/main/assets/font/Ubuntu-BI.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+72a5a99ac0c781eb60dd8721ae93eedda298e07e
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/Ubuntu-C.ttf.REMOVED.git-id b/android/app/src/main/assets/font/Ubuntu-C.ttf.REMOVED.git-id
new file mode 100644
index 0000000..cf2e7e8
--- /dev/null
+++ b/android/app/src/main/assets/font/Ubuntu-C.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+602a3ee4ab20743037eee6daa1b304fa680967b6
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/Ubuntu-L.ttf.REMOVED.git-id b/android/app/src/main/assets/font/Ubuntu-L.ttf.REMOVED.git-id
new file mode 100644
index 0000000..fdcf7fa
--- /dev/null
+++ b/android/app/src/main/assets/font/Ubuntu-L.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+ed0f5bce879796461ebb93969d28a2bbb35efd0f
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/Ubuntu-LI.ttf.REMOVED.git-id b/android/app/src/main/assets/font/Ubuntu-LI.ttf.REMOVED.git-id
new file mode 100644
index 0000000..7c9dda5
--- /dev/null
+++ b/android/app/src/main/assets/font/Ubuntu-LI.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+c6cec55fcd5d8e00347661eba8684f848065594e
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/Ubuntu-M.ttf.REMOVED.git-id b/android/app/src/main/assets/font/Ubuntu-M.ttf.REMOVED.git-id
new file mode 100644
index 0000000..fcce345
--- /dev/null
+++ b/android/app/src/main/assets/font/Ubuntu-M.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+ca9c03a4767153b6d2f64c1d8909525ba39bb8d7
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/Ubuntu-MI.ttf.REMOVED.git-id b/android/app/src/main/assets/font/Ubuntu-MI.ttf.REMOVED.git-id
new file mode 100644
index 0000000..e28f8bb
--- /dev/null
+++ b/android/app/src/main/assets/font/Ubuntu-MI.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+e8d186c510a26f1b4319bbb797c3ee18cb104e26
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/Ubuntu-R.ttf.REMOVED.git-id b/android/app/src/main/assets/font/Ubuntu-R.ttf.REMOVED.git-id
new file mode 100644
index 0000000..f146cda
--- /dev/null
+++ b/android/app/src/main/assets/font/Ubuntu-R.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+d748728a20789bf5f95e524f3d508f54c67f9475
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/Ubuntu-RI.ttf.REMOVED.git-id b/android/app/src/main/assets/font/Ubuntu-RI.ttf.REMOVED.git-id
new file mode 100644
index 0000000..64b1304
--- /dev/null
+++ b/android/app/src/main/assets/font/Ubuntu-RI.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+4f2d2bc7cb6ae34d90066e1b330dc18ae2386e38
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/UbuntuMono-B.ttf.REMOVED.git-id b/android/app/src/main/assets/font/UbuntuMono-B.ttf.REMOVED.git-id
new file mode 100644
index 0000000..45ccf0d
--- /dev/null
+++ b/android/app/src/main/assets/font/UbuntuMono-B.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+7bd6665765768ae885e2868623e7e9c2fd0cfc8a
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/UbuntuMono-BI.ttf.REMOVED.git-id b/android/app/src/main/assets/font/UbuntuMono-BI.ttf.REMOVED.git-id
new file mode 100644
index 0000000..53e6806
--- /dev/null
+++ b/android/app/src/main/assets/font/UbuntuMono-BI.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+6c5b8ba023e41689a2e14dc3c88f978e3188a1de
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/UbuntuMono-R.ttf.REMOVED.git-id b/android/app/src/main/assets/font/UbuntuMono-R.ttf.REMOVED.git-id
new file mode 100644
index 0000000..86fed0a
--- /dev/null
+++ b/android/app/src/main/assets/font/UbuntuMono-R.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+fdd309d716629f4e5339d5e5508225ed857a3ede
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/UbuntuMono-RI.ttf.REMOVED.git-id b/android/app/src/main/assets/font/UbuntuMono-RI.ttf.REMOVED.git-id
new file mode 100644
index 0000000..a1689b5
--- /dev/null
+++ b/android/app/src/main/assets/font/UbuntuMono-RI.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+18f81a29258d13e1d6f1ce98cdd167091ea9bd4a
\ No newline at end of file
diff --git a/android/app/src/main/assets/font/unifont.ttf.REMOVED.git-id b/android/app/src/main/assets/font/unifont.ttf.REMOVED.git-id
new file mode 100644
index 0000000..7475c33
--- /dev/null
+++ b/android/app/src/main/assets/font/unifont.ttf.REMOVED.git-id
@@ -0,0 +1 @@
+8ee248f748192c6ab6b2f5a1c18979d5bb16e646
\ No newline at end of file
diff --git a/android/app/src/main/java/nmatsuda/com/github/SPIDR/SPIDR.java b/android/app/src/main/java/nmatsuda/com/github/SPIDR/SPIDR.java
new file mode 100644
index 0000000..dd26014
--- /dev/null
+++ b/android/app/src/main/java/nmatsuda/com/github/SPIDR/SPIDR.java
@@ -0,0 +1,53 @@
+package nmatsuda.com.github.spidr;
+
+import org.libsdl.app.SDLActivity;
+import android.view.View;
+import android.os.Bundle;
+
+public class SPIDR extends SDLActivity
+{
+ /**
+ * This method is called by SDL before loading the native shared libraries.
+ * It can be overridden to provide names of shared libraries to be loaded.
+ * The default implementation returns the defaults. It never returns null.
+ * An array returned by a new implementation must at least contain "SDL2".
+ * Also keep in mind that the order the libraries are loaded may matter.
+ *
+ * @return names of shared libraries to be loaded (e.g. "SDL2", "main").
+ */
+ @Override
+ protected String[] getLibraries() {
+ return new String[]{
+ "SDL2",
+ "SDL2_ttf",
+ "SDL2_gfx",
+ "main"
+ };
+ }
+
+ @Override
+ protected void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+
+ hideSystemUI();
+}
+ @Override
+ public void onWindowFocusChanged(boolean hasFocus) {
+ super.onWindowFocusChanged(hasFocus);
+
+ // When the window loses focus (e.g. the action overflow is shown),
+ // cancel any pending hide action. When the window gains focus,
+ // hide the system UI.
+ hideSystemUI();
+ }
+
+ private void hideSystemUI() {
+ getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE
+ | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
+ | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
+ | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
+ | View.SYSTEM_UI_FLAG_FULLSCREEN
+ | View.SYSTEM_UI_FLAG_LOW_PROFILE
+ | View.SYSTEM_UI_FLAG_IMMERSIVE);
+ }
+}
diff --git a/android/app/src/main/java/org/libsdl/app/SDL.java b/android/app/src/main/java/org/libsdl/app/SDL.java
new file mode 100644
index 0000000..cfe4830
--- /dev/null
+++ b/android/app/src/main/java/org/libsdl/app/SDL.java
@@ -0,0 +1,37 @@
+package org.libsdl.app;
+
+import android.content.Context;
+
+/**
+ SDL library initialization
+*/
+public class SDL {
+
+ // This function should be called first and sets up the native code
+ // so it can call into the Java classes
+ public static void setupJNI() {
+ SDLActivity.nativeSetupJNI();
+ SDLAudioManager.nativeSetupJNI();
+ SDLControllerManager.nativeSetupJNI();
+ }
+
+ // This function should be called each time the activity is started
+ public static void initialize() {
+ setContext(null);
+
+ SDLActivity.initialize();
+ SDLAudioManager.initialize();
+ SDLControllerManager.initialize();
+ }
+
+ // This function stores the current activity (SDL or not)
+ public static void setContext(Context context) {
+ mContext = context;
+ }
+
+ public static Context getContext() {
+ return mContext;
+ }
+
+ protected static Context mContext;
+}
diff --git a/android/app/src/main/java/org/libsdl/app/SDLActivity.java.REMOVED.git-id b/android/app/src/main/java/org/libsdl/app/SDLActivity.java.REMOVED.git-id
new file mode 100644
index 0000000..858740e
--- /dev/null
+++ b/android/app/src/main/java/org/libsdl/app/SDLActivity.java.REMOVED.git-id
@@ -0,0 +1 @@
+8c363ed5ba9ff45cd6324015f1ce04d428922e69
\ No newline at end of file
diff --git a/android/app/src/main/java/org/libsdl/app/SDLAudioManager.java b/android/app/src/main/java/org/libsdl/app/SDLAudioManager.java
new file mode 100644
index 0000000..26baf82
--- /dev/null
+++ b/android/app/src/main/java/org/libsdl/app/SDLAudioManager.java
@@ -0,0 +1,178 @@
+package org.libsdl.app;
+
+import android.media.*;
+import android.util.Log;
+
+public class SDLAudioManager
+{
+ protected static final String TAG = "SDLAudio";
+
+ protected static AudioTrack mAudioTrack;
+ protected static AudioRecord mAudioRecord;
+
+ public static void initialize() {
+ mAudioTrack = null;
+ mAudioRecord = null;
+ }
+
+ // Audio
+
+ /**
+ * This method is called by SDL using JNI.
+ */
+ public static int audioOpen(int sampleRate, boolean is16Bit, boolean isStereo, int desiredFrames) {
+ int channelConfig = isStereo ? AudioFormat.CHANNEL_CONFIGURATION_STEREO : AudioFormat.CHANNEL_CONFIGURATION_MONO;
+ int audioFormat = is16Bit ? AudioFormat.ENCODING_PCM_16BIT : AudioFormat.ENCODING_PCM_8BIT;
+ int frameSize = (isStereo ? 2 : 1) * (is16Bit ? 2 : 1);
+
+ Log.v(TAG, "SDL audio: wanted " + (isStereo ? "stereo" : "mono") + " " + (is16Bit ? "16-bit" : "8-bit") + " " + (sampleRate / 1000f) + "kHz, " + desiredFrames + " frames buffer");
+
+ // Let the user pick a larger buffer if they really want -- but ye
+ // gods they probably shouldn't, the minimums are horrifyingly high
+ // latency already
+ desiredFrames = Math.max(desiredFrames, (AudioTrack.getMinBufferSize(sampleRate, channelConfig, audioFormat) + frameSize - 1) / frameSize);
+
+ if (mAudioTrack == null) {
+ mAudioTrack = new AudioTrack(AudioManager.STREAM_MUSIC, sampleRate,
+ channelConfig, audioFormat, desiredFrames * frameSize, AudioTrack.MODE_STREAM);
+
+ // Instantiating AudioTrack can "succeed" without an exception and the track may still be invalid
+ // Ref: https://android.googlesource.com/platform/frameworks/base/+/refs/heads/master/media/java/android/media/AudioTrack.java
+ // Ref: http://developer.android.com/reference/android/media/AudioTrack.html#getState()
+
+ if (mAudioTrack.getState() != AudioTrack.STATE_INITIALIZED) {
+ Log.e(TAG, "Failed during initialization of Audio Track");
+ mAudioTrack = null;
+ return -1;
+ }
+
+ mAudioTrack.play();
+ }
+
+ Log.v(TAG, "SDL audio: got " + ((mAudioTrack.getChannelCount() >= 2) ? "stereo" : "mono") + " " + ((mAudioTrack.getAudioFormat() == AudioFormat.ENCODING_PCM_16BIT) ? "16-bit" : "8-bit") + " " + (mAudioTrack.getSampleRate() / 1000f) + "kHz, " + desiredFrames + " frames buffer");
+
+ return 0;
+ }
+
+ /**
+ * This method is called by SDL using JNI.
+ */
+ public static void audioWriteShortBuffer(short[] buffer) {
+ if (mAudioTrack == null) {
+ Log.e(TAG, "Attempted to make audio call with uninitialized audio!");
+ return;
+ }
+
+ for (int i = 0; i < buffer.length; ) {
+ int result = mAudioTrack.write(buffer, i, buffer.length - i);
+ if (result > 0) {
+ i += result;
+ } else if (result == 0) {
+ try {
+ Thread.sleep(1);
+ } catch(InterruptedException e) {
+ // Nom nom
+ }
+ } else {
+ Log.w(TAG, "SDL audio: error return from write(short)");
+ return;
+ }
+ }
+ }
+
+ /**
+ * This method is called by SDL using JNI.
+ */
+ public static void audioWriteByteBuffer(byte[] buffer) {
+ if (mAudioTrack == null) {
+ Log.e(TAG, "Attempted to make audio call with uninitialized audio!");
+ return;
+ }
+
+ for (int i = 0; i < buffer.length; ) {
+ int result = mAudioTrack.write(buffer, i, buffer.length - i);
+ if (result > 0) {
+ i += result;
+ } else if (result == 0) {
+ try {
+ Thread.sleep(1);
+ } catch(InterruptedException e) {
+ // Nom nom
+ }
+ } else {
+ Log.w(TAG, "SDL audio: error return from write(byte)");
+ return;
+ }
+ }
+ }
+
+ /**
+ * This method is called by SDL using JNI.
+ */
+ public static int captureOpen(int sampleRate, boolean is16Bit, boolean isStereo, int desiredFrames) {
+ int channelConfig = isStereo ? AudioFormat.CHANNEL_CONFIGURATION_STEREO : AudioFormat.CHANNEL_CONFIGURATION_MONO;
+ int audioFormat = is16Bit ? AudioFormat.ENCODING_PCM_16BIT : AudioFormat.ENCODING_PCM_8BIT;
+ int frameSize = (isStereo ? 2 : 1) * (is16Bit ? 2 : 1);
+
+ Log.v(TAG, "SDL capture: wanted " + (isStereo ? "stereo" : "mono") + " " + (is16Bit ? "16-bit" : "8-bit") + " " + (sampleRate / 1000f) + "kHz, " + desiredFrames + " frames buffer");
+
+ // Let the user pick a larger buffer if they really want -- but ye
+ // gods they probably shouldn't, the minimums are horrifyingly high
+ // latency already
+ desiredFrames = Math.max(desiredFrames, (AudioRecord.getMinBufferSize(sampleRate, channelConfig, audioFormat) + frameSize - 1) / frameSize);
+
+ if (mAudioRecord == null) {
+ mAudioRecord = new AudioRecord(MediaRecorder.AudioSource.DEFAULT, sampleRate,
+ channelConfig, audioFormat, desiredFrames * frameSize);
+
+ // see notes about AudioTrack state in audioOpen(), above. Probably also applies here.
+ if (mAudioRecord.getState() != AudioRecord.STATE_INITIALIZED) {
+ Log.e(TAG, "Failed during initialization of AudioRecord");
+ mAudioRecord.release();
+ mAudioRecord = null;
+ return -1;
+ }
+
+ mAudioRecord.startRecording();
+ }
+
+ Log.v(TAG, "SDL capture: got " + ((mAudioRecord.getChannelCount() >= 2) ? "stereo" : "mono") + " " + ((mAudioRecord.getAudioFormat() == AudioFormat.ENCODING_PCM_16BIT) ? "16-bit" : "8-bit") + " " + (mAudioRecord.getSampleRate() / 1000f) + "kHz, " + desiredFrames + " frames buffer");
+
+ return 0;
+ }
+
+ /** This method is called by SDL using JNI. */
+ public static int captureReadShortBuffer(short[] buffer, boolean blocking) {
+ // !!! FIXME: this is available in API Level 23. Until then, we always block. :(
+ //return mAudioRecord.read(buffer, 0, buffer.length, blocking ? AudioRecord.READ_BLOCKING : AudioRecord.READ_NON_BLOCKING);
+ return mAudioRecord.read(buffer, 0, buffer.length);
+ }
+
+ /** This method is called by SDL using JNI. */
+ public static int captureReadByteBuffer(byte[] buffer, boolean blocking) {
+ // !!! FIXME: this is available in API Level 23. Until then, we always block. :(
+ //return mAudioRecord.read(buffer, 0, buffer.length, blocking ? AudioRecord.READ_BLOCKING : AudioRecord.READ_NON_BLOCKING);
+ return mAudioRecord.read(buffer, 0, buffer.length);
+ }
+
+
+ /** This method is called by SDL using JNI. */
+ public static void audioClose() {
+ if (mAudioTrack != null) {
+ mAudioTrack.stop();
+ mAudioTrack.release();
+ mAudioTrack = null;
+ }
+ }
+
+ /** This method is called by SDL using JNI. */
+ public static void captureClose() {
+ if (mAudioRecord != null) {
+ mAudioRecord.stop();
+ mAudioRecord.release();
+ mAudioRecord = null;
+ }
+ }
+
+ public static native int nativeSetupJNI();
+}
diff --git a/android/app/src/main/java/org/libsdl/app/SDLControllerManager.java b/android/app/src/main/java/org/libsdl/app/SDLControllerManager.java
new file mode 100644
index 0000000..7b82c0e
--- /dev/null
+++ b/android/app/src/main/java/org/libsdl/app/SDLControllerManager.java
@@ -0,0 +1,435 @@
+package org.libsdl.app;
+
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.Comparator;
+import java.util.List;
+
+import android.content.Context;
+import android.os.*;
+import android.view.*;
+import android.util.Log;
+
+
+public class SDLControllerManager
+{
+
+ public static native int nativeSetupJNI();
+
+ public static native int nativeAddJoystick(int device_id, String name, String desc,
+ int is_accelerometer, int nbuttons,
+ int naxes, int nhats, int nballs);
+ public static native int nativeRemoveJoystick(int device_id);
+ public static native int nativeAddHaptic(int device_id, String name);
+ public static native int nativeRemoveHaptic(int device_id);
+ public static native int onNativePadDown(int device_id, int keycode);
+ public static native int onNativePadUp(int device_id, int keycode);
+ public static native void onNativeJoy(int device_id, int axis,
+ float value);
+ public static native void onNativeHat(int device_id, int hat_id,
+ int x, int y);
+
+ protected static SDLJoystickHandler mJoystickHandler;
+ protected static SDLHapticHandler mHapticHandler;
+
+ private static final String TAG = "SDLControllerManager";
+
+ public static void initialize() {
+ mJoystickHandler = null;
+ mHapticHandler = null;
+
+ SDLControllerManager.setup();
+ }
+
+ public static void setup() {
+ if (Build.VERSION.SDK_INT >= 16) {
+ mJoystickHandler = new SDLJoystickHandler_API16();
+ } else if (Build.VERSION.SDK_INT >= 12) {
+ mJoystickHandler = new SDLJoystickHandler_API12();
+ } else {
+ mJoystickHandler = new SDLJoystickHandler();
+ }
+ mHapticHandler = new SDLHapticHandler();
+ }
+
+ // Joystick glue code, just a series of stubs that redirect to the SDLJoystickHandler instance
+ public static boolean handleJoystickMotionEvent(MotionEvent event) {
+ return mJoystickHandler.handleMotionEvent(event);
+ }
+
+ /**
+ * This method is called by SDL using JNI.
+ */
+ public static void pollInputDevices() {
+ mJoystickHandler.pollInputDevices();
+ }
+
+ /**
+ * This method is called by SDL using JNI.
+ */
+ public static void pollHapticDevices() {
+ mHapticHandler.pollHapticDevices();
+ }
+
+ /**
+ * This method is called by SDL using JNI.
+ */
+ public static void hapticRun(int device_id, int length) {
+ mHapticHandler.run(device_id, length);
+ }
+
+ // Check if a given device is considered a possible SDL joystick
+ public static boolean isDeviceSDLJoystick(int deviceId) {
+ InputDevice device = InputDevice.getDevice(deviceId);
+ // We cannot use InputDevice.isVirtual before API 16, so let's accept
+ // only nonnegative device ids (VIRTUAL_KEYBOARD equals -1)
+ if ((device == null) || (deviceId < 0)) {
+ return false;
+ }
+ int sources = device.getSources();
+
+ /* This is called for every button press, so let's not spam the logs */
+ /**
+ if ((sources & InputDevice.SOURCE_CLASS_JOYSTICK) == InputDevice.SOURCE_CLASS_JOYSTICK) {
+ Log.v(TAG, "Input device " + device.getName() + " is a joystick.");
+ }
+ if ((sources & InputDevice.SOURCE_DPAD) == InputDevice.SOURCE_DPAD) {
+ Log.v(TAG, "Input device " + device.getName() + " is a dpad.");
+ }
+ if ((sources & InputDevice.SOURCE_GAMEPAD) == InputDevice.SOURCE_GAMEPAD) {
+ Log.v(TAG, "Input device " + device.getName() + " is a gamepad.");
+ }
+ **/
+
+ return (((sources & InputDevice.SOURCE_CLASS_JOYSTICK) == InputDevice.SOURCE_CLASS_JOYSTICK) ||
+ ((sources & InputDevice.SOURCE_DPAD) == InputDevice.SOURCE_DPAD) ||
+ ((sources & InputDevice.SOURCE_GAMEPAD) == InputDevice.SOURCE_GAMEPAD)
+ );
+ }
+
+}
+
+/* A null joystick handler for API level < 12 devices (the accelerometer is handled separately) */
+class SDLJoystickHandler {
+
+ /**
+ * Handles given MotionEvent.
+ * @param event the event to be handled.
+ * @return if given event was processed.
+ */
+ public boolean handleMotionEvent(MotionEvent event) {
+ return false;
+ }
+
+ /**
+ * Handles adding and removing of input devices.
+ */
+ public void pollInputDevices() {
+ }
+}
+
+/* Actual joystick functionality available for API >= 12 devices */
+class SDLJoystickHandler_API12 extends SDLJoystickHandler {
+
+ static class SDLJoystick {
+ public int device_id;
+ public String name;
+ public String desc;
+ public ArrayList axes;
+ public ArrayList hats;
+ }
+ static class RangeComparator implements Comparator {
+ @Override
+ public int compare(InputDevice.MotionRange arg0, InputDevice.MotionRange arg1) {
+ return arg0.getAxis() - arg1.getAxis();
+ }
+ }
+
+ private ArrayList mJoysticks;
+
+ public SDLJoystickHandler_API12() {
+
+ mJoysticks = new ArrayList();
+ }
+
+ @Override
+ public void pollInputDevices() {
+ int[] deviceIds = InputDevice.getDeviceIds();
+ // It helps processing the device ids in reverse order
+ // For example, in the case of the XBox 360 wireless dongle,
+ // so the first controller seen by SDL matches what the receiver
+ // considers to be the first controller
+
+ for(int i=deviceIds.length-1; i>-1; i--) {
+ SDLJoystick joystick = getJoystick(deviceIds[i]);
+ if (joystick == null) {
+ joystick = new SDLJoystick();
+ InputDevice joystickDevice = InputDevice.getDevice(deviceIds[i]);
+ if (SDLControllerManager.isDeviceSDLJoystick(deviceIds[i])) {
+ joystick.device_id = deviceIds[i];
+ joystick.name = joystickDevice.getName();
+ joystick.desc = getJoystickDescriptor(joystickDevice);
+ joystick.axes = new ArrayList();
+ joystick.hats = new ArrayList();
+
+ List ranges = joystickDevice.getMotionRanges();
+ Collections.sort(ranges, new RangeComparator());
+ for (InputDevice.MotionRange range : ranges ) {
+ if ((range.getSource() & InputDevice.SOURCE_CLASS_JOYSTICK) != 0) {
+ if (range.getAxis() == MotionEvent.AXIS_HAT_X ||
+ range.getAxis() == MotionEvent.AXIS_HAT_Y) {
+ joystick.hats.add(range);
+ }
+ else {
+ joystick.axes.add(range);
+ }
+ }
+ }
+
+ mJoysticks.add(joystick);
+ SDLControllerManager.nativeAddJoystick(joystick.device_id, joystick.name, joystick.desc, 0, -1,
+ joystick.axes.size(), joystick.hats.size()/2, 0);
+ }
+ }
+ }
+
+ /* Check removed devices */
+ ArrayList removedDevices = new ArrayList();
+ for(int i=0; i < mJoysticks.size(); i++) {
+ int device_id = mJoysticks.get(i).device_id;
+ int j;
+ for (j=0; j < deviceIds.length; j++) {
+ if (device_id == deviceIds[j]) break;
+ }
+ if (j == deviceIds.length) {
+ removedDevices.add(Integer.valueOf(device_id));
+ }
+ }
+
+ for(int i=0; i < removedDevices.size(); i++) {
+ int device_id = removedDevices.get(i).intValue();
+ SDLControllerManager.nativeRemoveJoystick(device_id);
+ for (int j=0; j < mJoysticks.size(); j++) {
+ if (mJoysticks.get(j).device_id == device_id) {
+ mJoysticks.remove(j);
+ break;
+ }
+ }
+ }
+ }
+
+ protected SDLJoystick getJoystick(int device_id) {
+ for(int i=0; i < mJoysticks.size(); i++) {
+ if (mJoysticks.get(i).device_id == device_id) {
+ return mJoysticks.get(i);
+ }
+ }
+ return null;
+ }
+
+ @Override
+ public boolean handleMotionEvent(MotionEvent event) {
+ if ((event.getSource() & InputDevice.SOURCE_JOYSTICK) != 0) {
+ int actionPointerIndex = event.getActionIndex();
+ int action = event.getActionMasked();
+ switch(action) {
+ case MotionEvent.ACTION_MOVE:
+ SDLJoystick joystick = getJoystick(event.getDeviceId());
+ if ( joystick != null ) {
+ for (int i = 0; i < joystick.axes.size(); i++) {
+ InputDevice.MotionRange range = joystick.axes.get(i);
+ /* Normalize the value to -1...1 */
+ float value = ( event.getAxisValue( range.getAxis(), actionPointerIndex) - range.getMin() ) / range.getRange() * 2.0f - 1.0f;
+ SDLControllerManager.onNativeJoy(joystick.device_id, i, value );
+ }
+ for (int i = 0; i < joystick.hats.size(); i+=2) {
+ int hatX = Math.round(event.getAxisValue( joystick.hats.get(i).getAxis(), actionPointerIndex ) );
+ int hatY = Math.round(event.getAxisValue( joystick.hats.get(i+1).getAxis(), actionPointerIndex ) );
+ SDLControllerManager.onNativeHat(joystick.device_id, i/2, hatX, hatY );
+ }
+ }
+ break;
+ default:
+ break;
+ }
+ }
+ return true;
+ }
+
+ public String getJoystickDescriptor(InputDevice joystickDevice) {
+ return joystickDevice.getName();
+ }
+}
+
+
+class SDLJoystickHandler_API16 extends SDLJoystickHandler_API12 {
+
+ @Override
+ public String getJoystickDescriptor(InputDevice joystickDevice) {
+ String desc = joystickDevice.getDescriptor();
+
+ if (desc != null && !desc.isEmpty()) {
+ return desc;
+ }
+
+ return super.getJoystickDescriptor(joystickDevice);
+ }
+}
+
+class SDLHapticHandler {
+
+ class SDLHaptic {
+ public int device_id;
+ public String name;
+ public Vibrator vib;
+ }
+
+ private ArrayList mHaptics;
+
+ public SDLHapticHandler() {
+ mHaptics = new ArrayList();
+ }
+
+ public void run(int device_id, int length) {
+ SDLHaptic haptic = getHaptic(device_id);
+ if (haptic != null) {
+ haptic.vib.vibrate (length);
+ }
+ }
+
+ public void pollHapticDevices() {
+
+ final int deviceId_VIBRATOR_SERVICE = 999999;
+ boolean hasVibratorService = false;
+
+ int[] deviceIds = InputDevice.getDeviceIds();
+ // It helps processing the device ids in reverse order
+ // For example, in the case of the XBox 360 wireless dongle,
+ // so the first controller seen by SDL matches what the receiver
+ // considers to be the first controller
+
+ if (Build.VERSION.SDK_INT >= 16)
+ {
+ for (int i = deviceIds.length - 1; i > -1; i--) {
+ SDLHaptic haptic = getHaptic(deviceIds[i]);
+ if (haptic == null) {
+ InputDevice device = InputDevice.getDevice(deviceIds[i]);
+ Vibrator vib = device.getVibrator();
+ if (vib.hasVibrator()) {
+ haptic = new SDLHaptic();
+ haptic.device_id = deviceIds[i];
+ haptic.name = device.getName();
+ haptic.vib = vib;
+ mHaptics.add(haptic);
+ SDLControllerManager.nativeAddHaptic(haptic.device_id, haptic.name);
+ }
+ }
+ }
+ }
+
+ /* Check VIBRATOR_SERVICE */
+ Vibrator vib = (Vibrator) SDL.getContext().getSystemService(Context.VIBRATOR_SERVICE);
+ if (vib != null) {
+ if (Build.VERSION.SDK_INT >= 11) {
+ hasVibratorService = vib.hasVibrator();
+ } else {
+ hasVibratorService = true;
+ }
+
+ if (hasVibratorService) {
+ SDLHaptic haptic = getHaptic(deviceId_VIBRATOR_SERVICE);
+ if (haptic == null) {
+ haptic = new SDLHaptic();
+ haptic.device_id = deviceId_VIBRATOR_SERVICE;
+ haptic.name = "VIBRATOR_SERVICE";
+ haptic.vib = vib;
+ mHaptics.add(haptic);
+ SDLControllerManager.nativeAddHaptic(haptic.device_id, haptic.name);
+ }
+ }
+ }
+
+ /* Check removed devices */
+ ArrayList removedDevices = new ArrayList();
+ for(int i=0; i < mHaptics.size(); i++) {
+ int device_id = mHaptics.get(i).device_id;
+ int j;
+ for (j=0; j < deviceIds.length; j++) {
+ if (device_id == deviceIds[j]) break;
+ }
+
+ if (device_id == deviceId_VIBRATOR_SERVICE && hasVibratorService) {
+ // don't remove the vibrator if it is still present
+ } else if (j == deviceIds.length) {
+ removedDevices.add(device_id);
+ }
+ }
+
+ for(int i=0; i < removedDevices.size(); i++) {
+ int device_id = removedDevices.get(i);
+ SDLControllerManager.nativeRemoveHaptic(device_id);
+ for (int j=0; j < mHaptics.size(); j++) {
+ if (mHaptics.get(j).device_id == device_id) {
+ mHaptics.remove(j);
+ break;
+ }
+ }
+ }
+ }
+
+ protected SDLHaptic getHaptic(int device_id) {
+ for(int i=0; i < mHaptics.size(); i++) {
+ if (mHaptics.get(i).device_id == device_id) {
+ return mHaptics.get(i);
+ }
+ }
+ return null;
+ }
+}
+
+class SDLGenericMotionListener_API12 implements View.OnGenericMotionListener {
+ // Generic Motion (mouse hover, joystick...) events go here
+ @Override
+ public boolean onGenericMotion(View v, MotionEvent event) {
+ float x, y;
+ int action;
+
+ switch ( event.getSource() ) {
+ case InputDevice.SOURCE_JOYSTICK:
+ case InputDevice.SOURCE_GAMEPAD:
+ case InputDevice.SOURCE_DPAD:
+ return SDLControllerManager.handleJoystickMotionEvent(event);
+
+ case InputDevice.SOURCE_MOUSE:
+ if (!SDLActivity.mSeparateMouseAndTouch) {
+ break;
+ }
+ action = event.getActionMasked();
+ switch (action) {
+ case MotionEvent.ACTION_SCROLL:
+ x = event.getAxisValue(MotionEvent.AXIS_HSCROLL, 0);
+ y = event.getAxisValue(MotionEvent.AXIS_VSCROLL, 0);
+ SDLActivity.onNativeMouse(0, action, x, y);
+ return true;
+
+ case MotionEvent.ACTION_HOVER_MOVE:
+ x = event.getX(0);
+ y = event.getY(0);
+
+ SDLActivity.onNativeMouse(0, action, x, y);
+ return true;
+
+ default:
+ break;
+ }
+ break;
+
+ default:
+ break;
+ }
+
+ // Event was not managed
+ return false;
+ }
+}
+
diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 0000000..cde69bc
Binary files /dev/null and b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
new file mode 100644
index 0000000..9a078e3
Binary files /dev/null and b/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png differ
diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 0000000..c133a0c
Binary files /dev/null and b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
new file mode 100644
index 0000000..efc028a
Binary files /dev/null and b/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png differ
diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 0000000..bfa42f0
Binary files /dev/null and b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
new file mode 100644
index 0000000..3af2608
Binary files /dev/null and b/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png differ
diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 0000000..324e72c
Binary files /dev/null and b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
new file mode 100644
index 0000000..9bec2e6
Binary files /dev/null and b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png differ
diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100644
index 0000000..aee44e1
Binary files /dev/null and b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ
diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
new file mode 100644
index 0000000..34947cd
Binary files /dev/null and b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png differ
diff --git a/android/app/src/main/res/values/colors.xml b/android/app/src/main/res/values/colors.xml
new file mode 100644
index 0000000..3ab3e9c
--- /dev/null
+++ b/android/app/src/main/res/values/colors.xml
@@ -0,0 +1,6 @@
+
+
+ #3F51B5
+ #303F9F
+ #FF4081
+
diff --git a/android/app/src/main/res/values/strings.xml b/android/app/src/main/res/values/strings.xml
new file mode 100644
index 0000000..2a17308
--- /dev/null
+++ b/android/app/src/main/res/values/strings.xml
@@ -0,0 +1,3 @@
+
+ Hello-SDL2
+
diff --git a/android/app/src/main/res/values/styles.xml b/android/app/src/main/res/values/styles.xml
new file mode 100644
index 0000000..5885930
--- /dev/null
+++ b/android/app/src/main/res/values/styles.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
diff --git a/android/build.gradle b/android/build.gradle
new file mode 100644
index 0000000..b9278c2
--- /dev/null
+++ b/android/build.gradle
@@ -0,0 +1,31 @@
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
+
+buildscript {
+ repositories {
+ google()
+ jcenter()
+ }
+ dependencies {
+ classpath 'com.android.tools.build:gradle:3.2.1'
+
+ // NOTE: Do not place your application dependencies here; they belong
+ // in the individual module build.gradle files
+ }
+}
+
+// Instead of having a build dir inside android app dir use the same project top level build dir to reduce clutter
+buildDir = file("distribution/${rootProject.name}/${project.name}")
+subprojects {
+ buildDir = file("../distribution/${rootProject.name}/${project.name}")
+}
+
+allprojects {
+ repositories {
+ google()
+ jcenter()
+ }
+}
+
+task clean(type: Delete) {
+ delete rootProject.buildDir
+}
diff --git a/android/gradle.properties b/android/gradle.properties
new file mode 100644
index 0000000..aac7c9b
--- /dev/null
+++ b/android/gradle.properties
@@ -0,0 +1,17 @@
+# Project-wide Gradle settings.
+
+# IDE (e.g. Android Studio) users:
+# Gradle settings configured through the IDE *will override*
+# any settings specified in this file.
+
+# For more details on how to configure your build environment visit
+# http://www.gradle.org/docs/current/userguide/build_environment.html
+
+# Specifies the JVM arguments used for the daemon process.
+# The setting is particularly useful for tweaking memory settings.
+org.gradle.jvmargs=-Xmx1536m
+
+# When configured, Gradle will run in incubating parallel mode.
+# This option should only be used with decoupled projects. More details, visit
+# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
+# org.gradle.parallel=true
diff --git a/android/gradle/wrapper/gradle-wrapper.jar.REMOVED.git-id b/android/gradle/wrapper/gradle-wrapper.jar.REMOVED.git-id
new file mode 100644
index 0000000..c0b73ae
--- /dev/null
+++ b/android/gradle/wrapper/gradle-wrapper.jar.REMOVED.git-id
@@ -0,0 +1 @@
+13372aef5e24af05341d49695ee84e5f9b594659
\ No newline at end of file
diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..caeb3ee
--- /dev/null
+++ b/android/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,6 @@
+#Wed Jul 05 15:54:11 CEST 2017
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-all.zip
diff --git a/android/gradlew b/android/gradlew
new file mode 100755
index 0000000..9d82f78
--- /dev/null
+++ b/android/gradlew
@@ -0,0 +1,160 @@
+#!/usr/bin/env bash
+
+##############################################################################
+##
+## Gradle start up script for UN*X
+##
+##############################################################################
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS=""
+
+APP_NAME="Gradle"
+APP_BASE_NAME=`basename "$0"`
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn ( ) {
+ echo "$*"
+}
+
+die ( ) {
+ echo
+ echo "$*"
+ echo
+ exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+case "`uname`" in
+ CYGWIN* )
+ cygwin=true
+ ;;
+ Darwin* )
+ darwin=true
+ ;;
+ MINGW* )
+ msys=true
+ ;;
+esac
+
+# Attempt to set APP_HOME
+# Resolve links: $0 may be a link
+PRG="$0"
+# Need this for relative symlinks.
+while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG=`dirname "$PRG"`"/$link"
+ fi
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/" >/dev/null
+APP_HOME="`pwd -P`"
+cd "$SAVED" >/dev/null
+
+CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD="java"
+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
+ MAX_FD_LIMIT=`ulimit -H -n`
+ if [ $? -eq 0 ] ; then
+ if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
+ MAX_FD="$MAX_FD_LIMIT"
+ fi
+ ulimit -n $MAX_FD
+ if [ $? -ne 0 ] ; then
+ warn "Could not set maximum file descriptor limit: $MAX_FD"
+ fi
+ else
+ warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
+ fi
+fi
+
+# For Darwin, add options to specify how the application appears in the dock
+if $darwin; then
+ GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
+fi
+
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin ; then
+ APP_HOME=`cygpath --path --mixed "$APP_HOME"`
+ CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+ JAVACMD=`cygpath --unix "$JAVACMD"`
+
+ # We build the pattern for arguments to be converted via cygpath
+ ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
+ SEP=""
+ for dir in $ROOTDIRSRAW ; do
+ ROOTDIRS="$ROOTDIRS$SEP$dir"
+ SEP="|"
+ done
+ OURCYGPATTERN="(^($ROOTDIRS))"
+ # Add a user-defined pattern to the cygpath arguments
+ if [ "$GRADLE_CYGPATTERN" != "" ] ; then
+ OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
+ fi
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ i=0
+ for arg in "$@" ; do
+ CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
+ CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
+
+ if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
+ eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
+ else
+ eval `echo args$i`="\"$arg\""
+ fi
+ i=$((i+1))
+ done
+ case $i in
+ (0) set -- ;;
+ (1) set -- "$args0" ;;
+ (2) set -- "$args0" "$args1" ;;
+ (3) set -- "$args0" "$args1" "$args2" ;;
+ (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
+ (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
+ (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
+ (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
+ (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
+ (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
+ esac
+fi
+
+# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
+function splitJvmOpts() {
+ JVM_OPTS=("$@")
+}
+eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
+JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
+
+exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
diff --git a/android/gradlew.bat b/android/gradlew.bat
new file mode 100644
index 0000000..aec9973
--- /dev/null
+++ b/android/gradlew.bat
@@ -0,0 +1,90 @@
+@if "%DEBUG%" == "" @echo off
+@rem ##########################################################################
+@rem
+@rem Gradle startup script for Windows
+@rem
+@rem ##########################################################################
+
+@rem Set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" setlocal
+
+@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+set DEFAULT_JVM_OPTS=
+
+set DIRNAME=%~dp0
+if "%DIRNAME%" == "" set DIRNAME=.
+set APP_BASE_NAME=%~n0
+set APP_HOME=%DIRNAME%
+
+@rem Find java.exe
+if defined JAVA_HOME goto findJavaFromJavaHome
+
+set JAVA_EXE=java.exe
+%JAVA_EXE% -version >NUL 2>&1
+if "%ERRORLEVEL%" == "0" goto init
+
+echo.
+echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:findJavaFromJavaHome
+set JAVA_HOME=%JAVA_HOME:"=%
+set JAVA_EXE=%JAVA_HOME%/bin/java.exe
+
+if exist "%JAVA_EXE%" goto init
+
+echo.
+echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:init
+@rem Get command-line arguments, handling Windowz variants
+
+if not "%OS%" == "Windows_NT" goto win9xME_args
+if "%@eval[2+2]" == "4" goto 4NT_args
+
+:win9xME_args
+@rem Slurp the command line arguments.
+set CMD_LINE_ARGS=
+set _SKIP=2
+
+:win9xME_args_slurp
+if "x%~1" == "x" goto execute
+
+set CMD_LINE_ARGS=%*
+goto execute
+
+:4NT_args
+@rem Get arguments from the 4NT Shell from JP Software
+set CMD_LINE_ARGS=%$
+
+:execute
+@rem Setup the command line
+
+set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
+
+@rem Execute Gradle
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
+
+:end
+@rem End local scope for the variables with windows NT shell
+if "%ERRORLEVEL%"=="0" goto mainEnd
+
+:fail
+rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
+rem the _cmd.exe /c_ return code!
+if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
+exit /b 1
+
+:mainEnd
+if "%OS%"=="Windows_NT" endlocal
+
+:omega
diff --git a/android/local.properties b/android/local.properties
new file mode 100644
index 0000000..b78e8a5
--- /dev/null
+++ b/android/local.properties
@@ -0,0 +1 @@
+sdk.dir=/home/nmatsuda/Downloads/
diff --git a/android/settings.gradle b/android/settings.gradle
new file mode 100644
index 0000000..031d202
--- /dev/null
+++ b/android/settings.gradle
@@ -0,0 +1,4 @@
+include ':app'
+// Uncomment this line to build SDL2
+// Uncomment the dependency line in app/build.gradle as well
+include ':SDL2'
diff --git a/android/tools/NOTICE.txt.REMOVED.git-id b/android/tools/NOTICE.txt.REMOVED.git-id
new file mode 100644
index 0000000..60ddc63
--- /dev/null
+++ b/android/tools/NOTICE.txt.REMOVED.git-id
@@ -0,0 +1 @@
+fd52738446ea42eda64ab829115ad45a80a062cc
\ No newline at end of file
diff --git a/android/tools/android b/android/tools/android
new file mode 100755
index 0000000..b8e45e9
--- /dev/null
+++ b/android/tools/android
@@ -0,0 +1,178 @@
+#!/bin/bash
+
+# Attempt to set app_home
+# Resolve links: $0 may be a link
+prg="$0"
+# Need this for relative symlinks.
+while [ -h "$prg" ] ; do
+ ls=`ls -ld "$prg"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ prg="$link"
+ else
+ prg=`dirname "$prg"`"/$link"
+ fi
+done
+saved="`pwd`"
+cd "`dirname \"$prg\"`" >/dev/null
+app_home="`pwd -P`"
+cd "$saved" >/dev/null
+
+ANDROID_WRAPPER_BIN_DIR=${ANDROID_WRAPPER_BIN_DIR:-$app_home/bin}
+ANDROID_WRAPPER_SDK_TIMEOUT=${ANDROID_WRAPPER_SDK_TIMEOUT:-20}
+
+cat <<< \
+"*************************************************************************
+The \"android\" command is deprecated.
+For manual SDK, AVD, and project management, please use Android Studio.
+For command-line tools, use tools/bin/sdkmanager and tools/bin/avdmanager
+*************************************************************************"
+
+function usage {
+ echo "Invalid or unsupported command \"$@\""
+ echo
+ echo "Supported commands are:"
+ echo "android list target"
+ echo "android list avd"
+ echo "android list device"
+ echo "android create avd"
+ echo "android move avd"
+ echo "android delete avd"
+ echo "android list sdk"
+ echo "android update sdk"
+ exit 2
+}
+
+function matches {
+ verbs=$1
+ objects=$2
+ verb=""
+ object=""
+ shift 2
+
+ for arg in "$@"; do
+ if [[ $arg =~ ^- ]]; then
+ continue
+ fi
+ if [[ -z $verb && $verbs =~ ( |^)$arg( |$) ]]; then
+ verb=$arg
+ continue
+ fi
+ if [[ -n $verb && $objects =~ ( |^)$arg( |$) ]]; then
+ object=$arg
+ break
+ fi
+ break
+ done
+ return $([[ -n $verb && -n $object ]])
+}
+
+function echo_and_exec {
+ echo "Running $@"
+ echo
+ exec $@
+}
+
+function parse_filter {
+ local IFS=,
+ for filter in $1; do
+ if [[ $filter == tool || $filter == platform-tool || $filter == doc ]]; then
+ command+=( "$args ${filter}s" )
+ elif [[ $filter == tools || $filter == platform-tools ]]; then
+ command+=( "$args ${filter}" )
+ elif [[ $filter =~ ^lldb ]]; then
+ command+=( "$args ${filter/-/;}" )
+ elif [[ $filter =~ ^build-tools ]]; then
+ command+=( "$args ${filter/build-tools-/build-tools;}" )
+ elif [[ $filter == ndk ]]; then
+ command+=( "$args ndk-bundle" )
+ elif [[ $filter =~ ^android- ]]; then
+ command+=( "$args platforms;$filter" )
+ elif [[ $filter =~ ^extra- ]]; then
+ tmp=${filter//-/;}
+ command+=( "$args ${tmp/extra/extras}" )
+ else
+ echo Filter $filter not supported
+ exit 2
+ fi
+ done
+}
+
+function confirm_try_sdk {
+ for arg in "$@"; do
+ if [[ $arg == --use-sdk-wrapper ]]; then
+ return 0
+ fi
+ done
+ if [[ -n $USE_SDK_WRAPPER ]]; then
+ return 0
+ fi
+ read -t $ANDROID_WRAPPER_SDK_TIMEOUT -p "\"android\" SDK commands can be translated to sdkmanager commands on a best-effort basis.
+Continue? (This prompt can be suppressed with the --use-sdk-wrapper command-line argument
+or by setting the USE_SDK_WRAPPER environment variable) [y/N]: " trysdkresponse
+ if (( $? > 128 )); then
+ echo "Timed out waiting for input."
+ echo "To suppress this prompt, run with --use-sdk-wrapper or set USE_SDK_WRAPPER."
+ exit 1
+ fi
+ if [[ ${trysdkresponse,,} == y ]]; then
+ return 0
+ fi
+ echo Aborted
+ exit 1
+}
+
+avd_verbs="list create move delete"
+avd_objects="avd target device"
+
+if matches "$avd_verbs" "$avd_objects" "$@"; then
+ echo_and_exec "$ANDROID_WRAPPER_BIN_DIR/avdmanager" "$@"
+fi
+
+sdk_verbs="list update"
+sdk_objects="sdk"
+
+if matches "$sdk_verbs" "$sdk_objects" "$@"; then
+ confirm_try_sdk $@
+ if [[ $verb == list ]]; then
+ echo_and_exec "$ANDROID_WRAPPER_BIN_DIR/sdkmanager" --list --verbose
+ fi
+ if [[ $verb == update ]]; then
+ command=( "$ANDROID_WRAPPER_BIN_DIR/sdkmanager" )
+ prev=""
+ update_all=1
+ for arg in "$@"; do
+ if [[ $arg == --use-sdk-wrapper || $arg == $verb || $arg == $object ]]; then
+ continue
+ elif [[ $arg == -n ]]; then
+ echo "update sdk -n is not supported"
+ exit 2
+ elif [[ $arg == -s || $arg == --no-https ]]; then
+ command+=("--no_https")
+ elif [[ $arg == -a || $arg == --all ]]; then
+ command+=("--include_obsolete")
+ elif [[ $arg == -p || $arg == --obsolete || $arg == -u || $arg == --no-ui || $arg == --proxy-host ||
+ $arg == --proxy-port || $arg == -t || $arg == --filter ]]; then
+ :
+ elif [[ $prev == --proxy-host ]]; then
+ command+=("--proxy=http" "--proxy_host=$arg")
+ elif [[ $prev == --proxy-port ]]; then
+ command+=("--proxy_port=$arg")
+ elif [[ $prev == -t || $prev == --filter ]]; then
+ update_all=
+ parse_filter $arg
+ else
+ echo Unrecognized argument $arg
+ exit 2
+ fi
+
+ prev=$arg
+ done
+ if [[ -n $update_all ]]; then
+ command+=("--update")
+ fi
+ echo_and_exec ${command[@]}
+ fi
+fi
+
+usage $@
diff --git a/android/tools/bin/apkanalyzer b/android/tools/bin/apkanalyzer
new file mode 100755
index 0000000..55b3688
--- /dev/null
+++ b/android/tools/bin/apkanalyzer
@@ -0,0 +1,172 @@
+#!/usr/bin/env sh
+
+##############################################################################
+##
+## apkanalyzer start up script for UN*X
+##
+##############################################################################
+
+# Attempt to set APP_HOME
+# Resolve links: $0 may be a link
+PRG="$0"
+# Need this for relative symlinks.
+while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG=`dirname "$PRG"`"/$link"
+ fi
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/.." >/dev/null
+APP_HOME="`pwd -P`"
+cd "$SAVED" >/dev/null
+
+APP_NAME="apkanalyzer"
+APP_BASE_NAME=`basename "$0"`
+
+# Add default JVM options here. You can also use JAVA_OPTS and APKANALYZER_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS='"-Dcom.android.sdklib.toolsdir=$APP_HOME"'
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn () {
+ echo "$*"
+}
+
+die () {
+ echo
+ echo "$*"
+ echo
+ exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+nonstop=false
+case "`uname`" in
+ CYGWIN* )
+ cygwin=true
+ ;;
+ Darwin* )
+ darwin=true
+ ;;
+ MINGW* )
+ msys=true
+ ;;
+ NONSTOP* )
+ nonstop=true
+ ;;
+esac
+
+CLASSPATH=$APP_HOME/lib/dvlib-26.0.0-dev.jar:$APP_HOME/lib/util-2.2.1.jar:$APP_HOME/lib/jimfs-1.1.jar:$APP_HOME/lib/annotations-13.0.jar:$APP_HOME/lib/ddmlib-26.0.0-dev.jar:$APP_HOME/lib/repository-26.0.0-dev.jar:$APP_HOME/lib/sdk-common-26.0.0-dev.jar:$APP_HOME/lib/kotlin-stdlib-1.1.3-2.jar:$APP_HOME/lib/protobuf-java-3.0.0.jar:$APP_HOME/lib/apkanalyzer-cli.jar:$APP_HOME/lib/gson-2.3.jar:$APP_HOME/lib/httpcore-4.2.5.jar:$APP_HOME/lib/dexlib2-2.2.1.jar:$APP_HOME/lib/commons-compress-1.12.jar:$APP_HOME/lib/generator.jar:$APP_HOME/lib/error_prone_annotations-2.0.18.jar:$APP_HOME/lib/commons-codec-1.6.jar:$APP_HOME/lib/kxml2-2.3.0.jar:$APP_HOME/lib/httpmime-4.1.jar:$APP_HOME/lib/annotations-12.0.jar:$APP_HOME/lib/bcpkix-jdk15on-1.56.jar:$APP_HOME/lib/jsr305-3.0.0.jar:$APP_HOME/lib/explainer.jar:$APP_HOME/lib/builder-model-3.0.0-dev.jar:$APP_HOME/lib/baksmali-2.2.1.jar:$APP_HOME/lib/j2objc-annotations-1.1.jar:$APP_HOME/lib/layoutlib-api-26.0.0-dev.jar:$APP_HOME/lib/jcommander-1.64.jar:$APP_HOME/lib/commons-logging-1.1.1.jar:$APP_HOME/lib/annotations-26.0.0-dev.jar:$APP_HOME/lib/builder-test-api-3.0.0-dev.jar:$APP_HOME/lib/animal-sniffer-annotations-1.14.jar:$APP_HOME/lib/bcprov-jdk15on-1.56.jar:$APP_HOME/lib/httpclient-4.2.6.jar:$APP_HOME/lib/common-26.0.0-dev.jar:$APP_HOME/lib/jopt-simple-4.9.jar:$APP_HOME/lib/sdklib-26.0.0-dev.jar:$APP_HOME/lib/apkanalyzer.jar:$APP_HOME/lib/shared.jar:$APP_HOME/lib/binary-resources.jar:$APP_HOME/lib/guava-22.0.jar
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD="java"
+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
+ MAX_FD_LIMIT=`ulimit -H -n`
+ if [ $? -eq 0 ] ; then
+ if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
+ MAX_FD="$MAX_FD_LIMIT"
+ fi
+ ulimit -n $MAX_FD
+ if [ $? -ne 0 ] ; then
+ warn "Could not set maximum file descriptor limit: $MAX_FD"
+ fi
+ else
+ warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
+ fi
+fi
+
+# For Darwin, add options to specify how the application appears in the dock
+if $darwin; then
+ GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
+fi
+
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin ; then
+ APP_HOME=`cygpath --path --mixed "$APP_HOME"`
+ CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+ JAVACMD=`cygpath --unix "$JAVACMD"`
+
+ # We build the pattern for arguments to be converted via cygpath
+ ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
+ SEP=""
+ for dir in $ROOTDIRSRAW ; do
+ ROOTDIRS="$ROOTDIRS$SEP$dir"
+ SEP="|"
+ done
+ OURCYGPATTERN="(^($ROOTDIRS))"
+ # Add a user-defined pattern to the cygpath arguments
+ if [ "$GRADLE_CYGPATTERN" != "" ] ; then
+ OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
+ fi
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ i=0
+ for arg in "$@" ; do
+ CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
+ CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
+
+ if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
+ eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
+ else
+ eval `echo args$i`="\"$arg\""
+ fi
+ i=$((i+1))
+ done
+ case $i in
+ (0) set -- ;;
+ (1) set -- "$args0" ;;
+ (2) set -- "$args0" "$args1" ;;
+ (3) set -- "$args0" "$args1" "$args2" ;;
+ (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
+ (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
+ (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
+ (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
+ (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
+ (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
+ esac
+fi
+
+# Escape application args
+save () {
+ for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
+ echo " "
+}
+APP_ARGS=$(save "$@")
+
+# Collect all arguments for the java command, following the shell quoting and substitution rules
+eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $APKANALYZER_OPTS -classpath "\"$CLASSPATH\"" com.android.tools.apk.analyzer.ApkAnalyzerCli "$APP_ARGS"
+
+# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
+if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
+ cd "$(dirname "$0")"
+fi
+
+exec "$JAVACMD" "$@"
diff --git a/android/tools/bin/archquery b/android/tools/bin/archquery
new file mode 100755
index 0000000..f066a32
--- /dev/null
+++ b/android/tools/bin/archquery
@@ -0,0 +1,172 @@
+#!/usr/bin/env sh
+
+##############################################################################
+##
+## archquery start up script for UN*X
+##
+##############################################################################
+
+# Attempt to set APP_HOME
+# Resolve links: $0 may be a link
+PRG="$0"
+# Need this for relative symlinks.
+while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG=`dirname "$PRG"`"/$link"
+ fi
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/.." >/dev/null
+APP_HOME="`pwd -P`"
+cd "$SAVED" >/dev/null
+
+APP_NAME="archquery"
+APP_BASE_NAME=`basename "$0"`
+
+# Add default JVM options here. You can also use JAVA_OPTS and ARCHQUERY_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS=""
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn () {
+ echo "$*"
+}
+
+die () {
+ echo
+ echo "$*"
+ echo
+ exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+nonstop=false
+case "`uname`" in
+ CYGWIN* )
+ cygwin=true
+ ;;
+ Darwin* )
+ darwin=true
+ ;;
+ MINGW* )
+ msys=true
+ ;;
+ NONSTOP* )
+ nonstop=true
+ ;;
+esac
+
+CLASSPATH=$APP_HOME/lib/archquery-26.0.0-dev.jar
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD="java"
+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
+ MAX_FD_LIMIT=`ulimit -H -n`
+ if [ $? -eq 0 ] ; then
+ if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
+ MAX_FD="$MAX_FD_LIMIT"
+ fi
+ ulimit -n $MAX_FD
+ if [ $? -ne 0 ] ; then
+ warn "Could not set maximum file descriptor limit: $MAX_FD"
+ fi
+ else
+ warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
+ fi
+fi
+
+# For Darwin, add options to specify how the application appears in the dock
+if $darwin; then
+ GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
+fi
+
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin ; then
+ APP_HOME=`cygpath --path --mixed "$APP_HOME"`
+ CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+ JAVACMD=`cygpath --unix "$JAVACMD"`
+
+ # We build the pattern for arguments to be converted via cygpath
+ ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
+ SEP=""
+ for dir in $ROOTDIRSRAW ; do
+ ROOTDIRS="$ROOTDIRS$SEP$dir"
+ SEP="|"
+ done
+ OURCYGPATTERN="(^($ROOTDIRS))"
+ # Add a user-defined pattern to the cygpath arguments
+ if [ "$GRADLE_CYGPATTERN" != "" ] ; then
+ OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
+ fi
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ i=0
+ for arg in "$@" ; do
+ CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
+ CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
+
+ if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
+ eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
+ else
+ eval `echo args$i`="\"$arg\""
+ fi
+ i=$((i+1))
+ done
+ case $i in
+ (0) set -- ;;
+ (1) set -- "$args0" ;;
+ (2) set -- "$args0" "$args1" ;;
+ (3) set -- "$args0" "$args1" "$args2" ;;
+ (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
+ (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
+ (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
+ (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
+ (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
+ (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
+ esac
+fi
+
+# Escape application args
+save () {
+ for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
+ echo " "
+}
+APP_ARGS=$(save "$@")
+
+# Collect all arguments for the java command, following the shell quoting and substitution rules
+eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $ARCHQUERY_OPTS -classpath "\"$CLASSPATH\"" com.android.archquery.Main "$APP_ARGS"
+
+# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
+if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
+ cd "$(dirname "$0")"
+fi
+
+exec "$JAVACMD" "$@"
diff --git a/android/tools/bin/avdmanager b/android/tools/bin/avdmanager
new file mode 100755
index 0000000..e5f92ab
--- /dev/null
+++ b/android/tools/bin/avdmanager
@@ -0,0 +1,172 @@
+#!/usr/bin/env sh
+
+##############################################################################
+##
+## avdmanager start up script for UN*X
+##
+##############################################################################
+
+# Attempt to set APP_HOME
+# Resolve links: $0 may be a link
+PRG="$0"
+# Need this for relative symlinks.
+while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG=`dirname "$PRG"`"/$link"
+ fi
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/.." >/dev/null
+APP_HOME="`pwd -P`"
+cd "$SAVED" >/dev/null
+
+APP_NAME="avdmanager"
+APP_BASE_NAME=`basename "$0"`
+
+# Add default JVM options here. You can also use JAVA_OPTS and AVDMANAGER_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS='"-Dcom.android.sdkmanager.toolsdir=$APP_HOME"'
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn () {
+ echo "$*"
+}
+
+die () {
+ echo
+ echo "$*"
+ echo
+ exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+nonstop=false
+case "`uname`" in
+ CYGWIN* )
+ cygwin=true
+ ;;
+ Darwin* )
+ darwin=true
+ ;;
+ MINGW* )
+ msys=true
+ ;;
+ NONSTOP* )
+ nonstop=true
+ ;;
+esac
+
+CLASSPATH=$APP_HOME/lib/dvlib-26.0.0-dev.jar:$APP_HOME/lib/jimfs-1.1.jar:$APP_HOME/lib/jsr305-1.3.9.jar:$APP_HOME/lib/repository-26.0.0-dev.jar:$APP_HOME/lib/j2objc-annotations-1.1.jar:$APP_HOME/lib/layoutlib-api-26.0.0-dev.jar:$APP_HOME/lib/gson-2.3.jar:$APP_HOME/lib/httpcore-4.2.5.jar:$APP_HOME/lib/commons-logging-1.1.1.jar:$APP_HOME/lib/commons-compress-1.12.jar:$APP_HOME/lib/annotations-26.0.0-dev.jar:$APP_HOME/lib/error_prone_annotations-2.0.18.jar:$APP_HOME/lib/animal-sniffer-annotations-1.14.jar:$APP_HOME/lib/httpclient-4.2.6.jar:$APP_HOME/lib/commons-codec-1.6.jar:$APP_HOME/lib/common-26.0.0-dev.jar:$APP_HOME/lib/kxml2-2.3.0.jar:$APP_HOME/lib/httpmime-4.1.jar:$APP_HOME/lib/annotations-12.0.jar:$APP_HOME/lib/sdklib-26.0.0-dev.jar:$APP_HOME/lib/guava-22.0.jar
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD="java"
+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
+ MAX_FD_LIMIT=`ulimit -H -n`
+ if [ $? -eq 0 ] ; then
+ if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
+ MAX_FD="$MAX_FD_LIMIT"
+ fi
+ ulimit -n $MAX_FD
+ if [ $? -ne 0 ] ; then
+ warn "Could not set maximum file descriptor limit: $MAX_FD"
+ fi
+ else
+ warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
+ fi
+fi
+
+# For Darwin, add options to specify how the application appears in the dock
+if $darwin; then
+ GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
+fi
+
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin ; then
+ APP_HOME=`cygpath --path --mixed "$APP_HOME"`
+ CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+ JAVACMD=`cygpath --unix "$JAVACMD"`
+
+ # We build the pattern for arguments to be converted via cygpath
+ ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
+ SEP=""
+ for dir in $ROOTDIRSRAW ; do
+ ROOTDIRS="$ROOTDIRS$SEP$dir"
+ SEP="|"
+ done
+ OURCYGPATTERN="(^($ROOTDIRS))"
+ # Add a user-defined pattern to the cygpath arguments
+ if [ "$GRADLE_CYGPATTERN" != "" ] ; then
+ OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
+ fi
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ i=0
+ for arg in "$@" ; do
+ CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
+ CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
+
+ if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
+ eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
+ else
+ eval `echo args$i`="\"$arg\""
+ fi
+ i=$((i+1))
+ done
+ case $i in
+ (0) set -- ;;
+ (1) set -- "$args0" ;;
+ (2) set -- "$args0" "$args1" ;;
+ (3) set -- "$args0" "$args1" "$args2" ;;
+ (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
+ (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
+ (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
+ (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
+ (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
+ (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
+ esac
+fi
+
+# Escape application args
+save () {
+ for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
+ echo " "
+}
+APP_ARGS=$(save "$@")
+
+# Collect all arguments for the java command, following the shell quoting and substitution rules
+eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $AVDMANAGER_OPTS -classpath "\"$CLASSPATH\"" com.android.sdklib.tool.AvdManagerCli "$APP_ARGS"
+
+# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
+if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
+ cd "$(dirname "$0")"
+fi
+
+exec "$JAVACMD" "$@"
diff --git a/android/tools/bin/jobb b/android/tools/bin/jobb
new file mode 100755
index 0000000..43e5b7e
--- /dev/null
+++ b/android/tools/bin/jobb
@@ -0,0 +1,172 @@
+#!/usr/bin/env sh
+
+##############################################################################
+##
+## jobb start up script for UN*X
+##
+##############################################################################
+
+# Attempt to set APP_HOME
+# Resolve links: $0 may be a link
+PRG="$0"
+# Need this for relative symlinks.
+while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG=`dirname "$PRG"`"/$link"
+ fi
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/.." >/dev/null
+APP_HOME="`pwd -P`"
+cd "$SAVED" >/dev/null
+
+APP_NAME="jobb"
+APP_BASE_NAME=`basename "$0"`
+
+# Add default JVM options here. You can also use JAVA_OPTS and JOBB_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS=""
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn () {
+ echo "$*"
+}
+
+die () {
+ echo
+ echo "$*"
+ echo
+ exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+nonstop=false
+case "`uname`" in
+ CYGWIN* )
+ cygwin=true
+ ;;
+ Darwin* )
+ darwin=true
+ ;;
+ MINGW* )
+ msys=true
+ ;;
+ NONSTOP* )
+ nonstop=true
+ ;;
+esac
+
+CLASSPATH=$APP_HOME/lib/jobb-26.0.0-dev.jar:$APP_HOME/lib/fat32lib.jar
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD="java"
+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
+ MAX_FD_LIMIT=`ulimit -H -n`
+ if [ $? -eq 0 ] ; then
+ if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
+ MAX_FD="$MAX_FD_LIMIT"
+ fi
+ ulimit -n $MAX_FD
+ if [ $? -ne 0 ] ; then
+ warn "Could not set maximum file descriptor limit: $MAX_FD"
+ fi
+ else
+ warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
+ fi
+fi
+
+# For Darwin, add options to specify how the application appears in the dock
+if $darwin; then
+ GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
+fi
+
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin ; then
+ APP_HOME=`cygpath --path --mixed "$APP_HOME"`
+ CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+ JAVACMD=`cygpath --unix "$JAVACMD"`
+
+ # We build the pattern for arguments to be converted via cygpath
+ ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
+ SEP=""
+ for dir in $ROOTDIRSRAW ; do
+ ROOTDIRS="$ROOTDIRS$SEP$dir"
+ SEP="|"
+ done
+ OURCYGPATTERN="(^($ROOTDIRS))"
+ # Add a user-defined pattern to the cygpath arguments
+ if [ "$GRADLE_CYGPATTERN" != "" ] ; then
+ OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
+ fi
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ i=0
+ for arg in "$@" ; do
+ CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
+ CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
+
+ if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
+ eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
+ else
+ eval `echo args$i`="\"$arg\""
+ fi
+ i=$((i+1))
+ done
+ case $i in
+ (0) set -- ;;
+ (1) set -- "$args0" ;;
+ (2) set -- "$args0" "$args1" ;;
+ (3) set -- "$args0" "$args1" "$args2" ;;
+ (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
+ (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
+ (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
+ (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
+ (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
+ (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
+ esac
+fi
+
+# Escape application args
+save () {
+ for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
+ echo " "
+}
+APP_ARGS=$(save "$@")
+
+# Collect all arguments for the java command, following the shell quoting and substitution rules
+eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $JOBB_OPTS -classpath "\"$CLASSPATH\"" com.android.jobb.Main "$APP_ARGS"
+
+# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
+if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
+ cd "$(dirname "$0")"
+fi
+
+exec "$JAVACMD" "$@"
diff --git a/android/tools/bin/lint b/android/tools/bin/lint
new file mode 100755
index 0000000..54bc7ab
--- /dev/null
+++ b/android/tools/bin/lint
@@ -0,0 +1,172 @@
+#!/usr/bin/env sh
+
+##############################################################################
+##
+## lint start up script for UN*X
+##
+##############################################################################
+
+# Attempt to set APP_HOME
+# Resolve links: $0 may be a link
+PRG="$0"
+# Need this for relative symlinks.
+while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG=`dirname "$PRG"`"/$link"
+ fi
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/.." >/dev/null
+APP_HOME="`pwd -P`"
+cd "$SAVED" >/dev/null
+
+APP_NAME="lint"
+APP_BASE_NAME=`basename "$0"`
+
+# Add default JVM options here. You can also use JAVA_OPTS and LINT_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS='"-Xmx1024m" "-Dcom.android.tools.lint.bindir=$APP_HOME"'
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn () {
+ echo "$*"
+}
+
+die () {
+ echo
+ echo "$*"
+ echo
+ exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+nonstop=false
+case "`uname`" in
+ CYGWIN* )
+ cygwin=true
+ ;;
+ Darwin* )
+ darwin=true
+ ;;
+ MINGW* )
+ msys=true
+ ;;
+ NONSTOP* )
+ nonstop=true
+ ;;
+esac
+
+CLASSPATH=$APP_HOME/lib/asm-analysis-5.1.jar:$APP_HOME/lib/dvlib-26.0.0-dev.jar:$APP_HOME/lib/annotations-13.0.jar:$APP_HOME/lib/jimfs-1.1.jar:$APP_HOME/lib/ddmlib-26.0.0-dev.jar:$APP_HOME/lib/manifest-merger-26.0.0-dev.jar:$APP_HOME/lib/asm-tree-5.1.jar:$APP_HOME/lib/jsr305-1.3.9.jar:$APP_HOME/lib/repository-26.0.0-dev.jar:$APP_HOME/lib/ecj-4.6.1.jar:$APP_HOME/lib/sdk-common-26.0.0-dev.jar:$APP_HOME/lib/kotlin-stdlib-1.1.3-2.jar:$APP_HOME/lib/protobuf-java-3.0.0.jar:$APP_HOME/lib/trove4j-20160824.jar:$APP_HOME/lib/lint-api-26.0.0-dev.jar:$APP_HOME/lib/gson-2.3.jar:$APP_HOME/lib/httpcore-4.2.5.jar:$APP_HOME/lib/intellij-core-26.0.0-dev.jar:$APP_HOME/lib/commons-compress-1.12.jar:$APP_HOME/lib/error_prone_annotations-2.0.18.jar:$APP_HOME/lib/asm-5.1.jar:$APP_HOME/lib/lint-26.0.0-dev.jar:$APP_HOME/lib/commons-codec-1.6.jar:$APP_HOME/lib/lint-checks-26.0.0-dev.jar:$APP_HOME/lib/kxml2-2.3.0.jar:$APP_HOME/lib/httpmime-4.1.jar:$APP_HOME/lib/annotations-12.0.jar:$APP_HOME/lib/bcpkix-jdk15on-1.56.jar:$APP_HOME/lib/builder-model-3.0.0-dev.jar:$APP_HOME/lib/lombok-ast-0.2.3.jar:$APP_HOME/lib/j2objc-annotations-1.1.jar:$APP_HOME/lib/layoutlib-api-26.0.0-dev.jar:$APP_HOME/lib/commons-logging-1.1.1.jar:$APP_HOME/lib/annotations-26.0.0-dev.jar:$APP_HOME/lib/builder-test-api-3.0.0-dev.jar:$APP_HOME/lib/kotlin-reflect-1.1.3-2.jar:$APP_HOME/lib/animal-sniffer-annotations-1.14.jar:$APP_HOME/lib/uast-26.0.0-dev.jar:$APP_HOME/lib/httpclient-4.2.6.jar:$APP_HOME/lib/bcprov-jdk15on-1.56.jar:$APP_HOME/lib/common-26.0.0-dev.jar:$APP_HOME/lib/sdklib-26.0.0-dev.jar:$APP_HOME/lib/guava-22.0.jar
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD="java"
+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
+ MAX_FD_LIMIT=`ulimit -H -n`
+ if [ $? -eq 0 ] ; then
+ if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
+ MAX_FD="$MAX_FD_LIMIT"
+ fi
+ ulimit -n $MAX_FD
+ if [ $? -ne 0 ] ; then
+ warn "Could not set maximum file descriptor limit: $MAX_FD"
+ fi
+ else
+ warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
+ fi
+fi
+
+# For Darwin, add options to specify how the application appears in the dock
+if $darwin; then
+ GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
+fi
+
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin ; then
+ APP_HOME=`cygpath --path --mixed "$APP_HOME"`
+ CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+ JAVACMD=`cygpath --unix "$JAVACMD"`
+
+ # We build the pattern for arguments to be converted via cygpath
+ ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
+ SEP=""
+ for dir in $ROOTDIRSRAW ; do
+ ROOTDIRS="$ROOTDIRS$SEP$dir"
+ SEP="|"
+ done
+ OURCYGPATTERN="(^($ROOTDIRS))"
+ # Add a user-defined pattern to the cygpath arguments
+ if [ "$GRADLE_CYGPATTERN" != "" ] ; then
+ OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
+ fi
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ i=0
+ for arg in "$@" ; do
+ CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
+ CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
+
+ if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
+ eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
+ else
+ eval `echo args$i`="\"$arg\""
+ fi
+ i=$((i+1))
+ done
+ case $i in
+ (0) set -- ;;
+ (1) set -- "$args0" ;;
+ (2) set -- "$args0" "$args1" ;;
+ (3) set -- "$args0" "$args1" "$args2" ;;
+ (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
+ (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
+ (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
+ (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
+ (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
+ (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
+ esac
+fi
+
+# Escape application args
+save () {
+ for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
+ echo " "
+}
+APP_ARGS=$(save "$@")
+
+# Collect all arguments for the java command, following the shell quoting and substitution rules
+eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $LINT_OPTS -classpath "\"$CLASSPATH\"" com.android.tools.lint.Main "$APP_ARGS"
+
+# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
+if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
+ cd "$(dirname "$0")"
+fi
+
+exec "$JAVACMD" "$@"
diff --git a/android/tools/bin/monkeyrunner b/android/tools/bin/monkeyrunner
new file mode 100755
index 0000000..ee48bed
--- /dev/null
+++ b/android/tools/bin/monkeyrunner
@@ -0,0 +1,104 @@
+#!/bin/sh
+# Copyright 2005-2007, The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# Set up prog to be the path of this script, including following symlinks,
+# and set up progdir to be the fully-qualified pathname of its directory.
+prog="$0"
+while [ -h "${prog}" ]; do
+ newProg=`/bin/ls -ld "${prog}"`
+ newProg=`expr "${newProg}" : ".* -> \(.*\)$"`
+ if expr "x${newProg}" : 'x/' >/dev/null; then
+ prog="${newProg}"
+ else
+ progdir=`dirname "${prog}"`
+ prog="${progdir}/${newProg}"
+ fi
+done
+oldwd=`pwd`
+progdir=`dirname "${prog}"`
+cd "${progdir}/.."
+progdir=`pwd`
+prog="${progdir}"/bin/`basename "${prog}"`
+cd "${oldwd}"
+
+frameworkdir="$progdir"
+libdir="$progdir"
+jarfile=`basename "$APP_HOME/lib/monkeyrunner-26.0.0-dev.jar"`
+if [ ! -r "$frameworkdir/${jarfile}" ]
+then
+ frameworkdir="$progdir"/lib
+ libdir="$progdir"/lib
+fi
+if [ ! -r "$frameworkdir/${jarfile}" ]
+then
+ frameworkdir=`dirname "$progdir"`/tools/lib
+ libdir=`dirname "$progdir"`/tools/lib
+fi
+if [ ! -r "$frameworkdir/${jarfile}" ]
+then
+ frameworkdir=`dirname "$progdir"`/framework
+ libdir=`dirname "$progdir"`/lib
+fi
+if [ ! -r "$frameworkdir/${jarfile}" ]
+then
+ echo `basename "$prog"`": can't find ${jarfile}"
+ exit 1
+fi
+
+
+# Check args.
+if [ debug = "$1" ]; then
+ # add this in for debugging
+ java_debug=-agentlib:jdwp=transport=dt_socket,server=y,address=8050,suspend=y
+ shift 1
+else
+ java_debug=
+fi
+
+if [ "$OSTYPE" = "cygwin" ] ; then
+ jarpath=`cygpath -w "$frameworkdir/${jarfile}"`
+ progdir=`cygpath -w "$progdir"`
+else
+ jarpath="$frameworkdir/${jarfile}"
+fi
+
+# Figure out the path to the swt.jar for the current architecture.
+# if ANDROID_SWT is defined, then just use this.
+# else, if running in the Android source tree, then look for the correct swt folder in prebuilt
+# else, look for the correct swt folder in the SDK under tools/lib/
+swtpath=""
+if [ -n "$ANDROID_SWT" ]; then
+ swtpath="$ANDROID_SWT"
+else
+ vmarch=`"${progdir}"/bin/archquery`
+ if [ -n "$ANDROID_BUILD_TOP" ]; then
+ osname=`uname -s | tr A-Z a-z`
+ swtpath="${ANDROID_BUILD_TOP}/prebuilts/tools/${osname}-${vmarch}/swt"
+ elif [ -d "$frameworkdir/$vmarch" ]; then
+ swtpath="${frameworkdir}/${vmarch}"
+ else
+ swtpath="${frameworkdir}"
+ fi
+fi
+
+if [ ! -d "$swtpath" ]; then
+ echo "SWT folder '${swtpath}' does not exist."
+ echo "Please export ANDROID_SWT to point to the folder containing swt.jar for your platform."
+ exit 1
+fi
+
+# need to use "java.ext.dirs" because "-jar" causes classpath to be ignored
+# might need more memory, e.g. -Xmx128M
+exec java -Xmx128M $os_opts $java_debug -Djava.ext.dirs="$frameworkdir:$swtpath" -Djava.library.path="$libdir" -Dcom.android.monkeyrunner.bindir="$progdir" -jar "$jarpath" "$@"
diff --git a/android/tools/bin/screenshot2 b/android/tools/bin/screenshot2
new file mode 100755
index 0000000..608ddfe
--- /dev/null
+++ b/android/tools/bin/screenshot2
@@ -0,0 +1,172 @@
+#!/usr/bin/env sh
+
+##############################################################################
+##
+## screenshot2 start up script for UN*X
+##
+##############################################################################
+
+# Attempt to set APP_HOME
+# Resolve links: $0 may be a link
+PRG="$0"
+# Need this for relative symlinks.
+while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG=`dirname "$PRG"`"/$link"
+ fi
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/.." >/dev/null
+APP_HOME="`pwd -P`"
+cd "$SAVED" >/dev/null
+
+APP_NAME="screenshot2"
+APP_BASE_NAME=`basename "$0"`
+
+# Add default JVM options here. You can also use JAVA_OPTS and SCREENSHOT2_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS=""
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn () {
+ echo "$*"
+}
+
+die () {
+ echo
+ echo "$*"
+ echo
+ exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+nonstop=false
+case "`uname`" in
+ CYGWIN* )
+ cygwin=true
+ ;;
+ Darwin* )
+ darwin=true
+ ;;
+ MINGW* )
+ msys=true
+ ;;
+ NONSTOP* )
+ nonstop=true
+ ;;
+esac
+
+CLASSPATH=$APP_HOME/lib/annotations-26.0.0-dev.jar:$APP_HOME/lib/ddmlib-26.0.0-dev.jar:$APP_HOME/lib/error_prone_annotations-2.0.18.jar:$APP_HOME/lib/jsr305-1.3.9.jar:$APP_HOME/lib/animal-sniffer-annotations-1.14.jar:$APP_HOME/lib/screenshot2-26.0.0-dev.jar:$APP_HOME/lib/common-26.0.0-dev.jar:$APP_HOME/lib/kxml2-2.3.0.jar:$APP_HOME/lib/j2objc-annotations-1.1.jar:$APP_HOME/lib/guava-22.0.jar
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD="java"
+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
+ MAX_FD_LIMIT=`ulimit -H -n`
+ if [ $? -eq 0 ] ; then
+ if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
+ MAX_FD="$MAX_FD_LIMIT"
+ fi
+ ulimit -n $MAX_FD
+ if [ $? -ne 0 ] ; then
+ warn "Could not set maximum file descriptor limit: $MAX_FD"
+ fi
+ else
+ warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
+ fi
+fi
+
+# For Darwin, add options to specify how the application appears in the dock
+if $darwin; then
+ GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
+fi
+
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin ; then
+ APP_HOME=`cygpath --path --mixed "$APP_HOME"`
+ CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+ JAVACMD=`cygpath --unix "$JAVACMD"`
+
+ # We build the pattern for arguments to be converted via cygpath
+ ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
+ SEP=""
+ for dir in $ROOTDIRSRAW ; do
+ ROOTDIRS="$ROOTDIRS$SEP$dir"
+ SEP="|"
+ done
+ OURCYGPATTERN="(^($ROOTDIRS))"
+ # Add a user-defined pattern to the cygpath arguments
+ if [ "$GRADLE_CYGPATTERN" != "" ] ; then
+ OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
+ fi
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ i=0
+ for arg in "$@" ; do
+ CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
+ CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
+
+ if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
+ eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
+ else
+ eval `echo args$i`="\"$arg\""
+ fi
+ i=$((i+1))
+ done
+ case $i in
+ (0) set -- ;;
+ (1) set -- "$args0" ;;
+ (2) set -- "$args0" "$args1" ;;
+ (3) set -- "$args0" "$args1" "$args2" ;;
+ (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
+ (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
+ (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
+ (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
+ (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
+ (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
+ esac
+fi
+
+# Escape application args
+save () {
+ for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
+ echo " "
+}
+APP_ARGS=$(save "$@")
+
+# Collect all arguments for the java command, following the shell quoting and substitution rules
+eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $SCREENSHOT2_OPTS -classpath "\"$CLASSPATH\"" com.android.screenshot.Screenshot "$APP_ARGS"
+
+# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
+if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
+ cd "$(dirname "$0")"
+fi
+
+exec "$JAVACMD" "$@"
diff --git a/android/tools/bin/sdkmanager b/android/tools/bin/sdkmanager
new file mode 100755
index 0000000..00d175c
--- /dev/null
+++ b/android/tools/bin/sdkmanager
@@ -0,0 +1,172 @@
+#!/usr/bin/env sh
+
+##############################################################################
+##
+## sdkmanager start up script for UN*X
+##
+##############################################################################
+
+# Attempt to set APP_HOME
+# Resolve links: $0 may be a link
+PRG="$0"
+# Need this for relative symlinks.
+while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG=`dirname "$PRG"`"/$link"
+ fi
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/.." >/dev/null
+APP_HOME="`pwd -P`"
+cd "$SAVED" >/dev/null
+
+APP_NAME="sdkmanager"
+APP_BASE_NAME=`basename "$0"`
+
+# Add default JVM options here. You can also use JAVA_OPTS and SDKMANAGER_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS='"-Dcom.android.sdklib.toolsdir=$APP_HOME"'
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn () {
+ echo "$*"
+}
+
+die () {
+ echo
+ echo "$*"
+ echo
+ exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+nonstop=false
+case "`uname`" in
+ CYGWIN* )
+ cygwin=true
+ ;;
+ Darwin* )
+ darwin=true
+ ;;
+ MINGW* )
+ msys=true
+ ;;
+ NONSTOP* )
+ nonstop=true
+ ;;
+esac
+
+CLASSPATH=$APP_HOME/lib/dvlib-26.0.0-dev.jar:$APP_HOME/lib/jimfs-1.1.jar:$APP_HOME/lib/jsr305-1.3.9.jar:$APP_HOME/lib/repository-26.0.0-dev.jar:$APP_HOME/lib/j2objc-annotations-1.1.jar:$APP_HOME/lib/layoutlib-api-26.0.0-dev.jar:$APP_HOME/lib/gson-2.3.jar:$APP_HOME/lib/httpcore-4.2.5.jar:$APP_HOME/lib/commons-logging-1.1.1.jar:$APP_HOME/lib/commons-compress-1.12.jar:$APP_HOME/lib/annotations-26.0.0-dev.jar:$APP_HOME/lib/error_prone_annotations-2.0.18.jar:$APP_HOME/lib/animal-sniffer-annotations-1.14.jar:$APP_HOME/lib/httpclient-4.2.6.jar:$APP_HOME/lib/commons-codec-1.6.jar:$APP_HOME/lib/common-26.0.0-dev.jar:$APP_HOME/lib/kxml2-2.3.0.jar:$APP_HOME/lib/httpmime-4.1.jar:$APP_HOME/lib/annotations-12.0.jar:$APP_HOME/lib/sdklib-26.0.0-dev.jar:$APP_HOME/lib/guava-22.0.jar
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD="java"
+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
+ MAX_FD_LIMIT=`ulimit -H -n`
+ if [ $? -eq 0 ] ; then
+ if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
+ MAX_FD="$MAX_FD_LIMIT"
+ fi
+ ulimit -n $MAX_FD
+ if [ $? -ne 0 ] ; then
+ warn "Could not set maximum file descriptor limit: $MAX_FD"
+ fi
+ else
+ warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
+ fi
+fi
+
+# For Darwin, add options to specify how the application appears in the dock
+if $darwin; then
+ GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
+fi
+
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin ; then
+ APP_HOME=`cygpath --path --mixed "$APP_HOME"`
+ CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+ JAVACMD=`cygpath --unix "$JAVACMD"`
+
+ # We build the pattern for arguments to be converted via cygpath
+ ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
+ SEP=""
+ for dir in $ROOTDIRSRAW ; do
+ ROOTDIRS="$ROOTDIRS$SEP$dir"
+ SEP="|"
+ done
+ OURCYGPATTERN="(^($ROOTDIRS))"
+ # Add a user-defined pattern to the cygpath arguments
+ if [ "$GRADLE_CYGPATTERN" != "" ] ; then
+ OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
+ fi
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ i=0
+ for arg in "$@" ; do
+ CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
+ CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
+
+ if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
+ eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
+ else
+ eval `echo args$i`="\"$arg\""
+ fi
+ i=$((i+1))
+ done
+ case $i in
+ (0) set -- ;;
+ (1) set -- "$args0" ;;
+ (2) set -- "$args0" "$args1" ;;
+ (3) set -- "$args0" "$args1" "$args2" ;;
+ (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
+ (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
+ (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
+ (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
+ (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
+ (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
+ esac
+fi
+
+# Escape application args
+save () {
+ for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
+ echo " "
+}
+APP_ARGS=$(save "$@")
+
+# Collect all arguments for the java command, following the shell quoting and substitution rules
+eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $SDKMANAGER_OPTS -classpath "\"$CLASSPATH\"" com.android.sdklib.tool.sdkmanager.SdkManagerCli "$APP_ARGS"
+
+# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
+if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
+ cd "$(dirname "$0")"
+fi
+
+exec "$JAVACMD" "$@"
diff --git a/android/tools/bin/uiautomatorviewer b/android/tools/bin/uiautomatorviewer
new file mode 100755
index 0000000..fa021d1
--- /dev/null
+++ b/android/tools/bin/uiautomatorviewer
@@ -0,0 +1,104 @@
+#!/bin/bash
+#
+# Copyright 2012, The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# Set up prog to be the path of this script, including following symlinks,
+# and set up progdir to be the fully-qualified pathname of its directory.
+prog="$0"
+while [ -h "${prog}" ]; do
+ newProg=`/bin/ls -ld "${prog}"`
+ newProg=`expr "${newProg}" : ".* -> \(.*\)$"`
+ if expr "x${newProg}" : 'x/' >/dev/null; then
+ prog="${newProg}"
+ else
+ progdir=`dirname "${prog}"`
+ prog="${progdir}/${newProg}"
+ fi
+done
+oldwd=`pwd`
+progdir=`dirname "${prog}"`
+progname=`basename "${prog}"`
+cd "${progdir}/.."
+progdir=`pwd`
+prog="${progdir}"/bin/"${progname}"
+cd "${oldwd}"
+
+jarfile=`basename $APP_HOME/lib/uiautomatorviewer-26.0.0-dev.jar`
+frameworkdir="$progdir"
+libdir="$progdir"
+if [ ! -r "$frameworkdir/$jarfile" ]
+then
+ frameworkdir=`dirname "$progdir"`/tools/lib
+ libdir=`dirname "$progdir"`/tools/lib
+fi
+if [ ! -r "$frameworkdir/$jarfile" ]
+then
+ frameworkdir=`dirname "$progdir"`/framework
+ libdir=`dirname "$progdir"`/lib
+fi
+if [ ! -r "$frameworkdir/$jarfile" ]
+then
+ echo "${progname}: can't find $jarfile"
+ exit 1
+fi
+
+javaCmd="java"
+
+os=`uname`
+if [ $os == 'Darwin' ]; then
+ javaOpts="-Xmx1600M -XstartOnFirstThread"
+else
+ javaOpts="-Xmx1600M"
+fi
+
+if [ `uname` = "Linux" ]; then
+ export GDK_NATIVE_WINDOWS=true
+fi
+
+while expr "x$1" : 'x-J' >/dev/null; do
+ opt=`expr "x$1" : 'x-J\(.*\)'`
+ javaOpts="${javaOpts} -${opt}"
+ shift
+done
+
+jarpath="$frameworkdir/$jarfile"
+
+# Figure out the path to the swt.jar for the current architecture.
+# if ANDROID_SWT is defined, then just use this.
+# else, if running in the Android source tree, then look for the correct swt folder in prebuilt
+# else, look for the correct swt folder in the SDK under tools/lib/
+swtpath=""
+if [ -n "$ANDROID_SWT" ]; then
+ swtpath="$ANDROID_SWT"
+else
+ vmarch=`"${progdir}"/bin/archquery`
+ if [ -n "$ANDROID_BUILD_TOP" ]; then
+ osname=`uname -s | tr A-Z a-z`
+ swtpath="${ANDROID_BUILD_TOP}/prebuilts/tools/${osname}-${vmarch}/swt"
+ else
+ swtpath="${frameworkdir}/${vmarch}"
+ fi
+fi
+
+# Combine the swtpath and the framework dir path.
+if [ -d "$swtpath" ]; then
+ frameworkdir="${swtpath}:${frameworkdir}"
+else
+ echo "SWT folder '${swtpath}' does not exist."
+ echo "Please export ANDROID_SWT to point to the folder containing swt.jar for your platform."
+ exit 1
+fi
+
+exec "${javaCmd}" $javaOpts -Djava.ext.dirs="$frameworkdir" -Dcom.android.uiautomator.bindir="$progdir" -jar "$jarpath" "$@"
diff --git a/android/tools/emulator-check.REMOVED.git-id b/android/tools/emulator-check.REMOVED.git-id
new file mode 100644
index 0000000..7ab85ed
--- /dev/null
+++ b/android/tools/emulator-check.REMOVED.git-id
@@ -0,0 +1 @@
+27e4efe2d8a7a366fbf65f4056546fda873237aa
\ No newline at end of file
diff --git a/android/tools/emulator.REMOVED.git-id b/android/tools/emulator.REMOVED.git-id
new file mode 100644
index 0000000..95ad00a
--- /dev/null
+++ b/android/tools/emulator.REMOVED.git-id
@@ -0,0 +1 @@
+60350b57659d62520cf4957dddba5d319db6b676
\ No newline at end of file
diff --git a/android/tools/lib/android.el b/android/tools/lib/android.el
new file mode 100644
index 0000000..5c66218
--- /dev/null
+++ b/android/tools/lib/android.el
@@ -0,0 +1,131 @@
+;;;; Copyright 2007 The Android Open Source Project
+
+;;; Set up GUD+JDB to attach to a Java process running on the phone or
+;;; under the emulator.
+
+(defvar android-jdb-port-history '("8700")
+ "history of ports supplied to `android-jdb'")
+
+(defvar android-jdb-project-root-history '()
+ "history of project roots supplied to `android-jdb'")
+(defvar android-jdb-history nil
+ "history of commands supplied to `android-jdb'")
+
+(defvar android-jdb-activity-class-history ()
+ "history of activity classes supplied to `start-android-activity'")
+
+(defcustom android-jdb-command-name "jdb"
+ "Name of Java debugger."
+ :type 'string
+ :group 'android)
+
+(defgroup android nil
+ "Android Applications."
+ :group 'applications)
+
+(defcustom android-project-root nil
+ "This is where your Android project root is stored."
+ :type 'directory
+ :group 'android )
+
+(defcustom android-apk nil
+ "This is where your Android Application Package is stored."
+ :type 'string
+ :group 'android)
+
+(defcustom android-activity-class nil
+ "This is where your Android Activity class is stored."
+ :type 'string
+ :group 'android)
+
+(defun android-read-project-root ()
+ (if (or (string-match "XEmacs" emacs-version)
+ (>= emacs-major-version 22))
+ (read-file-name "Android project root: "
+ android-project-root
+ nil
+ t
+ nil
+ 'file-directory-p)
+ (labels ((read-directory ()
+ (read-file-name "Android project root: "
+ android-project-root
+ nil
+ t
+ nil)))
+ (do ((entered-root (read-directory) (read-directory)))
+ ((and entered-root
+ (file-directory-p entered-root))
+ (expand-file-name entered-root))))))
+
+(defun android-jdb (port root)
+ "Set GUD+JDB up to run against Android on PORT in directory ROOT."
+ (interactive
+ (list
+ (read-from-minibuffer "Activity's JDWP DDMS port: "
+ (car android-jdb-port-history)
+ nil
+ t
+ 'android-jdb-port-history)
+ (android-read-project-root)))
+ (setq android-project-root root)
+ (let ((jdb-command
+ (format "%s -attach localhost:%s -sourcepath%s"
+ android-jdb-command-name
+ port
+ (format "%s/src" root))))
+ (if (not (string= jdb-command (car android-jdb-history)))
+ (push jdb-command android-jdb-history))
+ (jdb jdb-command)))
+
+(defun android-emulate ()
+ "Run the Android emulator. This expects the SDK tools directory to be in the current path."
+ (interactive)
+ (compile "emulator"))
+
+(defun android-install-app (apk)
+ "Install an Android application package APK in the Android emulator. This expects the SDK tools directory to be in the current path."
+ (interactive (list (expand-file-name
+ (read-file-name "Android Application Package (.apk): "
+ nil
+ android-apk
+ t
+ nil
+ nil))))
+ (setq android-apk apk)
+ (compile (format "adb install -r %s" apk)))
+
+(defun android-uninstall-app (package-name)
+ "Uninstall an Android application package APK in the Android emulator. This expects the SDK tools directory to be in the current path.
+Specify the package name --- and not the name of the application e.g., com.android.foo."
+ (interactive
+ (list
+ (read-from-minibuffer "Package: ")))
+ (compile (format "adb uninstall %s" package-name)))
+
+(defun android-start-activity (package class)
+ "Start the activity PACKAGE/CLASS in the Android emulator. This expects the SDK tools directory to be in the current path."
+ (interactive
+ (list
+ (read-from-minibuffer "Package: ")
+ (read-from-minibuffer "Activity Java class: "
+ (car android-jdb-activity-class-history)
+ nil
+ t
+ 'android-jdb-activity-class-history)))
+ (compile (format "adb shell am start -n %s/%s" package class)))
+
+(defun android-debug-activity (package class)
+ "Start the activity PACKAGE/CLASS within the debugger in the Android emulator. This expects the SDK tools directory to be in the current path."
+ (interactive
+ (list
+ (read-from-minibuffer "Package: ")
+ (read-from-minibuffer "Activity Java class: "
+ (car android-jdb-activity-class-history)
+ nil
+ t
+ 'android-jdb-activity-class-history)))
+ (compile (format "adb shell am start -D -n %s/%s" package class)))
+
+(provide 'android)
+
diff --git a/android/tools/lib/animal-sniffer-annotations-1.14.jar b/android/tools/lib/animal-sniffer-annotations-1.14.jar
new file mode 100644
index 0000000..fb76acf
Binary files /dev/null and b/android/tools/lib/animal-sniffer-annotations-1.14.jar differ
diff --git a/android/tools/lib/annotations-12.0.jar b/android/tools/lib/annotations-12.0.jar
new file mode 100644
index 0000000..7f8b362
Binary files /dev/null and b/android/tools/lib/annotations-12.0.jar differ
diff --git a/android/tools/lib/annotations-13.0.jar b/android/tools/lib/annotations-13.0.jar
new file mode 100644
index 0000000..fb794be
Binary files /dev/null and b/android/tools/lib/annotations-13.0.jar differ
diff --git a/android/tools/lib/annotations-26.0.0-dev.jar b/android/tools/lib/annotations-26.0.0-dev.jar
new file mode 100644
index 0000000..264425d
Binary files /dev/null and b/android/tools/lib/annotations-26.0.0-dev.jar differ
diff --git a/android/tools/lib/apkanalyzer-cli.jar.REMOVED.git-id b/android/tools/lib/apkanalyzer-cli.jar.REMOVED.git-id
new file mode 100644
index 0000000..8678dfe
--- /dev/null
+++ b/android/tools/lib/apkanalyzer-cli.jar.REMOVED.git-id
@@ -0,0 +1 @@
+577b82d60c5010f1c3f9dda4f0c791a9fea25a34
\ No newline at end of file
diff --git a/android/tools/lib/apkanalyzer.jar.REMOVED.git-id b/android/tools/lib/apkanalyzer.jar.REMOVED.git-id
new file mode 100644
index 0000000..8b64447
--- /dev/null
+++ b/android/tools/lib/apkanalyzer.jar.REMOVED.git-id
@@ -0,0 +1 @@
+4568371020b52b3be8e502316d7bd34d9142a7fd
\ No newline at end of file
diff --git a/android/tools/lib/archquery-26.0.0-dev.jar b/android/tools/lib/archquery-26.0.0-dev.jar
new file mode 100644
index 0000000..b8110f0
Binary files /dev/null and b/android/tools/lib/archquery-26.0.0-dev.jar differ
diff --git a/android/tools/lib/asm-5.1.jar.REMOVED.git-id b/android/tools/lib/asm-5.1.jar.REMOVED.git-id
new file mode 100644
index 0000000..1b730a6
--- /dev/null
+++ b/android/tools/lib/asm-5.1.jar.REMOVED.git-id
@@ -0,0 +1 @@
+18433c1a22eb1f09b913d90ec5ffd578e768f329
\ No newline at end of file
diff --git a/android/tools/lib/asm-analysis-5.1.jar b/android/tools/lib/asm-analysis-5.1.jar
new file mode 100644
index 0000000..5ddcead
Binary files /dev/null and b/android/tools/lib/asm-analysis-5.1.jar differ
diff --git a/android/tools/lib/asm-tree-5.1.jar b/android/tools/lib/asm-tree-5.1.jar
new file mode 100644
index 0000000..d0d1377
Binary files /dev/null and b/android/tools/lib/asm-tree-5.1.jar differ
diff --git a/android/tools/lib/asset-studio-26.0.0-dev.jar.REMOVED.git-id b/android/tools/lib/asset-studio-26.0.0-dev.jar.REMOVED.git-id
new file mode 100644
index 0000000..56f1659
--- /dev/null
+++ b/android/tools/lib/asset-studio-26.0.0-dev.jar.REMOVED.git-id
@@ -0,0 +1 @@
+fa5e972fd4e0d6861979bf0d74317e9b0fe61e4b
\ No newline at end of file
diff --git a/android/tools/lib/baksmali-2.2.1.jar.REMOVED.git-id b/android/tools/lib/baksmali-2.2.1.jar.REMOVED.git-id
new file mode 100644
index 0000000..55145e6
--- /dev/null
+++ b/android/tools/lib/baksmali-2.2.1.jar.REMOVED.git-id
@@ -0,0 +1 @@
+73b5454e54d51f8251a765dbc849e556f74071ef
\ No newline at end of file
diff --git a/android/tools/lib/bcpkix-jdk15on-1.56.jar.REMOVED.git-id b/android/tools/lib/bcpkix-jdk15on-1.56.jar.REMOVED.git-id
new file mode 100644
index 0000000..725dbfc
--- /dev/null
+++ b/android/tools/lib/bcpkix-jdk15on-1.56.jar.REMOVED.git-id
@@ -0,0 +1 @@
+88bb1cea6ad5186c91fe8cf00077194a7f464d99
\ No newline at end of file
diff --git a/android/tools/lib/bcprov-jdk15on-1.56.jar.REMOVED.git-id b/android/tools/lib/bcprov-jdk15on-1.56.jar.REMOVED.git-id
new file mode 100644
index 0000000..ccf5eff
--- /dev/null
+++ b/android/tools/lib/bcprov-jdk15on-1.56.jar.REMOVED.git-id
@@ -0,0 +1 @@
+ffd08d661ef1c57e6082f0abf4271b528e8a44f1
\ No newline at end of file
diff --git a/android/tools/lib/binary-resources.jar.REMOVED.git-id b/android/tools/lib/binary-resources.jar.REMOVED.git-id
new file mode 100644
index 0000000..a8f8a6b
--- /dev/null
+++ b/android/tools/lib/binary-resources.jar.REMOVED.git-id
@@ -0,0 +1 @@
+e5c9ca6f882b5701b8147f0e121500c9f491cc99
\ No newline at end of file
diff --git a/android/tools/lib/builder-model-3.0.0-dev.jar b/android/tools/lib/builder-model-3.0.0-dev.jar
new file mode 100644
index 0000000..7497f1f
Binary files /dev/null and b/android/tools/lib/builder-model-3.0.0-dev.jar differ
diff --git a/android/tools/lib/chimpchat-26.0.0-dev.jar.REMOVED.git-id b/android/tools/lib/chimpchat-26.0.0-dev.jar.REMOVED.git-id
new file mode 100644
index 0000000..57ceed8
--- /dev/null
+++ b/android/tools/lib/chimpchat-26.0.0-dev.jar.REMOVED.git-id
@@ -0,0 +1 @@
+c9309f184019e949bba9e48a33a55dde0e598627
\ No newline at end of file
diff --git a/android/tools/lib/common-26.0.0-dev.jar.REMOVED.git-id b/android/tools/lib/common-26.0.0-dev.jar.REMOVED.git-id
new file mode 100644
index 0000000..373b91a
--- /dev/null
+++ b/android/tools/lib/common-26.0.0-dev.jar.REMOVED.git-id
@@ -0,0 +1 @@
+0d9b87fefbea0d973aae8904ae32e10c0091559a
\ No newline at end of file
diff --git a/android/tools/lib/commons-codec-1.6.jar.REMOVED.git-id b/android/tools/lib/commons-codec-1.6.jar.REMOVED.git-id
new file mode 100644
index 0000000..3819034
--- /dev/null
+++ b/android/tools/lib/commons-codec-1.6.jar.REMOVED.git-id
@@ -0,0 +1 @@
+ee1bc49acae11cc79eceec51f7be785590e99fd8
\ No newline at end of file
diff --git a/android/tools/lib/commons-compress-1.12.jar.REMOVED.git-id b/android/tools/lib/commons-compress-1.12.jar.REMOVED.git-id
new file mode 100644
index 0000000..ea4191e
--- /dev/null
+++ b/android/tools/lib/commons-compress-1.12.jar.REMOVED.git-id
@@ -0,0 +1 @@
+4867705ea099d7ec5fd28e71451b3d4462d76b7d
\ No newline at end of file
diff --git a/android/tools/lib/commons-logging-1.1.1.jar.REMOVED.git-id b/android/tools/lib/commons-logging-1.1.1.jar.REMOVED.git-id
new file mode 100644
index 0000000..0270768
--- /dev/null
+++ b/android/tools/lib/commons-logging-1.1.1.jar.REMOVED.git-id
@@ -0,0 +1 @@
+1deef144cb17ed2c11c6cdcdcb2d9530fa8d0b47
\ No newline at end of file
diff --git a/android/tools/lib/ddmlib-26.0.0-dev.jar.REMOVED.git-id b/android/tools/lib/ddmlib-26.0.0-dev.jar.REMOVED.git-id
new file mode 100644
index 0000000..811a802
--- /dev/null
+++ b/android/tools/lib/ddmlib-26.0.0-dev.jar.REMOVED.git-id
@@ -0,0 +1 @@
+f0758980b53e5908f7ce37a85eed5d678d7ffed2
\ No newline at end of file
diff --git a/android/tools/lib/ddms-26.0.0-dev.jar b/android/tools/lib/ddms-26.0.0-dev.jar
new file mode 100644
index 0000000..83702c7
Binary files /dev/null and b/android/tools/lib/ddms-26.0.0-dev.jar differ
diff --git a/android/tools/lib/ddmuilib-26.0.0-dev.jar.REMOVED.git-id b/android/tools/lib/ddmuilib-26.0.0-dev.jar.REMOVED.git-id
new file mode 100644
index 0000000..73d877d
--- /dev/null
+++ b/android/tools/lib/ddmuilib-26.0.0-dev.jar.REMOVED.git-id
@@ -0,0 +1 @@
+b432a7afefee4e8c02d9059ed341a7211aa2354b
\ No newline at end of file
diff --git a/android/tools/lib/devices.xml b/android/tools/lib/devices.xml
new file mode 100644
index 0000000..0c7cb96
--- /dev/null
+++ b/android/tools/lib/devices.xml
@@ -0,0 +1,595 @@
+
+
+
+
+
+ Nexus One
+ Google
+
+
+ normal
+ 3.7
+ hdpi
+ long
+
+ 480
+ 800
+
+ 254
+ 254
+
+ basic
+ finger
+ capacitive
+
+
+
+ Wifi
+ Bluetooth
+
+
+ Accelerometer
+ Compass
+ GPS
+ LightSensor
+ ProximitySensor
+
+ true
+
+ back
+ true
+ true
+
+ nokeys
+ trackball
+ 512
+ hard
+ 503
+ 0
+ Qualcomm Scorpion
+ Qualcomm Adreno 200
+
+ armeabi-v7a
+ armeabi
+
+
+ battery
+
+
+ 7-10
+ true
+
+ 2.0
+
+
+ true
+
+
+ The phone in portrait view
+ port
+ keyssoft
+ nonav
+
+
+ The phone in landscape view
+ land
+ keyssoft
+ nonav
+
+
+
+ Nexus S
+ Google
+
+
+ normal
+ 4
+ hdpi
+ long
+
+ 480
+ 800
+
+ 235
+ 235
+
+ jazz-hands
+ finger
+ capacitive
+
+
+
+ Wifi
+ Bluetooth
+ NFC
+
+
+ Accelerometer
+ Compass
+ GPS
+ Gyroscope
+ LightSensor
+ ProximitySensor
+
+ true
+
+ back
+ true
+ true
+
+
+ front
+ false
+ false
+
+ nokeys
+ nonav
+ 351428
+ hard
+ 503
+ 0
+ Samsung Exynos 3110
+ PowerVR SGX 540
+
+ armeabi-v7a
+ armeabi
+
+
+ battery
+
+
+ 9-16
+ true
+
+ 2.0
+
+ GL_EXT_debug_marker
+ GL_OES_rgb8_rgba8
+ GL_OES_depth24
+ GL_OES_vertex_half_float
+ GL_OES_texture_float
+ GL_OES_texture_half_float
+ GL_OES_element_index_uint
+ GL_OES_mapbuffer
+ GL_OES_fragment_precision_high
+ GL_OES_compressed_ETC1_RGB8_texture
+ GL_OES_EGL_image
+ GL_OES_EGL_image_external
+ GL_OES_required_internalformat
+ GL_OES_depth_texture
+ GL_OES_get_program_binary
+ GL_OES_packed_depth_stencil
+ GL_OES_standard_derivatives
+ GL_OES_vertex_array_object
+ GL_OES_egl_sync
+ GL_EXT_multi_draw_arrays
+ GL_EXT_texture_format_BGRA8888
+ GL_EXT_discard_framebuffer
+ GL_EXT_shader_texture_lod
+ GL_IMG_shader_binary
+ GL_IMG_texture_compression_pvrtc
+ GL_IMG_texture_npot
+ GL_IMG_texture_format_BGRA8888
+ GL_IMG_read_format
+ GL_IMG_program_binary
+ GL_IMG_multisampled_render_to_texture
+
+ true
+
+
+ The phone in portrait view
+ port
+ keyssoft
+ nonav
+
+
+ The phone in landscape view
+ land
+ keyssoft
+ nonav
+
+
+
+
+ Galaxy Nexus
+ Google
+
+
+ normal
+ 4.65
+ xhdpi
+ long
+
+ 720
+ 1280
+
+ 316
+ 316
+
+ jazz-hands
+ finger
+ capacitive
+
+
+
+ Bluetooth
+ Wifi
+ NFC
+
+
+ Accelerometer
+ Barometer
+ Gyroscope
+ Compass
+ GPS
+ ProximitySensor
+
+ true
+
+ front
+ true
+ false
+
+
+ back
+ true
+ true
+
+ nokeys
+ nonav
+ 1
+ soft
+ 16
+
+ OMAP 4460
+ PowerVR SGX540
+
+ armeabi
+ armeabi-v7a
+
+
+
+
+
+ battery
+
+
+ 14-
+ true
+
+ HSP
+ HFP
+ SPP
+ A2DP
+ AVRCP
+ OPP
+ PBAP
+ GAVDP
+ AVDTP
+ HID
+ HDP
+ PAN
+
+ 2.0
+
+
+ GL_EXT_discard_framebuffer
+ GL_EXT_multi_draw_arrays
+ GL_EXT_shader_texture_lod
+ GL_EXT_texture_format_BGRA8888
+ GL_IMG_multisampled_render_to_texture
+ GL_IMG_program_binary
+ GL_IMG_read_format
+ GL_IMG_shader_binary
+ GL_IMG_texture_compression_pvrtc
+ GL_IMG_texture_format_BGRA8888
+ GL_IMG_texture_npot
+ GL_OES_compressed_ETC1_RGB8_texture
+ GL_OES_depth_texture
+ GL_OES_depth24
+ GL_OES_EGL_image
+ GL_OES_EGL_image_external
+ GL_OES_egl_sync
+ GL_OES_element_index_uint
+ GL_OES_fragment_precision_high
+ GL_OES_get_program_binary
+ GL_OES_mapbuffer
+ GL_OES_packed_depth_stencil
+ GL_OES_required_internalformat
+ GL_OES_rgb8_rgba8
+ GL_OES_standard_derivatives
+ GL_OES_texture_float
+ GL_OES_texture_half_float
+ GL_OES_vertex_array_object
+ GL_OES_vertex_half_float
+
+ true
+
+
+ The phone in portrait view
+ port
+ keyssoft
+ nonav
+
+
+ The phone in landscape view
+ land
+ keyssoft
+ nonav
+
+
+
+ Nexus 7
+ Google
+
+
+ large
+ 7.27
+ tvdpi
+ notlong
+
+ 800
+ 1280
+
+ 195
+ 200
+
+ jazz-hands
+ finger
+ capacitive
+
+
+
+ Wifi
+ Bluetooth
+ NFC
+
+
+ Accelerometer
+ Compass
+ GPS
+ Gyroscope
+ LightSensor
+
+ true
+
+ front
+ false
+ false
+
+ nokeys
+ nonav
+ 1
+ soft
+ 8
+
+ Tegra3
+ Tegra3
+
+ armeabi-v7a
+ armeabi
+
+
+ battery
+
+
+
+ 16
+ true
+
+ 2.0
+
+ true
+
+
+
+ The phone in portrait view
+ port
+ keyssoft
+ nonav
+
+
+ The phone in landscape view
+ land
+ keyssoft
+ nonav
+
+
+
+
+
+ Nexus 4
+ Google
+
+
+ normal
+ 4.7
+ xhdpi
+ notlong
+
+ 768
+ 1280
+
+ 320
+ 320
+
+ jazz-hands
+ finger
+ capacitive
+
+
+
+ Wifi
+ Bluetooth
+ NFC
+
+
+ Accelerometer
+ Barometer
+ Compass
+ GPS
+ Gyroscope
+ LightSensor
+ ProximitySensor
+
+ true
+
+ back
+ true
+ true
+
+
+ front
+ false
+ false
+
+ nokeys
+ nonav
+ 1953125
+ soft
+ 7811891
+
+ Qualcomm Snapdragon S4 Pro
+ Adreno 320
+
+ armeabi-v7a
+ armeabi
+
+
+ battery
+
+
+ 16
+ true
+
+ 2.0
+ GL_EXT_debug_marker GL_AMD_compressed_ATC_texture
+ GL_AMD_performance_monitor GL_AMD_program_binary_Z400 GL_EXT_robustness
+ GL_EXT_texture_format_BGRA8888 GL_EXT_texture_type_2_10_10_10_REV GL_NV_fence
+ GL_OES_compressed_ETC1_RGB8_texture GL_OES_depth_texture GL_OES_depth24
+ GL_OES_EGL_image GL_OES_EGL_image_external GL_OES_element_index_uint
+ GL_OES_fbo_render_mipmap GL_OES_fragment_precision_high GL_OES_get_program_binary
+ GL_OES_packed_depth_stencil GL_OES_rgb8_rgba8 GL_OES_standard_derivatives
+ GL_OES_texture_3D GL_OES_texture_float GL_OES_texture_half_float
+ GL_OES_texture_half_float_linear GL_OES_texture_npot GL_OES_vertex_half_float
+ GL_OES_vertex_type_10_10_10_2 GL_OES_vertex_array_object GL_QCOM_alpha_test
+ GL_QCOM_binning_control GL_QCOM_driver_control GL_QCOM_perfmon_global_mode
+ GL_QCOM_extended_get GL_QCOM_extended_get2 GL_QCOM_tiled_rendering
+ GL_QCOM_writeonly_rendering GL_EXT_sRGB
+
+ true
+
+
+ The phone in portrait view
+ port
+ keyssoft
+ nonav
+
+
+ The phone in landscape view
+ land
+ keyssoft
+ nonav
+
+
+
+
+ Nexus 10
+ Google
+
+
+ xlarge
+ 10.055
+ xhdpi
+ notlong
+
+ 2560
+ 1600
+
+ 300
+ 300
+
+ jazz-hands
+ finger
+ capacitive
+
+
+
+ Wifi
+ Bluetooth
+ NFC
+
+
+ Accelerometer
+ Barometer
+ Compass
+ GPS
+ Gyroscope
+ LightSensor
+
+ true
+
+ back
+ true
+ true
+
+
+ front
+ false
+ false
+
+ nokeys
+ nonav
+ 1953125
+ soft
+ 15623782
+
+ Dual-core A15
+ Quad-core Mali T604
+
+ armeabi-v7a
+ armeabi
+
+
+ battery
+
+
+ 16
+ true
+
+ 2.0
+ GL_EXT_debug_marker GL_ARM_rgba8 GL_ARM_mali_shader_binary
+ GL_OES_depth24 GL_OES_depth_texture GL_OES_depth_texture_cube_map
+ GL_OES_packed_depth_stencil GL_OES_rgb8_rgba8 GL_EXT_read_format_bgra
+ GL_OES_compressed_paletted_texture GL_OES_compressed_ETC1_RGB8_texture
+ GL_OES_standard_derivatives GL_OES_EGL_image GL_OES_EGL_image_external
+ GL_OES_EGL_sync GL_OES_texture_npot GL_OES_vertex_half_float
+ GL_OES_required_internalformat GL_OES_vertex_array_object GL_OES_mapbuffer
+ GL_EXT_texture_format_BGRA8888 GL_EXT_texture_rg GL_EXT_texture_type_2_10_10_10_REV
+ GL_OES_fbo_render_mipmap GL_OES_element_index_uint GL_EXT_shadow_samplers
+ GL_EXT_occlusion_query_boolean GL_EXT_blend_minmax GL_EXT_discard_framebuffer
+ GL_OES_get_program_binary GL_OES_texture_3D GL_EXT_texture_storage
+ GL_EXT_multisampled_render_to_texture GL_OES_surfaceless_context
+ GL_ARM_mali_program_binary
+
+ true
+
+
+ The phone in portrait view
+ port
+ keyssoft
+ nonav
+
+
+ The phone in landscape view
+ land
+ keyssoft
+ nonav
+
+
+
+
diff --git a/android/tools/lib/dexlib2-2.2.1.jar.REMOVED.git-id b/android/tools/lib/dexlib2-2.2.1.jar.REMOVED.git-id
new file mode 100644
index 0000000..1325549
--- /dev/null
+++ b/android/tools/lib/dexlib2-2.2.1.jar.REMOVED.git-id
@@ -0,0 +1 @@
+a25b1d39e7d9f3033958a30d051d848921766419
\ No newline at end of file
diff --git a/android/tools/lib/dvlib-26.0.0-dev.jar b/android/tools/lib/dvlib-26.0.0-dev.jar
new file mode 100644
index 0000000..e47739f
Binary files /dev/null and b/android/tools/lib/dvlib-26.0.0-dev.jar differ
diff --git a/android/tools/lib/ecj-4.6.1.jar.REMOVED.git-id b/android/tools/lib/ecj-4.6.1.jar.REMOVED.git-id
new file mode 100644
index 0000000..802e825
--- /dev/null
+++ b/android/tools/lib/ecj-4.6.1.jar.REMOVED.git-id
@@ -0,0 +1 @@
+1c7e9cad3046d6dcb9b2a6dfb78abd68eae98b2c
\ No newline at end of file
diff --git a/android/tools/lib/error_prone_annotations-2.0.18.jar b/android/tools/lib/error_prone_annotations-2.0.18.jar
new file mode 100644
index 0000000..fa549b4
Binary files /dev/null and b/android/tools/lib/error_prone_annotations-2.0.18.jar differ
diff --git a/android/tools/lib/explainer.jar b/android/tools/lib/explainer.jar
new file mode 100644
index 0000000..579dbb1
Binary files /dev/null and b/android/tools/lib/explainer.jar differ
diff --git a/android/tools/lib/fakeadbserver-26.0.0-dev.jar.REMOVED.git-id b/android/tools/lib/fakeadbserver-26.0.0-dev.jar.REMOVED.git-id
new file mode 100644
index 0000000..5f6f62c
--- /dev/null
+++ b/android/tools/lib/fakeadbserver-26.0.0-dev.jar.REMOVED.git-id
@@ -0,0 +1 @@
+b3ae702dd795ba20fcc1f5ade2b4d103ef0baef5
\ No newline at end of file
diff --git a/android/tools/lib/fat32lib.jar.REMOVED.git-id b/android/tools/lib/fat32lib.jar.REMOVED.git-id
new file mode 100644
index 0000000..c777b99
--- /dev/null
+++ b/android/tools/lib/fat32lib.jar.REMOVED.git-id
@@ -0,0 +1 @@
+509ba193e23b6b92fbd2bd04699d113b744c6d7c
\ No newline at end of file
diff --git a/android/tools/lib/generator.jar.REMOVED.git-id b/android/tools/lib/generator.jar.REMOVED.git-id
new file mode 100644
index 0000000..8ccd410
--- /dev/null
+++ b/android/tools/lib/generator.jar.REMOVED.git-id
@@ -0,0 +1 @@
+1e66de9147fae39a5360b048707f38d8ea5c6d9d
\ No newline at end of file
diff --git a/android/tools/lib/gson-2.3.jar.REMOVED.git-id b/android/tools/lib/gson-2.3.jar.REMOVED.git-id
new file mode 100644
index 0000000..60cd7e4
--- /dev/null
+++ b/android/tools/lib/gson-2.3.jar.REMOVED.git-id
@@ -0,0 +1 @@
+a7f7ce5e993d6eba344ef9ea2c20ee525d67c7fa
\ No newline at end of file
diff --git a/android/tools/lib/guava-22.0.jar.REMOVED.git-id b/android/tools/lib/guava-22.0.jar.REMOVED.git-id
new file mode 100644
index 0000000..6a7ee2f
--- /dev/null
+++ b/android/tools/lib/guava-22.0.jar.REMOVED.git-id
@@ -0,0 +1 @@
+fc7f3165c3abc681d07aab430c6acd20cbc782e1
\ No newline at end of file
diff --git a/android/tools/lib/hierarchyviewer2lib-26.0.0-dev.jar.REMOVED.git-id b/android/tools/lib/hierarchyviewer2lib-26.0.0-dev.jar.REMOVED.git-id
new file mode 100644
index 0000000..45cda4a
--- /dev/null
+++ b/android/tools/lib/hierarchyviewer2lib-26.0.0-dev.jar.REMOVED.git-id
@@ -0,0 +1 @@
+39d46f7c6ca0fd127ce25c6e64562ec314db343f
\ No newline at end of file
diff --git a/android/tools/lib/httpclient-4.2.6.jar.REMOVED.git-id b/android/tools/lib/httpclient-4.2.6.jar.REMOVED.git-id
new file mode 100644
index 0000000..d8bed08
--- /dev/null
+++ b/android/tools/lib/httpclient-4.2.6.jar.REMOVED.git-id
@@ -0,0 +1 @@
+11331df8722ff3f52cbe1bdf40a57cdd54f6390a
\ No newline at end of file
diff --git a/android/tools/lib/httpcore-4.2.5.jar.REMOVED.git-id b/android/tools/lib/httpcore-4.2.5.jar.REMOVED.git-id
new file mode 100644
index 0000000..4d19b23
--- /dev/null
+++ b/android/tools/lib/httpcore-4.2.5.jar.REMOVED.git-id
@@ -0,0 +1 @@
+498144c447457c0d338c4f12c9f049e2ff983944
\ No newline at end of file
diff --git a/android/tools/lib/httpmime-4.1.jar b/android/tools/lib/httpmime-4.1.jar
new file mode 100644
index 0000000..68f6158
Binary files /dev/null and b/android/tools/lib/httpmime-4.1.jar differ
diff --git a/android/tools/lib/intellij-core-26.0.0-dev.jar.REMOVED.git-id b/android/tools/lib/intellij-core-26.0.0-dev.jar.REMOVED.git-id
new file mode 100644
index 0000000..d99ffca
--- /dev/null
+++ b/android/tools/lib/intellij-core-26.0.0-dev.jar.REMOVED.git-id
@@ -0,0 +1 @@
+798e73ac30bfc1cd02d4432f93805ba79f047e06
\ No newline at end of file
diff --git a/android/tools/lib/j2objc-annotations-1.1.jar b/android/tools/lib/j2objc-annotations-1.1.jar
new file mode 100644
index 0000000..4b6f127
Binary files /dev/null and b/android/tools/lib/j2objc-annotations-1.1.jar differ
diff --git a/android/tools/lib/jcommander-1.64.jar.REMOVED.git-id b/android/tools/lib/jcommander-1.64.jar.REMOVED.git-id
new file mode 100644
index 0000000..49c1973
--- /dev/null
+++ b/android/tools/lib/jcommander-1.64.jar.REMOVED.git-id
@@ -0,0 +1 @@
+805df999f3570ad53b45fa5846d211ee71c8aa2d
\ No newline at end of file
diff --git a/android/tools/lib/jcommon-1.0.12.jar.REMOVED.git-id b/android/tools/lib/jcommon-1.0.12.jar.REMOVED.git-id
new file mode 100644
index 0000000..3a42fec
--- /dev/null
+++ b/android/tools/lib/jcommon-1.0.12.jar.REMOVED.git-id
@@ -0,0 +1 @@
+ca4f04a6adaf8c9fd4e97afe616b264aaf8ecb79
\ No newline at end of file
diff --git a/android/tools/lib/jfreechart-1.0.9.jar.REMOVED.git-id b/android/tools/lib/jfreechart-1.0.9.jar.REMOVED.git-id
new file mode 100644
index 0000000..7e4995d
--- /dev/null
+++ b/android/tools/lib/jfreechart-1.0.9.jar.REMOVED.git-id
@@ -0,0 +1 @@
+d1e2b749a1a41e5d75e07a0edfcb7ed65fb4183e
\ No newline at end of file
diff --git a/android/tools/lib/jfreechart-swt-1.0.9.jar.REMOVED.git-id b/android/tools/lib/jfreechart-swt-1.0.9.jar.REMOVED.git-id
new file mode 100644
index 0000000..cbe814e
--- /dev/null
+++ b/android/tools/lib/jfreechart-swt-1.0.9.jar.REMOVED.git-id
@@ -0,0 +1 @@
+e4e7ec0c1adfe0b72abc9788f72cd86069b435ea
\ No newline at end of file
diff --git a/android/tools/lib/jimfs-1.1.jar.REMOVED.git-id b/android/tools/lib/jimfs-1.1.jar.REMOVED.git-id
new file mode 100644
index 0000000..ff3356c
--- /dev/null
+++ b/android/tools/lib/jimfs-1.1.jar.REMOVED.git-id
@@ -0,0 +1 @@
+e0b16a5ff5388de1b9c5b4ee37959ee09a82e022
\ No newline at end of file
diff --git a/android/tools/lib/jobb-26.0.0-dev.jar b/android/tools/lib/jobb-26.0.0-dev.jar
new file mode 100644
index 0000000..77a7543
Binary files /dev/null and b/android/tools/lib/jobb-26.0.0-dev.jar differ
diff --git a/android/tools/lib/jopt-simple-4.9.jar.REMOVED.git-id b/android/tools/lib/jopt-simple-4.9.jar.REMOVED.git-id
new file mode 100644
index 0000000..0b43eac
--- /dev/null
+++ b/android/tools/lib/jopt-simple-4.9.jar.REMOVED.git-id
@@ -0,0 +1 @@
+7c580a9cfb5dd45aa3d94b4d2607ab856fea6c4c
\ No newline at end of file
diff --git a/android/tools/lib/jsilver-1.0.0.jar.REMOVED.git-id b/android/tools/lib/jsilver-1.0.0.jar.REMOVED.git-id
new file mode 100644
index 0000000..4b817e3
--- /dev/null
+++ b/android/tools/lib/jsilver-1.0.0.jar.REMOVED.git-id
@@ -0,0 +1 @@
+02d55de3a897ae16e7d22e89a2d190fe0a19dc4b
\ No newline at end of file
diff --git a/android/tools/lib/jsr305-1.3.9.jar b/android/tools/lib/jsr305-1.3.9.jar
new file mode 100644
index 0000000..a9afc66
Binary files /dev/null and b/android/tools/lib/jsr305-1.3.9.jar differ
diff --git a/android/tools/lib/jsr305-3.0.0.jar b/android/tools/lib/jsr305-3.0.0.jar
new file mode 100644
index 0000000..cc39b73
Binary files /dev/null and b/android/tools/lib/jsr305-3.0.0.jar differ
diff --git a/android/tools/lib/jython-standalone-2.5.3.jar.REMOVED.git-id b/android/tools/lib/jython-standalone-2.5.3.jar.REMOVED.git-id
new file mode 100644
index 0000000..34f51b2
--- /dev/null
+++ b/android/tools/lib/jython-standalone-2.5.3.jar.REMOVED.git-id
@@ -0,0 +1 @@
+9e01e5caa0c37fd05e672008918f3107ffae5b7d
\ No newline at end of file
diff --git a/android/tools/lib/kotlin-reflect-1.1.3-2.jar.REMOVED.git-id b/android/tools/lib/kotlin-reflect-1.1.3-2.jar.REMOVED.git-id
new file mode 100644
index 0000000..9810b7d
--- /dev/null
+++ b/android/tools/lib/kotlin-reflect-1.1.3-2.jar.REMOVED.git-id
@@ -0,0 +1 @@
+ac9387da307ed325c5804d48c9bc572cc1adec73
\ No newline at end of file
diff --git a/android/tools/lib/kotlin-stdlib-1.1.3-2.jar.REMOVED.git-id b/android/tools/lib/kotlin-stdlib-1.1.3-2.jar.REMOVED.git-id
new file mode 100644
index 0000000..d7ab4de
--- /dev/null
+++ b/android/tools/lib/kotlin-stdlib-1.1.3-2.jar.REMOVED.git-id
@@ -0,0 +1 @@
+c42019bb753204a0ffcf2b09e7972cd433d0aa73
\ No newline at end of file
diff --git a/android/tools/lib/kxml2-2.3.0.jar b/android/tools/lib/kxml2-2.3.0.jar
new file mode 100644
index 0000000..6470952
Binary files /dev/null and b/android/tools/lib/kxml2-2.3.0.jar differ
diff --git a/android/tools/lib/layoutlib-api-26.0.0-dev.jar.REMOVED.git-id b/android/tools/lib/layoutlib-api-26.0.0-dev.jar.REMOVED.git-id
new file mode 100644
index 0000000..39391c4
--- /dev/null
+++ b/android/tools/lib/layoutlib-api-26.0.0-dev.jar.REMOVED.git-id
@@ -0,0 +1 @@
+7ddade13b79ceb2efff8450fb71d1064f08da775
\ No newline at end of file
diff --git a/android/tools/lib/lint-26.0.0-dev.jar.REMOVED.git-id b/android/tools/lib/lint-26.0.0-dev.jar.REMOVED.git-id
new file mode 100644
index 0000000..d6de34e
--- /dev/null
+++ b/android/tools/lib/lint-26.0.0-dev.jar.REMOVED.git-id
@@ -0,0 +1 @@
+7547e8e61b5ab1f19c81ad52c95c6be7c50855d7
\ No newline at end of file
diff --git a/android/tools/lib/lint-api-26.0.0-dev.jar.REMOVED.git-id b/android/tools/lib/lint-api-26.0.0-dev.jar.REMOVED.git-id
new file mode 100644
index 0000000..ef9f544
--- /dev/null
+++ b/android/tools/lib/lint-api-26.0.0-dev.jar.REMOVED.git-id
@@ -0,0 +1 @@
+5d9e799e86ce1c4e2620b39ea172e3709dd30184
\ No newline at end of file
diff --git a/android/tools/lib/lint-checks-26.0.0-dev.jar.REMOVED.git-id b/android/tools/lib/lint-checks-26.0.0-dev.jar.REMOVED.git-id
new file mode 100644
index 0000000..9e109b0
--- /dev/null
+++ b/android/tools/lib/lint-checks-26.0.0-dev.jar.REMOVED.git-id
@@ -0,0 +1 @@
+7053e05082dbd3173b5fe64cfc3725ba52b087d3
\ No newline at end of file
diff --git a/android/tools/lib/lombok-ast-0.2.3.jar.REMOVED.git-id b/android/tools/lib/lombok-ast-0.2.3.jar.REMOVED.git-id
new file mode 100644
index 0000000..3b3547e
--- /dev/null
+++ b/android/tools/lib/lombok-ast-0.2.3.jar.REMOVED.git-id
@@ -0,0 +1 @@
+4b762856521f1c9ecc62005593f912e6e26f8efc
\ No newline at end of file
diff --git a/android/tools/lib/manifest-merger-26.0.0-dev.jar.REMOVED.git-id b/android/tools/lib/manifest-merger-26.0.0-dev.jar.REMOVED.git-id
new file mode 100644
index 0000000..67b0e26
--- /dev/null
+++ b/android/tools/lib/manifest-merger-26.0.0-dev.jar.REMOVED.git-id
@@ -0,0 +1 @@
+3e47cadaf45696f91c640f3209652b70f74d60f3
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/.eclipseproduct b/android/tools/lib/monitor-x86/.eclipseproduct
new file mode 100644
index 0000000..2bbf3ac
--- /dev/null
+++ b/android/tools/lib/monitor-x86/.eclipseproduct
@@ -0,0 +1,3 @@
+name=Eclipse Platform
+id=org.eclipse.platform
+version=4.2.0
diff --git a/android/tools/lib/monitor-x86/artifacts.xml b/android/tools/lib/monitor-x86/artifacts.xml
new file mode 100644
index 0000000..ecf2fd9
--- /dev/null
+++ b/android/tools/lib/monitor-x86/artifacts.xml
@@ -0,0 +1,1085 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/configuration/config.ini b/android/tools/lib/monitor-x86/configuration/config.ini
new file mode 100644
index 0000000..e3701c5
--- /dev/null
+++ b/android/tools/lib/monitor-x86/configuration/config.ini
@@ -0,0 +1,12 @@
+#This configuration file was written by: org.eclipse.equinox.internal.frameworkadmin.equinox.EquinoxFwConfigFileParser
+#Wed Sep 13 21:54:45 UTC 2017
+eclipse.p2.profile=DefaultProfile
+osgi.framework=file\:plugins/org.eclipse.osgi_3.8.2.v20130124-134944.jar
+equinox.use.ds=true
+osgi.bundles=reference\:file\:com.android.ide.eclipse.base_25.2.2.4333796.jar@4,reference\:file\:com.android.ide.eclipse.ddms_25.2.2.4333796.jar@4,reference\:file\:com.android.ide.eclipse.gldebugger_25.2.2.4333796.jar@4,reference\:file\:com.android.ide.eclipse.hierarchyviewer_25.4.0.4333796.jar@4,reference\:file\:com.android.ide.eclipse.monitor_25.2.2.4333796.jar@4,reference\:file\:com.android.ide.eclipse.traceview_25.2.2.4333796.jar@4,reference\:file\:com.ibm.icu_4.4.2.v20110823.jar@4,reference\:file\:com.jcraft.jsch_0.1.46.v201205102330.jar@4,reference\:file\:com.sun.el_2.2.0.v201108011116.jar@4,reference\:file\:javax.annotation_1.0.0.v20101115-0725.jar@4,reference\:file\:javax.el_2.2.0.v201108011116.jar@4,reference\:file\:javax.inject_1.0.0.v20091030.jar@4,reference\:file\:javax.servlet_3.0.0.v201112011016.jar@4,reference\:file\:javax.servlet.jsp_2.2.0.v201112011158.jar@4,reference\:file\:javax.xml_1.3.4.v201005080400.jar@4,reference\:file\:org.apache.ant_1.8.3.v201301120609/@4,reference\:file\:org.apache.batik.css_1.6.0.v201011041432.jar@4,reference\:file\:org.apache.batik.util_1.6.0.v201011041432.jar@4,reference\:file\:org.apache.batik.util.gui_1.6.0.v201011041432.jar@4,reference\:file\:org.apache.commons.codec_1.3.0.v201101211617.jar@4,reference\:file\:org.apache.commons.httpclient_3.1.0.v201012070820.jar@4,reference\:file\:org.apache.commons.logging_1.0.4.v201101211617.jar@4,reference\:file\:org.apache.felix.gogo.command_0.8.0.v201108120515.jar@4,reference\:file\:org.apache.felix.gogo.runtime_0.8.0.v201108120515.jar@4,reference\:file\:org.apache.felix.gogo.shell_0.8.0.v201110170705.jar@4,reference\:file\:org.apache.jasper.glassfish_2.2.2.v201205150955.jar@4,reference\:file\:org.apache.lucene_2.9.1.v201101211721.jar@4,reference\:file\:org.apache.lucene.analysis_2.9.1.v201101211721.jar@4,reference\:file\:org.apache.lucene.core_2.9.1.v201101211721.jar@4,reference\:file\:org.eclipse.ant.core_3.2.401.v20121204-162022.jar@4,reference\:file\:org.eclipse.compare_3.5.301.v20130125-135424.jar@4,reference\:file\:org.eclipse.compare.core_3.5.200.v20120522-1148.jar@4,reference\:file\:org.eclipse.core.commands_3.6.2.v20130123-162658.jar@4,reference\:file\:org.eclipse.core.contenttype_3.4.200.v20120523-2004.jar@4,reference\:file\:org.eclipse.core.databinding_1.4.1.v20120912-132807.jar@4,reference\:file\:org.eclipse.core.databinding.beans_1.2.200.v20120523-1955.jar@4,reference\:file\:org.eclipse.core.databinding.observable_1.4.1.v20120521-2329.jar@4,reference\:file\:org.eclipse.core.databinding.property_1.4.100.v20120523-1955.jar@4,reference\:file\:org.eclipse.core.expressions_3.4.401.v20120912-155018.jar@4,reference\:file\:org.eclipse.core.externaltools_1.0.100.v20120521-2012.jar@4,reference\:file\:org.eclipse.core.filebuffers_3.5.200.v20120523-1310.jar@4,reference\:file\:org.eclipse.core.filesystem_1.3.200.v20130115-145044.jar@4,reference\:file\:org.eclipse.core.filesystem.linux.x86_1.4.0.v20120522-1137.jar@4,reference\:file\:org.eclipse.core.jobs_3.5.300.v20120912-155018.jar@4,reference\:file\:org.eclipse.core.net_1.2.200.v20120914-093638.jar@4,reference\:file\:org.eclipse.core.net.linux.x86_1.1.200.v20120522-1148.jar@4,reference\:file\:org.eclipse.core.resources_3.8.1.v20121114-124432.jar@4,reference\:file\:org.eclipse.core.runtime_3.8.0.v20120912-155025.jar@2\:start,reference\:file\:org.eclipse.core.runtime.compatibility_3.2.200.v20120521-2346.jar@4,reference\:file\:org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/@4,reference\:file\:org.eclipse.core.variables_3.2.600.v20120521-2012.jar@4,reference\:file\:org.eclipse.debug.core_3.7.100.v20120521-2012.jar@4,reference\:file\:org.eclipse.debug.ui_3.8.2.v20130130-171415.jar@4,reference\:file\:org.eclipse.e4.core.commands_0.10.1.v20120523-1955.jar@4,reference\:file\:org.eclipse.e4.core.contexts_1.2.0.v20121221-192508.jar@4,reference\:file\:org.eclipse.e4.core.di_1.2.0.v20121024-173149.jar@4,reference\:file\:org.eclipse.e4.core.di.extensions_0.11.100.v20121024-182359.jar@4,reference\:file\:org.eclipse.e4.core.services_1.0.0.v20120521-2346.jar@4,reference\:file\:org.eclipse.e4.ui.bindings_0.10.3.v20130123-162658.jar@4,reference\:file\:org.eclipse.e4.ui.css.core_0.10.2.v20120912-132817.jar@4,reference\:file\:org.eclipse.e4.ui.css.swt_0.10.3.v20130123-162658.jar@4,reference\:file\:org.eclipse.e4.ui.css.swt.theme_0.9.4.v20130123-162658.jar@4,reference\:file\:org.eclipse.e4.ui.di_0.10.1.v20120523-1955.jar@4,reference\:file\:org.eclipse.e4.ui.model.workbench_0.10.1.v20120523-1955.jar@4,reference\:file\:org.eclipse.e4.ui.services_0.10.3.v20130123-162658.jar@4,reference\:file\:org.eclipse.e4.ui.widgets_0.12.3.v20130123-162658.jar@4,reference\:file\:org.eclipse.e4.ui.workbench_0.11.0.v20130125-100758.jar@4,reference\:file\:org.eclipse.e4.ui.workbench.addons.swt_0.10.3.v20130124-185622.jar@4,reference\:file\:org.eclipse.e4.ui.workbench.renderers.swt_0.10.3.v20130124-170312.jar@4,reference\:file\:org.eclipse.e4.ui.workbench.swt_0.10.3.v20130124-133900.jar@4,reference\:file\:org.eclipse.e4.ui.workbench3_0.12.0.v20120521-2329.jar@4,reference\:file\:org.eclipse.ecf_3.1.300.v20120610-1946.jar@4,reference\:file\:org.eclipse.ecf.filetransfer_5.0.0.v20120610-1946.jar@4,reference\:file\:org.eclipse.ecf.identity_3.1.200.v20120610-1946.jar@4,reference\:file\:org.eclipse.ecf.provider.filetransfer_3.2.0.v20120610-1946.jar@4,reference\:file\:org.eclipse.ecf.provider.filetransfer.httpclient_4.0.200.v20120610-1946.jar@4,reference\:file\:org.eclipse.ecf.provider.filetransfer.httpclient.ssl_1.0.0.v20120610-1946.jar@4,reference\:file\:org.eclipse.ecf.provider.filetransfer.ssl_1.0.0.v20120610-1946.jar@4,reference\:file\:org.eclipse.ecf.ssl_1.0.100.v20120610-1946.jar@4,reference\:file\:org.eclipse.emf.common_2.8.0.v20130125-0546.jar@4,reference\:file\:org.eclipse.emf.ecore_2.8.3.v20130125-0546.jar@4,reference\:file\:org.eclipse.emf.ecore.change_2.8.0.v20130125-0546.jar@4,reference\:file\:org.eclipse.emf.ecore.xmi_2.8.1.v20130125-0546.jar@4,reference\:file\:org.eclipse.equinox.app_1.3.100.v20120522-1841.jar@4,reference\:file\:org.eclipse.equinox.bidi_0.9.100.v20121107-021609.jar@4,reference\:file\:org.eclipse.equinox.common_3.6.100.v20120522-1841.jar@2\:start,reference\:file\:org.eclipse.equinox.console_1.0.0.v20120522-1841.jar@4,reference\:file\:org.eclipse.equinox.ds_1.4.1.v20120926-201320.jar@2\:start,reference\:file\:org.eclipse.equinox.event_1.2.200.v20120522-2049.jar@4,reference\:file\:org.eclipse.equinox.frameworkadmin_2.0.100.v20120913-155515.jar@4,reference\:file\:org.eclipse.equinox.frameworkadmin.equinox_1.0.400.v20120913-155709.jar@4,reference\:file\:org.eclipse.equinox.http.jetty_3.0.1.v20121109-203239.jar@4,reference\:file\:org.eclipse.equinox.http.registry_1.1.200.v20120912-130548.jar@4,reference\:file\:org.eclipse.equinox.http.servlet_1.1.300.v20120912-130548.jar@4,reference\:file\:org.eclipse.equinox.jsp.jasper_1.0.400.v20120912-130548.jar@4,reference\:file\:org.eclipse.equinox.jsp.jasper.registry_1.0.300.v20120912-130548.jar@4,reference\:file\:org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar@4,reference\:file\:org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/@4,reference\:file\:org.eclipse.equinox.p2.artifact.repository_1.1.200.v20120430-1959.jar@4,reference\:file\:org.eclipse.equinox.p2.console_1.0.300.v20120429-0125.jar@4,reference\:file\:org.eclipse.equinox.p2.core_2.2.0.v20120430-0525.jar@4,reference\:file\:org.eclipse.equinox.p2.director_2.2.0.v20120524-0542.jar@4,reference\:file\:org.eclipse.equinox.p2.director.app_1.0.300.v20120428-0517.jar@4,reference\:file\:org.eclipse.equinox.p2.directorywatcher_1.0.300.v20110808-1657.jar@4,reference\:file\:org.eclipse.equinox.p2.engine_2.2.0.v20130121-021919.jar@4,reference\:file\:org.eclipse.equinox.p2.extensionlocation_1.2.100.v20110808-1657.jar@4,reference\:file\:org.eclipse.equinox.p2.garbagecollector_1.0.200.v20110808-1657.jar@4,reference\:file\:org.eclipse.equinox.p2.jarprocessor_1.0.200.v20110808-1657.jar@4,reference\:file\:org.eclipse.equinox.p2.metadata_2.1.0.v20120430-2001.jar@4,reference\:file\:org.eclipse.equinox.p2.metadata.repository_1.2.100.v20120524-1717.jar@4,reference\:file\:org.eclipse.equinox.p2.operations_2.2.0.v20130119-010614.jar@4,reference\:file\:org.eclipse.equinox.p2.publisher_1.2.0.v20121002-080415.jar@4,reference\:file\:org.eclipse.equinox.p2.publisher.eclipse_1.1.0.v20120913-155635.jar@4,reference\:file\:org.eclipse.equinox.p2.ql_2.0.100.v20110808-1657.jar@4,reference\:file\:org.eclipse.equinox.p2.reconciler.dropins_1.1.200.v20120301-2145.jar@4,reference\:file\:org.eclipse.equinox.p2.repository_2.2.0.v20120524-1945.jar@4,reference\:file\:org.eclipse.equinox.p2.repository.tools_2.0.100.v20120501-1314.jar@4,reference\:file\:org.eclipse.equinox.p2.touchpoint.eclipse_2.1.100.v20120428-0117.jar@4,reference\:file\:org.eclipse.equinox.p2.touchpoint.natives_1.1.0.v20130121-021919.jar@4,reference\:file\:org.eclipse.equinox.p2.transport.ecf_1.0.100.v20120913-155635.jar@4,reference\:file\:org.eclipse.equinox.p2.ui_2.2.0.v20130119-010614.jar@4,reference\:file\:org.eclipse.equinox.p2.ui.importexport_1.0.1.v20120913-155635.jar@4,reference\:file\:org.eclipse.equinox.p2.ui.sdk_1.0.200.v20120515-1650.jar@4,reference\:file\:org.eclipse.equinox.p2.ui.sdk.scheduler_1.1.0.v20110815-1744.jar@4,reference\:file\:org.eclipse.equinox.p2.updatechecker_1.1.200.v20110808-1657.jar@4,reference\:file\:org.eclipse.equinox.p2.updatesite_1.0.400.v20120412-1615.jar@4,reference\:file\:org.eclipse.equinox.preferences_3.5.1.v20121031-182809.jar@4,reference\:file\:org.eclipse.equinox.registry_3.5.200.v20120522-1841.jar@4,reference\:file\:org.eclipse.equinox.security_1.1.100.v20120522-1841.jar@4,reference\:file\:org.eclipse.equinox.security.ui_1.1.100.v20120522-2049.jar@4,reference\:file\:org.eclipse.equinox.simpleconfigurator_1.0.301.v20120914-163612.jar@4,reference\:file\:org.eclipse.equinox.simpleconfigurator.manipulator_2.0.0.v20110808-1657.jar@4,reference\:file\:org.eclipse.equinox.util_1.0.400.v20120917-192807.jar@4,reference\:file\:org.eclipse.help_3.6.0.v20120912-134126.jar@4,reference\:file\:org.eclipse.help.base_3.6.101.v201302041200.jar@4,reference\:file\:org.eclipse.help.ui_3.5.201.v20130108-092756.jar@4,reference\:file\:org.eclipse.help.webapp_3.6.101.v20130116-182509.jar@4,reference\:file\:org.eclipse.jetty.continuation_8.1.3.v20120522.jar@4,reference\:file\:org.eclipse.jetty.http_8.1.3.v20120522.jar@4,reference\:file\:org.eclipse.jetty.io_8.1.3.v20120522.jar@4,reference\:file\:org.eclipse.jetty.security_8.1.3.v20120522.jar@4,reference\:file\:org.eclipse.jetty.server_8.1.3.v20120522.jar@4,reference\:file\:org.eclipse.jetty.servlet_8.1.3.v20120522.jar@4,reference\:file\:org.eclipse.jetty.util_8.1.3.v20120522.jar@4,reference\:file\:org.eclipse.jface_3.8.102.v20130123-162658.jar@4,reference\:file\:org.eclipse.jface.databinding_1.6.0.v20120912-132807.jar@4,reference\:file\:org.eclipse.jface.text_3.8.2.v20121126-164145.jar@4,reference\:file\:org.eclipse.jsch.core_1.1.400.v20120522-1148.jar@4,reference\:file\:org.eclipse.jsch.ui_1.1.400.v20120522-1148.jar@4,reference\:file\:org.eclipse.ltk.core.refactoring_3.6.0.v20120523-1543.jar@4,reference\:file\:org.eclipse.ltk.ui.refactoring_3.7.0.v20120523-1543.jar@4,reference\:file\:org.eclipse.osgi.services_3.3.100.v20120522-1822.jar@4,reference\:file\:org.eclipse.osgi.util_3.2.300.v20120913-144807.jar@4,reference\:file\:org.eclipse.platform_4.2.2.v201302041200/@4,reference\:file\:org.eclipse.platform.doc.user_4.2.2.v20130121-200410.jar@4,reference\:file\:org.eclipse.rcp_4.2.1.v201302041200.jar@4,reference\:file\:org.eclipse.search_3.8.0.v20120523-1540.jar@4,reference\:file\:org.eclipse.swt_3.100.1.v4236b.jar@4,reference\:file\:org.eclipse.swt.gtk.linux.x86_3.100.1.v4236b.jar@4,reference\:file\:org.eclipse.team.core_3.6.100.v20120524-0627.jar@4,reference\:file\:org.eclipse.team.ui_3.6.201.v20130125-135424.jar@4,reference\:file\:org.eclipse.text_3.5.200.v20120523-1310.jar@4,reference\:file\:org.eclipse.ui_3.104.0.v20121024-145224.jar@4,reference\:file\:org.eclipse.ui.browser_3.4.2.v20130123-162658.jar@4,reference\:file\:org.eclipse.ui.cheatsheets_3.4.200.v20120521-2344.jar@4,reference\:file\:org.eclipse.ui.console_3.5.100.v20120521-2012.jar@4,reference\:file\:org.eclipse.ui.editors_3.8.0.v20120523-1540.jar@4,reference\:file\:org.eclipse.ui.externaltools_3.2.100.v20120530-1753.jar@4,reference\:file\:org.eclipse.ui.forms_3.5.200.v20120705-114351.jar@4,reference\:file\:org.eclipse.ui.ide_3.8.2.v20121106-165923.jar@4,reference\:file\:org.eclipse.ui.ide.application_1.0.400.v20120523-1955.jar@4,reference\:file\:org.eclipse.ui.intro_3.4.200.v20120521-2344.jar@4,reference\:file\:org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/@4,reference\:file\:org.eclipse.ui.navigator_3.5.200.v20120705-114103.jar@4,reference\:file\:org.eclipse.ui.navigator.resources_3.4.400.v20120705-114010.jar@4,reference\:file\:org.eclipse.ui.net_1.2.101.v20120914-093638.jar@4,reference\:file\:org.eclipse.ui.views_3.6.100.v20120705-114010.jar@4,reference\:file\:org.eclipse.ui.views.properties.tabbed_3.5.300.v20120912-132807.jar@4,reference\:file\:org.eclipse.ui.workbench_3.104.0.v20130204-164612.jar@4,reference\:file\:org.eclipse.ui.workbench.texteditor_3.8.0.v20120523-1310.jar@4,reference\:file\:org.eclipse.update.configurator_3.3.200.v20120912-144026.jar@4,reference\:file\:org.sat4j.core_2.3.0.v20110329.jar@4,reference\:file\:org.sat4j.pb_2.3.0.v20110329.jar@4,reference\:file\:org.w3c.css.sac_1.3.1.v200903091627.jar@4,reference\:file\:org.w3c.dom.smil_1.0.0.v200806040011.jar@4,reference\:file\:org.w3c.dom.svg_1.1.0.v201011041433.jar@4
+eclipse.product=com.android.ide.eclipse.monitor.product
+osgi.splashPath=platform\:/base/plugins/com.android.ide.eclipse.monitor
+osgi.framework.extensions=
+eclipse.p2.data.area=@config.dir/../p2
+osgi.bundles.defaultStartLevel=4
+eclipse.application=com.android.ide.eclipse.monitor.Application
diff --git a/android/tools/lib/monitor-x86/configuration/org.eclipse.update/platform.xml b/android/tools/lib/monitor-x86/configuration/org.eclipse.update/platform.xml
new file mode 100644
index 0000000..51de2e9
--- /dev/null
+++ b/android/tools/lib/monitor-x86/configuration/org.eclipse.update/platform.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/epl-v10.html b/android/tools/lib/monitor-x86/epl-v10.html
new file mode 100644
index 0000000..ed4b196
--- /dev/null
+++ b/android/tools/lib/monitor-x86/epl-v10.html
@@ -0,0 +1,328 @@
+
+
+
+
+
+
+
+
+Eclipse Public License - Version 1.0
+
+
+
+
+
+
+
+
+
Eclipse Public License - v 1.0
+
+
+
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER
+THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE,
+REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE
+OF THIS AGREEMENT.
+
+
1. DEFINITIONS
+
+
"Contribution" means:
+
+
a)
+in the case of the initial Contributor, the initial code and documentation
+distributed under this Agreement, and
+b) in the case of each subsequent Contributor:
+
+
i)
+changes to the Program, and
+
+
ii)
+additions to the Program;
+
+
where
+such changes and/or additions to the Program originate from and are distributed
+by that particular Contributor. A Contribution 'originates' from a Contributor
+if it was added to the Program by such Contributor itself or anyone acting on
+such Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in conjunction
+with the Program under their own license agreement, and (ii) are not derivative
+works of the Program.
+
+
"Contributor" means any person or
+entity that distributes the Program.
+
+
"Licensed Patents " mean patent
+claims licensable by a Contributor which are necessarily infringed by the use
+or sale of its Contribution alone or when combined with the Program.
+
+
"Program" means the Contributions
+distributed in accordance with this Agreement.
+
+
"Recipient" means anyone who
+receives the Program under this Agreement, including all Contributors.
+
+
2. GRANT OF RIGHTS
+
+
a)
+Subject to the terms of this Agreement, each Contributor hereby grants Recipient
+a non-exclusive, worldwide, royalty-free copyright license toreproduce, prepare derivative works of, publicly
+display, publicly perform, distribute and sublicense the Contribution of such
+Contributor, if any, and such derivative works, in source code and object code
+form.
+
+
b)
+Subject to the terms of this Agreement, each Contributor hereby grants
+Recipient a non-exclusive, worldwide,royalty-free
+patent license under Licensed Patents to make, use, sell, offer to sell, import
+and otherwise transfer the Contribution of such Contributor, if any, in source
+code and object code form. This patent license shall apply to the combination
+of the Contribution and the Program if, at the time the Contribution is added
+by the Contributor, such addition of the Contribution causes such combination
+to be covered by the Licensed Patents. The patent license shall not apply to
+any other combinations which include the Contribution. No hardware per se is
+licensed hereunder.
+
+
c)
+Recipient understands that although each Contributor grants the licenses to its
+Contributions set forth herein, no assurances are provided by any Contributor
+that the Program does not infringe the patent or other intellectual property
+rights of any other entity. Each Contributor disclaims any liability to Recipient
+for claims brought by any other entity based on infringement of intellectual
+property rights or otherwise. As a condition to exercising the rights and
+licenses granted hereunder, each Recipient hereby assumes sole responsibility
+to secure any other intellectual property rights needed, if any. For example,
+if a third party patent license is required to allow Recipient to distribute
+the Program, it is Recipient's responsibility to acquire that license before
+distributing the Program.
+
+
d)
+Each Contributor represents that to its knowledge it has sufficient copyright
+rights in its Contribution, if any, to grant the copyright license set forth in
+this Agreement.
+
+
3. REQUIREMENTS
+
+
A Contributor may choose to distribute the
+Program in object code form under its own license agreement, provided that:
+
+
+
a)
+it complies with the terms and conditions of this Agreement; and
+
+
b)
+its license agreement:
+
+
i)
+effectively disclaims on behalf of all Contributors all warranties and
+conditions, express and implied, including warranties or conditions of title
+and non-infringement, and implied warranties or conditions of merchantability
+and fitness for a particular purpose;
+
+
ii)
+effectively excludes on behalf of all Contributors all liability for damages,
+including direct, indirect, special, incidental and consequential damages, such
+as lost profits;
+
+
iii)
+states that any provisions which differ from this Agreement are offered by that
+Contributor alone and not by any other party; and
+
+
iv)
+states that source code for the Program is available from such Contributor, and
+informs licensees how to obtain it in a reasonable manner on or through a
+medium customarily used for software exchange.
+
+
When the Program is made available in source
+code form:
+
+
a)
+it must be made available under this Agreement; and
+
+
b) a
+copy of this Agreement must be included with each copy of the Program.
+
+
Contributors may not remove or alter any
+copyright notices contained within the Program.
+
+
Each Contributor must identify itself as the
+originator of its Contribution, if any, in a manner that reasonably allows
+subsequent Recipients to identify the originator of the Contribution.
+
+
4. COMMERCIAL DISTRIBUTION
+
+
Commercial distributors of software may
+accept certain responsibilities with respect to end users, business partners
+and the like. While this license is intended to facilitate the commercial use
+of the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create potential
+liability for other Contributors. Therefore, if a Contributor includes the
+Program in a commercial product offering, such Contributor ("Commercial
+Contributor") hereby agrees to defend and indemnify every other
+Contributor ("Indemnified Contributor") against any losses, damages and
+costs (collectively "Losses") arising from claims, lawsuits and other
+legal actions brought by a third party against the Indemnified Contributor to
+the extent caused by the acts or omissions of such Commercial Contributor in
+connection with its distribution of the Program in a commercial product
+offering. The obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In order
+to qualify, an Indemnified Contributor must: a) promptly notify the Commercial
+Contributor in writing of such claim, and b) allow the Commercial Contributor
+to control, and cooperate with the Commercial Contributor in, the defense and
+any related settlement negotiations. The Indemnified Contributor may participate
+in any such claim at its own expense.
+
+
For example, a Contributor might include the
+Program in a commercial product offering, Product X. That Contributor is then a
+Commercial Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance claims and
+warranties are such Commercial Contributor's responsibility alone. Under this
+section, the Commercial Contributor would have to defend claims against the
+other Contributors related to those performance claims and warranties, and if a
+court requires any other Contributor to pay any damages as a result, the
+Commercial Contributor must pay those damages.
+
+
5. NO WARRANTY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS
+AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT
+WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING,
+WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
+MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and distributing the
+Program and assumes all risks associated with its exercise of rights under this
+Agreement , including but not limited to the risks and costs of program errors,
+compliance with applicable laws, damage to or loss of data, programs or
+equipment, and unavailability or interruption of operations.
+
+
6. DISCLAIMER OF LIABILITY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS
+AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY
+OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF
+THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF
+THE POSSIBILITY OF SUCH DAMAGES.
+
+
7. GENERAL
+
+
If any provision of this Agreement is invalid
+or unenforceable under applicable law, it shall not affect the validity or
+enforceability of the remainder of the terms of this Agreement, and without
+further action by the parties hereto, such provision shall be reformed to the
+minimum extent necessary to make such provision valid and enforceable.
+
+
If Recipient institutes patent litigation
+against any entity (including a cross-claim or counterclaim in a lawsuit)
+alleging that the Program itself (excluding combinations of the Program with
+other software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the date
+such litigation is filed.
+
+
All Recipient's rights under this Agreement
+shall terminate if it fails to comply with any of the material terms or
+conditions of this Agreement and does not cure such failure in a reasonable
+period of time after becoming aware of such noncompliance. If all Recipient's
+rights under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.
+
+
Everyone is permitted to copy and distribute
+copies of this Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The Agreement
+Steward reserves the right to publish new versions (including revisions) of
+this Agreement from time to time. No one other than the Agreement Steward has
+the right to modify this Agreement. The Eclipse Foundation is the initial
+Agreement Steward. The Eclipse Foundation may assign the responsibility to
+serve as the Agreement Steward to a suitable separate entity. Each new version
+of the Agreement will be given a distinguishing version number. The Program
+(including Contributions) may always be distributed subject to the version of
+the Agreement under which it was received. In addition, after a new version of
+the Agreement is published, Contributor may elect to distribute the Program
+(including its Contributions) under the new version. Except as expressly stated
+in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to
+the intellectual property of any Contributor under this Agreement, whether
+expressly, by implication, estoppel or otherwise. All rights in the Program not
+expressly granted under this Agreement are reserved.
+
+
This Agreement is governed by the laws of the
+State of New York and the intellectual property laws of the United States of
+America. No party to this Agreement will bring a legal action under this
+Agreement more than one year after the cause of action arose. Each party waives
+its rights to a jury trial in any resulting litigation.
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.ddms.feature_25.2.2.4333796/META-INF/MANIFEST.MF b/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.ddms.feature_25.2.2.4333796/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..72ab081
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.ddms.feature_25.2.2.4333796/META-INF/MANIFEST.MF
@@ -0,0 +1,6 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Built-By: android-build
+Created-By: Apache Maven
+Build-Jdk: 1.8.0_45-internal
+
diff --git a/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.ddms.feature_25.2.2.4333796/feature.xml b/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.ddms.feature_25.2.2.4333796/feature.xml
new file mode 100644
index 0000000..4c0a14f
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.ddms.feature_25.2.2.4333796/feature.xml
@@ -0,0 +1,253 @@
+
+
+
+
+ Android Dalvik Debug Monitor Service
+
+
+
+ Copyright (C) 2007-2011 The Android Open Source Project
+
+
+
+ Note: jcommon-1.0.12.jar is under the BSD license rather than the APL. You can find a copy of the BSD License at http://www.opensource.org/licenses/bsd-license.php
+
+ jfreechart-1.0.9.jar and jfreechart-1.0.9-swt.jar are under the LGPL rather than the APL. You can find a copy of the LGPL at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt. You can get the source code for these two components at http://android.git.kernel.org/pub/jfreechart-1.0.9.zip
+
+
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.gldebugger.feature_25.2.2.4333796/META-INF/MANIFEST.MF b/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.gldebugger.feature_25.2.2.4333796/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..72ab081
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.gldebugger.feature_25.2.2.4333796/META-INF/MANIFEST.MF
@@ -0,0 +1,6 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Built-By: android-build
+Created-By: Apache Maven
+Build-Jdk: 1.8.0_45-internal
+
diff --git a/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.gldebugger.feature_25.2.2.4333796/feature.xml b/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.gldebugger.feature_25.2.2.4333796/feature.xml
new file mode 100644
index 0000000..256fbee
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.gldebugger.feature_25.2.2.4333796/feature.xml
@@ -0,0 +1,232 @@
+
+
+
+
+ GLESv2 Debugger Client (Alpha status).
+
+
+
+ Copyright (C) 2011 The Android Open Source Project
+
+
+
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.hierarchyviewer.feature_25.4.0.4333796/META-INF/MANIFEST.MF b/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.hierarchyviewer.feature_25.4.0.4333796/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..72ab081
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.hierarchyviewer.feature_25.4.0.4333796/META-INF/MANIFEST.MF
@@ -0,0 +1,6 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Built-By: android-build
+Created-By: Apache Maven
+Build-Jdk: 1.8.0_45-internal
+
diff --git a/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.hierarchyviewer.feature_25.4.0.4333796/feature.xml b/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.hierarchyviewer.feature_25.4.0.4333796/feature.xml
new file mode 100644
index 0000000..841174d
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.hierarchyviewer.feature_25.4.0.4333796/feature.xml
@@ -0,0 +1,239 @@
+
+
+
+
+ Android Hierarchy Viewer.
+
+
+
+ Copyright (C) 2010-2011 The Android Open Source Project
+
+
+
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.monitor.feature_25.2.2.4333796/META-INF/MANIFEST.MF b/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.monitor.feature_25.2.2.4333796/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..72ab081
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.monitor.feature_25.2.2.4333796/META-INF/MANIFEST.MF
@@ -0,0 +1,6 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Built-By: android-build
+Created-By: Apache Maven
+Build-Jdk: 1.8.0_45-internal
+
diff --git a/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.monitor.feature_25.2.2.4333796/feature.xml b/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.monitor.feature_25.2.2.4333796/feature.xml
new file mode 100644
index 0000000..f34b57b
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.monitor.feature_25.2.2.4333796/feature.xml
@@ -0,0 +1,233 @@
+
+
+
+
+ Android Debug Monitor
+
+
+
+ Copyright (C) 2007-2014 The Android Open Source Project
+
+
+
+ Note: jcommon-1.0.12.jar is under the BSD license rather than the APL. You can find a copy of the BSD License at http://www.opensource.org/licenses/bsd-license.php
+
+ jfreechart-1.0.9.jar and jfreechart-1.0.9-swt.jar are under the LGPL rather than the APL. You can find a copy of the LGPL at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt. You can get the source code for these two components at http://android.git.kernel.org/pub/jfreechart-1.0.9.zip
+
+
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.traceview.feature_25.2.2.4333796/META-INF/MANIFEST.MF b/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.traceview.feature_25.2.2.4333796/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..72ab081
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.traceview.feature_25.2.2.4333796/META-INF/MANIFEST.MF
@@ -0,0 +1,6 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Built-By: android-build
+Created-By: Apache Maven
+Build-Jdk: 1.8.0_45-internal
+
diff --git a/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.traceview.feature_25.2.2.4333796/feature.xml b/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.traceview.feature_25.2.2.4333796/feature.xml
new file mode 100644
index 0000000..11ef3bd
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/com.android.ide.eclipse.traceview.feature_25.2.2.4333796/feature.xml
@@ -0,0 +1,239 @@
+
+
+
+
+ Android Traceview
+
+
+
+ Copyright (C) 2011 The Android Open Source Project
+
+
+
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/ECLIPSE_.RSA b/android/tools/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..e5ed7f4
Binary files /dev/null and b/android/tools/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/ECLIPSE_.RSA differ
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/ECLIPSE_.SF b/android/tools/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..0c11cbf
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/ECLIPSE_.SF
@@ -0,0 +1,23 @@
+Signature-Version: 1.0
+SHA1-Digest-Manifest: aj3K+VfVL+O/zAucK68OY7bP01Y=
+Created-By: 1.6.0 (IBM Corporation)
+SHA1-Digest-Manifest-Main-Attributes: 4gIfTP5y3EzwI5ecyebQLugBMgo=
+
+Name: epl-v10.html
+SHA1-Digest: /iY8aEvT0IMpNnSjB0FpTUhvUGc=
+
+Name: eclipse_update_120.jpg
+SHA1-Digest: RyXo3knk5T635eCpQEPXyFBrCyA=
+
+Name: META-INF/eclipse.inf
+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=
+
+Name: license.html
+SHA1-Digest: Rp9AnRyeUIxNWe10fjaMDkQB8rU=
+
+Name: feature.properties
+SHA1-Digest: 9JE/KpVMKgJVCtwr9TedfPzDZx0=
+
+Name: feature.xml
+SHA1-Digest: WmrjBlVvFXQFWshXEEhLD51nkTA=
+
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/MANIFEST.MF b/android/tools/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..418b23e
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/MANIFEST.MF
@@ -0,0 +1,21 @@
+Manifest-Version: 1.0
+Created-By: 1.6.0 (IBM Corporation)
+
+Name: epl-v10.html
+SHA1-Digest: jYDaDJLBJpthCwPMgGFVYASJjIU=
+
+Name: META-INF/eclipse.inf
+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=
+
+Name: eclipse_update_120.jpg
+SHA1-Digest: xstAqMgs/a5AsQXQZSdDQ79veOA=
+
+Name: license.html
+SHA1-Digest: /vLZjlHkZSXMSfPrWwNqOUDqqbM=
+
+Name: feature.properties
+SHA1-Digest: NXFVr95HoF5vEzy9CBTLtpJiBJE=
+
+Name: feature.xml
+SHA1-Digest: 9NC7t93zlxasuZw/nuWdD1fpCd0=
+
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/eclipse.inf b/android/tools/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/eclipse_update_120.jpg b/android/tools/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/eclipse_update_120.jpg
new file mode 100644
index 0000000..bfdf708
Binary files /dev/null and b/android/tools/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/eclipse_update_120.jpg differ
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/epl-v10.html b/android/tools/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/epl-v10.html
new file mode 100644
index 0000000..fd39122
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/epl-v10.html
@@ -0,0 +1,261 @@
+
+
+
+
+
+
+Eclipse Public License - Version 1.0
+
+
+
+
+
+
+
Eclipse Public License - v 1.0
+
+
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.
+
+
1. DEFINITIONS
+
+
"Contribution" means:
+
+
a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and
+
b) in the case of each subsequent Contributor:
+
i) changes to the Program, and
+
ii) additions to the Program;
+
where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.
+
+
"Contributor" means any person or entity that distributes
+the Program.
+
+
"Licensed Patents" mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.
+
+
"Program" means the Contributions distributed in accordance
+with this Agreement.
+
+
"Recipient" means anyone who receives the Program under
+this Agreement, including all Contributors.
+
+
2. GRANT OF RIGHTS
+
+
a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.
+
+
b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.
+
+
c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.
+
+
d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.
+
+
3. REQUIREMENTS
+
+
A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:
+
+
a) it complies with the terms and conditions of this
+Agreement; and
+
+
b) its license agreement:
+
+
i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;
+
+
ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;
+
+
iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and
+
+
iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.
+
+
When the Program is made available in source code form:
+
+
a) it must be made available under this Agreement; and
+
+
b) a copy of this Agreement must be included with each
+copy of the Program.
+
+
Contributors may not remove or alter any copyright notices contained
+within the Program.
+
+
Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.
+
+
4. COMMERCIAL DISTRIBUTION
+
+
Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+("Commercial Contributor") hereby agrees to defend and
+indemnify every other Contributor ("Indemnified Contributor")
+against any losses, damages and costs (collectively "Losses")
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.
+
+
For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.
+
+
5. NO WARRANTY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.
+
+
6. DISCLAIMER OF LIABILITY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+
7. GENERAL
+
+
If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.
+
+
If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.
+
+
All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.
+
+
Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.
+
+
This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/feature.properties b/android/tools/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/feature.properties
new file mode 100644
index 0000000..57a7531
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/feature.properties
@@ -0,0 +1,197 @@
+###############################################################################
+# Copyright (c) 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Eclipse e4 Rich Client Platform
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org
+
+# "description" property - description of the feature
+description=The bundles required by org.eclipse.rcp version 4.0
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2010 IBM Corporation and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+ IBM Corporation - initial API and implementation\n
+################ end of copyright property ####################################
+
+
+########### end of license property #########################################################################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+ - Content may be structured and packaged into modules to facilitate delivering,\n\
+ extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+ plug-in fragments ("Fragments"), and features ("Features").\n\
+ - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+ in a directory named "plugins".\n\
+ - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+ Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+ Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+ numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+ - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+ named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+ - The top-level (root) directory\n\
+ - Plug-in and Fragment directories\n\
+ - Inside Plug-ins and Fragments packaged as JARs\n\
+ - Sub-directories of the directory named "src" of certain Plug-ins\n\
+ - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+ - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+ - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+ - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+ - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+ - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+ - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+ 1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+ the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+ extending or updating the functionality of an Eclipse-based product.\n\
+ 2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+ Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+ 3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+ govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+ Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+ with the Specification. Such Installable Software Agreement must inform the user of the\n\
+ terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+ the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+ indication of agreement by the user, the provisioning Technology will complete installation\n\
+ of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/feature.xml b/android/tools/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/feature.xml
new file mode 100644
index 0000000..00cf3bf
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/feature.xml
@@ -0,0 +1,764 @@
+
+
+
+
+ %description
+
+
+
+ %copyright
+
+
+
+ %license
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/license.html b/android/tools/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/license.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+Eclipse Foundation Software User Agreement
+
+
+
+
Eclipse Foundation Software User Agreement
+
February 1, 2011
+
+
Usage Of Content
+
+
THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+ (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+ CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+ OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+ NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+ CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.
+
+
Applicable Licenses
+
+
Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+ ("EPL"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.
+ For purposes of the EPL, "Program" will mean the Content.
+
+
Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+ repository ("Repository") in software modules ("Modules") and made available as downloadable archives ("Downloads").
+
+
+
Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features").
+
Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins".
+
A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins
+ and/or Fragments associated with that Feature.
+
Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features.
+
+
+
The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and
+Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:
+
+
+
The top-level (root) directory
+
Plug-in and Fragment directories
+
Inside Plug-ins and Fragments packaged as JARs
+
Sub-directories of the directory named "src" of certain Plug-ins
+
Feature directories
+
+
+
Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license ("Feature Update License") during the
+installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.
+
+
THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):
IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.
+
+
+
Use of Provisioning Technology
+
+
The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+ Update Manager ("Provisioning Technology") for the purpose of allowing users to install software, documentation, information and/or
+ other materials (collectively "Installable Software"). This capability is provided with the intent of allowing such users to
+ install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html
+ ("Specification").
+
+
You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+ applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+ in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+ Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:
+
+
+
A series of actions may occur ("Provisioning Process") in which a user may execute the Provisioning Technology
+ on a machine ("Target Machine") with the intent of installing, extending or updating the functionality of an Eclipse-based
+ product.
+
During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+ accessed and copied to the Target Machine.
+
Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+ Software ("Installable Software Agreement") and such Installable Software Agreement shall be accessed from the Target
+ Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+ the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+ indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.
+
+
+
Cryptography
+
+
Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+ another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+ possession, or use, and re-export of encryption software, to see if this is permitted.
+
+
Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER
+THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE,
+REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE
+OF THIS AGREEMENT.
+
+
1. DEFINITIONS
+
+
"Contribution" means:
+
+
a)
+in the case of the initial Contributor, the initial code and documentation
+distributed under this Agreement, and
+b) in the case of each subsequent Contributor:
+
+
i)
+changes to the Program, and
+
+
ii)
+additions to the Program;
+
+
where
+such changes and/or additions to the Program originate from and are distributed
+by that particular Contributor. A Contribution 'originates' from a Contributor
+if it was added to the Program by such Contributor itself or anyone acting on
+such Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in conjunction
+with the Program under their own license agreement, and (ii) are not derivative
+works of the Program.
+
+
"Contributor" means any person or
+entity that distributes the Program.
+
+
"Licensed Patents " mean patent
+claims licensable by a Contributor which are necessarily infringed by the use
+or sale of its Contribution alone or when combined with the Program.
+
+
"Program" means the Contributions
+distributed in accordance with this Agreement.
+
+
"Recipient" means anyone who
+receives the Program under this Agreement, including all Contributors.
+
+
2. GRANT OF RIGHTS
+
+
a)
+Subject to the terms of this Agreement, each Contributor hereby grants Recipient
+a non-exclusive, worldwide, royalty-free copyright license toreproduce, prepare derivative works of, publicly
+display, publicly perform, distribute and sublicense the Contribution of such
+Contributor, if any, and such derivative works, in source code and object code
+form.
+
+
b)
+Subject to the terms of this Agreement, each Contributor hereby grants
+Recipient a non-exclusive, worldwide,royalty-free
+patent license under Licensed Patents to make, use, sell, offer to sell, import
+and otherwise transfer the Contribution of such Contributor, if any, in source
+code and object code form. This patent license shall apply to the combination
+of the Contribution and the Program if, at the time the Contribution is added
+by the Contributor, such addition of the Contribution causes such combination
+to be covered by the Licensed Patents. The patent license shall not apply to
+any other combinations which include the Contribution. No hardware per se is
+licensed hereunder.
+
+
c)
+Recipient understands that although each Contributor grants the licenses to its
+Contributions set forth herein, no assurances are provided by any Contributor
+that the Program does not infringe the patent or other intellectual property
+rights of any other entity. Each Contributor disclaims any liability to Recipient
+for claims brought by any other entity based on infringement of intellectual
+property rights or otherwise. As a condition to exercising the rights and
+licenses granted hereunder, each Recipient hereby assumes sole responsibility
+to secure any other intellectual property rights needed, if any. For example,
+if a third party patent license is required to allow Recipient to distribute
+the Program, it is Recipient's responsibility to acquire that license before
+distributing the Program.
+
+
d)
+Each Contributor represents that to its knowledge it has sufficient copyright
+rights in its Contribution, if any, to grant the copyright license set forth in
+this Agreement.
+
+
3. REQUIREMENTS
+
+
A Contributor may choose to distribute the
+Program in object code form under its own license agreement, provided that:
+
+
+
a)
+it complies with the terms and conditions of this Agreement; and
+
+
b)
+its license agreement:
+
+
i)
+effectively disclaims on behalf of all Contributors all warranties and
+conditions, express and implied, including warranties or conditions of title
+and non-infringement, and implied warranties or conditions of merchantability
+and fitness for a particular purpose;
+
+
ii)
+effectively excludes on behalf of all Contributors all liability for damages,
+including direct, indirect, special, incidental and consequential damages, such
+as lost profits;
+
+
iii)
+states that any provisions which differ from this Agreement are offered by that
+Contributor alone and not by any other party; and
+
+
iv)
+states that source code for the Program is available from such Contributor, and
+informs licensees how to obtain it in a reasonable manner on or through a
+medium customarily used for software exchange.
+
+
When the Program is made available in source
+code form:
+
+
a)
+it must be made available under this Agreement; and
+
+
b) a
+copy of this Agreement must be included with each copy of the Program.
+
+
Contributors may not remove or alter any
+copyright notices contained within the Program.
+
+
Each Contributor must identify itself as the
+originator of its Contribution, if any, in a manner that reasonably allows
+subsequent Recipients to identify the originator of the Contribution.
+
+
4. COMMERCIAL DISTRIBUTION
+
+
Commercial distributors of software may
+accept certain responsibilities with respect to end users, business partners
+and the like. While this license is intended to facilitate the commercial use
+of the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create potential
+liability for other Contributors. Therefore, if a Contributor includes the
+Program in a commercial product offering, such Contributor ("Commercial
+Contributor") hereby agrees to defend and indemnify every other
+Contributor ("Indemnified Contributor") against any losses, damages and
+costs (collectively "Losses") arising from claims, lawsuits and other
+legal actions brought by a third party against the Indemnified Contributor to
+the extent caused by the acts or omissions of such Commercial Contributor in
+connection with its distribution of the Program in a commercial product
+offering. The obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In order
+to qualify, an Indemnified Contributor must: a) promptly notify the Commercial
+Contributor in writing of such claim, and b) allow the Commercial Contributor
+to control, and cooperate with the Commercial Contributor in, the defense and
+any related settlement negotiations. The Indemnified Contributor may participate
+in any such claim at its own expense.
+
+
For example, a Contributor might include the
+Program in a commercial product offering, Product X. That Contributor is then a
+Commercial Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance claims and
+warranties are such Commercial Contributor's responsibility alone. Under this
+section, the Commercial Contributor would have to defend claims against the
+other Contributors related to those performance claims and warranties, and if a
+court requires any other Contributor to pay any damages as a result, the
+Commercial Contributor must pay those damages.
+
+
5. NO WARRANTY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS
+AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT
+WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING,
+WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
+MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and distributing the
+Program and assumes all risks associated with its exercise of rights under this
+Agreement , including but not limited to the risks and costs of program errors,
+compliance with applicable laws, damage to or loss of data, programs or
+equipment, and unavailability or interruption of operations.
+
+
6. DISCLAIMER OF LIABILITY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS
+AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY
+OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF
+THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF
+THE POSSIBILITY OF SUCH DAMAGES.
+
+
7. GENERAL
+
+
If any provision of this Agreement is invalid
+or unenforceable under applicable law, it shall not affect the validity or
+enforceability of the remainder of the terms of this Agreement, and without
+further action by the parties hereto, such provision shall be reformed to the
+minimum extent necessary to make such provision valid and enforceable.
+
+
If Recipient institutes patent litigation
+against any entity (including a cross-claim or counterclaim in a lawsuit)
+alleging that the Program itself (excluding combinations of the Program with
+other software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the date
+such litigation is filed.
+
+
All Recipient's rights under this Agreement
+shall terminate if it fails to comply with any of the material terms or
+conditions of this Agreement and does not cure such failure in a reasonable
+period of time after becoming aware of such noncompliance. If all Recipient's
+rights under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.
+
+
Everyone is permitted to copy and distribute
+copies of this Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The Agreement
+Steward reserves the right to publish new versions (including revisions) of
+this Agreement from time to time. No one other than the Agreement Steward has
+the right to modify this Agreement. The Eclipse Foundation is the initial
+Agreement Steward. The Eclipse Foundation may assign the responsibility to
+serve as the Agreement Steward to a suitable separate entity. Each new version
+of the Agreement will be given a distinguishing version number. The Program
+(including Contributions) may always be distributed subject to the version of
+the Agreement under which it was received. In addition, after a new version of
+the Agreement is published, Contributor may elect to distribute the Program
+(including its Contributions) under the new version. Except as expressly stated
+in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to
+the intellectual property of any Contributor under this Agreement, whether
+expressly, by implication, estoppel or otherwise. All rights in the Program not
+expressly granted under this Agreement are reserved.
+
+
This Agreement is governed by the laws of the
+State of New York and the intellectual property laws of the United States of
+America. No party to this Agreement will bring a legal action under this
+Agreement more than one year after the cause of action arose. Each party waives
+its rights to a jury trial in any resulting litigation.
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/feature.properties b/android/tools/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/feature.properties
new file mode 100644
index 0000000..ad5ccaf
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/feature.properties
@@ -0,0 +1,155 @@
+# /**
+# * Copyright (c) 2002-2011 IBM Corporation and others.
+# * All rights reserved. This program and the accompanying materials
+# * are made available under the terms of the Eclipse Public License v1.0
+# * which accompanies this distribution, and is available at
+# * http://www.eclipse.org/legal/epl-v10.html
+# *
+# * Contributors:
+# * IBM - Initial API and implementation
+# */
+
+# NLS_MESSAGEFORMAT_VAR
+
+# "featureName" property - name of the feature
+featureName=EMF Common
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse Modeling Project
+
+# "description" property - description of the feature
+description=Common platform-independent utilities used throughout EMF, including collection classes, notifiers, adapters, and commands.
+
+ModelingUpdateSiteName=Eclipse Modeling Project Updates
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+ - Content may be structured and packaged into modules to facilitate delivering,\n\
+ extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+ plug-in fragments ("Fragments"), and features ("Features").\n\
+ - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+ in a directory named "plugins".\n\
+ - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+ Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+ Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+ numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+ - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+ named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+ - The top-level (root) directory\n\
+ - Plug-in and Fragment directories\n\
+ - Inside Plug-ins and Fragments packaged as JARs\n\
+ - Sub-directories of the directory named "src" of certain Plug-ins\n\
+ - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+ - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+ - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+ - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+ - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+ - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+ - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+ 1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+ the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+ extending or updating the functionality of an Eclipse-based product.\n\
+ 2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+ Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+ 3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+ govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+ Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+ with the Specification. Such Installable Software Agreement must inform the user of the\n\
+ terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+ the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+ indication of agreement by the user, the provisioning Technology will complete installation\n\
+ of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/feature.xml b/android/tools/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/feature.xml
new file mode 100644
index 0000000..7b6a919
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/feature.xml
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+ %description
+
+
+
+ Copyright (c) 2002-2011 IBM Corporation and others.
+All rights reserved. This program and the accompanying materials
+are made available under the terms of the Eclipse Public License v1.0
+which accompanies this distribution, and is available at
+http://www.eclipse.org/legal/epl-v10.html
+
+
+
+ %license
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/license.html b/android/tools/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.emf.common_2.8.0.v20130125-0546/license.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+Eclipse Foundation Software User Agreement
+
+
+
+
Eclipse Foundation Software User Agreement
+
February 1, 2011
+
+
Usage Of Content
+
+
THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+ (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+ CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+ OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+ NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+ CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.
+
+
Applicable Licenses
+
+
Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+ ("EPL"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.
+ For purposes of the EPL, "Program" will mean the Content.
+
+
Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+ repository ("Repository") in software modules ("Modules") and made available as downloadable archives ("Downloads").
+
+
+
Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features").
+
Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins".
+
A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins
+ and/or Fragments associated with that Feature.
+
Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features.
+
+
+
The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and
+Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:
+
+
+
The top-level (root) directory
+
Plug-in and Fragment directories
+
Inside Plug-ins and Fragments packaged as JARs
+
Sub-directories of the directory named "src" of certain Plug-ins
+
Feature directories
+
+
+
Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license ("Feature Update License") during the
+installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.
+
+
THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):
IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.
+
+
+
Use of Provisioning Technology
+
+
The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+ Update Manager ("Provisioning Technology") for the purpose of allowing users to install software, documentation, information and/or
+ other materials (collectively "Installable Software"). This capability is provided with the intent of allowing such users to
+ install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html
+ ("Specification").
+
+
You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+ applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+ in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+ Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:
+
+
+
A series of actions may occur ("Provisioning Process") in which a user may execute the Provisioning Technology
+ on a machine ("Target Machine") with the intent of installing, extending or updating the functionality of an Eclipse-based
+ product.
+
During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+ accessed and copied to the Target Machine.
+
Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+ Software ("Installable Software Agreement") and such Installable Software Agreement shall be accessed from the Target
+ Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+ the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+ indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.
+
+
+
Cryptography
+
+
Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+ another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+ possession, or use, and re-export of encryption software, to see if this is permitted.
+
+
Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER
+THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE,
+REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE
+OF THIS AGREEMENT.
+
+
1. DEFINITIONS
+
+
"Contribution" means:
+
+
a)
+in the case of the initial Contributor, the initial code and documentation
+distributed under this Agreement, and
+b) in the case of each subsequent Contributor:
+
+
i)
+changes to the Program, and
+
+
ii)
+additions to the Program;
+
+
where
+such changes and/or additions to the Program originate from and are distributed
+by that particular Contributor. A Contribution 'originates' from a Contributor
+if it was added to the Program by such Contributor itself or anyone acting on
+such Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in conjunction
+with the Program under their own license agreement, and (ii) are not derivative
+works of the Program.
+
+
"Contributor" means any person or
+entity that distributes the Program.
+
+
"Licensed Patents " mean patent
+claims licensable by a Contributor which are necessarily infringed by the use
+or sale of its Contribution alone or when combined with the Program.
+
+
"Program" means the Contributions
+distributed in accordance with this Agreement.
+
+
"Recipient" means anyone who
+receives the Program under this Agreement, including all Contributors.
+
+
2. GRANT OF RIGHTS
+
+
a)
+Subject to the terms of this Agreement, each Contributor hereby grants Recipient
+a non-exclusive, worldwide, royalty-free copyright license toreproduce, prepare derivative works of, publicly
+display, publicly perform, distribute and sublicense the Contribution of such
+Contributor, if any, and such derivative works, in source code and object code
+form.
+
+
b)
+Subject to the terms of this Agreement, each Contributor hereby grants
+Recipient a non-exclusive, worldwide,royalty-free
+patent license under Licensed Patents to make, use, sell, offer to sell, import
+and otherwise transfer the Contribution of such Contributor, if any, in source
+code and object code form. This patent license shall apply to the combination
+of the Contribution and the Program if, at the time the Contribution is added
+by the Contributor, such addition of the Contribution causes such combination
+to be covered by the Licensed Patents. The patent license shall not apply to
+any other combinations which include the Contribution. No hardware per se is
+licensed hereunder.
+
+
c)
+Recipient understands that although each Contributor grants the licenses to its
+Contributions set forth herein, no assurances are provided by any Contributor
+that the Program does not infringe the patent or other intellectual property
+rights of any other entity. Each Contributor disclaims any liability to Recipient
+for claims brought by any other entity based on infringement of intellectual
+property rights or otherwise. As a condition to exercising the rights and
+licenses granted hereunder, each Recipient hereby assumes sole responsibility
+to secure any other intellectual property rights needed, if any. For example,
+if a third party patent license is required to allow Recipient to distribute
+the Program, it is Recipient's responsibility to acquire that license before
+distributing the Program.
+
+
d)
+Each Contributor represents that to its knowledge it has sufficient copyright
+rights in its Contribution, if any, to grant the copyright license set forth in
+this Agreement.
+
+
3. REQUIREMENTS
+
+
A Contributor may choose to distribute the
+Program in object code form under its own license agreement, provided that:
+
+
+
a)
+it complies with the terms and conditions of this Agreement; and
+
+
b)
+its license agreement:
+
+
i)
+effectively disclaims on behalf of all Contributors all warranties and
+conditions, express and implied, including warranties or conditions of title
+and non-infringement, and implied warranties or conditions of merchantability
+and fitness for a particular purpose;
+
+
ii)
+effectively excludes on behalf of all Contributors all liability for damages,
+including direct, indirect, special, incidental and consequential damages, such
+as lost profits;
+
+
iii)
+states that any provisions which differ from this Agreement are offered by that
+Contributor alone and not by any other party; and
+
+
iv)
+states that source code for the Program is available from such Contributor, and
+informs licensees how to obtain it in a reasonable manner on or through a
+medium customarily used for software exchange.
+
+
When the Program is made available in source
+code form:
+
+
a)
+it must be made available under this Agreement; and
+
+
b) a
+copy of this Agreement must be included with each copy of the Program.
+
+
Contributors may not remove or alter any
+copyright notices contained within the Program.
+
+
Each Contributor must identify itself as the
+originator of its Contribution, if any, in a manner that reasonably allows
+subsequent Recipients to identify the originator of the Contribution.
+
+
4. COMMERCIAL DISTRIBUTION
+
+
Commercial distributors of software may
+accept certain responsibilities with respect to end users, business partners
+and the like. While this license is intended to facilitate the commercial use
+of the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create potential
+liability for other Contributors. Therefore, if a Contributor includes the
+Program in a commercial product offering, such Contributor ("Commercial
+Contributor") hereby agrees to defend and indemnify every other
+Contributor ("Indemnified Contributor") against any losses, damages and
+costs (collectively "Losses") arising from claims, lawsuits and other
+legal actions brought by a third party against the Indemnified Contributor to
+the extent caused by the acts or omissions of such Commercial Contributor in
+connection with its distribution of the Program in a commercial product
+offering. The obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In order
+to qualify, an Indemnified Contributor must: a) promptly notify the Commercial
+Contributor in writing of such claim, and b) allow the Commercial Contributor
+to control, and cooperate with the Commercial Contributor in, the defense and
+any related settlement negotiations. The Indemnified Contributor may participate
+in any such claim at its own expense.
+
+
For example, a Contributor might include the
+Program in a commercial product offering, Product X. That Contributor is then a
+Commercial Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance claims and
+warranties are such Commercial Contributor's responsibility alone. Under this
+section, the Commercial Contributor would have to defend claims against the
+other Contributors related to those performance claims and warranties, and if a
+court requires any other Contributor to pay any damages as a result, the
+Commercial Contributor must pay those damages.
+
+
5. NO WARRANTY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS
+AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT
+WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING,
+WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
+MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and distributing the
+Program and assumes all risks associated with its exercise of rights under this
+Agreement , including but not limited to the risks and costs of program errors,
+compliance with applicable laws, damage to or loss of data, programs or
+equipment, and unavailability or interruption of operations.
+
+
6. DISCLAIMER OF LIABILITY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS
+AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY
+OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF
+THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF
+THE POSSIBILITY OF SUCH DAMAGES.
+
+
7. GENERAL
+
+
If any provision of this Agreement is invalid
+or unenforceable under applicable law, it shall not affect the validity or
+enforceability of the remainder of the terms of this Agreement, and without
+further action by the parties hereto, such provision shall be reformed to the
+minimum extent necessary to make such provision valid and enforceable.
+
+
If Recipient institutes patent litigation
+against any entity (including a cross-claim or counterclaim in a lawsuit)
+alleging that the Program itself (excluding combinations of the Program with
+other software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the date
+such litigation is filed.
+
+
All Recipient's rights under this Agreement
+shall terminate if it fails to comply with any of the material terms or
+conditions of this Agreement and does not cure such failure in a reasonable
+period of time after becoming aware of such noncompliance. If all Recipient's
+rights under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.
+
+
Everyone is permitted to copy and distribute
+copies of this Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The Agreement
+Steward reserves the right to publish new versions (including revisions) of
+this Agreement from time to time. No one other than the Agreement Steward has
+the right to modify this Agreement. The Eclipse Foundation is the initial
+Agreement Steward. The Eclipse Foundation may assign the responsibility to
+serve as the Agreement Steward to a suitable separate entity. Each new version
+of the Agreement will be given a distinguishing version number. The Program
+(including Contributions) may always be distributed subject to the version of
+the Agreement under which it was received. In addition, after a new version of
+the Agreement is published, Contributor may elect to distribute the Program
+(including its Contributions) under the new version. Except as expressly stated
+in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to
+the intellectual property of any Contributor under this Agreement, whether
+expressly, by implication, estoppel or otherwise. All rights in the Program not
+expressly granted under this Agreement are reserved.
+
+
This Agreement is governed by the laws of the
+State of New York and the intellectual property laws of the United States of
+America. No party to this Agreement will bring a legal action under this
+Agreement more than one year after the cause of action arose. Each party waives
+its rights to a jury trial in any resulting litigation.
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/feature.properties b/android/tools/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/feature.properties
new file mode 100644
index 0000000..249c276
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/feature.properties
@@ -0,0 +1,155 @@
+# /**
+# * Copyright (c) 2002-2011 IBM Corporation and others.
+# * All rights reserved. This program and the accompanying materials
+# * are made available under the terms of the Eclipse Public License v1.0
+# * which accompanies this distribution, and is available at
+# * http://www.eclipse.org/legal/epl-v10.html
+# *
+# * Contributors:
+# * IBM - Initial API and implementation
+# */
+
+# NLS_MESSAGEFORMAT_VAR
+
+# "featureName" property - name of the feature
+featureName=EMF - Eclipse Modeling Framework Core Runtime
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse Modeling Project
+
+# "description" property - description of the feature
+description=The core runtime for EMF, including EMF's common utilities, Ecore, XML/XMI persistence, and the change model.
+
+ModelingUpdateSiteName=Eclipse Modeling Project Updates
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+ - Content may be structured and packaged into modules to facilitate delivering,\n\
+ extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+ plug-in fragments ("Fragments"), and features ("Features").\n\
+ - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+ in a directory named "plugins".\n\
+ - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+ Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+ Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+ numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+ - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+ named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+ - The top-level (root) directory\n\
+ - Plug-in and Fragment directories\n\
+ - Inside Plug-ins and Fragments packaged as JARs\n\
+ - Sub-directories of the directory named "src" of certain Plug-ins\n\
+ - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+ - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+ - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+ - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+ - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+ - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+ - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+ 1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+ the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+ extending or updating the functionality of an Eclipse-based product.\n\
+ 2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+ Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+ 3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+ govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+ Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+ with the Specification. Such Installable Software Agreement must inform the user of the\n\
+ terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+ the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+ indication of agreement by the user, the provisioning Technology will complete installation\n\
+ of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/feature.xml b/android/tools/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/feature.xml
new file mode 100644
index 0000000..9655608
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/feature.xml
@@ -0,0 +1,57 @@
+
+
+
+
+
+
+ %description
+
+
+
+ Copyright (c) 2002-2011 IBM Corporation and others.
+All rights reserved. This program and the accompanying materials
+are made available under the terms of the Eclipse Public License v1.0
+which accompanies this distribution, and is available at
+http://www.eclipse.org/legal/epl-v10.html
+
+
+
+ %license
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/license.html b/android/tools/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/license.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+Eclipse Foundation Software User Agreement
+
+
+
+
Eclipse Foundation Software User Agreement
+
February 1, 2011
+
+
Usage Of Content
+
+
THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+ (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+ CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+ OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+ NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+ CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.
+
+
Applicable Licenses
+
+
Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+ ("EPL"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.
+ For purposes of the EPL, "Program" will mean the Content.
+
+
Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+ repository ("Repository") in software modules ("Modules") and made available as downloadable archives ("Downloads").
+
+
+
Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features").
+
Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins".
+
A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins
+ and/or Fragments associated with that Feature.
+
Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features.
+
+
+
The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and
+Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:
+
+
+
The top-level (root) directory
+
Plug-in and Fragment directories
+
Inside Plug-ins and Fragments packaged as JARs
+
Sub-directories of the directory named "src" of certain Plug-ins
+
Feature directories
+
+
+
Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license ("Feature Update License") during the
+installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.
+
+
THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):
IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.
+
+
+
Use of Provisioning Technology
+
+
The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+ Update Manager ("Provisioning Technology") for the purpose of allowing users to install software, documentation, information and/or
+ other materials (collectively "Installable Software"). This capability is provided with the intent of allowing such users to
+ install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html
+ ("Specification").
+
+
You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+ applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+ in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+ Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:
+
+
+
A series of actions may occur ("Provisioning Process") in which a user may execute the Provisioning Technology
+ on a machine ("Target Machine") with the intent of installing, extending or updating the functionality of an Eclipse-based
+ product.
+
During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+ accessed and copied to the Target Machine.
+
Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+ Software ("Installable Software Agreement") and such Installable Software Agreement shall be accessed from the Target
+ Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+ the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+ indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.
+
+
+
Cryptography
+
+
Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+ another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+ possession, or use, and re-export of encryption software, to see if this is permitted.
+
+
Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.
+
+
1. DEFINITIONS
+
+
"Contribution" means:
+
+
a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and
+
b) in the case of each subsequent Contributor:
+
i) changes to the Program, and
+
ii) additions to the Program;
+
where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.
+
+
"Contributor" means any person or entity that distributes
+the Program.
+
+
"Licensed Patents" mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.
+
+
"Program" means the Contributions distributed in accordance
+with this Agreement.
+
+
"Recipient" means anyone who receives the Program under
+this Agreement, including all Contributors.
+
+
2. GRANT OF RIGHTS
+
+
a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.
+
+
b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.
+
+
c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.
+
+
d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.
+
+
3. REQUIREMENTS
+
+
A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:
+
+
a) it complies with the terms and conditions of this
+Agreement; and
+
+
b) its license agreement:
+
+
i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;
+
+
ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;
+
+
iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and
+
+
iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.
+
+
When the Program is made available in source code form:
+
+
a) it must be made available under this Agreement; and
+
+
b) a copy of this Agreement must be included with each
+copy of the Program.
+
+
Contributors may not remove or alter any copyright notices contained
+within the Program.
+
+
Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.
+
+
4. COMMERCIAL DISTRIBUTION
+
+
Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+("Commercial Contributor") hereby agrees to defend and
+indemnify every other Contributor ("Indemnified Contributor")
+against any losses, damages and costs (collectively "Losses")
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.
+
+
For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.
+
+
5. NO WARRANTY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.
+
+
6. DISCLAIMER OF LIABILITY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+
7. GENERAL
+
+
If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.
+
+
If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.
+
+
All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.
+
+
Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.
+
+
This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/feature.properties b/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/feature.properties
new file mode 100644
index 0000000..35a39f0
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/feature.properties
@@ -0,0 +1,194 @@
+###############################################################################
+# Copyright (c) 2010, 2011 EclipseSource Inc. and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# EclipseSource - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Equinox p2 Core Function
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org - Equinox
+
+description=Provides a minimal headless provisioning system.
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2010 EclipseSource Inc. and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+ EclipseSource - initial API and implementation\n
+################ end of copyright property ####################################
+###############################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+ - Content may be structured and packaged into modules to facilitate delivering,\n\
+ extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+ plug-in fragments ("Fragments"), and features ("Features").\n\
+ - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+ in a directory named "plugins".\n\
+ - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+ Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+ Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+ numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+ - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+ named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+ - The top-level (root) directory\n\
+ - Plug-in and Fragment directories\n\
+ - Inside Plug-ins and Fragments packaged as JARs\n\
+ - Sub-directories of the directory named "src" of certain Plug-ins\n\
+ - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+ - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+ - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+ - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+ - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+ - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+ - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+ 1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+ the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+ extending or updating the functionality of an Eclipse-based product.\n\
+ 2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+ Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+ 3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+ govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+ Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+ with the Specification. Such Installable Software Agreement must inform the user of the\n\
+ terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+ the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+ indication of agreement by the user, the provisioning Technology will complete installation\n\
+ of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/feature.xml b/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/feature.xml
new file mode 100644
index 0000000..164ec80
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/feature.xml
@@ -0,0 +1,286 @@
+
+
+
+
+ %description
+
+
+
+ %copyright
+
+
+
+ %license
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/license.html b/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/license.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+Eclipse Foundation Software User Agreement
+
+
+
+
Eclipse Foundation Software User Agreement
+
February 1, 2011
+
+
Usage Of Content
+
+
THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+ (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+ CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+ OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+ NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+ CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.
+
+
Applicable Licenses
+
+
Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+ ("EPL"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.
+ For purposes of the EPL, "Program" will mean the Content.
+
+
Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+ repository ("Repository") in software modules ("Modules") and made available as downloadable archives ("Downloads").
+
+
+
Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features").
+
Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins".
+
A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins
+ and/or Fragments associated with that Feature.
+
Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features.
+
+
+
The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and
+Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:
+
+
+
The top-level (root) directory
+
Plug-in and Fragment directories
+
Inside Plug-ins and Fragments packaged as JARs
+
Sub-directories of the directory named "src" of certain Plug-ins
+
Feature directories
+
+
+
Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license ("Feature Update License") during the
+installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.
+
+
THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):
IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.
+
+
+
Use of Provisioning Technology
+
+
The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+ Update Manager ("Provisioning Technology") for the purpose of allowing users to install software, documentation, information and/or
+ other materials (collectively "Installable Software"). This capability is provided with the intent of allowing such users to
+ install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html
+ ("Specification").
+
+
You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+ applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+ in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+ Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:
+
+
+
A series of actions may occur ("Provisioning Process") in which a user may execute the Provisioning Technology
+ on a machine ("Target Machine") with the intent of installing, extending or updating the functionality of an Eclipse-based
+ product.
+
During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+ accessed and copied to the Target Machine.
+
Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+ Software ("Installable Software Agreement") and such Installable Software Agreement shall be accessed from the Target
+ Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+ the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+ indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.
+
+
+
Cryptography
+
+
Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+ another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+ possession, or use, and re-export of encryption software, to see if this is permitted.
+
+
Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.
+
+
1. DEFINITIONS
+
+
"Contribution" means:
+
+
a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and
+
b) in the case of each subsequent Contributor:
+
i) changes to the Program, and
+
ii) additions to the Program;
+
where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.
+
+
"Contributor" means any person or entity that distributes
+the Program.
+
+
"Licensed Patents" mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.
+
+
"Program" means the Contributions distributed in accordance
+with this Agreement.
+
+
"Recipient" means anyone who receives the Program under
+this Agreement, including all Contributors.
+
+
2. GRANT OF RIGHTS
+
+
a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.
+
+
b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.
+
+
c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.
+
+
d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.
+
+
3. REQUIREMENTS
+
+
A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:
+
+
a) it complies with the terms and conditions of this
+Agreement; and
+
+
b) its license agreement:
+
+
i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;
+
+
ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;
+
+
iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and
+
+
iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.
+
+
When the Program is made available in source code form:
+
+
a) it must be made available under this Agreement; and
+
+
b) a copy of this Agreement must be included with each
+copy of the Program.
+
+
Contributors may not remove or alter any copyright notices contained
+within the Program.
+
+
Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.
+
+
4. COMMERCIAL DISTRIBUTION
+
+
Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+("Commercial Contributor") hereby agrees to defend and
+indemnify every other Contributor ("Indemnified Contributor")
+against any losses, damages and costs (collectively "Losses")
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.
+
+
For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.
+
+
5. NO WARRANTY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.
+
+
6. DISCLAIMER OF LIABILITY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+
7. GENERAL
+
+
If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.
+
+
If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.
+
+
All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.
+
+
Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.
+
+
This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/feature.properties b/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/feature.properties
new file mode 100644
index 0000000..a612ea1
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/feature.properties
@@ -0,0 +1,193 @@
+###############################################################################
+# Copyright (c) 2010, 2011 EclipseSource Inc. and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# EclipseSource - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Add-on Function for p2
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org - Equinox
+
+description=Provides some backward compatibility support (e.g. drop-ins, legacy update site) and the metadata generation facility.
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2010 EclipseSource Inc. and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+ EclipseSource - initial API and implementation\n
+################ end of copyright property ###################################################################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+ - Content may be structured and packaged into modules to facilitate delivering,\n\
+ extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+ plug-in fragments ("Fragments"), and features ("Features").\n\
+ - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+ in a directory named "plugins".\n\
+ - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+ Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+ Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+ numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+ - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+ named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+ - The top-level (root) directory\n\
+ - Plug-in and Fragment directories\n\
+ - Inside Plug-ins and Fragments packaged as JARs\n\
+ - Sub-directories of the directory named "src" of certain Plug-ins\n\
+ - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+ - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+ - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+ - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+ - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+ - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+ - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+ 1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+ the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+ extending or updating the functionality of an Eclipse-based product.\n\
+ 2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+ Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+ 3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+ govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+ Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+ with the Specification. Such Installable Software Agreement must inform the user of the\n\
+ terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+ the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+ indication of agreement by the user, the provisioning Technology will complete installation\n\
+ of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/feature.xml b/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/feature.xml
new file mode 100644
index 0000000..0ef45b9
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/feature.xml
@@ -0,0 +1,76 @@
+
+
+
+
+ %description
+
+
+
+ %copyright
+
+
+
+ %license
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/license.html b/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/license.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+Eclipse Foundation Software User Agreement
+
+
+
+
Eclipse Foundation Software User Agreement
+
February 1, 2011
+
+
Usage Of Content
+
+
THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+ (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+ CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+ OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+ NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+ CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.
+
+
Applicable Licenses
+
+
Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+ ("EPL"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.
+ For purposes of the EPL, "Program" will mean the Content.
+
+
Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+ repository ("Repository") in software modules ("Modules") and made available as downloadable archives ("Downloads").
+
+
+
Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features").
+
Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins".
+
A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins
+ and/or Fragments associated with that Feature.
+
Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features.
+
+
+
The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and
+Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:
+
+
+
The top-level (root) directory
+
Plug-in and Fragment directories
+
Inside Plug-ins and Fragments packaged as JARs
+
Sub-directories of the directory named "src" of certain Plug-ins
+
Feature directories
+
+
+
Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license ("Feature Update License") during the
+installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.
+
+
THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):
IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.
+
+
+
Use of Provisioning Technology
+
+
The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+ Update Manager ("Provisioning Technology") for the purpose of allowing users to install software, documentation, information and/or
+ other materials (collectively "Installable Software"). This capability is provided with the intent of allowing such users to
+ install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html
+ ("Specification").
+
+
You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+ applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+ in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+ Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:
+
+
+
A series of actions may occur ("Provisioning Process") in which a user may execute the Provisioning Technology
+ on a machine ("Target Machine") with the intent of installing, extending or updating the functionality of an Eclipse-based
+ product.
+
During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+ accessed and copied to the Target Machine.
+
Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+ Software ("Installable Software Agreement") and such Installable Software Agreement shall be accessed from the Target
+ Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+ the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+ indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.
+
+
+
Cryptography
+
+
Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+ another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+ possession, or use, and re-export of encryption software, to see if this is permitted.
+
+
Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.
+
+
1. DEFINITIONS
+
+
"Contribution" means:
+
+
a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and
+
b) in the case of each subsequent Contributor:
+
i) changes to the Program, and
+
ii) additions to the Program;
+
where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.
+
+
"Contributor" means any person or entity that distributes
+the Program.
+
+
"Licensed Patents" mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.
+
+
"Program" means the Contributions distributed in accordance
+with this Agreement.
+
+
"Recipient" means anyone who receives the Program under
+this Agreement, including all Contributors.
+
+
2. GRANT OF RIGHTS
+
+
a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.
+
+
b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.
+
+
c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.
+
+
d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.
+
+
3. REQUIREMENTS
+
+
A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:
+
+
a) it complies with the terms and conditions of this
+Agreement; and
+
+
b) its license agreement:
+
+
i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;
+
+
ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;
+
+
iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and
+
+
iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.
+
+
When the Program is made available in source code form:
+
+
a) it must be made available under this Agreement; and
+
+
b) a copy of this Agreement must be included with each
+copy of the Program.
+
+
Contributors may not remove or alter any copyright notices contained
+within the Program.
+
+
Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.
+
+
4. COMMERCIAL DISTRIBUTION
+
+
Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+("Commercial Contributor") hereby agrees to defend and
+indemnify every other Contributor ("Indemnified Contributor")
+against any losses, damages and costs (collectively "Losses")
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.
+
+
For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.
+
+
5. NO WARRANTY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.
+
+
6. DISCLAIMER OF LIABILITY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+
7. GENERAL
+
+
If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.
+
+
If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.
+
+
All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.
+
+
Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.
+
+
This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/feature.properties b/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/feature.properties
new file mode 100644
index 0000000..5d06bc4
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/feature.properties
@@ -0,0 +1,194 @@
+###############################################################################
+# Copyright (c) 2011 EclipseSource Inc. and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# EclipseSource - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Equinox p2 RCP Management Facilities
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org - Equinox
+
+description=Provides SWT based UI component for p2.
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2011 EclipseSource Inc. and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+ EclipseSource - initial API and implementation\n
+################ end of copyright property ####################################
+###############################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+ - Content may be structured and packaged into modules to facilitate delivering,\n\
+ extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+ plug-in fragments ("Fragments"), and features ("Features").\n\
+ - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+ in a directory named "plugins".\n\
+ - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+ Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+ Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+ numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+ - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+ named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+ - The top-level (root) directory\n\
+ - Plug-in and Fragment directories\n\
+ - Inside Plug-ins and Fragments packaged as JARs\n\
+ - Sub-directories of the directory named "src" of certain Plug-ins\n\
+ - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+ - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+ - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+ - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+ - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+ - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+ - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+ 1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+ the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+ extending or updating the functionality of an Eclipse-based product.\n\
+ 2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+ Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+ 3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+ govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+ Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+ with the Specification. Such Installable Software Agreement must inform the user of the\n\
+ terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+ the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+ indication of agreement by the user, the provisioning Technology will complete installation\n\
+ of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/feature.xml b/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/feature.xml
new file mode 100644
index 0000000..af7bd48
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/feature.xml
@@ -0,0 +1,62 @@
+
+
+
+
+ %description
+
+
+
+ %copyright
+
+
+
+ %license
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/license.html b/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/license.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+Eclipse Foundation Software User Agreement
+
+
+
+
Eclipse Foundation Software User Agreement
+
February 1, 2011
+
+
Usage Of Content
+
+
THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+ (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+ CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+ OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+ NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+ CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.
+
+
Applicable Licenses
+
+
Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+ ("EPL"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.
+ For purposes of the EPL, "Program" will mean the Content.
+
+
Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+ repository ("Repository") in software modules ("Modules") and made available as downloadable archives ("Downloads").
+
+
+
Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features").
+
Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins".
+
A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins
+ and/or Fragments associated with that Feature.
+
Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features.
+
+
+
The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and
+Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:
+
+
+
The top-level (root) directory
+
Plug-in and Fragment directories
+
Inside Plug-ins and Fragments packaged as JARs
+
Sub-directories of the directory named "src" of certain Plug-ins
+
Feature directories
+
+
+
Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license ("Feature Update License") during the
+installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.
+
+
THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):
IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.
+
+
+
Use of Provisioning Technology
+
+
The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+ Update Manager ("Provisioning Technology") for the purpose of allowing users to install software, documentation, information and/or
+ other materials (collectively "Installable Software"). This capability is provided with the intent of allowing such users to
+ install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html
+ ("Specification").
+
+
You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+ applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+ in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+ Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:
+
+
+
A series of actions may occur ("Provisioning Process") in which a user may execute the Provisioning Technology
+ on a machine ("Target Machine") with the intent of installing, extending or updating the functionality of an Eclipse-based
+ product.
+
During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+ accessed and copied to the Target Machine.
+
Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+ Software ("Installable Software Agreement") and such Installable Software Agreement shall be accessed from the Target
+ Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+ the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+ indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.
+
+
+
Cryptography
+
+
Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+ another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+ possession, or use, and re-export of encryption software, to see if this is permitted.
+
+
Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.
+
+
1. DEFINITIONS
+
+
"Contribution" means:
+
+
a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and
+
b) in the case of each subsequent Contributor:
+
i) changes to the Program, and
+
ii) additions to the Program;
+
where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.
+
+
"Contributor" means any person or entity that distributes
+the Program.
+
+
"Licensed Patents" mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.
+
+
"Program" means the Contributions distributed in accordance
+with this Agreement.
+
+
"Recipient" means anyone who receives the Program under
+this Agreement, including all Contributors.
+
+
2. GRANT OF RIGHTS
+
+
a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.
+
+
b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.
+
+
c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.
+
+
d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.
+
+
3. REQUIREMENTS
+
+
A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:
+
+
a) it complies with the terms and conditions of this
+Agreement; and
+
+
b) its license agreement:
+
+
i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;
+
+
ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;
+
+
iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and
+
+
iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.
+
+
When the Program is made available in source code form:
+
+
a) it must be made available under this Agreement; and
+
+
b) a copy of this Agreement must be included with each
+copy of the Program.
+
+
Contributors may not remove or alter any copyright notices contained
+within the Program.
+
+
Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.
+
+
4. COMMERCIAL DISTRIBUTION
+
+
Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+("Commercial Contributor") hereby agrees to defend and
+indemnify every other Contributor ("Indemnified Contributor")
+against any losses, damages and costs (collectively "Losses")
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.
+
+
For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.
+
+
5. NO WARRANTY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.
+
+
6. DISCLAIMER OF LIABILITY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+
7. GENERAL
+
+
If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.
+
+
If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.
+
+
All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.
+
+
Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.
+
+
This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/feature.properties b/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/feature.properties
new file mode 100644
index 0000000..e346b87
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/feature.properties
@@ -0,0 +1,191 @@
+###############################################################################
+# Copyright (c) 2011 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# "featureName" property - name of the feature
+featureName=Equinox p2 Provisioning for IDEs.
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org - Equinox
+
+# "updateSiteName" property - label for the update site
+updateSiteName=The Eclipse Project Updates
+
+# "description" property - description of the feature
+description=Eclipse p2 Provisioning Platform for use in IDE related scenarios
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2008, 2010 IBM Corporation and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+ IBM Corporation - initial API and implementation\n
+################ end of copyright property ###################################################################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+ - Content may be structured and packaged into modules to facilitate delivering,\n\
+ extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+ plug-in fragments ("Fragments"), and features ("Features").\n\
+ - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+ in a directory named "plugins".\n\
+ - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+ Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+ Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+ numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+ - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+ named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+ - The top-level (root) directory\n\
+ - Plug-in and Fragment directories\n\
+ - Inside Plug-ins and Fragments packaged as JARs\n\
+ - Sub-directories of the directory named "src" of certain Plug-ins\n\
+ - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+ - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+ - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+ - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+ - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+ - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+ - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+ 1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+ the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+ extending or updating the functionality of an Eclipse-based product.\n\
+ 2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+ Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+ 3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+ govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+ Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+ with the Specification. Such Installable Software Agreement must inform the user of the\n\
+ terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+ the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+ indication of agreement by the user, the provisioning Technology will complete installation\n\
+ of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/feature.xml b/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/feature.xml
new file mode 100644
index 0000000..cde099c
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/feature.xml
@@ -0,0 +1,49 @@
+
+
+
+
+ %description
+
+
+
+ %copyright
+
+
+
+ %license
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/license.html b/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/license.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+Eclipse Foundation Software User Agreement
+
+
+
+
Eclipse Foundation Software User Agreement
+
February 1, 2011
+
+
Usage Of Content
+
+
THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+ (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+ CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+ OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+ NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+ CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.
+
+
Applicable Licenses
+
+
Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+ ("EPL"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.
+ For purposes of the EPL, "Program" will mean the Content.
+
+
Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+ repository ("Repository") in software modules ("Modules") and made available as downloadable archives ("Downloads").
+
+
+
Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features").
+
Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins".
+
A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins
+ and/or Fragments associated with that Feature.
+
Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features.
+
+
+
The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and
+Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:
+
+
+
The top-level (root) directory
+
Plug-in and Fragment directories
+
Inside Plug-ins and Fragments packaged as JARs
+
Sub-directories of the directory named "src" of certain Plug-ins
+
Feature directories
+
+
+
Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license ("Feature Update License") during the
+installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.
+
+
THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):
IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.
+
+
+
Use of Provisioning Technology
+
+
The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+ Update Manager ("Provisioning Technology") for the purpose of allowing users to install software, documentation, information and/or
+ other materials (collectively "Installable Software"). This capability is provided with the intent of allowing such users to
+ install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html
+ ("Specification").
+
+
You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+ applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+ in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+ Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:
+
+
+
A series of actions may occur ("Provisioning Process") in which a user may execute the Provisioning Technology
+ on a machine ("Target Machine") with the intent of installing, extending or updating the functionality of an Eclipse-based
+ product.
+
During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+ accessed and copied to the Target Machine.
+
Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+ Software ("Installable Software Agreement") and such Installable Software Agreement shall be accessed from the Target
+ Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+ the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+ indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.
+
+
+
Cryptography
+
+
Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+ another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+ possession, or use, and re-export of encryption software, to see if this is permitted.
+
+
Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.
+
+
1. DEFINITIONS
+
+
"Contribution" means:
+
+
a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and
+
b) in the case of each subsequent Contributor:
+
i) changes to the Program, and
+
ii) additions to the Program;
+
where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.
+
+
"Contributor" means any person or entity that distributes
+the Program.
+
+
"Licensed Patents" mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.
+
+
"Program" means the Contributions distributed in accordance
+with this Agreement.
+
+
"Recipient" means anyone who receives the Program under
+this Agreement, including all Contributors.
+
+
2. GRANT OF RIGHTS
+
+
a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.
+
+
b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.
+
+
c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.
+
+
d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.
+
+
3. REQUIREMENTS
+
+
A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:
+
+
a) it complies with the terms and conditions of this
+Agreement; and
+
+
b) its license agreement:
+
+
i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;
+
+
ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;
+
+
iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and
+
+
iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.
+
+
When the Program is made available in source code form:
+
+
a) it must be made available under this Agreement; and
+
+
b) a copy of this Agreement must be included with each
+copy of the Program.
+
+
Contributors may not remove or alter any copyright notices contained
+within the Program.
+
+
Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.
+
+
4. COMMERCIAL DISTRIBUTION
+
+
Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+("Commercial Contributor") hereby agrees to defend and
+indemnify every other Contributor ("Indemnified Contributor")
+against any losses, damages and costs (collectively "Losses")
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.
+
+
For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.
+
+
5. NO WARRANTY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.
+
+
6. DISCLAIMER OF LIABILITY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+
7. GENERAL
+
+
If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.
+
+
If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.
+
+
All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.
+
+
Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.
+
+
This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/feature.properties b/android/tools/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/feature.properties
new file mode 100644
index 0000000..b9291ae
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/feature.properties
@@ -0,0 +1,194 @@
+###############################################################################
+# Copyright (c) 2008, 2012 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Eclipse Help System
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org
+
+# "description" property - description of the feature
+description=Eclipse help system.
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2008, 2012 IBM Corporation and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+ IBM Corporation - initial API and implementation\n
+################ end of copyright property ###################################################################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+ - Content may be structured and packaged into modules to facilitate delivering,\n\
+ extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+ plug-in fragments ("Fragments"), and features ("Features").\n\
+ - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+ in a directory named "plugins".\n\
+ - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+ Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+ Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+ numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+ - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+ named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+ - The top-level (root) directory\n\
+ - Plug-in and Fragment directories\n\
+ - Inside Plug-ins and Fragments packaged as JARs\n\
+ - Sub-directories of the directory named "src" of certain Plug-ins\n\
+ - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+ - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+ - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+ - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+ - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+ - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+ - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+ 1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+ the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+ extending or updating the functionality of an Eclipse-based product.\n\
+ 2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+ Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+ 3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+ govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+ Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+ with the Specification. Such Installable Software Agreement must inform the user of the\n\
+ terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+ the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+ indication of agreement by the user, the provisioning Technology will complete installation\n\
+ of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/feature.xml b/android/tools/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/feature.xml
new file mode 100644
index 0000000..e5d7ccd
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/feature.xml
@@ -0,0 +1,192 @@
+
+
+
+
+ %description
+
+
+
+ %copyright
+
+
+
+ %license
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/license.html b/android/tools/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/license.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+Eclipse Foundation Software User Agreement
+
+
+
+
Eclipse Foundation Software User Agreement
+
February 1, 2011
+
+
Usage Of Content
+
+
THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+ (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+ CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+ OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+ NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+ CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.
+
+
Applicable Licenses
+
+
Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+ ("EPL"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.
+ For purposes of the EPL, "Program" will mean the Content.
+
+
Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+ repository ("Repository") in software modules ("Modules") and made available as downloadable archives ("Downloads").
+
+
+
Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features").
+
Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins".
+
A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins
+ and/or Fragments associated with that Feature.
+
Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features.
+
+
+
The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and
+Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:
+
+
+
The top-level (root) directory
+
Plug-in and Fragment directories
+
Inside Plug-ins and Fragments packaged as JARs
+
Sub-directories of the directory named "src" of certain Plug-ins
+
Feature directories
+
+
+
Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license ("Feature Update License") during the
+installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.
+
+
THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):
IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.
+
+
+
Use of Provisioning Technology
+
+
The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+ Update Manager ("Provisioning Technology") for the purpose of allowing users to install software, documentation, information and/or
+ other materials (collectively "Installable Software"). This capability is provided with the intent of allowing such users to
+ install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html
+ ("Specification").
+
+
You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+ applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+ in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+ Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:
+
+
+
A series of actions may occur ("Provisioning Process") in which a user may execute the Provisioning Technology
+ on a machine ("Target Machine") with the intent of installing, extending or updating the functionality of an Eclipse-based
+ product.
+
During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+ accessed and copied to the Target Machine.
+
Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+ Software ("Installable Software Agreement") and such Installable Software Agreement shall be accessed from the Target
+ Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+ the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+ indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.
+
+
+
Cryptography
+
+
Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+ another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+ possession, or use, and re-export of encryption software, to see if this is permitted.
+
+
Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.
+
+
1. DEFINITIONS
+
+
"Contribution" means:
+
+
a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and
+
b) in the case of each subsequent Contributor:
+
i) changes to the Program, and
+
ii) additions to the Program;
+
where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.
+
+
"Contributor" means any person or entity that distributes
+the Program.
+
+
"Licensed Patents" mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.
+
+
"Program" means the Contributions distributed in accordance
+with this Agreement.
+
+
"Recipient" means anyone who receives the Program under
+this Agreement, including all Contributors.
+
+
2. GRANT OF RIGHTS
+
+
a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.
+
+
b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.
+
+
c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.
+
+
d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.
+
+
3. REQUIREMENTS
+
+
A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:
+
+
a) it complies with the terms and conditions of this
+Agreement; and
+
+
b) its license agreement:
+
+
i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;
+
+
ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;
+
+
iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and
+
+
iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.
+
+
When the Program is made available in source code form:
+
+
a) it must be made available under this Agreement; and
+
+
b) a copy of this Agreement must be included with each
+copy of the Program.
+
+
Contributors may not remove or alter any copyright notices contained
+within the Program.
+
+
Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.
+
+
4. COMMERCIAL DISTRIBUTION
+
+
Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+("Commercial Contributor") hereby agrees to defend and
+indemnify every other Contributor ("Indemnified Contributor")
+against any losses, damages and costs (collectively "Losses")
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.
+
+
For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.
+
+
5. NO WARRANTY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.
+
+
6. DISCLAIMER OF LIABILITY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+
7. GENERAL
+
+
If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.
+
+
If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.
+
+
All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.
+
+
Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.
+
+
This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/feature.properties b/android/tools/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/feature.properties
new file mode 100644
index 0000000..eb50333
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/feature.properties
@@ -0,0 +1,191 @@
+###############################################################################
+# Copyright (c) 2000, 2011 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Eclipse Platform
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org
+
+# "description" property - description of the feature
+description=Common OS-independent base of the Eclipse platform. (Binary runtime and user documentation.)
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2000, 2011 IBM Corporation and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+################ end of copyright property ###################################################################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+ - Content may be structured and packaged into modules to facilitate delivering,\n\
+ extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+ plug-in fragments ("Fragments"), and features ("Features").\n\
+ - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+ in a directory named "plugins".\n\
+ - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+ Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+ Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+ numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+ - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+ named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+ - The top-level (root) directory\n\
+ - Plug-in and Fragment directories\n\
+ - Inside Plug-ins and Fragments packaged as JARs\n\
+ - Sub-directories of the directory named "src" of certain Plug-ins\n\
+ - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+ - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+ - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+ - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+ - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+ - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+ - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+ 1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+ the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+ extending or updating the functionality of an Eclipse-based product.\n\
+ 2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+ Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+ 3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+ govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+ Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+ with the Specification. Such Installable Software Agreement must inform the user of the\n\
+ terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+ the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+ indication of agreement by the user, the provisioning Technology will complete installation\n\
+ of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/feature.xml b/android/tools/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/feature.xml
new file mode 100644
index 0000000..d6fc539
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/feature.xml
@@ -0,0 +1,581 @@
+
+
+
+
+ %description
+
+
+
+ %copyright
+
+
+
+ %license
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/license.html b/android/tools/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/license.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+Eclipse Foundation Software User Agreement
+
+
+
+
Eclipse Foundation Software User Agreement
+
February 1, 2011
+
+
Usage Of Content
+
+
THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+ (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+ CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+ OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+ NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+ CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.
+
+
Applicable Licenses
+
+
Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+ ("EPL"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.
+ For purposes of the EPL, "Program" will mean the Content.
+
+
Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+ repository ("Repository") in software modules ("Modules") and made available as downloadable archives ("Downloads").
+
+
+
Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features").
+
Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins".
+
A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins
+ and/or Fragments associated with that Feature.
+
Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features.
+
+
+
The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and
+Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:
+
+
+
The top-level (root) directory
+
Plug-in and Fragment directories
+
Inside Plug-ins and Fragments packaged as JARs
+
Sub-directories of the directory named "src" of certain Plug-ins
+
Feature directories
+
+
+
Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license ("Feature Update License") during the
+installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.
+
+
THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):
IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.
+
+
+
Use of Provisioning Technology
+
+
The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+ Update Manager ("Provisioning Technology") for the purpose of allowing users to install software, documentation, information and/or
+ other materials (collectively "Installable Software"). This capability is provided with the intent of allowing such users to
+ install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html
+ ("Specification").
+
+
You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+ applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+ in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+ Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:
+
+
+
A series of actions may occur ("Provisioning Process") in which a user may execute the Provisioning Technology
+ on a machine ("Target Machine") with the intent of installing, extending or updating the functionality of an Eclipse-based
+ product.
+
During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+ accessed and copied to the Target Machine.
+
Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+ Software ("Installable Software Agreement") and such Installable Software Agreement shall be accessed from the Target
+ Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+ the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+ indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.
+
+
+
Cryptography
+
+
Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+ another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+ possession, or use, and re-export of encryption software, to see if this is permitted.
+
+
Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.
+
+
1. DEFINITIONS
+
+
"Contribution" means:
+
+
a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and
+
b) in the case of each subsequent Contributor:
+
i) changes to the Program, and
+
ii) additions to the Program;
+
where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.
+
+
"Contributor" means any person or entity that distributes
+the Program.
+
+
"Licensed Patents" mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.
+
+
"Program" means the Contributions distributed in accordance
+with this Agreement.
+
+
"Recipient" means anyone who receives the Program under
+this Agreement, including all Contributors.
+
+
2. GRANT OF RIGHTS
+
+
a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.
+
+
b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.
+
+
c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.
+
+
d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.
+
+
3. REQUIREMENTS
+
+
A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:
+
+
a) it complies with the terms and conditions of this
+Agreement; and
+
+
b) its license agreement:
+
+
i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;
+
+
ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;
+
+
iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and
+
+
iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.
+
+
When the Program is made available in source code form:
+
+
a) it must be made available under this Agreement; and
+
+
b) a copy of this Agreement must be included with each
+copy of the Program.
+
+
Contributors may not remove or alter any copyright notices contained
+within the Program.
+
+
Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.
+
+
4. COMMERCIAL DISTRIBUTION
+
+
Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+("Commercial Contributor") hereby agrees to defend and
+indemnify every other Contributor ("Indemnified Contributor")
+against any losses, damages and costs (collectively "Losses")
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.
+
+
For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.
+
+
5. NO WARRANTY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.
+
+
6. DISCLAIMER OF LIABILITY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+
7. GENERAL
+
+
If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.
+
+
If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.
+
+
All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.
+
+
Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.
+
+
This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/feature.properties b/android/tools/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/feature.properties
new file mode 100644
index 0000000..f9a5f02
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/feature.properties
@@ -0,0 +1,197 @@
+###############################################################################
+# Copyright (c) 2000, 2013 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Eclipse RCP
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org
+
+# "updateSiteName" property - label for the update site
+updateSiteName=The Eclipse Project Updates
+
+# "description" property - description of the feature
+description=Rich Client Platform
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2000, 2013 Eclipse contributors and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+ IBM Corporation - initial API and implementation\n
+################ end of copyright property ###################################################################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+ - Content may be structured and packaged into modules to facilitate delivering,\n\
+ extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+ plug-in fragments ("Fragments"), and features ("Features").\n\
+ - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+ in a directory named "plugins".\n\
+ - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+ Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+ Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+ numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+ - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+ named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+ - The top-level (root) directory\n\
+ - Plug-in and Fragment directories\n\
+ - Inside Plug-ins and Fragments packaged as JARs\n\
+ - Sub-directories of the directory named "src" of certain Plug-ins\n\
+ - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+ - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+ - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+ - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+ - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+ - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+ - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+ 1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+ the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+ extending or updating the functionality of an Eclipse-based product.\n\
+ 2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+ Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+ 3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+ govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+ Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+ with the Specification. Such Installable Software Agreement must inform the user of the\n\
+ terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+ the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+ indication of agreement by the user, the provisioning Technology will complete installation\n\
+ of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/feature.xml b/android/tools/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/feature.xml
new file mode 100644
index 0000000..f245b99
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/feature.xml
@@ -0,0 +1,63 @@
+
+
+
+
+ %description
+
+
+
+ %copyright
+
+
+
+ %license
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/license.html b/android/tools/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/android/tools/lib/monitor-x86/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/license.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+Eclipse Foundation Software User Agreement
+
+
+
+
Eclipse Foundation Software User Agreement
+
February 1, 2011
+
+
Usage Of Content
+
+
THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+ (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+ CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+ OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+ NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+ CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.
+
+
Applicable Licenses
+
+
Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+ ("EPL"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.
+ For purposes of the EPL, "Program" will mean the Content.
+
+
Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+ repository ("Repository") in software modules ("Modules") and made available as downloadable archives ("Downloads").
+
+
+
Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features").
+
Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins".
+
A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins
+ and/or Fragments associated with that Feature.
+
Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features.
+
+
+
The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and
+Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:
+
+
+
The top-level (root) directory
+
Plug-in and Fragment directories
+
Inside Plug-ins and Fragments packaged as JARs
+
Sub-directories of the directory named "src" of certain Plug-ins
+
Feature directories
+
+
+
Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license ("Feature Update License") during the
+installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.
+
+
THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):
IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.
+
+
+
Use of Provisioning Technology
+
+
The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+ Update Manager ("Provisioning Technology") for the purpose of allowing users to install software, documentation, information and/or
+ other materials (collectively "Installable Software"). This capability is provided with the intent of allowing such users to
+ install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html
+ ("Specification").
+
+
You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+ applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+ in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+ Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:
+
+
+
A series of actions may occur ("Provisioning Process") in which a user may execute the Provisioning Technology
+ on a machine ("Target Machine") with the intent of installing, extending or updating the functionality of an Eclipse-based
+ product.
+
During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+ accessed and copied to the Target Machine.
+
Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+ Software ("Installable Software Agreement") and such Installable Software Agreement shall be accessed from the Target
+ Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+ the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+ indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.
+
+
+
Cryptography
+
+
Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+ another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+ possession, or use, and re-export of encryption software, to see if this is permitted.
+
+
Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
+
+
diff --git a/android/tools/lib/monitor-x86/libcairo-swt.so.REMOVED.git-id b/android/tools/lib/monitor-x86/libcairo-swt.so.REMOVED.git-id
new file mode 100644
index 0000000..a2b997e
--- /dev/null
+++ b/android/tools/lib/monitor-x86/libcairo-swt.so.REMOVED.git-id
@@ -0,0 +1 @@
+b66f95814ee8261120d4ca5a5620be7743828e8c
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/monitor.REMOVED.git-id b/android/tools/lib/monitor-x86/monitor.REMOVED.git-id
new file mode 100644
index 0000000..657600a
--- /dev/null
+++ b/android/tools/lib/monitor-x86/monitor.REMOVED.git-id
@@ -0,0 +1 @@
+b284b3d074c38ae66f0c52f1a068a776f879b06d
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/monitor.ini b/android/tools/lib/monitor-x86/monitor.ini
new file mode 100644
index 0000000..cc58094
--- /dev/null
+++ b/android/tools/lib/monitor-x86/monitor.ini
@@ -0,0 +1,10 @@
+-startup
+plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar
+--launcher.library
+plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807
+-data
+@noDefault
+-vmargs
+-XX:MaxPermSize=256m
+-Xms512m
+-Xmx1024m
diff --git a/android/tools/lib/monitor-x86/notice.html b/android/tools/lib/monitor-x86/notice.html
new file mode 100644
index 0000000..c184ca3
--- /dev/null
+++ b/android/tools/lib/monitor-x86/notice.html
@@ -0,0 +1,107 @@
+
+
+
+
+
+Eclipse Foundation Software User Agreement
+
+
+
+
Eclipse Foundation Software User Agreement
+
April 14, 2010
+
+
Usage Of Content
+
+
THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+ (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+ CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+ OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+ NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+ CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.
+
+
Applicable Licenses
+
+
Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+ ("EPL"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.
+ For purposes of the EPL, "Program" will mean the Content.
+
+
Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+ repository ("Repository") in software modules ("Modules") and made available as downloadable archives ("Downloads").
+
+
+
Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features").
+
Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins".
+
A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins
+ and/or Fragments associated with that Feature.
+
Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features.
+
+
+
The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and
+Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:
+
+
+
The top-level (root) directory
+
Plug-in and Fragment directories
+
Inside Plug-ins and Fragments packaged as JARs
+
Sub-directories of the directory named "src" of certain Plug-ins
+
Feature directories
+
+
+
Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license ("Feature Update License") during the
+installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.
+
+
THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):
IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.
+
+
+
Use of Provisioning Technology
+
+
The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+ Update Manager ("Provisioning Technology") for the purpose of allowing users to install software, documentation, information and/or
+ other materials (collectively "Installable Software"). This capability is provided with the intent of allowing such users to
+ install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html
+ ("Specification").
+
+
You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+ applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+ in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+ Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:
+
+
+
A series of actions may occur ("Provisioning Process") in which a user may execute the Provisioning Technology
+ on a machine ("Target Machine") with the intent of installing, extending or updating the functionality of an Eclipse-based
+ product.
+
During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+ accessed and copied to the Target Machine.
+
Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+ Software ("Installable Software Agreement") and such Installable Software Agreement shall be accessed from the Target
+ Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+ the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+ indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.
+
+
+
Cryptography
+
+
Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+ another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+ possession, or use, and re-export of encryption software, to see if this is permitted.
+
+
Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
+
+
diff --git a/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.core/cache/artifacts.xml b/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.core/cache/artifacts.xml
new file mode 100644
index 0000000..6733a63
--- /dev/null
+++ b/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.core/cache/artifacts.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.core/cache/binary/monitorproduct.executable.gtk.linux.x86_25.2.2.4333796.REMOVED.git-id b/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.core/cache/binary/monitorproduct.executable.gtk.linux.x86_25.2.2.4333796.REMOVED.git-id
new file mode 100644
index 0000000..96ff6ca
--- /dev/null
+++ b/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.core/cache/binary/monitorproduct.executable.gtk.linux.x86_25.2.2.4333796.REMOVED.git-id
@@ -0,0 +1 @@
+9fb9281be307864ed3cdfba381dca57a80fa730f
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.platform_root_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7 b/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.platform_root_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7
new file mode 100644
index 0000000..7840a17
Binary files /dev/null and b/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.platform_root_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7 differ
diff --git a/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.rcp_root_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h b/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.rcp_root_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h
new file mode 100644
index 0000000..3eeaca8
Binary files /dev/null and b/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.rcp_root_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h differ
diff --git a/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.artifact.repository.prefs b/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.artifact.repository.prefs
new file mode 100644
index 0000000..06f8e13
--- /dev/null
+++ b/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.artifact.repository.prefs
@@ -0,0 +1,104 @@
+eclipse.preferences.version=1
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_sdk_eclipse_artifacts_bundles/description=Read-only repository adapter for org.eclipse.tycho.p2.target.TargetPlatformBundlePublisher$PublishedBundlesArtifactRepository@832ad104
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_sdk_eclipse_artifacts_bundles/enabled=true
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_sdk_eclipse_artifacts_bundles/isSystem=false
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_sdk_eclipse_artifacts_bundles/provider=
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_sdk_eclipse_artifacts_bundles/suffix=@memory
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_sdk_eclipse_artifacts_bundles/type=ProviderOnlyArtifactRepository
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_sdk_eclipse_artifacts_bundles/uri=file\:/resolution-context-artifacts@/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/sdk/eclipse/artifacts/bundles
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_sdk_eclipse_artifacts_bundles/version=1.0
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/bundles-25.2.2-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor/isSystem=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor/name=Bundle pool
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/bundles-25.2.2-SNAPSHOT/products/monitorproduct/linux/gtk/x86/monitor/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor/version=1
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor_p2_org.eclipse.equinox.p2.core_cache/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor_p2_org.eclipse.equinox.p2.core_cache/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor_p2_org.eclipse.equinox.p2.core_cache/isSystem=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor_p2_org.eclipse.equinox.p2.core_cache/name=download cache
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor_p2_org.eclipse.equinox.p2.core_cache/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor_p2_org.eclipse.equinox.p2.core_cache/suffix=artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor_p2_org.eclipse.equinox.p2.core_cache/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor_p2_org.eclipse.equinox.p2.core_cache/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/bundles-25.2.2-SNAPSHOT/products/monitorproduct/linux/gtk/x86/monitor/p2/org.eclipse.equinox.p2.core/cache/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_monitor_p2_org.eclipse.equinox.p2.core_cache/version=1.0.0
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.base-25.2.2-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.base-25.2.2-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.base-25.2.2-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.base-25.2.2-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.base-25.2.2-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.base-25.2.2-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/com.android.ide.eclipse.base-25.2.2-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.ddms-25.2.2-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.ddms-25.2.2-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.ddms-25.2.2-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.ddms-25.2.2-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.ddms-25.2.2-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.ddms-25.2.2-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/com.android.ide.eclipse.ddms-25.2.2-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.ddms.feature-25.2.2-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.ddms.feature-25.2.2-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.ddms.feature-25.2.2-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.ddms.feature-25.2.2-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.ddms.feature-25.2.2-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.ddms.feature-25.2.2-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/com.android.ide.eclipse.ddms.feature-25.2.2-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.gldebugger-25.2.2-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.gldebugger-25.2.2-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.gldebugger-25.2.2-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.gldebugger-25.2.2-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.gldebugger-25.2.2-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.gldebugger-25.2.2-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/com.android.ide.eclipse.gldebugger-25.2.2-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.gldebugger.feature-25.2.2-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.gldebugger.feature-25.2.2-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.gldebugger.feature-25.2.2-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.gldebugger.feature-25.2.2-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.gldebugger.feature-25.2.2-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.gldebugger.feature-25.2.2-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/com.android.ide.eclipse.gldebugger.feature-25.2.2-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer-25.4.0-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer-25.4.0-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer-25.4.0-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer-25.4.0-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer-25.4.0-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer-25.4.0-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/com.android.ide.eclipse.hierarchyviewer-25.4.0-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer.feature-25.4.0-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer.feature-25.4.0-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer.feature-25.4.0-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer.feature-25.4.0-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer.feature-25.4.0-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer.feature-25.4.0-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/com.android.ide.eclipse.hierarchyviewer.feature-25.4.0-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.monitor-25.2.2-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.monitor-25.2.2-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.monitor-25.2.2-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.monitor-25.2.2-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.monitor-25.2.2-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.monitor-25.2.2-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/com.android.ide.eclipse.monitor-25.2.2-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.monitor.feature-25.2.2-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.monitor.feature-25.2.2-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.monitor.feature-25.2.2-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.monitor.feature-25.2.2-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.monitor.feature-25.2.2-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.monitor.feature-25.2.2-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/com.android.ide.eclipse.monitor.feature-25.2.2-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.traceview-25.2.2-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.traceview-25.2.2-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.traceview-25.2.2-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.traceview-25.2.2-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.traceview-25.2.2-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.traceview-25.2.2-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/com.android.ide.eclipse.traceview-25.2.2-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.traceview.feature-25.2.2-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.traceview.feature-25.2.2-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.traceview.feature-25.2.2-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.traceview.feature-25.2.2-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.traceview.feature-25.2.2-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.traceview.feature-25.2.2-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/com.android.ide.eclipse.traceview.feature-25.2.2-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_sdk_eclipse_.._.._prebuilts_eclipse_mavenplugins_tycho_tycho-dependencies-m2repo/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_sdk_eclipse_.._.._prebuilts_eclipse_mavenplugins_tycho_tycho-dependencies-m2repo/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_sdk_eclipse_.._.._prebuilts_eclipse_mavenplugins_tycho_tycho-dependencies-m2repo/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_sdk_eclipse_.._.._prebuilts_eclipse_mavenplugins_tycho_tycho-dependencies-m2repo/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_sdk_eclipse_.._.._prebuilts_eclipse_mavenplugins_tycho_tycho-dependencies-m2repo/suffix=.meta/p2-artifacts.properties
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_sdk_eclipse_.._.._prebuilts_eclipse_mavenplugins_tycho_tycho-dependencies-m2repo/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/sdk/eclipse/../../prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/
diff --git a/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.metadata.repository.prefs b/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.metadata.repository.prefs
new file mode 100644
index 0000000..5267a23
--- /dev/null
+++ b/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.metadata.repository.prefs
@@ -0,0 +1,17 @@
+eclipse.preferences.version=1
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/name=module-metadata-repository@/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/bundles-25.2.2-SNAPSHOT
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/suffix=p2content.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/type=org.eclipse.tycho.repository.module.ModuleMetadataRepository
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/bundles-25.2.2-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/version=1.0.0
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_targetPlatformRepository/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_targetPlatformRepository/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_targetPlatformRepository/name=TychoTargetPlatform
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_targetPlatformRepository/suffix=content.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_targetPlatformRepository/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_targetPlatformRepository/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/bundles-25.2.2-SNAPSHOT/targetPlatformRepository/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_targetPlatformRepository/version=0.0.1
diff --git a/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.data/org.eclipse.equinox.internal.p2.touchpoint.eclipse.actions/jvmargs b/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.data/org.eclipse.equinox.internal.p2.touchpoint.eclipse.actions/jvmargs
new file mode 100644
index 0000000..c9b255a
--- /dev/null
+++ b/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.data/org.eclipse.equinox.internal.p2.touchpoint.eclipse.actions/jvmargs
@@ -0,0 +1,4 @@
+#Wed Sep 13 21:54:45 UTC 2017
+-Xms=512m
+-XX\:MaxPermSize\==256m
+-Xmx=1024m
diff --git a/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.lock b/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.lock
new file mode 100644
index 0000000..e69de29
diff --git a/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1505339684027.profile.gz b/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1505339684027.profile.gz
new file mode 100644
index 0000000..b560a54
Binary files /dev/null and b/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1505339684027.profile.gz differ
diff --git a/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1505339684029.profile.gz b/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1505339684029.profile.gz
new file mode 100644
index 0000000..7a8d7be
Binary files /dev/null and b/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1505339684029.profile.gz differ
diff --git a/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1505339685143.profile.gz.REMOVED.git-id b/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1505339685143.profile.gz.REMOVED.git-id
new file mode 100644
index 0000000..73dd04e
--- /dev/null
+++ b/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1505339685143.profile.gz.REMOVED.git-id
@@ -0,0 +1 @@
+63f779c1be48cf184d1e0b8e2d6d978caa0c5164
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1505339685370.profile.gz.REMOVED.git-id b/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1505339685370.profile.gz.REMOVED.git-id
new file mode 100644
index 0000000..f0b79ca
--- /dev/null
+++ b/android/tools/lib/monitor-x86/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1505339685370.profile.gz.REMOVED.git-id
@@ -0,0 +1 @@
+f30dda0f592485f5425c2fe8a3400f48a6e1c787
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/com.android.ide.eclipse.base_25.2.2.4333796.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/com.android.ide.eclipse.base_25.2.2.4333796.jar.REMOVED.git-id
new file mode 100644
index 0000000..d1696ce
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/com.android.ide.eclipse.base_25.2.2.4333796.jar.REMOVED.git-id
@@ -0,0 +1 @@
+c12dc00aeee56986d5228f41cb600c4c2d345b75
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/com.android.ide.eclipse.ddms_25.2.2.4333796.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/com.android.ide.eclipse.ddms_25.2.2.4333796.jar.REMOVED.git-id
new file mode 100644
index 0000000..a50d0cc
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/com.android.ide.eclipse.ddms_25.2.2.4333796.jar.REMOVED.git-id
@@ -0,0 +1 @@
+7e5c967a339b98040c82cae3d2cb150125217758
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/com.android.ide.eclipse.gldebugger_25.2.2.4333796.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/com.android.ide.eclipse.gldebugger_25.2.2.4333796.jar.REMOVED.git-id
new file mode 100644
index 0000000..57390c4
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/com.android.ide.eclipse.gldebugger_25.2.2.4333796.jar.REMOVED.git-id
@@ -0,0 +1 @@
+d16f080f43ba494ecdd19b5d0a39b964a811114e
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/com.android.ide.eclipse.hierarchyviewer_25.4.0.4333796.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/com.android.ide.eclipse.hierarchyviewer_25.4.0.4333796.jar.REMOVED.git-id
new file mode 100644
index 0000000..5f58151
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/com.android.ide.eclipse.hierarchyviewer_25.4.0.4333796.jar.REMOVED.git-id
@@ -0,0 +1 @@
+0e5c6ccba2f357a4236c8306a2d2f5514d7ff24a
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/com.android.ide.eclipse.monitor_25.2.2.4333796.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/com.android.ide.eclipse.monitor_25.2.2.4333796.jar.REMOVED.git-id
new file mode 100644
index 0000000..ef8d988
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/com.android.ide.eclipse.monitor_25.2.2.4333796.jar.REMOVED.git-id
@@ -0,0 +1 @@
+233df4d715f9c0a938b24cbdc10461eaa3b4c604
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/com.android.ide.eclipse.traceview_25.2.2.4333796.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/com.android.ide.eclipse.traceview_25.2.2.4333796.jar.REMOVED.git-id
new file mode 100644
index 0000000..8ef1a67
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/com.android.ide.eclipse.traceview_25.2.2.4333796.jar.REMOVED.git-id
@@ -0,0 +1 @@
+cb4b4ead19f325a9acd1ee49532c9d55eadc378e
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/com.ibm.icu_4.4.2.v20110823.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/com.ibm.icu_4.4.2.v20110823.jar.REMOVED.git-id
new file mode 100644
index 0000000..a9a6b67
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/com.ibm.icu_4.4.2.v20110823.jar.REMOVED.git-id
@@ -0,0 +1 @@
+18a293eb6b682ad19fa7a587e5d7ab6943136fae
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/com.jcraft.jsch_0.1.46.v201205102330.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/com.jcraft.jsch_0.1.46.v201205102330.jar.REMOVED.git-id
new file mode 100644
index 0000000..e6fe276
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/com.jcraft.jsch_0.1.46.v201205102330.jar.REMOVED.git-id
@@ -0,0 +1 @@
+880004888e493715520668588399fcc689758869
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/com.sun.el_2.2.0.v201108011116.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/com.sun.el_2.2.0.v201108011116.jar.REMOVED.git-id
new file mode 100644
index 0000000..7a98535
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/com.sun.el_2.2.0.v201108011116.jar.REMOVED.git-id
@@ -0,0 +1 @@
+29c050aa4c760edff7f0fcba64bcd65706ed79b6
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/javax.annotation_1.0.0.v20101115-0725.jar b/android/tools/lib/monitor-x86/plugins/javax.annotation_1.0.0.v20101115-0725.jar
new file mode 100644
index 0000000..fd9c2c1
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/javax.annotation_1.0.0.v20101115-0725.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/javax.el_2.2.0.v201108011116.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/javax.el_2.2.0.v201108011116.jar.REMOVED.git-id
new file mode 100644
index 0000000..83bdf40
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/javax.el_2.2.0.v201108011116.jar.REMOVED.git-id
@@ -0,0 +1 @@
+b777c09361b2c6ea3c4fe44b8c40939f639bd9bc
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/javax.inject_1.0.0.v20091030.jar b/android/tools/lib/monitor-x86/plugins/javax.inject_1.0.0.v20091030.jar
new file mode 100644
index 0000000..cb95087
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/javax.inject_1.0.0.v20091030.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/javax.servlet.jsp_2.2.0.v201112011158.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/javax.servlet.jsp_2.2.0.v201112011158.jar.REMOVED.git-id
new file mode 100644
index 0000000..7cc66bb
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/javax.servlet.jsp_2.2.0.v201112011158.jar.REMOVED.git-id
@@ -0,0 +1 @@
+b8ece88bc354fe3bccbe7ce4148a5379ce99ca57
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/javax.servlet_3.0.0.v201112011016.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/javax.servlet_3.0.0.v201112011016.jar.REMOVED.git-id
new file mode 100644
index 0000000..d49c7e0
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/javax.servlet_3.0.0.v201112011016.jar.REMOVED.git-id
@@ -0,0 +1 @@
+49043432460e5a520d1ae20580b2ea41f3b0677b
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/javax.xml_1.3.4.v201005080400.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/javax.xml_1.3.4.v201005080400.jar.REMOVED.git-id
new file mode 100644
index 0000000..dacf142
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/javax.xml_1.3.4.v201005080400.jar.REMOVED.git-id
@@ -0,0 +1 @@
+81a6ab8d67d4fd82adc421cc5b105367bf78c5ee
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.apache.batik.css_1.6.0.v201011041432.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.apache.batik.css_1.6.0.v201011041432.jar.REMOVED.git-id
new file mode 100644
index 0000000..d072f0f
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.apache.batik.css_1.6.0.v201011041432.jar.REMOVED.git-id
@@ -0,0 +1 @@
+6007ca065d13235e164694728dbb2c1b379a1a71
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.apache.batik.util.gui_1.6.0.v201011041432.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.apache.batik.util.gui_1.6.0.v201011041432.jar.REMOVED.git-id
new file mode 100644
index 0000000..771b986
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.apache.batik.util.gui_1.6.0.v201011041432.jar.REMOVED.git-id
@@ -0,0 +1 @@
+262b1d93c391ca0ff8a2a53ad80021a090b9ebcf
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.apache.batik.util_1.6.0.v201011041432.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.apache.batik.util_1.6.0.v201011041432.jar.REMOVED.git-id
new file mode 100644
index 0000000..072fefd
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.apache.batik.util_1.6.0.v201011041432.jar.REMOVED.git-id
@@ -0,0 +1 @@
+0715d843da5e608c5eeffea94fc75949887a3e71
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.apache.commons.codec_1.3.0.v201101211617.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.apache.commons.codec_1.3.0.v201101211617.jar.REMOVED.git-id
new file mode 100644
index 0000000..4d9a755
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.apache.commons.codec_1.3.0.v201101211617.jar.REMOVED.git-id
@@ -0,0 +1 @@
+7f80e75e6eaaa7ca30e5f580b2916870e4578e71
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.apache.commons.httpclient_3.1.0.v201012070820.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.apache.commons.httpclient_3.1.0.v201012070820.jar.REMOVED.git-id
new file mode 100644
index 0000000..bab46e5
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.apache.commons.httpclient_3.1.0.v201012070820.jar.REMOVED.git-id
@@ -0,0 +1 @@
+2ccaca50103e31130b29d30853b5ca4bb87b5bc0
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.apache.commons.logging_1.0.4.v201101211617.jar b/android/tools/lib/monitor-x86/plugins/org.apache.commons.logging_1.0.4.v201101211617.jar
new file mode 100644
index 0000000..5103619
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.apache.commons.logging_1.0.4.v201101211617.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.apache.felix.gogo.command_0.8.0.v201108120515.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.apache.felix.gogo.command_0.8.0.v201108120515.jar.REMOVED.git-id
new file mode 100644
index 0000000..2696966
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.apache.felix.gogo.command_0.8.0.v201108120515.jar.REMOVED.git-id
@@ -0,0 +1 @@
+19b11e52c3089c00d7fe60cfb639ae46cdd3399c
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.apache.felix.gogo.runtime_0.8.0.v201108120515.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.apache.felix.gogo.runtime_0.8.0.v201108120515.jar.REMOVED.git-id
new file mode 100644
index 0000000..d843d1f
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.apache.felix.gogo.runtime_0.8.0.v201108120515.jar.REMOVED.git-id
@@ -0,0 +1 @@
+5e5b5f0d4ae8be34cb72df1bed24a63390e645a3
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.apache.felix.gogo.shell_0.8.0.v201110170705.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.apache.felix.gogo.shell_0.8.0.v201110170705.jar.REMOVED.git-id
new file mode 100644
index 0000000..8909d69
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.apache.felix.gogo.shell_0.8.0.v201110170705.jar.REMOVED.git-id
@@ -0,0 +1 @@
+da6f33879cd7daa473b2bfc70070426b227b5f2f
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.apache.lucene.analysis_2.9.1.v201101211721.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.apache.lucene.analysis_2.9.1.v201101211721.jar.REMOVED.git-id
new file mode 100644
index 0000000..8cc8b9f
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.apache.lucene.analysis_2.9.1.v201101211721.jar.REMOVED.git-id
@@ -0,0 +1 @@
+3a2f4da26131f801b0824655b15598a5c6ca444a
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.apache.lucene_2.9.1.v201101211721.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.apache.lucene_2.9.1.v201101211721.jar.REMOVED.git-id
new file mode 100644
index 0000000..16b43de
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.apache.lucene_2.9.1.v201101211721.jar.REMOVED.git-id
@@ -0,0 +1 @@
+3558e7d8aba5696ad34edc246f18883690d45813
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ant.core_3.2.401.v20121204-162022.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.ant.core_3.2.401.v20121204-162022.jar.REMOVED.git-id
new file mode 100644
index 0000000..082eb01
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ant.core_3.2.401.v20121204-162022.jar.REMOVED.git-id
@@ -0,0 +1 @@
+addb6d9ec5e06a2c3467178699d5c38ed4e62ae6
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.compare.core_3.5.200.v20120522-1148.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.compare.core_3.5.200.v20120522-1148.jar.REMOVED.git-id
new file mode 100644
index 0000000..c68a87d
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.compare.core_3.5.200.v20120522-1148.jar.REMOVED.git-id
@@ -0,0 +1 @@
+82c6651cd992f1fc95474027eb622ee57cdd717f
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.compare_3.5.301.v20130125-135424.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.compare_3.5.301.v20130125-135424.jar.REMOVED.git-id
new file mode 100644
index 0000000..406e01f
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.compare_3.5.301.v20130125-135424.jar.REMOVED.git-id
@@ -0,0 +1 @@
+479dda3df1502922f543d08ff1339a7195701dbf
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.core.commands_3.6.2.v20130123-162658.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.commands_3.6.2.v20130123-162658.jar.REMOVED.git-id
new file mode 100644
index 0000000..ec05d6e
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.commands_3.6.2.v20130123-162658.jar.REMOVED.git-id
@@ -0,0 +1 @@
+8cd85d4c2f94d185a99030e0c520ec5dc4527bc9
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.core.contenttype_3.4.200.v20120523-2004.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.contenttype_3.4.200.v20120523-2004.jar.REMOVED.git-id
new file mode 100644
index 0000000..3f1e22a
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.contenttype_3.4.200.v20120523-2004.jar.REMOVED.git-id
@@ -0,0 +1 @@
+a254949c1b4ef4869b129fb53de7b9532cafd30e
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.core.databinding.beans_1.2.200.v20120523-1955.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.databinding.beans_1.2.200.v20120523-1955.jar.REMOVED.git-id
new file mode 100644
index 0000000..73aa743
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.databinding.beans_1.2.200.v20120523-1955.jar.REMOVED.git-id
@@ -0,0 +1 @@
+345dbe8f43b703df56810b271bbc2be058280472
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.core.databinding.observable_1.4.1.v20120521-2329.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.databinding.observable_1.4.1.v20120521-2329.jar.REMOVED.git-id
new file mode 100644
index 0000000..c62458a
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.databinding.observable_1.4.1.v20120521-2329.jar.REMOVED.git-id
@@ -0,0 +1 @@
+93855ed4dfb14829db55864defe57f260c3253f7
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.core.databinding.property_1.4.100.v20120523-1955.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.databinding.property_1.4.100.v20120523-1955.jar.REMOVED.git-id
new file mode 100644
index 0000000..5f47463
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.databinding.property_1.4.100.v20120523-1955.jar.REMOVED.git-id
@@ -0,0 +1 @@
+caabe0d0c44704b78310d344ead08f7dc02d61fc
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.core.databinding_1.4.1.v20120912-132807.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.databinding_1.4.1.v20120912-132807.jar.REMOVED.git-id
new file mode 100644
index 0000000..77428c8
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.databinding_1.4.1.v20120912-132807.jar.REMOVED.git-id
@@ -0,0 +1 @@
+5e0ed13aa404b9c216cfe85a664fa1596fc10173
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.core.expressions_3.4.401.v20120912-155018.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.expressions_3.4.401.v20120912-155018.jar.REMOVED.git-id
new file mode 100644
index 0000000..b64df98
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.expressions_3.4.401.v20120912-155018.jar.REMOVED.git-id
@@ -0,0 +1 @@
+4cf5beafe063afd1f25fb2ddefa67e283a2dd736
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.core.externaltools_1.0.100.v20120521-2012.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.externaltools_1.0.100.v20120521-2012.jar
new file mode 100644
index 0000000..1990dc9
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.externaltools_1.0.100.v20120521-2012.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.core.filebuffers_3.5.200.v20120523-1310.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.filebuffers_3.5.200.v20120523-1310.jar.REMOVED.git-id
new file mode 100644
index 0000000..b831f7c
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.filebuffers_3.5.200.v20120523-1310.jar.REMOVED.git-id
@@ -0,0 +1 @@
+593e37c79f6d440dea9321a40b4521856e8ced2c
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.core.filesystem.linux.x86_1.4.0.v20120522-1137.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.filesystem.linux.x86_1.4.0.v20120522-1137.jar
new file mode 100644
index 0000000..ae8e081
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.filesystem.linux.x86_1.4.0.v20120522-1137.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.core.filesystem_1.3.200.v20130115-145044.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.filesystem_1.3.200.v20130115-145044.jar.REMOVED.git-id
new file mode 100644
index 0000000..3c8945f
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.filesystem_1.3.200.v20130115-145044.jar.REMOVED.git-id
@@ -0,0 +1 @@
+88cd37938c607e83525e68215fe9e95e1481da41
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.core.jobs_3.5.300.v20120912-155018.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.jobs_3.5.300.v20120912-155018.jar.REMOVED.git-id
new file mode 100644
index 0000000..45896d2
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.jobs_3.5.300.v20120912-155018.jar.REMOVED.git-id
@@ -0,0 +1 @@
+b9418014f54ba0d493adb07eeb09f999435e9420
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.core.net.linux.x86_1.1.200.v20120522-1148.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.net.linux.x86_1.1.200.v20120522-1148.jar
new file mode 100644
index 0000000..710d8da
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.net.linux.x86_1.1.200.v20120522-1148.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.core.net_1.2.200.v20120914-093638.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.net_1.2.200.v20120914-093638.jar.REMOVED.git-id
new file mode 100644
index 0000000..2742622
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.net_1.2.200.v20120914-093638.jar.REMOVED.git-id
@@ -0,0 +1 @@
+ddb364fa92069ead2a515c05720fbdcb54f18d9a
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.core.resources_3.8.1.v20121114-124432.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.resources_3.8.1.v20121114-124432.jar.REMOVED.git-id
new file mode 100644
index 0000000..4e525e3
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.resources_3.8.1.v20121114-124432.jar.REMOVED.git-id
@@ -0,0 +1 @@
+be7f22b199f71d671ff6cab6769dd357538e1d94
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/.api_description b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/.api_description
new file mode 100644
index 0000000..bbffdc8
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/.api_description
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/ECLIPSE_.RSA b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..a08e8dc
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/ECLIPSE_.RSA differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/ECLIPSE_.SF b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..c9494f9
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/ECLIPSE_.SF
@@ -0,0 +1,20 @@
+Signature-Version: 1.0
+SHA1-Digest-Manifest: oV7fBC9t+XvU9FslXBvnCceZx54=
+Created-By: 1.6.0 (IBM Corporation)
+SHA1-Digest-Manifest-Main-Attributes: Vs9w/djYnis+NAZKtDc7eSwXfaM=
+
+Name: fragment.properties
+SHA1-Digest: Gi/SEQV8Vl9A/8928AtuhnVkrKQ=
+
+Name: runtime_registry_compatibility.jar
+SHA1-Digest: 4qgXVah1KyMBh8pfeG5jsjgbfDM=
+
+Name: META-INF/eclipse.inf
+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=
+
+Name: .api_description
+SHA1-Digest: rxDId4BLjpSH7RMzgU7yEspOo2Q=
+
+Name: about.html
+SHA1-Digest: M+fykt9heyWoEv1LNiIEeBhi/2Q=
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/MANIFEST.MF b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..7645a9d
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/MANIFEST.MF
@@ -0,0 +1,32 @@
+Manifest-Version: 1.0
+Bundle-Localization: fragment
+Bundle-RequiredExecutionEnvironment: CDC-1.0/Foundation-1.0,J2SE-1.3
+Fragment-Host: org.eclipse.equinox.registry;bundle-version="[3.5.0,3.6
+ .0)"
+Bundle-SymbolicName: org.eclipse.core.runtime.compatibility.registry
+Eclipse-SourceReferences: scm:git:git://git.eclipse.org/gitroot/platfo
+ rm/eclipse.platform.runtime.git;path="bundles/org.eclipse.core.runtim
+ e.compatibility.registry";tag=v20130108-163257
+Bundle-Version: 3.5.101.v20130108-163257
+Bundle-ClassPath: runtime_registry_compatibility.jar
+Eclipse-PatchFragment: true
+Bundle-Vendor: %providerName
+Bundle-Name: %fragmentName
+Eclipse-BundleShape: dir
+Bundle-ManifestVersion: 2
+
+Name: fragment.properties
+SHA1-Digest: 4yjHkU5Z/6ej6ZFYT+PE9sMOJPY=
+
+Name: runtime_registry_compatibility.jar
+SHA1-Digest: YHpfVseR3k1Wy424nVF5+04W0Lk=
+
+Name: META-INF/eclipse.inf
+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=
+
+Name: .api_description
+SHA1-Digest: LJ87Sy009gYMDOfP+FFkugiMkVM=
+
+Name: about.html
+SHA1-Digest: ejOZra0kypGLQQ2bJtGTX+LI8tU=
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/eclipse.inf b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/about.html b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/about.html
new file mode 100644
index 0000000..4602330
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/about.html
@@ -0,0 +1,28 @@
+
+
+
+
+About
+
+
+
About This Content
+
+
June 2, 2006
+
License
+
+
The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise
+indicated below, the Content is provided to you under the terms and conditions of the
+Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available
+at http://www.eclipse.org/legal/epl-v10.html.
+For purposes of the EPL, "Program" will mean the Content.
+
+
If you did not receive this Content directly from the Eclipse Foundation, the Content is
+being redistributed by another party ("Redistributor") and different terms and conditions may
+apply to your use of any object code in the Content. Check the Redistributor's license that was
+provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise
+indicated below, the terms and conditions of the EPL still apply to any source code in the Content
+and such source code may be obtained at http://www.eclipse.org.
+
+
+
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/fragment.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/fragment.properties
new file mode 100644
index 0000000..e60dbf5
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/fragment.properties
@@ -0,0 +1,12 @@
+###############################################################################
+# Copyright (c) 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+providerName=Eclipse.org
+fragmentName=Eclipse Registry Compatibility Fragment
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/runtime_registry_compatibility.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/runtime_registry_compatibility.jar
new file mode 100644
index 0000000..f489a32
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/runtime_registry_compatibility.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility_3.2.200.v20120521-2346.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility_3.2.200.v20120521-2346.jar.REMOVED.git-id
new file mode 100644
index 0000000..4dbb410
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime.compatibility_3.2.200.v20120521-2346.jar.REMOVED.git-id
@@ -0,0 +1 @@
+f044dbac5f38c1513ff2704bb11e2aec0491ee76
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime_3.8.0.v20120912-155025.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime_3.8.0.v20120912-155025.jar.REMOVED.git-id
new file mode 100644
index 0000000..a9e5f0f
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.runtime_3.8.0.v20120912-155025.jar.REMOVED.git-id
@@ -0,0 +1 @@
+8870f2741eb781404ebf5dac75ad74bf7e2a2e9f
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.core.variables_3.2.600.v20120521-2012.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.variables_3.2.600.v20120521-2012.jar
new file mode 100644
index 0000000..006d932
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.core.variables_3.2.600.v20120521-2012.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.debug.core_3.7.100.v20120521-2012.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.debug.core_3.7.100.v20120521-2012.jar.REMOVED.git-id
new file mode 100644
index 0000000..9e3415f
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.debug.core_3.7.100.v20120521-2012.jar.REMOVED.git-id
@@ -0,0 +1 @@
+f0d0212d40b33c107a67573bafc4a728061b69cf
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.debug.ui_3.8.2.v20130130-171415.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.debug.ui_3.8.2.v20130130-171415.jar.REMOVED.git-id
new file mode 100644
index 0000000..c618164
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.debug.ui_3.8.2.v20130130-171415.jar.REMOVED.git-id
@@ -0,0 +1 @@
+95f24ba4bc83d5a3ae764ad9585835368fe36e97
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.core.commands_0.10.1.v20120523-1955.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.core.commands_0.10.1.v20120523-1955.jar
new file mode 100644
index 0000000..2d9085a
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.core.commands_0.10.1.v20120523-1955.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.core.contexts_1.2.0.v20121221-192508.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.core.contexts_1.2.0.v20121221-192508.jar
new file mode 100644
index 0000000..d4a8dc6
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.core.contexts_1.2.0.v20121221-192508.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.core.di.extensions_0.11.100.v20121024-182359.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.core.di.extensions_0.11.100.v20121024-182359.jar
new file mode 100644
index 0000000..7febc89
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.core.di.extensions_0.11.100.v20121024-182359.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.core.di_1.2.0.v20121024-173149.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.core.di_1.2.0.v20121024-173149.jar.REMOVED.git-id
new file mode 100644
index 0000000..32d88da
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.core.di_1.2.0.v20121024-173149.jar.REMOVED.git-id
@@ -0,0 +1 @@
+ea467de8e1493a52acbc767340f8aaf9f41544cf
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.core.services_1.0.0.v20120521-2346.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.core.services_1.0.0.v20120521-2346.jar
new file mode 100644
index 0000000..ed81754
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.core.services_1.0.0.v20120521-2346.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.bindings_0.10.3.v20130123-162658.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.bindings_0.10.3.v20130123-162658.jar
new file mode 100644
index 0000000..ae60985
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.bindings_0.10.3.v20130123-162658.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.css.core_0.10.2.v20120912-132817.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.css.core_0.10.2.v20120912-132817.jar.REMOVED.git-id
new file mode 100644
index 0000000..8e84091
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.css.core_0.10.2.v20120912-132817.jar.REMOVED.git-id
@@ -0,0 +1 @@
+681306616f0dfad77e816b127f037b52fd04ea9a
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.css.swt.theme_0.9.4.v20130123-162658.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.css.swt.theme_0.9.4.v20130123-162658.jar
new file mode 100644
index 0000000..92c473e
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.css.swt.theme_0.9.4.v20130123-162658.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.css.swt_0.10.3.v20130123-162658.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.css.swt_0.10.3.v20130123-162658.jar.REMOVED.git-id
new file mode 100644
index 0000000..2863721
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.css.swt_0.10.3.v20130123-162658.jar.REMOVED.git-id
@@ -0,0 +1 @@
+e03ca93252f052990c8781244eb4540a7585e8fe
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.di_0.10.1.v20120523-1955.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.di_0.10.1.v20120523-1955.jar
new file mode 100644
index 0000000..36e32e3
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.di_0.10.1.v20120523-1955.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.model.workbench_0.10.1.v20120523-1955.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.model.workbench_0.10.1.v20120523-1955.jar.REMOVED.git-id
new file mode 100644
index 0000000..6dd1d82
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.model.workbench_0.10.1.v20120523-1955.jar.REMOVED.git-id
@@ -0,0 +1 @@
+b877493b560f995e0aa2581f1428fb2c81dde5a0
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.services_0.10.3.v20130123-162658.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.services_0.10.3.v20130123-162658.jar
new file mode 100644
index 0000000..b85d02f
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.services_0.10.3.v20130123-162658.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.widgets_0.12.3.v20130123-162658.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.widgets_0.12.3.v20130123-162658.jar
new file mode 100644
index 0000000..f6eb138
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.widgets_0.12.3.v20130123-162658.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench.addons.swt_0.10.3.v20130124-185622.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench.addons.swt_0.10.3.v20130124-185622.jar.REMOVED.git-id
new file mode 100644
index 0000000..507c978
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench.addons.swt_0.10.3.v20130124-185622.jar.REMOVED.git-id
@@ -0,0 +1 @@
+7c439b6919cfc63a048dacc3809d54c971c51e36
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench.renderers.swt_0.10.3.v20130124-170312.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench.renderers.swt_0.10.3.v20130124-170312.jar.REMOVED.git-id
new file mode 100644
index 0000000..7f32cfb
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench.renderers.swt_0.10.3.v20130124-170312.jar.REMOVED.git-id
@@ -0,0 +1 @@
+97a9c318769ae8ff49a138bf3fe0ac5423e577cd
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench.swt_0.10.3.v20130124-133900.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench.swt_0.10.3.v20130124-133900.jar.REMOVED.git-id
new file mode 100644
index 0000000..27c63d4
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench.swt_0.10.3.v20130124-133900.jar.REMOVED.git-id
@@ -0,0 +1 @@
+501eabe8be626dc76b067662293f79f1ae1ab594
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench3_0.12.0.v20120521-2329.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench3_0.12.0.v20120521-2329.jar
new file mode 100644
index 0000000..54ab414
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench3_0.12.0.v20120521-2329.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench_0.11.0.v20130125-100758.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench_0.11.0.v20130125-100758.jar.REMOVED.git-id
new file mode 100644
index 0000000..bb01031
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.e4.ui.workbench_0.11.0.v20130125-100758.jar.REMOVED.git-id
@@ -0,0 +1 @@
+8ef7a2d7671f52a976b0a1006050d8ff6bd0dd3d
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ecf.filetransfer_5.0.0.v20120610-1946.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.ecf.filetransfer_5.0.0.v20120610-1946.jar.REMOVED.git-id
new file mode 100644
index 0000000..fd72033
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ecf.filetransfer_5.0.0.v20120610-1946.jar.REMOVED.git-id
@@ -0,0 +1 @@
+37e671c6bfee4b4955a64df81d9f03711e3c63eb
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ecf.identity_3.1.200.v20120610-1946.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.ecf.identity_3.1.200.v20120610-1946.jar.REMOVED.git-id
new file mode 100644
index 0000000..0e71ed4
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ecf.identity_3.1.200.v20120610-1946.jar.REMOVED.git-id
@@ -0,0 +1 @@
+c4326c76317b34ebc80684af62d147bbb5ef9389
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ecf.provider.filetransfer.httpclient.ssl_1.0.0.v20120610-1946.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.ecf.provider.filetransfer.httpclient.ssl_1.0.0.v20120610-1946.jar
new file mode 100644
index 0000000..322b505
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ecf.provider.filetransfer.httpclient.ssl_1.0.0.v20120610-1946.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ecf.provider.filetransfer.httpclient_4.0.200.v20120610-1946.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.ecf.provider.filetransfer.httpclient_4.0.200.v20120610-1946.jar.REMOVED.git-id
new file mode 100644
index 0000000..147cf1c
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ecf.provider.filetransfer.httpclient_4.0.200.v20120610-1946.jar.REMOVED.git-id
@@ -0,0 +1 @@
+b693989c48e298d67bdc9082b51493257febfad9
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ecf.provider.filetransfer.ssl_1.0.0.v20120610-1946.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.ecf.provider.filetransfer.ssl_1.0.0.v20120610-1946.jar
new file mode 100644
index 0000000..e7575bb
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ecf.provider.filetransfer.ssl_1.0.0.v20120610-1946.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ecf.provider.filetransfer_3.2.0.v20120610-1946.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.ecf.provider.filetransfer_3.2.0.v20120610-1946.jar.REMOVED.git-id
new file mode 100644
index 0000000..6cb02c0
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ecf.provider.filetransfer_3.2.0.v20120610-1946.jar.REMOVED.git-id
@@ -0,0 +1 @@
+dc5ac529a29c2928fd3e6b1e3b8160599c5d3333
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ecf.ssl_1.0.100.v20120610-1946.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.ecf.ssl_1.0.100.v20120610-1946.jar
new file mode 100644
index 0000000..38eceec
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ecf.ssl_1.0.100.v20120610-1946.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ecf_3.1.300.v20120610-1946.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.ecf_3.1.300.v20120610-1946.jar.REMOVED.git-id
new file mode 100644
index 0000000..fc3e375
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ecf_3.1.300.v20120610-1946.jar.REMOVED.git-id
@@ -0,0 +1 @@
+727dffc73616418fc486758e6ccb1132ec6c79fe
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.emf.common_2.8.0.v20130125-0546.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.emf.common_2.8.0.v20130125-0546.jar.REMOVED.git-id
new file mode 100644
index 0000000..f50974a
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.emf.common_2.8.0.v20130125-0546.jar.REMOVED.git-id
@@ -0,0 +1 @@
+120bbc01ff67bf420892af089aadda641a77a8e1
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.emf.ecore.change_2.8.0.v20130125-0546.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.emf.ecore.change_2.8.0.v20130125-0546.jar.REMOVED.git-id
new file mode 100644
index 0000000..c0936ef
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.emf.ecore.change_2.8.0.v20130125-0546.jar.REMOVED.git-id
@@ -0,0 +1 @@
+9c9e641277818c454cba50225174ae17d6cdbf97
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.emf.ecore.xmi_2.8.1.v20130125-0546.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.emf.ecore.xmi_2.8.1.v20130125-0546.jar.REMOVED.git-id
new file mode 100644
index 0000000..28373bb
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.emf.ecore.xmi_2.8.1.v20130125-0546.jar.REMOVED.git-id
@@ -0,0 +1 @@
+84e2080d23e49899f9f8d95fec81515d8c7c4de5
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.emf.ecore_2.8.3.v20130125-0546.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.emf.ecore_2.8.3.v20130125-0546.jar.REMOVED.git-id
new file mode 100644
index 0000000..c2579e4
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.emf.ecore_2.8.3.v20130125-0546.jar.REMOVED.git-id
@@ -0,0 +1 @@
+3597d14abf9fc38a6934b5230e37f6dbea6fc27e
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.app_1.3.100.v20120522-1841.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.app_1.3.100.v20120522-1841.jar.REMOVED.git-id
new file mode 100644
index 0000000..4443208
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.app_1.3.100.v20120522-1841.jar.REMOVED.git-id
@@ -0,0 +1 @@
+e3cf1f1dfb88ab558b9878b3045813316b53fc89
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.bidi_0.9.100.v20121107-021609.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.bidi_0.9.100.v20121107-021609.jar
new file mode 100644
index 0000000..e08a821
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.bidi_0.9.100.v20121107-021609.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.common_3.6.100.v20120522-1841.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.common_3.6.100.v20120522-1841.jar.REMOVED.git-id
new file mode 100644
index 0000000..8b39c0d
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.common_3.6.100.v20120522-1841.jar.REMOVED.git-id
@@ -0,0 +1 @@
+672f68af5220d3da68599295e2a1727614647f91
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.console_1.0.0.v20120522-1841.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.console_1.0.0.v20120522-1841.jar.REMOVED.git-id
new file mode 100644
index 0000000..af679e3
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.console_1.0.0.v20120522-1841.jar.REMOVED.git-id
@@ -0,0 +1 @@
+ff1665b5088093a45735cf989e04190047f79296
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.ds_1.4.1.v20120926-201320.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.ds_1.4.1.v20120926-201320.jar.REMOVED.git-id
new file mode 100644
index 0000000..453e873
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.ds_1.4.1.v20120926-201320.jar.REMOVED.git-id
@@ -0,0 +1 @@
+94acfe1c15e33b02d5fc0eca754fa7c1639ccc44
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.event_1.2.200.v20120522-2049.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.event_1.2.200.v20120522-2049.jar
new file mode 100644
index 0000000..a423b3b
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.event_1.2.200.v20120522-2049.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.frameworkadmin.equinox_1.0.400.v20120913-155709.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.frameworkadmin.equinox_1.0.400.v20120913-155709.jar.REMOVED.git-id
new file mode 100644
index 0000000..8cd36b0
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.frameworkadmin.equinox_1.0.400.v20120913-155709.jar.REMOVED.git-id
@@ -0,0 +1 @@
+56be80c52e4fefa09a6e390dcace119f9b8488ce
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.frameworkadmin_2.0.100.v20120913-155515.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.frameworkadmin_2.0.100.v20120913-155515.jar
new file mode 100644
index 0000000..7947fc2
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.frameworkadmin_2.0.100.v20120913-155515.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.http.jetty_3.0.1.v20121109-203239.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.http.jetty_3.0.1.v20121109-203239.jar
new file mode 100644
index 0000000..79d899e
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.http.jetty_3.0.1.v20121109-203239.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.http.registry_1.1.200.v20120912-130548.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.http.registry_1.1.200.v20120912-130548.jar
new file mode 100644
index 0000000..680ad31
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.http.registry_1.1.200.v20120912-130548.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.http.servlet_1.1.300.v20120912-130548.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.http.servlet_1.1.300.v20120912-130548.jar
new file mode 100644
index 0000000..3ad9c89
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.http.servlet_1.1.300.v20120912-130548.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.jsp.jasper.registry_1.0.300.v20120912-130548.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.jsp.jasper.registry_1.0.300.v20120912-130548.jar
new file mode 100644
index 0000000..56dd370
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.jsp.jasper.registry_1.0.300.v20120912-130548.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.jsp.jasper_1.0.400.v20120912-130548.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.jsp.jasper_1.0.400.v20120912-130548.jar
new file mode 100644
index 0000000..a07c8a8
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.jsp.jasper_1.0.400.v20120912-130548.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/META-INF/ECLIPSE_.RSA b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..0788a60
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/META-INF/ECLIPSE_.RSA differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/META-INF/ECLIPSE_.SF b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..f48a335
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/META-INF/ECLIPSE_.SF
@@ -0,0 +1,17 @@
+Signature-Version: 1.0
+SHA1-Digest-Manifest: BK89CfUtLpfITapf9FShB4CPUKU=
+Created-By: 1.6.0 (IBM Corporation)
+SHA1-Digest-Manifest-Main-Attributes: 8rkGqonbixAPXxwAojy/o49dJWU=
+
+Name: launcher.gtk.linux.x86.properties
+SHA1-Digest: 5BtD/vNtIvuyWlysuv6gC3ob3mk=
+
+Name: META-INF/eclipse.inf
+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=
+
+Name: about.html
+SHA1-Digest: xGcp/Hbq/ywyvVWkPzD/2vkIzdY=
+
+Name: eclipse_1502.so
+SHA1-Digest: OahbyXoMDBQDcHP0GzrAo7HxpT8=
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/META-INF/MANIFEST.MF b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..5911ad6
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/META-INF/MANIFEST.MF
@@ -0,0 +1,29 @@
+Manifest-Version: 1.0
+Eclipse-PlatformFilter: (& (osgi.ws=gtk) (osgi.os=linux) (osgi.arch=x8
+ 6))
+Bundle-Vendor: %providerName
+Bundle-Localization: launcher.gtk.linux.x86
+Fragment-Host: org.eclipse.equinox.launcher;bundle-version="[1.0.0,1.4
+ .0)"
+Bundle-Name: %pluginName
+Bundle-SymbolicName: org.eclipse.equinox.launcher.gtk.linux.x86;single
+ ton:=true
+Eclipse-BundleShape: dir
+Eclipse-SourceReferences: scm:git:git://git.eclipse.org/gitroot/equino
+ x/rt.equinox.framework.git;path="bundles/org.eclipse.equinox.launcher
+ .gtk.linux.x86";tag=v20120913-144807
+Bundle-Version: 1.1.200.v20120913-144807
+Bundle-ManifestVersion: 2
+
+Name: launcher.gtk.linux.x86.properties
+SHA1-Digest: ZZ3wfzRZQMXrro06Qu1LmyJvyU8=
+
+Name: META-INF/eclipse.inf
+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=
+
+Name: eclipse_1502.so
+SHA1-Digest: bJiB3nlIPpaPdcWiIst/tS++ous=
+
+Name: about.html
+SHA1-Digest: a9lDHrGuLPkvHBUhsqWU+V2mhPw=
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/META-INF/eclipse.inf b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/about.html b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/about.html
new file mode 100644
index 0000000..395df3b
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/about.html
@@ -0,0 +1,28 @@
+
+
+
+
+About
+
+
+
About This Content
+
+
June 5, 2006
+
License
+
+
The Eclipse Foundation makes available all content in this plug-in ("Content").
+Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the
+Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available
+at http://www.eclipse.org/legal/epl-v10.html.
+For purposes of the EPL, "Program" will mean the Content.
+
+
If you did not receive this Content directly from the Eclipse Foundation, the Content is
+being redistributed by another party ("Redistributor") and different terms and conditions may
+apply to your use of any object code in the Content. Check the Redistributor’s license
+that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise
+indicated below, the terms and conditions of the EPL still apply to any source code in the Content
+and such source code may be obtained at http://www.eclipse.org.
+
+
+
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/eclipse_1502.so.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/eclipse_1502.so.REMOVED.git-id
new file mode 100644
index 0000000..db46bf5
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/eclipse_1502.so.REMOVED.git-id
@@ -0,0 +1 @@
+d114004697e2f1e81a2a66a5fa7e224c6b55deb6
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/launcher.gtk.linux.x86.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/launcher.gtk.linux.x86.properties
new file mode 100644
index 0000000..122990b
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.200.v20120913-144807/launcher.gtk.linux.x86.properties
@@ -0,0 +1,12 @@
+###############################################################################
+# Copyright (c) 2007, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+pluginName = Equinox Launcher Linux X86 Fragment
+providerName = Eclipse.org - Equinox
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar
new file mode 100644
index 0000000..710c3db
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.artifact.repository_1.1.200.v20120430-1959.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.artifact.repository_1.1.200.v20120430-1959.jar.REMOVED.git-id
new file mode 100644
index 0000000..5ad7a65
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.artifact.repository_1.1.200.v20120430-1959.jar.REMOVED.git-id
@@ -0,0 +1 @@
+0a59302916dcf8d537212081a6004817c87190c2
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.console_1.0.300.v20120429-0125.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.console_1.0.300.v20120429-0125.jar
new file mode 100644
index 0000000..35eaa3a
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.console_1.0.300.v20120429-0125.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.core_2.2.0.v20120430-0525.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.core_2.2.0.v20120430-0525.jar.REMOVED.git-id
new file mode 100644
index 0000000..11b7295
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.core_2.2.0.v20120430-0525.jar.REMOVED.git-id
@@ -0,0 +1 @@
+4fdada69c65baad77927ca28b190a62231af887b
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.director.app_1.0.300.v20120428-0517.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.director.app_1.0.300.v20120428-0517.jar
new file mode 100644
index 0000000..d2f419b
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.director.app_1.0.300.v20120428-0517.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.director_2.2.0.v20120524-0542.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.director_2.2.0.v20120524-0542.jar.REMOVED.git-id
new file mode 100644
index 0000000..d53277a
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.director_2.2.0.v20120524-0542.jar.REMOVED.git-id
@@ -0,0 +1 @@
+ce4323b20a2f03b4821eb9caace742cad2a64bb2
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.directorywatcher_1.0.300.v20110808-1657.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.directorywatcher_1.0.300.v20110808-1657.jar
new file mode 100644
index 0000000..fa9fcbe
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.directorywatcher_1.0.300.v20110808-1657.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.engine_2.2.0.v20130121-021919.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.engine_2.2.0.v20130121-021919.jar.REMOVED.git-id
new file mode 100644
index 0000000..db42f29
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.engine_2.2.0.v20130121-021919.jar.REMOVED.git-id
@@ -0,0 +1 @@
+6ca6879da153ab4fd24a12de15a080a048761e19
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.extensionlocation_1.2.100.v20110808-1657.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.extensionlocation_1.2.100.v20110808-1657.jar
new file mode 100644
index 0000000..92d07f3
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.extensionlocation_1.2.100.v20110808-1657.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.garbagecollector_1.0.200.v20110808-1657.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.garbagecollector_1.0.200.v20110808-1657.jar
new file mode 100644
index 0000000..726251e
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.garbagecollector_1.0.200.v20110808-1657.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.jarprocessor_1.0.200.v20110808-1657.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.jarprocessor_1.0.200.v20110808-1657.jar.REMOVED.git-id
new file mode 100644
index 0000000..8c146eb
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.jarprocessor_1.0.200.v20110808-1657.jar.REMOVED.git-id
@@ -0,0 +1 @@
+1a5f3a8e8581c37a823d8f7b0cbef3e1c8548766
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.metadata.repository_1.2.100.v20120524-1717.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.metadata.repository_1.2.100.v20120524-1717.jar.REMOVED.git-id
new file mode 100644
index 0000000..a3a20a5
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.metadata.repository_1.2.100.v20120524-1717.jar.REMOVED.git-id
@@ -0,0 +1 @@
+3c79de7d82fc9712aa4482493e6da12f41991e92
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.metadata_2.1.0.v20120430-2001.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.metadata_2.1.0.v20120430-2001.jar.REMOVED.git-id
new file mode 100644
index 0000000..aa1900a
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.metadata_2.1.0.v20120430-2001.jar.REMOVED.git-id
@@ -0,0 +1 @@
+7b035996a9c4f0c595e9047381527cdd67c45ec5
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.operations_2.2.0.v20130119-010614.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.operations_2.2.0.v20130119-010614.jar.REMOVED.git-id
new file mode 100644
index 0000000..99cce50
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.operations_2.2.0.v20130119-010614.jar.REMOVED.git-id
@@ -0,0 +1 @@
+0a6ca983f355b8249d0621338f3bf1c9978e6564
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.publisher.eclipse_1.1.0.v20120913-155635.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.publisher.eclipse_1.1.0.v20120913-155635.jar.REMOVED.git-id
new file mode 100644
index 0000000..bfdc769
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.publisher.eclipse_1.1.0.v20120913-155635.jar.REMOVED.git-id
@@ -0,0 +1 @@
+a4f52bdf87b1a9cc259beba95ad55fb4b702ee86
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.publisher_1.2.0.v20121002-080415.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.publisher_1.2.0.v20121002-080415.jar.REMOVED.git-id
new file mode 100644
index 0000000..51553d6
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.publisher_1.2.0.v20121002-080415.jar.REMOVED.git-id
@@ -0,0 +1 @@
+d7fe85372b79e120fbaa554ccc8853da60a7b445
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ql_2.0.100.v20110808-1657.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ql_2.0.100.v20110808-1657.jar
new file mode 100644
index 0000000..b8c2e22
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ql_2.0.100.v20110808-1657.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.reconciler.dropins_1.1.200.v20120301-2145.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.reconciler.dropins_1.1.200.v20120301-2145.jar
new file mode 100644
index 0000000..3eee98e
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.reconciler.dropins_1.1.200.v20120301-2145.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.repository.tools_2.0.100.v20120501-1314.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.repository.tools_2.0.100.v20120501-1314.jar.REMOVED.git-id
new file mode 100644
index 0000000..4a60963
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.repository.tools_2.0.100.v20120501-1314.jar.REMOVED.git-id
@@ -0,0 +1 @@
+aa6dae8a2a9e586a37f622f64daeb834f18c9763
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.repository_2.2.0.v20120524-1945.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.repository_2.2.0.v20120524-1945.jar.REMOVED.git-id
new file mode 100644
index 0000000..2d41f48
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.repository_2.2.0.v20120524-1945.jar.REMOVED.git-id
@@ -0,0 +1 @@
+9df9864d0d335eb4fb2dd8ef6c9f28e1730153e2
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.touchpoint.eclipse_2.1.100.v20120428-0117.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.touchpoint.eclipse_2.1.100.v20120428-0117.jar.REMOVED.git-id
new file mode 100644
index 0000000..a5df544
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.touchpoint.eclipse_2.1.100.v20120428-0117.jar.REMOVED.git-id
@@ -0,0 +1 @@
+9356ca54bfcfcf11d210b75d9d91cdd519b2236e
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.touchpoint.natives_1.1.0.v20130121-021919.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.touchpoint.natives_1.1.0.v20130121-021919.jar.REMOVED.git-id
new file mode 100644
index 0000000..119af51
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.touchpoint.natives_1.1.0.v20130121-021919.jar.REMOVED.git-id
@@ -0,0 +1 @@
+6f3dab21bbb226860ea22eaf9961b6268a8cd2ac
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.transport.ecf_1.0.100.v20120913-155635.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.transport.ecf_1.0.100.v20120913-155635.jar
new file mode 100644
index 0000000..2d6bd8a
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.transport.ecf_1.0.100.v20120913-155635.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ui.importexport_1.0.1.v20120913-155635.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ui.importexport_1.0.1.v20120913-155635.jar.REMOVED.git-id
new file mode 100644
index 0000000..7f5ba06
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ui.importexport_1.0.1.v20120913-155635.jar.REMOVED.git-id
@@ -0,0 +1 @@
+79468ebd06eeef67ec3d77c7f6217f42bd72fe9f
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ui.sdk.scheduler_1.1.0.v20110815-1744.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ui.sdk.scheduler_1.1.0.v20110815-1744.jar.REMOVED.git-id
new file mode 100644
index 0000000..fd8ba9a
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ui.sdk.scheduler_1.1.0.v20110815-1744.jar.REMOVED.git-id
@@ -0,0 +1 @@
+5dcabb2caa956b259d84cd1689cdcda90bb6106b
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ui.sdk_1.0.200.v20120515-1650.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ui.sdk_1.0.200.v20120515-1650.jar
new file mode 100644
index 0000000..29f4174
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ui.sdk_1.0.200.v20120515-1650.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ui_2.2.0.v20130119-010614.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ui_2.2.0.v20130119-010614.jar.REMOVED.git-id
new file mode 100644
index 0000000..8aff58f
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.ui_2.2.0.v20130119-010614.jar.REMOVED.git-id
@@ -0,0 +1 @@
+ab61b30378c12bf3335f02c72865baedc1295b1d
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.updatechecker_1.1.200.v20110808-1657.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.updatechecker_1.1.200.v20110808-1657.jar
new file mode 100644
index 0000000..2acbd64
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.updatechecker_1.1.200.v20110808-1657.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.updatesite_1.0.400.v20120412-1615.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.updatesite_1.0.400.v20120412-1615.jar.REMOVED.git-id
new file mode 100644
index 0000000..32e7e0f
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.p2.updatesite_1.0.400.v20120412-1615.jar.REMOVED.git-id
@@ -0,0 +1 @@
+187af2dc203d9f18e895a511375790f08ce424cb
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.preferences_3.5.1.v20121031-182809.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.preferences_3.5.1.v20121031-182809.jar.REMOVED.git-id
new file mode 100644
index 0000000..527ab7c
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.preferences_3.5.1.v20121031-182809.jar.REMOVED.git-id
@@ -0,0 +1 @@
+fd8362185b15c20e462b0c67b958393b3fc91a91
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.registry_3.5.200.v20120522-1841.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.registry_3.5.200.v20120522-1841.jar.REMOVED.git-id
new file mode 100644
index 0000000..76f4ef7
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.registry_3.5.200.v20120522-1841.jar.REMOVED.git-id
@@ -0,0 +1 @@
+755ba79a2e52ba7a06d1caba9ffdf2e58ba8543b
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.security.ui_1.1.100.v20120522-2049.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.security.ui_1.1.100.v20120522-2049.jar.REMOVED.git-id
new file mode 100644
index 0000000..bf439b5
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.security.ui_1.1.100.v20120522-2049.jar.REMOVED.git-id
@@ -0,0 +1 @@
+087e6eb2827f54a2f1e139f19cab42d11f34155a
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.security_1.1.100.v20120522-1841.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.security_1.1.100.v20120522-1841.jar.REMOVED.git-id
new file mode 100644
index 0000000..6a9f7dc
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.security_1.1.100.v20120522-1841.jar.REMOVED.git-id
@@ -0,0 +1 @@
+f09f20cc7f54ebc9c6fa84a027d52b46385b3f6a
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.simpleconfigurator.manipulator_2.0.0.v20110808-1657.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.simpleconfigurator.manipulator_2.0.0.v20110808-1657.jar
new file mode 100644
index 0000000..2b8465d
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.simpleconfigurator.manipulator_2.0.0.v20110808-1657.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.simpleconfigurator_1.0.301.v20120914-163612.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.simpleconfigurator_1.0.301.v20120914-163612.jar
new file mode 100644
index 0000000..ef63f9d
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.simpleconfigurator_1.0.301.v20120914-163612.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.util_1.0.400.v20120917-192807.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.util_1.0.400.v20120917-192807.jar.REMOVED.git-id
new file mode 100644
index 0000000..fc2c52b
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.equinox.util_1.0.400.v20120917-192807.jar.REMOVED.git-id
@@ -0,0 +1 @@
+e81bb6a6fe35a2e5cf33ffce4c41d31f181dd726
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.help_3.6.0.v20120912-134126.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.help_3.6.0.v20120912-134126.jar.REMOVED.git-id
new file mode 100644
index 0000000..ea9aea8
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.help_3.6.0.v20120912-134126.jar.REMOVED.git-id
@@ -0,0 +1 @@
+79c6dc32b5789bcc9ed6a8483d0083c665feefdf
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.jetty.continuation_8.1.3.v20120522.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.jetty.continuation_8.1.3.v20120522.jar
new file mode 100644
index 0000000..393dcf3
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.jetty.continuation_8.1.3.v20120522.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.jetty.http_8.1.3.v20120522.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.jetty.http_8.1.3.v20120522.jar.REMOVED.git-id
new file mode 100644
index 0000000..7653e13
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.jetty.http_8.1.3.v20120522.jar.REMOVED.git-id
@@ -0,0 +1 @@
+b57c753386f09abc0dd1fedc3be92c213cc75219
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.jetty.io_8.1.3.v20120522.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.jetty.io_8.1.3.v20120522.jar.REMOVED.git-id
new file mode 100644
index 0000000..8ec88ad
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.jetty.io_8.1.3.v20120522.jar.REMOVED.git-id
@@ -0,0 +1 @@
+9081be5316138a2e354364d51280e00fccc1ae08
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.jetty.security_8.1.3.v20120522.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.jetty.security_8.1.3.v20120522.jar.REMOVED.git-id
new file mode 100644
index 0000000..57de9b2
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.jetty.security_8.1.3.v20120522.jar.REMOVED.git-id
@@ -0,0 +1 @@
+0c592c8446da0bcf58e534276983496599870107
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.jetty.servlet_8.1.3.v20120522.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.jetty.servlet_8.1.3.v20120522.jar.REMOVED.git-id
new file mode 100644
index 0000000..689bd5b
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.jetty.servlet_8.1.3.v20120522.jar.REMOVED.git-id
@@ -0,0 +1 @@
+63eefd4a116878e6b67916d9ce51bc498399f5f2
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.jetty.util_8.1.3.v20120522.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.jetty.util_8.1.3.v20120522.jar.REMOVED.git-id
new file mode 100644
index 0000000..cd78914
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.jetty.util_8.1.3.v20120522.jar.REMOVED.git-id
@@ -0,0 +1 @@
+1bb38911246f50f6d20ed013879fc54dfd38a072
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.jface.databinding_1.6.0.v20120912-132807.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.jface.databinding_1.6.0.v20120912-132807.jar.REMOVED.git-id
new file mode 100644
index 0000000..548326e
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.jface.databinding_1.6.0.v20120912-132807.jar.REMOVED.git-id
@@ -0,0 +1 @@
+7617f9efbed10e0023f939b714815e798205b4a1
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.jface.text_3.8.2.v20121126-164145.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.jface.text_3.8.2.v20121126-164145.jar.REMOVED.git-id
new file mode 100644
index 0000000..ad6f20a
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.jface.text_3.8.2.v20121126-164145.jar.REMOVED.git-id
@@ -0,0 +1 @@
+ce660a7247b09a0084c455a7e0807b7c36e991f7
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.jface_3.8.102.v20130123-162658.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.jface_3.8.102.v20130123-162658.jar.REMOVED.git-id
new file mode 100644
index 0000000..a24171e
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.jface_3.8.102.v20130123-162658.jar.REMOVED.git-id
@@ -0,0 +1 @@
+2181fe8753c400129ae06fc8dcced4f17821dafe
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.jsch.core_1.1.400.v20120522-1148.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.jsch.core_1.1.400.v20120522-1148.jar
new file mode 100644
index 0000000..e4b1890
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.jsch.core_1.1.400.v20120522-1148.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.jsch.ui_1.1.400.v20120522-1148.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.jsch.ui_1.1.400.v20120522-1148.jar.REMOVED.git-id
new file mode 100644
index 0000000..54cb85c
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.jsch.ui_1.1.400.v20120522-1148.jar.REMOVED.git-id
@@ -0,0 +1 @@
+a874129d076e917de5eb4e4ed3ecf22139304e2f
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ltk.core.refactoring_3.6.0.v20120523-1543.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.ltk.core.refactoring_3.6.0.v20120523-1543.jar.REMOVED.git-id
new file mode 100644
index 0000000..15a75a8
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ltk.core.refactoring_3.6.0.v20120523-1543.jar.REMOVED.git-id
@@ -0,0 +1 @@
+5065f89bd97fef0e2e039f9f1cc0e69302b70734
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ltk.ui.refactoring_3.7.0.v20120523-1543.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.ltk.ui.refactoring_3.7.0.v20120523-1543.jar.REMOVED.git-id
new file mode 100644
index 0000000..66ca343
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ltk.ui.refactoring_3.7.0.v20120523-1543.jar.REMOVED.git-id
@@ -0,0 +1 @@
+f9531eb31cb72f43f92c37c5dc85ee01f1e2380c
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.osgi.services_3.3.100.v20120522-1822.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.osgi.services_3.3.100.v20120522-1822.jar.REMOVED.git-id
new file mode 100644
index 0000000..ac55423
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.osgi.services_3.3.100.v20120522-1822.jar.REMOVED.git-id
@@ -0,0 +1 @@
+1be0d15faadfea1f989eed8f87e3632402d7332c
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.osgi.util_3.2.300.v20120913-144807.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.osgi.util_3.2.300.v20120913-144807.jar
new file mode 100644
index 0000000..7ee59d1
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.osgi.util_3.2.300.v20120913-144807.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.osgi_3.8.2.v20130124-134944.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.osgi_3.8.2.v20130124-134944.jar.REMOVED.git-id
new file mode 100644
index 0000000..dad696b
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.osgi_3.8.2.v20130124-134944.jar.REMOVED.git-id
@@ -0,0 +1 @@
+47b36531cda5b1fb727c1e2343f49083a2a25f11
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/.api_description b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/.api_description
new file mode 100644
index 0000000..7825afa
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/.api_description
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/LegacyIDE.e4xmi b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/LegacyIDE.e4xmi
new file mode 100644
index 0000000..be4bfed
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/LegacyIDE.e4xmi
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/ECLIPSE_.RSA b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..4e0b9d1
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/ECLIPSE_.RSA differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/ECLIPSE_.SF b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..4243450
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/ECLIPSE_.SF
@@ -0,0 +1,263 @@
+Signature-Version: 1.0
+SHA1-Digest-Manifest: ERdR6aVOcbdOCCJp6PurPZkYvG8=
+Created-By: 1.6.0 (IBM Corporation)
+SHA1-Digest-Manifest-Main-Attributes: OHiruwURt2tkChZ88Ilkxg9N/n4=
+
+Name: images/topiclabel/wn_migrate48_hov.gif
+SHA1-Digest: PiwFgHazgc8SIGl/oti+P2zLKsc=
+
+Name: intro/css/whatsnew.properties
+SHA1-Digest: t99cjGj5mTzuUg2do0teAP6fzzA=
+
+Name: eclipse16.gif
+SHA1-Digest: H8kWdGDjph57Qo2qbu1tI7gP5/I=
+
+Name: images/gtkTSFrame.png
+SHA1-Digest: lNsagip705L28766XqzLBHTt+lc=
+
+Name: about.ini
+SHA1-Digest: 3tRVmcACc9ekdbjEuHD+KlN4gfU=
+
+Name: macosx_narrow_book.css
+SHA1-Digest: 8J/M6n+c7VFylsVAZdhTlZ+vXz0=
+
+Name: images/topiclabel/ov_wbbasics48.gif
+SHA1-Digest: oWojUiR1WBlGtZEsM7txIHQ3Q9E=
+
+Name: css/e4_default.css
+SHA1-Digest: I9HSkYjy353ggHaxaHM2NtQHQ0Q=
+
+Name: images/win7Handle.png
+SHA1-Digest: RBjnm1FGs3nmck1LG1k9mVapN8c=
+
+Name: images/win7TSFrame.png
+SHA1-Digest: EPju6HYRlpTQdn4ZWWaL2oQ/yrs=
+
+Name: LegacyIDE.e4xmi
+SHA1-Digest: YAF314wdYO4RZeSEVVOgzx2cFZM=
+
+Name: images/winXPOlive.png
+SHA1-Digest: /dFSDq/T8U9g4GaR09CL3lhEmsE=
+
+Name: intro/css/overview.properties
+SHA1-Digest: XTV3uTDwqp1dy5+XY/Q5I1HpnOY=
+
+Name: images/topiclabel/ov_wbbasics48_hov.gif
+SHA1-Digest: TQSe+zq4qkTGG/6fHCtrmcKnPK4=
+
+Name: platform.jar
+SHA1-Digest: D0IUtWfa5j2XMOXHMFGML/NEJAo=
+
+Name: eclipse32.png
+SHA1-Digest: AsaOXGbLLaVxPpq8N0hfgWwXxb0=
+
+Name: css/e4_default_winxp_olv.css
+SHA1-Digest: f/+LVk1MqEiaTlx16kbwn3PpS6Y=
+
+Name: intro-eclipse.png
+SHA1-Digest: CJvW3yEUeROOUEK4ZgBcmly0Z1k=
+
+Name: css/e4_default_mac.css
+SHA1-Digest: 4NINLFtDrzw/BQ/Gft++SuSM5Zw=
+
+Name: META-INF/eclipse.inf
+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=
+
+Name: images/topiclabel/ov_teamsup48.gif
+SHA1-Digest: OsElRFQSFh3jJgsmon2s9QCfwe4=
+
+Name: about.mappings
+SHA1-Digest: qVqsiW/AgEHaBq8l8H286/NjB80=
+
+Name: images/topiclabel/tu_merge48.gif
+SHA1-Digest: UP3+phgtp3bSprMVq4tSiRIL0JI=
+
+Name: images/topiclabel/arrow.gif
+SHA1-Digest: nJK4gPtQBJLJcQMLOFJXJvK4gLU=
+
+Name: images/dragHandle.png
+SHA1-Digest: lNfkT2YIht+8RAKWluO7N+bk+eY=
+
+Name: images/winXPBluHandle.png
+SHA1-Digest: 1CjJYAt22MCzjzPmBh+2rmLFKMI=
+
+Name: images/macTSFrame.png
+SHA1-Digest: cFsyUNxrLdj04Kx37kiGH3KSHd8=
+
+Name: images/winXPBlue.png
+SHA1-Digest: Tc7M/fv+4ApkXg0UnqPaZ2aZ5MU=
+
+Name: about.properties
+SHA1-Digest: B2e1IuBrBzWSbHRWjjHSxm5cjfA=
+
+Name: helpData.xml
+SHA1-Digest: TZXnzPn4n3gBwQF0ydaxhmY1w3g=
+
+Name: images/topiclabel/ov_teamsup48_hov.gif
+SHA1-Digest: ZKZr1E2Xyo7hieH3Fp+q5NQMPeo=
+
+Name: images/topiclabel/tu_merge48_hov.gif
+SHA1-Digest: xtxSXRHbti1PLVmVeRXavwMzvso=
+
+Name: css/e4_classic_winxp.css
+SHA1-Digest: 2V+wxs2TCKfmuI4wK/2npJq5eWc=
+
+Name: plugin_customization.properties
+SHA1-Digest: /BU7Z7eXbbgW16mEDonqO+Dx+SI=
+
+Name: cheatsheets/cvs_merge.xml
+SHA1-Digest: FaAOvipbrJKzOgrfFooFZ5NVVPQ=
+
+Name: intro/css/tutorials.properties
+SHA1-Digest: 2ipkwKeXHjNzNqDiKumBtEItgyw=
+
+Name: images/macHandle.png
+SHA1-Digest: 9ZpeCfJRwIwzfKtcxGCvXxA/XH4=
+
+Name: images/winClassicTSFrame.png
+SHA1-Digest: bYIjigeu8yZ+v0w6G7kuOI06Su0=
+
+Name: eclipse32.gif
+SHA1-Digest: m+XqY7Ow/523wZ3Mo5NeUYIUA3Q=
+
+Name: plugin_customization.ini
+SHA1-Digest: a/GckqeeBZ+Vm25Dv7v2lBKz7HU=
+
+Name: intro/overviewExtensionContent.xml
+SHA1-Digest: DjMSj7TcD5qaDnzaWjHU2caihuA=
+
+Name: css/e4_default_mru_on_win7.css
+SHA1-Digest: oFqXDb6sSa7XRDk20i69ZezXZlg=
+
+Name: images/winXPHandle.png
+SHA1-Digest: RvBcs+E7ua8p7R6WAeihITCo7w0=
+
+Name: css/e4_classic_win7.css
+SHA1-Digest: DlvxyhZwZatTZdT2efyl0YfcXPc=
+
+Name: images/gtkGrey.png
+SHA1-Digest: Wbj2CSLIIMvC+mpCz/C3ql7pMs4=
+
+Name: images/topiclabel/wn_eclplatform48.gif
+SHA1-Digest: AooAx3UMTLzrMC+eWiCtEgpeRS8=
+
+Name: eclipse48.png
+SHA1-Digest: r7vloezLEByQSRBAUWLnrcCIuSc=
+
+Name: eclipse_lg.gif
+SHA1-Digest: qswGt1E/1bq1Xts719EUvOPBo9U=
+
+Name: images/gtkHandle.png
+SHA1-Digest: UeK2OmJZi7iTP253re8iXj0xdY4=
+
+Name: images/winXPTSFrame.png
+SHA1-Digest: 6H+w4CglVzxPtT+FhyKozWTLmr8=
+
+Name: images/win7.png
+SHA1-Digest: cbJu6wjXexyan1oki8AXgU0rb+M=
+
+Name: plugin.properties
+SHA1-Digest: 0KnPcav4HXWfHUo22AO51I0Lfmc=
+
+Name: images/topiclabel/wn_updates48.gif
+SHA1-Digest: fLSuoNPvkl9STgSftMFToeLhbYo=
+
+Name: images/winClassicHandle.png
+SHA1-Digest: YaCMKtwN879oADa1Mcv7sAo9h6Y=
+
+Name: css/e4_basestyle.css
+SHA1-Digest: un/esnYq2tMNaIA7tbHvbItLTYw=
+
+Name: css/e4_default_winxp_blu.css
+SHA1-Digest: NBxt3jR41yT0mMRACspGWkVghsw=
+
+Name: images/topiclabel/wn_eclplatform48_hov.gif
+SHA1-Digest: DGUWlU5kU62JaCxSPgKE7I5vo9E=
+
+Name: plugin.xml
+SHA1-Digest: Wpm+mXP229iRqHcIi1SOr/3VF/w=
+
+Name: intro/css/overview.css
+SHA1-Digest: QIN/myt3F8vMVNj3t2B3MKZU8uU=
+
+Name: images/topiclabel/wn_updates48_hov.gif
+SHA1-Digest: 4szF/MVsbBym+cGCzZBVaJP/pgc=
+
+Name: introData.xml
+SHA1-Digest: rbdEVtdFXLVuOdrjxm51bMKNzFk=
+
+Name: eclipse48.gif
+SHA1-Digest: Ihjs4HZguOtOUMcamr+GT8QgTiA=
+
+Name: disabled_book.css
+SHA1-Digest: bLpqfhUiGbAbtfx3E0c42hwVP9s=
+
+Name: narrow_book.css
+SHA1-Digest: RwlCfnTG+XygntK3jqGLLuWg2Nc=
+
+Name: eclipse16.png
+SHA1-Digest: hSBGQPWTnl9Je2kVmqPLqOPP12g=
+
+Name: eclipse256.png
+SHA1-Digest: zLt88QkiRs+It2iT5DT83hSwY74=
+
+Name: .api_description
+SHA1-Digest: qAabKOtIRTFbe+lLU9D4LfX7ArE=
+
+Name: images/topiclabel/wn_eclcommunity48.gif
+SHA1-Digest: sWE9Am5FXw787JocFsDVPGGhgg8=
+
+Name: images/topiclabel/tu_checkout48.gif
+SHA1-Digest: 4Mpg1tzRFQZMWH4ZjCoFz80LLWg=
+
+Name: about.html
+SHA1-Digest: xr2qKGgMP52ylX6t87VPIBmazXM=
+
+Name: intro/whatsnewExtensionContent1.xml
+SHA1-Digest: /k6tWIGpGHIMQuX0sWk/97FtgNs=
+
+Name: intro/whatsnewExtensionContent2.xml
+SHA1-Digest: ss0gzaRydrOD9IJgkZjhK3d8wq8=
+
+Name: intro/whatsnewExtensionContent3.xml
+SHA1-Digest: ksAoihbQK4Wv8cQkJtVo7h+e/AY=
+
+Name: images/topiclabel/wn_migrate48.gif
+SHA1-Digest: QRZfRxz+DNtWqcgOeBJWEXCOWcI=
+
+Name: css/e4_default_gtk.css
+SHA1-Digest: 6wm/B7hL/q2vXFg0ZYObfLWPR34=
+
+Name: images/macGrey.png
+SHA1-Digest: twwtkeX4lPiGDAUgioXSTsir9j4=
+
+Name: css/e4_default_win7.css
+SHA1-Digest: RpdtcwxnWzRkCoA3SfHyfk4D9Xk=
+
+Name: intro/css/whatsnew.css
+SHA1-Digest: AdyiXWH4xll/guFkUn+P1Y9xG9M=
+
+Name: intro/tutorialsExtensionContent.xml
+SHA1-Digest: JrYfgCanVcsvNwwdR9WJx1U6Vl4=
+
+Name: cheatsheets/cvs_checkout.xml
+SHA1-Digest: VJonjDQOuxIN4zAmj9Mqd6TO0x0=
+
+Name: images/topiclabel/wn_eclcommunity48_hov.gif
+SHA1-Digest: TChv2jPWCYEyDG6brFi9QNci/zs=
+
+Name: images/topiclabel/tu_checkout48_hov.gif
+SHA1-Digest: L2sDh0tqvIaFQJqBDjV24VFWwgo=
+
+Name: images/winXPBluTSFrame.png
+SHA1-Digest: F8trtuSgW31q6HAV2alypNMXd5A=
+
+Name: intro/css/tutorials.css
+SHA1-Digest: M+MZ4vr9RJTOAUjIC3Qz3p0u6rs=
+
+Name: book.css
+SHA1-Digest: 60Ab1JD4rBjks4ZmsmwkUzsPPC8=
+
+Name: splash.bmp
+SHA1-Digest: XXhVk7MGRKr5MlIWvyNn/hg83ac=
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/MANIFEST.MF b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..b1a2243
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/MANIFEST.MF
@@ -0,0 +1,279 @@
+Manifest-Version: 1.0
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.4,CDC-1.0/Foundation-1.0,J
+ 2SE-1.3
+Bundle-SymbolicName: org.eclipse.platform; singleton:=true
+Eclipse-SourceReferences: scm:git:git://git.eclipse.org/gitroot/platfo
+ rm/eclipse.platform.git;path="platform/org.eclipse.platform";tag=v201
+ 30124-124715
+Require-Bundle: org.eclipse.ui.intro;bundle-version="[3.2.0,4.0.0)",or
+ g.eclipse.ui.cheatsheets;bundle-version="[3.2.0,4.0.0)";resolution:=o
+ ptional,org.eclipse.ui.forms;bundle-version="[3.2.0,4.0.0)";resolutio
+ n:=optional,org.eclipse.ui;bundle-version="[3.2.0,4.0.0)";resolution:
+ =optional,org.eclipse.core.runtime;bundle-version="[3.2.0,4.0.0)"
+Export-Package: org.eclipse.platform.internal;x-internal:=true
+Bundle-Version: 4.2.2.v201302041200
+Bundle-ClassPath: platform.jar
+Bundle-Vendor: %providerName
+Bundle-Name: %pluginName
+Eclipse-BundleShape: dir
+Bundle-ManifestVersion: 2
+
+Name: images/topiclabel/wn_migrate48_hov.gif
+SHA1-Digest: M6zsZ6hi30Dy8VsM/Og4IE9IOkg=
+
+Name: intro/css/whatsnew.properties
+SHA1-Digest: 4nCjPHm7iTBRX2cq5vxBGBYByYU=
+
+Name: eclipse16.gif
+SHA1-Digest: zwt4gz2o7PTRfQDHJimtmymBJo8=
+
+Name: images/gtkTSFrame.png
+SHA1-Digest: 8b0hzV65v6o9x0/8mWk3A8sl4Hg=
+
+Name: about.ini
+SHA1-Digest: ZK6m/9CAhsF/6xAiV7yYXjYLbng=
+
+Name: macosx_narrow_book.css
+SHA1-Digest: jjHm301H2huNyXiXwJbHzgWn0K4=
+
+Name: images/topiclabel/ov_wbbasics48.gif
+SHA1-Digest: 0r8/nIJipGbWXTLidf/qFRtxk88=
+
+Name: css/e4_default.css
+SHA1-Digest: jFe4vzCYprBhckemfwte8nc58cY=
+
+Name: images/win7Handle.png
+SHA1-Digest: twWubAeh9bn9246qAA8F3Ug/5z0=
+
+Name: images/win7TSFrame.png
+SHA1-Digest: UEePCXeNvCU/2TLEhqrkQptOWck=
+
+Name: LegacyIDE.e4xmi
+SHA1-Digest: U16iXOnake2/VYpb1p4HM8VSY5Q=
+
+Name: intro/css/overview.properties
+SHA1-Digest: sR7rB50tGOD19+fqvJ1jGbzo8oY=
+
+Name: images/winXPOlive.png
+SHA1-Digest: LeyuFJ3TC47+y4QpooD4iJNEtmM=
+
+Name: images/topiclabel/ov_wbbasics48_hov.gif
+SHA1-Digest: WHlKtV887rTHYMMuOGAHmtibK5Y=
+
+Name: platform.jar
+SHA1-Digest: ciEsicOarhmxcwox7f6cVEpeV8M=
+
+Name: intro-eclipse.png
+SHA1-Digest: IUrE9u5RnkRx7unbvyyosuGTAOE=
+
+Name: css/e4_default_winxp_olv.css
+SHA1-Digest: 8QGnsvZMMQ1hkioJ313cY3h6huc=
+
+Name: eclipse32.png
+SHA1-Digest: Tet+jRa8Gm9JsW/hWCgO9ayE664=
+
+Name: css/e4_default_mac.css
+SHA1-Digest: cqs3fT4H9kZKj0E8ytz7xlT0ruo=
+
+Name: META-INF/eclipse.inf
+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=
+
+Name: about.mappings
+SHA1-Digest: NtXd0AsBwOcPJVtBX8Pwo65gRa8=
+
+Name: images/topiclabel/ov_teamsup48.gif
+SHA1-Digest: /3k/anFwd5sId2ruDxxEdkjRMm8=
+
+Name: images/topiclabel/tu_merge48.gif
+SHA1-Digest: /3k/anFwd5sId2ruDxxEdkjRMm8=
+
+Name: images/topiclabel/arrow.gif
+SHA1-Digest: iyBS4QdZ6imHjGPw321lqh6SJSo=
+
+Name: images/dragHandle.png
+SHA1-Digest: eNrxIhwedUWxAcz/iz7UAvvgXg4=
+
+Name: images/winXPBluHandle.png
+SHA1-Digest: EP+zIEkA09le7+jTHTcJulbJQzM=
+
+Name: images/macTSFrame.png
+SHA1-Digest: PekW6CYAJ+Zq47ou84K82OV9YDs=
+
+Name: images/winXPBlue.png
+SHA1-Digest: I9bB1J5Q/n/U2CwPQ6H7ETCP9Fs=
+
+Name: about.properties
+SHA1-Digest: JGL216ww5dVm3sYp8EkidZMYe+8=
+
+Name: helpData.xml
+SHA1-Digest: ZR1pFHw9xoMSs25sZ0MO6v4/asI=
+
+Name: images/topiclabel/ov_teamsup48_hov.gif
+SHA1-Digest: tDulFBf6WoQNfzwEyv1Uck54hqk=
+
+Name: images/topiclabel/tu_merge48_hov.gif
+SHA1-Digest: tDulFBf6WoQNfzwEyv1Uck54hqk=
+
+Name: css/e4_classic_winxp.css
+SHA1-Digest: 4kF2VA+qcbkrcY0VGaqzXu42EjU=
+
+Name: plugin_customization.properties
+SHA1-Digest: YD7gZEVzYiOkYd7BfCANIgVRb/Q=
+
+Name: cheatsheets/cvs_merge.xml
+SHA1-Digest: avIFsf3vMC1U32F8qGLxSyq/lpo=
+
+Name: intro/css/tutorials.properties
+SHA1-Digest: EVPXsNdjFZM29pcX0MRbnH8+WOY=
+
+Name: images/macHandle.png
+SHA1-Digest: shGDU1oRr6BWrKxyzq5CV+g53Uw=
+
+Name: images/winClassicTSFrame.png
+SHA1-Digest: npohflUahSspMX9wVHErpcNoAQ0=
+
+Name: eclipse32.gif
+SHA1-Digest: ppkAcrq2pIoBxNI//Z3q3xJRdEY=
+
+Name: plugin_customization.ini
+SHA1-Digest: xmAx4ie434OtxymWwrIRmyqZ9ss=
+
+Name: intro/overviewExtensionContent.xml
+SHA1-Digest: SfOPkWtjJDCFigPMug4SwU76wTo=
+
+Name: css/e4_default_mru_on_win7.css
+SHA1-Digest: ytEGfJ3PX/o67RhwNtQK+O8x04k=
+
+Name: images/winXPHandle.png
+SHA1-Digest: aD5ihrxXxmvS/FbvEkaldGSNuQs=
+
+Name: css/e4_classic_win7.css
+SHA1-Digest: zp1sTNtRlNzZn7MiZ/25jwg+kcA=
+
+Name: images/gtkGrey.png
+SHA1-Digest: 4+t5VfjrQbDtwJA9FLyvnqsW5o0=
+
+Name: images/topiclabel/wn_eclplatform48.gif
+SHA1-Digest: 3nsWBOR6lpxjr+FXTIxLNviYbdQ=
+
+Name: eclipse48.png
+SHA1-Digest: wRYWPRIG/9RrNLHZh4GGFnUMGjQ=
+
+Name: eclipse_lg.gif
+SHA1-Digest: 69MjmTuX2tBydAPuHq7w4/h+T8c=
+
+Name: images/gtkHandle.png
+SHA1-Digest: 6/g5Ixb58lq+MqR+p6fgWS+LShs=
+
+Name: images/winXPTSFrame.png
+SHA1-Digest: Pcfi50OD4cRpF4EX5PwxhcM1h3c=
+
+Name: images/win7.png
+SHA1-Digest: dUay5kpUKKT/ZeY63XkHbLlxtz4=
+
+Name: plugin.properties
+SHA1-Digest: 8XsdsN//y4ahRKLpG+M6Kj/vOy4=
+
+Name: images/topiclabel/wn_updates48.gif
+SHA1-Digest: jZ7rwDl0qk2syJYLk6YYn58pmbk=
+
+Name: images/winClassicHandle.png
+SHA1-Digest: JFATcjcqyduiJVqeDeIbOoc3BY4=
+
+Name: css/e4_basestyle.css
+SHA1-Digest: GlLBw/csE2g2B5Y0p9L5p8MTfBA=
+
+Name: css/e4_default_winxp_blu.css
+SHA1-Digest: +DIieNp/xseF9tdeIVTyu/Rjf3c=
+
+Name: images/topiclabel/wn_eclplatform48_hov.gif
+SHA1-Digest: w7/OBSGFd6+YHONIDeq88ckqLJA=
+
+Name: plugin.xml
+SHA1-Digest: CSz/gQgASDI591MJJs1yMET8QKw=
+
+Name: intro/css/overview.css
+SHA1-Digest: 4vnDNPlsnseQQYHOifEYAOAU+28=
+
+Name: introData.xml
+SHA1-Digest: hRUHRieYHfLpbEmuEpkQGBDq/fU=
+
+Name: images/topiclabel/wn_updates48_hov.gif
+SHA1-Digest: aU4eMLVfJedCANwS4GLHdIfwcLg=
+
+Name: disabled_book.css
+SHA1-Digest: x3/plDo/tiH3FDASeesyGUCF4gM=
+
+Name: eclipse48.gif
+SHA1-Digest: joafzB2KmUajcypuNkoevLaG8oU=
+
+Name: narrow_book.css
+SHA1-Digest: /86jkfITUYJB4OWlA3NEx9IN6zo=
+
+Name: eclipse256.png
+SHA1-Digest: 7KiCNPEKzYy7sq8YFJSsXuQmf/s=
+
+Name: eclipse16.png
+SHA1-Digest: dMO+1jnMMGzYeRFxESUlSACxxEg=
+
+Name: .api_description
+SHA1-Digest: BvrPfAvqQY+G4Fp7iCOwIXfJZH0=
+
+Name: images/topiclabel/wn_eclcommunity48.gif
+SHA1-Digest: a7O8+deDP71UBanvoHQjCgObGqI=
+
+Name: images/topiclabel/tu_checkout48.gif
+SHA1-Digest: huJw6xHMsj2LT1Q3HgsQiEbzNFw=
+
+Name: intro/whatsnewExtensionContent1.xml
+SHA1-Digest: NUBZgy79C5bRW3u9ES+GFMtqi40=
+
+Name: about.html
+SHA1-Digest: +/ZbB4iOoCwiJmEdG+67tzzJKc4=
+
+Name: intro/whatsnewExtensionContent2.xml
+SHA1-Digest: YEikkKc+ZTBDkNSqaSvABYsmuXs=
+
+Name: intro/whatsnewExtensionContent3.xml
+SHA1-Digest: gkjZFF3rYl6EWVEwYZwk4i59j44=
+
+Name: images/topiclabel/wn_migrate48.gif
+SHA1-Digest: huJw6xHMsj2LT1Q3HgsQiEbzNFw=
+
+Name: css/e4_default_gtk.css
+SHA1-Digest: FGe3KCGdrcI+CRDuK0xrB76fTpI=
+
+Name: css/e4_default_win7.css
+SHA1-Digest: URChj9tw7IM/NWMDvZ4TdFjlxdg=
+
+Name: images/macGrey.png
+SHA1-Digest: xClAmpE1oYNRkEk8ktU5gey+jcU=
+
+Name: intro/tutorialsExtensionContent.xml
+SHA1-Digest: pzSSeJDAvRK9lDRPhRYMsfhAv9I=
+
+Name: intro/css/whatsnew.css
+SHA1-Digest: jmuWdg8Bxhr6CT2FH7xspqR8/RE=
+
+Name: cheatsheets/cvs_checkout.xml
+SHA1-Digest: pIAK2OoHSqtHD7eVdgBujxeGs2s=
+
+Name: images/topiclabel/wn_eclcommunity48_hov.gif
+SHA1-Digest: u1+mxDrTyo6yu/dvN/Bh90rSFpk=
+
+Name: intro/css/tutorials.css
+SHA1-Digest: pfL+vsuZVeqHonEoVb6FBRiugts=
+
+Name: images/winXPBluTSFrame.png
+SHA1-Digest: hEZhu5Zb6KTgLN9nmhcA/Mt4BCQ=
+
+Name: images/topiclabel/tu_checkout48_hov.gif
+SHA1-Digest: M6zsZ6hi30Dy8VsM/Og4IE9IOkg=
+
+Name: splash.bmp
+SHA1-Digest: mY5Vf2M7eh6fKVi75hvvTrNZX9s=
+
+Name: book.css
+SHA1-Digest: +jMjY3GD/AZ8AWyoyyzOCICTMJU=
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/eclipse.inf b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/about.html b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/about.html
new file mode 100644
index 0000000..3989f53
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/about.html
@@ -0,0 +1,28 @@
+
+
+
+
+About
+
+
+
About This Content
+
+
May 11, 2006
+
License
+
+
The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise
+indicated below, the Content is provided to you under the terms and conditions of the
+Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available
+at http://www.eclipse.org/legal/epl-v10.html.
+For purposes of the EPL, "Program" will mean the Content.
+
+
If you did not receive this Content directly from the Eclipse Foundation, the Content is
+being redistributed by another party ("Redistributor") and different terms and conditions may
+apply to your use of any object code in the Content. Check the Redistributor's license that was
+provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise
+indicated below, the terms and conditions of the EPL still apply to any source code in the Content
+and such source code may be obtained at http://www.eclipse.org.
+
+
+
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/about.ini b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/about.ini
new file mode 100644
index 0000000..167f506
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/about.ini
@@ -0,0 +1,25 @@
+# about.ini
+# contains information about a feature
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# "%key" are externalized strings defined in about.properties
+# This file does not need to be translated.
+
+# Property "aboutText" contains blurb for feature details in the "About"
+# dialog (translated). Maximum 15 lines and 75 characters per line.
+aboutText=%blurb
+
+# Property "featureImage" contains path to feature image (32x32)
+featureImage=eclipse32.png
+
+# Property "welcomePage" contains path to welcome page (special XML-based format)
+# ($nl$/ prefix to permit locale-specific translations of entire file)
+welcomePage=$nl$/welcome.xml
+
+# Property "welcomePerspective" contains the id of the perspective in which the
+# welcome page is to be opened.
+# optional
+
+# Property "tipsAndTricksHref" contains the Help topic href to a tips and tricks page
+# optional
+tipsAndTricksHref=/org.eclipse.platform.doc.user/tips/platform_tips.html
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/about.mappings b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/about.mappings
new file mode 100644
index 0000000..bfdb3d7
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/about.mappings
@@ -0,0 +1,6 @@
+# about.mappings
+# contains fill-ins for about.properties
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file does not need to be translated.
+
+0=M20130204-1200
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/about.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/about.properties
new file mode 100644
index 0000000..656b62c
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/about.properties
@@ -0,0 +1,28 @@
+###############################################################################
+# Copyright (c) 2000, 2013 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# about.properties
+# contains externalized strings for about.ini
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# fill-ins are supplied by about.mappings
+# This file should be translated.
+#
+# Do not translate any values surrounded by {}
+
+blurb=Eclipse Platform\n\
+\n\
+Version: {featureVersion}\n\
+Build id: {0}\n\
+\n\
+(c) Copyright Eclipse contributors and others 2000, 2013. All rights reserved.\n\
+Visit http://www.eclipse.org/platform\n\
+\n\
+This product includes software developed by the\n\
+Apache Software Foundation http://www.apache.org/
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/book.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/book.css
new file mode 100644
index 0000000..f9822b0
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/book.css
@@ -0,0 +1,108 @@
+P.Code {
+ display: block;
+ text-align: left;
+ text-indent: 0.00pt;
+ margin-top: 0.000000pt;
+ margin-bottom: 0.000000pt;
+ margin-right: 0.000000pt;
+ margin-left: 15pt;
+ font-weight: normal;
+ font-style: normal;
+ color: #4444CC;
+ text-decoration: none;
+ vertical-align: baseline;
+ text-transform: none;
+ font-family: "Courier New", Courier, monospace;
+}
+H6.CaptionFigColumn {
+ display: block;
+ text-align: left;
+ text-indent: 0.000000pt;
+ margin-top: 3.000000pt;
+ margin-bottom: 11.000000pt;
+ margin-right: 0.000000pt;
+ margin-left: 0.000000pt;
+ font-size: 75%;
+ font-weight: bold;
+ font-style: Italic;
+ color: #000000;
+ text-decoration: none;
+ vertical-align: baseline;
+ text-transform: none;
+}
+P.Note {
+ display: block;
+ text-align: left;
+ text-indent: 0pt;
+ margin-top: 19.500000pt;
+ margin-bottom: 19.500000pt;
+ margin-right: 0.000000pt;
+ margin-left: 30pt;
+ font-size: 110%;
+ font-weight: normal;
+ font-style: Italic;
+ color: #000000;
+ text-decoration: none;
+ vertical-align: baseline;
+ text-transform: none;
+}
+EM.UILabel {
+ font-weight: Bold;
+ font-style: normal;
+ text-decoration: none;
+ vertical-align: baseline;
+ text-transform: none;
+}
+EM.CodeName {
+ font-weight: Bold;
+ font-style: normal;
+ text-decoration: none;
+ vertical-align: baseline;
+ text-transform: none;
+ font-family: "Courier New", Courier, monospace;
+}
+UL.NavList {
+ margin-left: 1.5em;
+ padding-left: 0px;
+ list-style-type: none;
+}
+
+body, html { border: 0px }
+
+
+/* following font face declarations need to be removed for DBCS */
+
+body, h1, h2, h3, h4, h5, h6, p, table, td, caption, th, ul, ol, dl, li, dd, dt {font-family: Arial, Helvetica, sans-serif; color: #000000}
+pre, code { font-family: "Courier New", Courier, monospace;}
+
+/* end font face declarations */
+
+@media print {
+ html { font-size: 12pt }
+}
+
+body { font-size: 83%; background: #FFFFFF; margin-bottom: 1em }
+h1 { font-size: 180%; margin-top: 5px; margin-bottom: 1px }
+h2 { font-size: 140%; margin-top: 25px; margin-bottom: 3px }
+h3 { font-size: 110%; margin-top: 20px; margin-bottom: 3px }
+h4 { font-size: 100%; margin-top: 20px; margin-bottom: 3px; font-style: italic }
+p { margin-top: 10px; margin-bottom: 10px }
+pre { font-size: 93%; margin-left: 6; color: #4444CC }
+code { font-size: 93%; }
+table { font-size: 100% } /* needed for quirks mode */
+a:link { color: #0000FF }
+a:hover { color: #000080 }
+a:visited { text-decoration: underline }
+ul { margin-top: 10px; margin-bottom: 10px; }
+li { margin-top: 5px; margin-bottom: 5px; }
+li p { margin-top: 5px; margin-bottom: 5px; }
+ol { margin-top: 10px; margin-bottom: 10px; }
+dl { margin-top: 10px; margin-bottom: 10px; }
+dt { margin-top: 5px; margin-bottom: 5px; font-weight: bold; }
+dd { margin-top: 5px; margin-bottom: 5px; }
+strong { font-weight: bold}
+em { font-style: italic}
+var { font-style: italic}
+div.revision { border-left-style: solid; border-left-width: thin;
+ border-left-color: #7B68EE; padding-left:5 }
+th { font-weight: bold }
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/cheatsheets/cvs_checkout.xml b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/cheatsheets/cvs_checkout.xml
new file mode 100644
index 0000000..af369e4
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/cheatsheets/cvs_checkout.xml
@@ -0,0 +1,75 @@
+
+
+
+
+
+ This cheat sheet shows you how to explore a CVS repository and check out
+ a project. If you need help at any step, click on the (?) icon to the
+ right.
+
+
+
+
+
+ From the main menu, select Window > Open Perspective > Other...,
+ then select the CVS Repository Exploring perspective.
+
+
+
+
+
+
+
+ In the CVS Repositories view, click on the Add CVS Repository
+ toolbar button. Enter the location and authentication information for
+ the repository. For example, for the eclipse repository, enter the
+ following:
+
+ Host: dev.eclipse.org
+ Repository path: /cvsroot/eclipse
+ User: anonymous
+ Connection type: pserver
+
+ Use defaults for the rest, then click Finish.
+
+
+
+
+
+ Expand the HEAD node under the newly added repository, and locate
+ the project you wish to check out (e.g. to find the source code for the
+ cheat sheet view, this is in org.eclipse.ui.cheatsheets)
+
+
+
+
+
+ Right click on the project you wish to check out and select Check
+ Out. This will download the latest content from the repository into
+ your workspace.
+
+
+
+
+
+ To see the project in your workspace, switch to the Resource
+ perspective via Window > Open Perspective > Resource to see the
+ project in the Project Explorer view. You can now view and work with the
+ contents of the project.
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/cheatsheets/cvs_merge.xml b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/cheatsheets/cvs_merge.xml
new file mode 100644
index 0000000..a33f50b
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/cheatsheets/cvs_merge.xml
@@ -0,0 +1,76 @@
+
+
+
+
+
+ This cheat sheet shows you the steps to merge changes from one CVS branch
+ into another, or into HEAD. If you need help at any step, click on the (?)
+ icon to the right.
+
+
+
+
+
+ The first step is to decide which two branches will be merged, at
+ which version the content was branched, and what the
+ destination branch will be (where the result of the merge will go).
+ Once you have this information, you can move on to the next step.
+
+
+
+
+
+ Before merging, you must check out the project you wish to merge
+ and bring it into your workspace. You can do this either via the import
+ wizard or by adding your repository from the CVS Repository Exploring
+ perspective, or click the (?) button for help.
+
+
+
+
+
+ In the navigator, right-click on the project and select Replace With >
+ Another Branch or Version. Select the destination branch. This will load
+ the branch's latest content into your workspace.
+
+
+
+
+
+ Again in the navigator, right-click on the project and select Team
+ > Merge and complete the steps in the wizard. In this wizard you
+ specify the details of the merge.
+
+
+
+
+
+ In the Merge editor manually merge the changes. This step loads the
+ required changes into the workspace. Once you've merged all the changes
+ and are satisfied with the result, move on to the next step.
+
+
+
+
+
+ Right-click on the project and select Team > Synchronize with
+ Repository and then commit all the changes to the repository. This
+ step finalizes the transfer of the changes from the workspace to the CVS
+ repository, and finalizes the merge.
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_basestyle.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_basestyle.css
new file mode 100644
index 0000000..7beef61
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_basestyle.css
@@ -0,0 +1,42 @@
+
+.MTrimmedWindow.topLevel {
+ margin-top: 5px;
+ margin-bottom: 2px;
+ margin-left: 2px;
+ margin-right: 2px;
+}
+
+.MPartStack {
+ swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+ swt-unselected-tabs-color: #FFFFFF #FFFFFF #FFFFFF 100% 100%;
+ swt-outer-keyline-color: #FFFFFF;
+ swt-inner-keyline-color: #FFFFFF;
+ padding: 0px 9px 10px;
+ swt-tab-outline: #B6BCCC;
+ swt-shadow-visible: true;
+ swt-mru-visible: false;
+}
+
+.MPartStack.active {
+ swt-inner-keyline-color: #FFFFFF;
+ swt-tab-outline: #B6BCCC;
+ swt-shadow-visible: true;
+}
+
+#PerspectiveSwitcher {
+ eclipse-perspective-keyline-color: #AAB0BF #AAB0BF;
+}
+
+.MToolControl.TrimStack {
+ frame-image: url(./winXPTSFrame.png);
+ handle-image: url(./winXPHandle.png);
+ frame-cuts: 5px 1px 5px 16px;
+}
+
+.MToolBar.Draggable {
+ handle-image: url(./dragHandle.png);
+}
+
+.MToolControl.Draggable {
+ handle-image: url(./dragHandle.png);
+}
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_classic_win7.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_classic_win7.css
new file mode 100644
index 0000000..9b6ff24
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_classic_win7.css
@@ -0,0 +1,36 @@
+.MTrimmedWindow {
+ margin-top: 0px;
+ margin-bottom: 0px;
+ margin-left: 2px;
+ margin-right: 2px;
+}
+
+.MPartStack {
+ swt-tab-renderer: null;
+ swt-selected-tabs-background: #FFFFFF #F0F0F0 100%;
+ swt-simple: false;
+ swt-mru-visible: true;
+}
+
+
+.MPartStack.active {
+ swt-selected-tabs-background: #F2F5F9 #99B4D1 100%;
+}
+
+#PerspectiveSwitcher {
+ eclipse-perspective-keyline-color: #ECE9D8 #FFFFFF;
+}
+
+.MToolControl.TrimStack {
+ frame-image: url(./winClassicTSFrame.png);
+ handle-image: url(./winClassicHandle.png);
+ frame-cuts: 5px 1px 5px 16px;
+}
+
+.MToolBar.Draggable {
+ handle-image: url(./dragHandle.png);
+}
+
+.MToolControl.Draggable {
+ handle-image: url(./dragHandle.png);
+}
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_classic_winxp.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_classic_winxp.css
new file mode 100644
index 0000000..6d11bd3
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_classic_winxp.css
@@ -0,0 +1,36 @@
+.MTrimmedWindow {
+ margin-top: 0px;
+ margin-bottom: 0px;
+ margin-left: 2px;
+ margin-right: 2px;
+}
+
+.MPartStack {
+ swt-tab-renderer: null;
+ swt-selected-tabs-background: #FFFFFF #ECE9D8 100%;
+ swt-simple: false;
+ swt-mru-visible: true;
+}
+
+
+.MPartStack.active {
+ swt-selected-tabs-background: #E5EDFC #99BAF3 100%;
+}
+
+#PerspectiveSwitcher {
+ eclipse-perspective-keyline-color: #ECE9D8 #FFFFFF;
+}
+
+.MToolControl.TrimStack {
+ frame-image: url(./winClassicTSFrame.png);
+ handle-image: url(./winClassicHandle.png);
+ frame-cuts: 5px 1px 5px 16px;
+}
+
+.MToolBar.Draggable {
+ handle-image: url(./dragHandle.png);
+}
+
+.MToolControl.Draggable {
+ handle-image: url(./dragHandle.png);
+}
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default.css
new file mode 100644
index 0000000..2f44bcf
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default.css
@@ -0,0 +1,41 @@
+
+.MWindow {
+ background-color: #EEF2F7 #DEEBF3 100%;
+}
+
+.MTrimmedWindow {
+ margin-top: 2px;
+ margin-bottom: 2px;
+ margin-left: 2px;
+ margin-right: 2px;
+}
+
+.MTrimmedWindow.topLevel {
+ margin-top: 24px;
+ margin-bottom: 2px;
+ margin-left: 12px;
+ margin-right: 12px;
+}
+
+.MPartStack {
+ swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+ swt-unselected-tabs-color: #FFFFFF #FFFFFF #FFFFFF 100% 100%;
+ swt-outer-keyline-color: #FFFFFF;
+ swt-inner-keyline-color: #FFFFFF;
+ swt-mru-visible: false;
+}
+
+.MTrimBar {
+ background-color: #EEF2F7 #DEEBF3 100%;
+}
+
+
+.MTrimBar#org-eclipse-ui-main-toolbar {
+ background-image: url(./winXPBlue.png);
+}
+
+.MPartStack.active {
+ swt-unselected-tabs-color: #CEDEF4 #D2E2F9 #FFFFFF 100% 100%;
+ swt-outer-keyline-color: #C3D0E9;
+ swt-inner-keyline-color: #FFFFFF;
+}
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_gtk.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_gtk.css
new file mode 100644
index 0000000..785d0f9
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_gtk.css
@@ -0,0 +1,56 @@
+
+@import url("e4_basestyle.css");
+
+.MTrimmedWindow {
+ background-color: #E2E2E2;
+}
+
+.MPartStack {
+ font-size: 11;
+ swt-simple: false;
+ swt-mru-visible: false;
+}
+
+.MTrimBar {
+ background-color: #E2E2E2;
+}
+
+.MTrimBar#org-eclipse-ui-main-toolbar {
+ background-image: url(./gtkGrey.png);
+}
+
+.MToolControl.TrimStack {
+ frame-image: url(./gtkTSFrame.png);
+ handle-image: url(./gtkHandle.png);
+}
+
+.MPartStack.active {
+ swt-unselected-tabs-color: #DCDCDC #E1E1E1 #FFFFFF 100% 100%;
+ swt-outer-keyline-color: #B4B4B4;
+ swt-tab-outline: #B4B4B4;
+}
+
+#PerspectiveSwitcher {
+ background-color: #EBEBEB #E2E2E2 100%;
+ eclipse-perspective-keyline-color: #B4B4B4 #B4B4B4;
+}
+
+#org-eclipse-ui-editorss {
+ swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+ swt-unselected-tabs-color: #F0F0F0 #F0F0F0 #F0F0F0 100% 100%;
+ swt-outer-keyline-color: #B4B4B4;
+ swt-inner-keyline-color: #F0F0F0;
+ swt-tab-outline: #F0F0F0;
+ color: #F0F0F0;
+ swt-tab-height: 8px;
+ padding: 0px 5px 7px;
+}
+
+CTabFolder.MArea .MPartStack, CTabFolder.MArea .MPartStack.active {
+ swt-shadow-visible: false;
+}
+
+CTabFolder Canvas {
+ background-color: #F8F8F8;
+}
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_mac.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_mac.css
new file mode 100644
index 0000000..88d03e4
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_mac.css
@@ -0,0 +1,53 @@
+@import url("e4_basestyle.css");
+
+.MTrimmedWindow {
+ background-color: #E8E8E8;
+}
+
+.MPartStack {
+ font-size: 12;
+ swt-simple: false;
+ swt-mru-visible: false;
+}
+
+.MTrimBar {
+ background-color: #E8E8E8;
+}
+
+.MTrimBar#org-eclipse-ui-main-toolbar {
+ background-color: #CFCFCF #A8A8A8 100%;
+}
+
+.MToolControl.TrimStack {
+ frame-image: url(./macTSFrame.png);
+ handle-image: url(./macHandle.png);
+}
+
+.MPartStack.active {
+ swt-unselected-tabs-color: #F6F6F6 #D3D3D3 #D1D1D1 #D1D1D1 #D6D6D6 #D6D6D6 #FFFFFF 20% 45% 60% 70% 100% 100%;
+ swt-outer-keyline-color: #C4C5C1;
+}
+
+#PerspectiveSwitcher {
+ background-color: #F0F0F0 #E8E8E8 100%;
+ eclipse-perspective-keyline-color: #515151 #515151;
+}
+
+#org-eclipse-ui-editorss {
+ swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+ swt-unselected-tabs-color: #D6DDE5 #D6DDE5 #D6DDE5 100% 100%;
+ swt-outer-keyline-color: #D6DDE5;
+ swt-inner-keyline-color: #D6DDE5;
+ swt-tab-outline: #D6DDE5;
+ color: #D6DDE5;
+ swt-tab-height: 8px;
+ padding: 0px 5px 7px;
+}
+
+CTabFolder.MArea .MPartStack, CTabFolder.MArea .MPartStack.active {
+ swt-shadow-visible: false;
+}
+
+CTabFolder Canvas {
+ background-color: #F0F0F0;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_mru_on_win7.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_mru_on_win7.css
new file mode 100644
index 0000000..4a93668
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_mru_on_win7.css
@@ -0,0 +1,53 @@
+@import url("e4_basestyle.css");
+
+.MTrimmedWindow {
+ background-color: #E1E6F6;
+}
+
+.MPartStack {
+ font-size: 9;
+ font-family: 'Segoe UI';
+ swt-simple: true;
+ swt-mru-visible: true;
+}
+
+.MTrimBar {
+ background-color: #E1E6F6;
+}
+
+.MToolControl.TrimStack {
+ frame-image: url(./win7TSFrame.png);
+ handle-image: url(./win7Handle.png);
+}
+
+.MTrimBar#org-eclipse-ui-main-toolbar {
+ background-image: url(./win7.png);
+}
+
+.MPartStack.active {
+ swt-unselected-tabs-color: #F3F9FF #D0DFEE #CEDDED #CEDDED #D2E1F0 #D2E1F0 #FFFFFF 20% 45% 60% 70% 100% 100%;
+ swt-outer-keyline-color: #B6BCCC;
+}
+
+#PerspectiveSwitcher {
+ background-color: #F5F7FC #E1E6F6 100%;
+}
+
+#org-eclipse-ui-editorss {
+ swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+ swt-unselected-tabs-color: #F0F0F0 #F0F0F0 #F0F0F0 100% 100%;
+ swt-outer-keyline-color: #B4B4B4;
+ swt-inner-keyline-color: #F0F0F0;
+ swt-tab-outline: #F0F0F0;
+ color: #F0F0F0;
+ swt-tab-height: 8px;
+ padding: 0px 5px 7px;
+}
+
+CTabFolder.MArea .MPartStack, CTabFolder.MArea .MPartStack.active {
+ swt-shadow-visible: false;
+}
+
+CTabFolder Canvas {
+ background-color: #F8F8F8;
+}
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_win7.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_win7.css
new file mode 100644
index 0000000..1a4f110
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_win7.css
@@ -0,0 +1,53 @@
+@import url("e4_basestyle.css");
+
+.MTrimmedWindow {
+ background-color: #E1E6F6;
+}
+
+.MPartStack {
+ font-size: 9;
+ font-family: 'Segoe UI';
+ swt-simple: true;
+ swt-mru-visible: false;
+}
+
+.MTrimBar {
+ background-color: #E1E6F6;
+}
+
+.MTrimBar#org-eclipse-ui-main-toolbar {
+ background-image: url(./win7.png);
+}
+
+.MToolControl.TrimStack {
+ frame-image: url(./win7TSFrame.png);
+ handle-image: url(./win7Handle.png);
+}
+
+.MPartStack.active {
+ swt-unselected-tabs-color: #F3F9FF #D0DFEE #CEDDED #CEDDED #D2E1F0 #D2E1F0 #FFFFFF 20% 45% 60% 70% 100% 100%;
+ swt-outer-keyline-color: #B6BCCC;
+}
+
+#PerspectiveSwitcher {
+ background-color: #F5F7FC #E1E6F6 100%;
+}
+
+#org-eclipse-ui-editorss {
+ swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+ swt-unselected-tabs-color: #F0F0F0 #F0F0F0 #F0F0F0 100% 100%;
+ swt-outer-keyline-color: #B4B4B4;
+ swt-inner-keyline-color: #F0F0F0;
+ swt-tab-outline: #F0F0F0;
+ color: #F0F0F0;
+ swt-tab-height: 8px;
+ padding: 0px 5px 7px;
+}
+
+CTabFolder.MArea .MPartStack, CTabFolder.MArea .MPartStack.active {
+ swt-shadow-visible: false;
+}
+
+CTabFolder Canvas {
+ background-color: #F8F8F8;
+}
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_winxp_blu.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_winxp_blu.css
new file mode 100644
index 0000000..c026c44
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_winxp_blu.css
@@ -0,0 +1,55 @@
+@import url("e4_basestyle.css");
+
+.MTrimmedWindow {
+ background-color: #F0ECE0;
+}
+
+.MPartStack {
+ font-size: 9;
+ swt-simple: true;
+ swt-mru-visible: false;
+}
+
+.MTrimBar {
+ background-color: #F0ECE0;
+}
+
+
+.MTrimBar#org-eclipse-ui-main-toolbar {
+ background-image: url(./winXPBlue.png);
+}
+
+.MToolControl.TrimStack {
+ frame-image: url(./winXPBluTSFrame.png);
+ handle-image: url(./winXPBluHandle.png);
+}
+
+.MPartStack.active {
+ swt-unselected-tabs-color: #F1F4FD #C9DAF3 #BED4F1 #BED4F1 #C9D7F2 #C9D7F2 #FFFFFF 20% 45% 60% 70% 100% 100%;
+ swt-outer-keyline-color: #B8C7E5;
+}
+
+#PerspectiveSwitcher {
+ background-color: #F5F3ED #F0ECE0 100%;
+ eclipse-perspective-keyline-color: #7F91B5 #7F91B5;
+}
+
+#org-eclipse-ui-editorss {
+ swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+ swt-unselected-tabs-color: #F0F0F0 #F0F0F0 #F0F0F0 100% 100%;
+ swt-outer-keyline-color: #B4B4B4;
+ swt-inner-keyline-color: #F0F0F0;
+ swt-tab-outline: #F0F0F0;
+ color: #F0F0F0;
+ swt-tab-height: 8px;
+ padding: 0px 5px 7px;
+}
+
+CTabFolder.MArea .MPartStack, CTabFolder.MArea .MPartStack.active {
+ swt-shadow-visible: false;
+}
+
+CTabFolder Canvas {
+ background-color: #F8F8F8;
+}
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_winxp_olv.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_winxp_olv.css
new file mode 100644
index 0000000..6c62257
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_winxp_olv.css
@@ -0,0 +1,49 @@
+
+.MTrimmedWindow {
+ margin-top: 2px;
+ margin-bottom: 2px;
+ margin-left: 2px;
+ margin-right: 2px;
+}
+
+.MTrimmedWindow.topLevel {
+ margin-top: 24px;
+ margin-bottom: 2px;
+ margin-left: 12px;
+ margin-right: 12px;
+}
+
+.MPartStack {
+ swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+ swt-unselected-tabs-color: #FFFFFF #FFFFFF #FFFFFF 100% 100%;
+ swt-outer-keyline-color: #FFFFFF;
+ swt-inner-keyline-color: #FFFFFF;
+ font-size: 9;
+ swt-simple: true;
+ padding: 0px 10px 11px;
+ swt-mru-visible: false;
+}
+
+.MTrimBar#org-eclipse-ui-main-toolbar {
+ background-image: url(./winXPOlive.png);
+}
+
+.MPartStack.active {
+ swt-unselected-tabs-color: #E6E3C3 #EDEACA #FFFFFF 100% 100%;
+ swt-outer-keyline-color: #BFCDA4;
+ swt-inner-keyline-color: #FFFFFF;
+ swt-tab-outline: #B6BCCC;
+}
+
+#PerspectiveSwitcher {
+ background-color: #F5F3ED #F0ECE0 100%;
+ eclipse-perspective-keyline-color: #A7B680 #A7B680;
+}
+
+.MToolBar.Draggable {
+ handle-image: url(./dragHandle.png);
+}
+
+.MToolControl.Draggable {
+ handle-image: url(./dragHandle.png);
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/disabled_book.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/disabled_book.css
new file mode 100644
index 0000000..5abd004
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/disabled_book.css
@@ -0,0 +1 @@
+/* This CSS is applied after all other CSSs for topics that
belong to the disabled capabilities. The DIV for the notice
injected at the top of the document is 'help-disabledTopic'. */
#help-disabledTopic {
color: Highlight;
font-weight: medium;
margin-top: 1.0em;
margin-bottom: 1.0em;
}
#help-disabledTopic hr {
color: #C0C0C0;
noshade;
}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse16.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse16.gif
new file mode 100644
index 0000000..abefafc
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse16.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse16.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse16.png
new file mode 100644
index 0000000..8bd31d1
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse16.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse256.png.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse256.png.REMOVED.git-id
new file mode 100644
index 0000000..61d3f9e
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse256.png.REMOVED.git-id
@@ -0,0 +1 @@
+941ab0b3e329888dab2b67e78812a9d03b582d3d
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse32.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse32.gif
new file mode 100644
index 0000000..29edaa0
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse32.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse32.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse32.png
new file mode 100644
index 0000000..71ea8f9
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse32.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse48.gif
new file mode 100644
index 0000000..ba596ce
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse48.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse48.png
new file mode 100644
index 0000000..6845e67
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse48.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse_lg.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse_lg.gif
new file mode 100644
index 0000000..c004bf2
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse_lg.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/helpData.xml b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/helpData.xml
new file mode 100644
index 0000000..0838605
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/helpData.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/dragHandle.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/dragHandle.png
new file mode 100644
index 0000000..bea1179
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/dragHandle.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkGrey.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkGrey.png
new file mode 100644
index 0000000..54d631d
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkGrey.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkHandle.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkHandle.png
new file mode 100644
index 0000000..b0288cf
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkHandle.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkTSFrame.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkTSFrame.png
new file mode 100644
index 0000000..dd08bba
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkTSFrame.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macGrey.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macGrey.png
new file mode 100644
index 0000000..59075ad
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macGrey.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macHandle.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macHandle.png
new file mode 100644
index 0000000..98b2193
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macHandle.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macTSFrame.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macTSFrame.png
new file mode 100644
index 0000000..ee32cf5
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macTSFrame.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/arrow.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/arrow.gif
new file mode 100644
index 0000000..7d4c3f1
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/arrow.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_teamsup48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_teamsup48.gif
new file mode 100644
index 0000000..ed93db0
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_teamsup48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_teamsup48_hov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_teamsup48_hov.gif
new file mode 100644
index 0000000..464e9af
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_teamsup48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_wbbasics48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_wbbasics48.gif
new file mode 100644
index 0000000..d0102c9
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_wbbasics48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_wbbasics48_hov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_wbbasics48_hov.gif
new file mode 100644
index 0000000..cc830b0
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_wbbasics48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_checkout48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_checkout48.gif
new file mode 100644
index 0000000..f3de4d2
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_checkout48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_checkout48_hov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_checkout48_hov.gif
new file mode 100644
index 0000000..ffa86f9
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_checkout48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_merge48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_merge48.gif
new file mode 100644
index 0000000..ed93db0
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_merge48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_merge48_hov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_merge48_hov.gif
new file mode 100644
index 0000000..464e9af
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_merge48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclcommunity48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclcommunity48.gif
new file mode 100644
index 0000000..075cfaa
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclcommunity48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclcommunity48_hov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclcommunity48_hov.gif
new file mode 100644
index 0000000..7ec2cce
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclcommunity48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclplatform48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclplatform48.gif
new file mode 100644
index 0000000..f6fa59f
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclplatform48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclplatform48_hov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclplatform48_hov.gif
new file mode 100644
index 0000000..8624fc1
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclplatform48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_migrate48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_migrate48.gif
new file mode 100644
index 0000000..f3de4d2
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_migrate48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_migrate48_hov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_migrate48_hov.gif
new file mode 100644
index 0000000..ffa86f9
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_migrate48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_updates48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_updates48.gif
new file mode 100644
index 0000000..f2f80d8
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_updates48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_updates48_hov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_updates48_hov.gif
new file mode 100644
index 0000000..08fbbed
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_updates48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7.png
new file mode 100644
index 0000000..b9bf09d
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7Handle.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7Handle.png
new file mode 100644
index 0000000..b73a963
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7Handle.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7TSFrame.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7TSFrame.png
new file mode 100644
index 0000000..eec6be6
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7TSFrame.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winClassicHandle.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winClassicHandle.png
new file mode 100644
index 0000000..cfeb6dd
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winClassicHandle.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winClassicTSFrame.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winClassicTSFrame.png
new file mode 100644
index 0000000..0b9101c
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winClassicTSFrame.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBluHandle.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBluHandle.png
new file mode 100644
index 0000000..45441b3
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBluHandle.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBluTSFrame.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBluTSFrame.png
new file mode 100644
index 0000000..5880d78
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBluTSFrame.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBlue.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBlue.png
new file mode 100644
index 0000000..fc27964
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBlue.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPHandle.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPHandle.png
new file mode 100644
index 0000000..17eb69a
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPHandle.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPOlive.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPOlive.png
new file mode 100644
index 0000000..c745ee1
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPOlive.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPTSFrame.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPTSFrame.png
new file mode 100644
index 0000000..baf45b9
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPTSFrame.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro-eclipse.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro-eclipse.png
new file mode 100644
index 0000000..015e7fc
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro-eclipse.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/overview.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/overview.css
new file mode 100644
index 0000000..cc5d6ad
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/overview.css
@@ -0,0 +1,5 @@
+a#basics img { background-image : url('../../images/topiclabel/ov_wbbasics48.gif'); }
+a#basics:hover img { background-image : url('../../images/topiclabel/ov_wbbasics48_hov.gif'); }
+
+a#team img { background-image : url('../../images/topiclabel/ov_teamsup48.gif'); }
+a#team:hover img { background-image : url('../../images/topiclabel/ov_teamsup48_hov.gif'); }
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/overview.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/overview.properties
new file mode 100644
index 0000000..c7e33e7
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/overview.properties
@@ -0,0 +1,20 @@
+###############################################################################
+# Copyright (c) 2005, 2007 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+overview.page-content.overview-links.layout.vspacing = 35
+
+overview.basics.link-icon = images/topiclabel/ov_wbbasics48.gif
+overview.basics.hover-icon = images/topiclabel/ov_wbbasics48_hov.gif
+
+overview.team.link-icon = images/topiclabel/ov_teamsup48.gif
+overview.team.hover-icon = images/topiclabel/ov_teamsup48_hov.gif
+
+overview.subtitle-id = overview/page-content/page-title
+overview.description-id = overview/page-content/page-description
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/tutorials.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/tutorials.css
new file mode 100644
index 0000000..92770e2
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/tutorials.css
@@ -0,0 +1,5 @@
+a#cvs_checkout img { background-image : url('../../images/topiclabel/tu_checkout48.gif'); }
+a#cvs_checkout:hover img { background-image : url('../../images/topiclabel/tu_checkout48_hov.gif'); }
+
+a#cvs_merge img { background-image : url('../../images/topiclabel/tu_merge48.gif'); }
+a#cvs_merge:hover img { background-image : url('../../images/topiclabel/tu_merge48_hov.gif'); }
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/tutorials.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/tutorials.properties
new file mode 100644
index 0000000..d065463
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/tutorials.properties
@@ -0,0 +1,19 @@
+###############################################################################
+# Copyright (c) 2006, 2008 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+tutorials.cvs_checkout.link-icon = images/topiclabel/tu_checkout48.gif
+tutorials.cvs_checkout.hover-icon = images/topiclabel/tu_checkout48_hov.gif
+
+tutorials.cvs_merge.link-icon = images/topiclabel/tu_merge48.gif
+tutorials.cvs_merge.hover-icon = images/topiclabel/tu_merge48_hov.gif
+
+tutorials.subtitle-id = tutorials/page-content/page-title
+tutorials.description-id = tutorials/page-content/page-description
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/whatsnew.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/whatsnew.css
new file mode 100644
index 0000000..5515caa
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/whatsnew.css
@@ -0,0 +1,50 @@
+
+a#platform-noteworthy img { background-image : url(../../images/topiclabel/wn_eclplatform48.gif); }
+a#platform-noteworthy:hover img { background-image : url(../../images/topiclabel/wn_eclplatform48_hov.gif); }
+
+a#updates img { background-image : url(../../images/topiclabel/wn_updates48.gif); }
+a#updates:hover img { background-image : url(../../images/topiclabel/wn_updates48_hov.gif); }
+
+a#eclipse img { background-image : url(../../images/topiclabel/wn_eclcommunity48.gif); }
+a#eclipse:hover img { background-image : url(../../images/topiclabel/wn_eclcommunity48_hov.gif); }
+
+a#migration img { background-image : url(../../images/topiclabel/wn_migrate48.gif); }
+a#migration:hover img { background-image : url(../../images/topiclabel/wn_migrate48_hov.gif); }
+
+div#rss-news {
+ position: relative;
+ top: -25px;
+ margin-bottom: -25px;
+ margin-left: 52px;
+}
+
+#rss-news .div-label {
+ font-size: 9pt;
+}
+
+#rss-news .provided-content {
+}
+
+#rss-news .status-text {
+ font-weight: normal;
+ color: #909090;
+ font-size: 8pt;
+}
+
+ul#eclipse-news {
+ list-style-type: none;
+ list-style-image: url("../../images/topiclabel/arrow.gif");
+ margin-left: 10px;
+ margin-top: 5px;
+}
+
+ul#eclipse-news li {
+}
+
+ul#eclipse-news a {
+ font-weight: normal;
+}
+
+ul#eclipse-news a:hover {
+ text-decoration: underline;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/whatsnew.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/whatsnew.properties
new file mode 100644
index 0000000..34b0f1c
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/whatsnew.properties
@@ -0,0 +1,26 @@
+###############################################################################
+# Copyright (c) 2005, 2007 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+whatsnew.platform-noteworthy.link-icon = images/topiclabel/wn_eclplatform48.gif
+whatsnew.platform-noteworthy.hover-icon = images/topiclabel/wn_eclplatform48_hov.gif
+
+whatsnew.updates.link-icon = images/topiclabel/wn_updates48.gif
+whatsnew.updates.hover-icon = images/topiclabel/wn_updates48_hov.gif
+
+whatsnew.eclipse.link-icon = images/topiclabel/wn_eclcommunity48.gif
+whatsnew.eclipse.hover-icon = images/topiclabel/wn_eclcommunity48_hov.gif
+
+whatsnew.migration.link-icon = images/topiclabel/wn_migrate48.gif
+whatsnew.migration.hover-icon = images/topiclabel/wn_migrate48_hov.gif
+
+whatsnew.page-content.layout.vspacing = 40
+
+whatsnew.subtitle-id = news/page-content/page-title
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/overviewExtensionContent.xml b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/overviewExtensionContent.xml
new file mode 100644
index 0000000..3f6bd32
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/overviewExtensionContent.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+ Learn about basic Eclipse workbench concepts
+
+
+ Find out how to collaborate with other developers
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/tutorialsExtensionContent.xml b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/tutorialsExtensionContent.xml
new file mode 100644
index 0000000..28c6145
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/tutorialsExtensionContent.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+ Learn how to connect to a CVS repository and check out a project.
+
+
+ Follow the steps for merging changes from one CVS branch into another.
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent1.xml b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent1.xml
new file mode 100644
index 0000000..c600269
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent1.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ Find out about the major new features in this release
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent2.xml b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent2.xml
new file mode 100644
index 0000000..490435d
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent2.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+ Get the latest updates from Eclipse.org
+
+
+ Join the community, read articles and news on Eclipse.org
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent3.xml b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent3.xml
new file mode 100644
index 0000000..28668e1
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent3.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ Learn what you need to do to make your old code work in Eclipse 4.2
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/introData.xml b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/introData.xml
new file mode 100644
index 0000000..2b1c002
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/introData.xml
@@ -0,0 +1,57 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/macosx_narrow_book.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/macosx_narrow_book.css
new file mode 100644
index 0000000..344e5e4
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/macosx_narrow_book.css
@@ -0,0 +1 @@
+h1,h2 { color: Black }
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/narrow_book.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/narrow_book.css
new file mode 100644
index 0000000..09a9aa1
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/narrow_book.css
@@ -0,0 +1 @@
+P.Code {
display: block;
text-align: left;
text-indent: 0.00pt;
margin-top: 0.000000pt;
margin-bottom: 0.000000pt;
margin-right: 0.000000pt;
margin-left: 1.5em;
font-size: 100%;
font-weight: medium;
font-style: Regular;
color: #4444CC;
text-decoration: none;
vertical-align: baseline;
text-transform: none;
font-family: "Courier New";
}
H6.CaptionFigColumn {
display: block;
text-align: left;
text-indent: 0.000000pt;
margin-top: 0.3em;
margin-bottom: 1.1em;
margin-right: 0.000000pt;
margin-left: 0.000000pt;
font-size: 90%;
font-weight: medium;
font-style: Italic;
color: #000000;
text-decoration: none;
vertical-align: baseline;
text-transform: none;
font-family: "Arial";
}
P.Note {
display: block;
text-align: left;
text-indent: 0pt;
margin-top: 1.95em;
margin-bottom: 1.95em;
margin-right: 0.000000pt;
margin-left: 3.0em;
font-size: 110%;
font-weight: medium;
font-style: Italic;
color: #000000;
text-decoration: none;
vertical-align: baseline;
text-transform: none;
font-family: "Arial";
}
EM.UILabel {
font-weight: Bold;
font-style: Regular;
text-decoration: none;
vertical-align: baseline;
text-transform: none;
}
EM.CodeName {
font-weight: Bold;
font-style: Regular;
text-decoration: none;
vertical-align: baseline;
text-transform: none;
font-family:"Courier New";
}
body, html { border: 0px }
/* following font face declarations need to be removed for DBCS */
body, h1, h2, h3, h4, h5, h6, p, table, td, caption, th, ul, ol, dl, li, dd, dt {font: message-box; color: #000000}
pre { font-family: Courier, monospace}
/* end font face declarations */
/* following font size declarations should be OK for DBCS */
body, h1, h2, h3, h4, h5, h6, p, table, td, caption, th, ul, ol, dl, li, dd, dt {font: message-box; }
pre { font-size: 100% }
code,samp { font-size: 100%; }
/* end font size declarations */
body { background: #FFFFFF}
h1 { font-size: 180%; font-weight: medium; margin-top: 0.28em; margin-bottom: 0.05em; color: Highlight }
h2 { font-size: 140%; font-weight: bold; margin-top: 0.22em; margin-bottom: 3; color: Highlight }
h3 { font-size: 110%; font-weight: bold; margin-top: 0.18em; margin-bottom: 3 }
h4 { font-size: 100%; font-weight: bold; margin-top: 0.2em; margin-bottom: 3; font-style: italic }
p { margin-top: 1.0em; margin-bottom: 1.0em }
pre { margin-left: 6; font-size: 90% }
a:link { color: #0000FF }
a:hover { color: #000080 }
a:visited { text-decoration: underline }
ul { margin-top: 0;
margin-bottom: 1.0em;
margin-left : 1.0em;
padding-left: 0;
}
li { margin-top: 0;
margin-bottom: 0;
padding-left: 0;
margin-left: 0;
}
li p { margin-top: 0; margin-bottom: 0 }
ol { margin-top: 0;
margin-bottom: 10;
padding-left: 0;
margin-left: 1.4em }
dl { margin-top: 0; margin-bottom: 10 }
dt { margin-top: 0; margin-bottom: 0; font-weight: bold }
dd { margin-top: 0; margin-bottom: 0 }
strong { font-weight: bold}
em { font-style: italic}
var { font-style: italic}
div.revision { border-left-style: solid; border-left-width: thin;
border-left-color: #7B68EE; padding-left:5 }
th { font-weight: bold }
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/platform.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/platform.jar
new file mode 100644
index 0000000..5cc0f75
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/platform.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin.properties
new file mode 100644
index 0000000..97c51e6
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin.properties
@@ -0,0 +1,64 @@
+###############################################################################
+# Copyright (c) 2000, 2013 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+pluginName=Eclipse Platform
+providerName=Eclipse.org
+
+productName=Eclipse Platform
+productBlurb=Eclipse Platform\n\
+\n\
+Version: 4.2.2\n\
+Build id: {0}\n\
+\n\
+(c) Copyright Eclipse contributors and others 2000, 2013. All rights reserved.\n\
+Visit http://www.eclipse.org/platform\n\
+\n\
+This product includes software developed by the\n\
+Apache Software Foundation http://www.apache.org/
+
+cheatsheet.actionset = Cheat Sheets
+cheatsheet.item = &Cheat Sheets...
+cheatsheet.category.team = Team/CVS
+cheatsheet.cvs.checkout.name= Check out a CVS project
+cheatsheet.cvs.checkout.desc= Learn how to connect to a CVS repository and check out a project.
+cheatsheet.cvs.merge.name= Merge CVS branches
+cheatsheet.cvs.merge.desc= Follow the steps for merging changes from one CVS branch into another.
+shortcut.overview.tooltip = Overview
+shortcut.tutorials.tooltip = Tutorials
+shortcut.samples.tooltip = Samples
+shortcut.whatsnew.tooltip = What's New
+
+productIntroTitle = Welcome to Eclipse
+productIntroBrandingText = Eclipse Project
+introDescription-overview = The Eclipse Platform is a kind of universal tool platform - an open extensible IDE for anything and nothing in particular.
+introDescription-tutorials = Learn how to be productive using Eclipse by completing end-to-end tutorials that will guide you along the way.
+introDescription-samples = Explore Eclipse by installing prefabricated samples (may require Internet connection).
+
+theme.default = Default Theme
+theme.classic = Classic
+theme.gtk = GTK
+theme.mac = Mac
+theme.win7 = Windows 7
+theme.winxpBlue = Windows XP Blue
+theme.winxpOlive = Windows XP Olive
+theme.win7Classic = Windows 7 Classic
+theme.solaris = Solaris
+theme.aix = AIX
+theme.hpux = HPUX
+
+trimmedwindow.label.eclipseSDK = Eclipse SDK
+command.name.exit = Exit
+command.name.showView = Show View
+command.name.save = Save
+command.name.saveAll = Save All
+bindingcontext.name.dialogAndWindows = In Dialog and Windows
+bindingcontext.name.windows = In Windows
+bindingcontext.name.bindingView = In Binding View
+bindingcontext.name.dialogs = In Dialogs
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin.xml b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin.xml
new file mode 100644
index 0000000..c90fb84
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin.xml
@@ -0,0 +1,198 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ %cheatsheet.cvs.checkout.desc
+
+
+
+
+ %cheatsheet.cvs.merge.desc
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin_customization.ini b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin_customization.ini
new file mode 100644
index 0000000..de51636
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin_customization.ini
@@ -0,0 +1,37 @@
+# plugin_customization.ini
+# sets default values for plug-in-specific preferences
+# keys are qualified by plug-in id
+# e.g., com.example.acmeplugin/myproperty=myvalue
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# "%key" are externalized strings defined in plugin_customization.properties
+# This file does not need to be translated.
+
+# WARNING: This file defines the preference overrides for the Platform build
+# (the one with no JDT or PDE), not the SDK build (aka the IDE).
+# For the SDK build, use the plugin_customization.ini file in the
+# org.eclipse.sdk plug-in instead.
+
+# Property "org.eclipse.ui/defaultPerspectiveId" controls the
+# perspective that the workbench opens initially
+org.eclipse.ui/defaultPerspectiveId=org.eclipse.ui.resourcePerspective
+
+# new-style tabs by default
+org.eclipse.ui/SHOW_TRADITIONAL_STYLE_TABS=false
+
+# put the perspective switcher on the top right
+org.eclipse.ui/DOCK_PERSPECTIVE_BAR=topRight
+
+# show progress on startup
+org.eclipse.ui/SHOW_PROGRESS_ON_STARTUP=true
+
+# Welcome theme to use
+org.eclipse.ui.intro/INTRO_THEME = org.eclipse.ui.intro.universal.slate
+
+# Root page links to show in the Universal Welcome
+org.eclipse.ui.intro.universal/INTRO_ROOT_PAGES = overview,tutorials,samples,whatsnew
+
+# Initial page layout of the Universal Welcome
+org.eclipse.ui.intro.universal/INTRO_DATA = product:introData.xml
+
+# Order help books in table of contents
+org.eclipse.help/HELP_DATA = helpData.xml
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin_customization.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin_customization.properties
new file mode 100644
index 0000000..f2f3517
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin_customization.properties
@@ -0,0 +1,14 @@
+###############################################################################
+# Copyright (c) 2000, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# plugin_customization.properties
+# contains externalized strings for plugin_customization.ini
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/splash.bmp.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/splash.bmp.REMOVED.git-id
new file mode 100644
index 0000000..5308cac
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.platform_4.2.2.v201302041200/splash.bmp.REMOVED.git-id
@@ -0,0 +1 @@
+a2d01017281a9e48a2d68beab69fd2e7806ecffd
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.rcp_4.2.1.v201302041200.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.rcp_4.2.1.v201302041200.jar
new file mode 100644
index 0000000..4f4b6e5
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.rcp_4.2.1.v201302041200.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.search_3.8.0.v20120523-1540.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.search_3.8.0.v20120523-1540.jar.REMOVED.git-id
new file mode 100644
index 0000000..444e45d
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.search_3.8.0.v20120523-1540.jar.REMOVED.git-id
@@ -0,0 +1 @@
+7a2fc823a4ae25319020ed52024a881eeb38643a
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.swt.gtk.linux.x86_3.100.1.v4236b.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.swt.gtk.linux.x86_3.100.1.v4236b.jar.REMOVED.git-id
new file mode 100644
index 0000000..5c213b4
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.swt.gtk.linux.x86_3.100.1.v4236b.jar.REMOVED.git-id
@@ -0,0 +1 @@
+dd0cc2afff4f62965168cb1ad0b1a3c6e5956248
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.swt_3.100.1.v4236b.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.swt_3.100.1.v4236b.jar
new file mode 100644
index 0000000..9e784d4
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.swt_3.100.1.v4236b.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.text_3.5.200.v20120523-1310.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.text_3.5.200.v20120523-1310.jar.REMOVED.git-id
new file mode 100644
index 0000000..c3c3c13
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.text_3.5.200.v20120523-1310.jar.REMOVED.git-id
@@ -0,0 +1 @@
+9d77e5059d7dfa0e3a06771fa53366887b91c351
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.browser_3.4.2.v20130123-162658.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.browser_3.4.2.v20130123-162658.jar.REMOVED.git-id
new file mode 100644
index 0000000..e56c560
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.browser_3.4.2.v20130123-162658.jar.REMOVED.git-id
@@ -0,0 +1 @@
+91c7c13a530621165738ba90c0c221ac27917ed6
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.console_3.5.100.v20120521-2012.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.console_3.5.100.v20120521-2012.jar.REMOVED.git-id
new file mode 100644
index 0000000..f98803e
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.console_3.5.100.v20120521-2012.jar.REMOVED.git-id
@@ -0,0 +1 @@
+1415db6b4f271711ee3ac204a284aa82dddeb690
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.editors_3.8.0.v20120523-1540.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.editors_3.8.0.v20120523-1540.jar.REMOVED.git-id
new file mode 100644
index 0000000..30d581c
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.editors_3.8.0.v20120523-1540.jar.REMOVED.git-id
@@ -0,0 +1 @@
+5d584f5ea6eba52c6494f4c1df9e89c8979b488a
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.externaltools_3.2.100.v20120530-1753.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.externaltools_3.2.100.v20120530-1753.jar.REMOVED.git-id
new file mode 100644
index 0000000..b9445e2
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.externaltools_3.2.100.v20120530-1753.jar.REMOVED.git-id
@@ -0,0 +1 @@
+f2d23cb1f3ee798bcd37a67b150161c5149fb567
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.forms_3.5.200.v20120705-114351.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.forms_3.5.200.v20120705-114351.jar.REMOVED.git-id
new file mode 100644
index 0000000..1ad1cd2
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.forms_3.5.200.v20120705-114351.jar.REMOVED.git-id
@@ -0,0 +1 @@
+5fda331d1c1d76163f175408e9ef51e55f6fec52
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.ide.application_1.0.400.v20120523-1955.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.ide.application_1.0.400.v20120523-1955.jar.REMOVED.git-id
new file mode 100644
index 0000000..c02e60c
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.ide.application_1.0.400.v20120523-1955.jar.REMOVED.git-id
@@ -0,0 +1 @@
+ceff0bf5ae9a85823b3c4bf5aa7fa29c5751fa1e
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.ide_3.8.2.v20121106-165923.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.ide_3.8.2.v20121106-165923.jar.REMOVED.git-id
new file mode 100644
index 0000000..d642107
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.ide_3.8.2.v20121106-165923.jar.REMOVED.git-id
@@ -0,0 +1 @@
+0d02879d39c428b068ea65f0346c2b9488a6dadc
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/.api_description b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/.api_description
new file mode 100644
index 0000000..8eec52a
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/.api_description
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/.options b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/.options
new file mode 100644
index 0000000..8de8a48
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/.options
@@ -0,0 +1,24 @@
+# Debugging options for the org.eclipse.ui.intro.universal.
+
+# Master flag for all org.eclipse.ui.intro.universal plugin debug options.
+org.eclipse.ui.intro.universal/debug = true
+
+# Enable logging of information messages in the plugin. By default, info
+# messages are not logged. Setting this option to true will enable logging
+# trace information messages.
+org.eclipse.ui.intro.universal/trace/logInfo = true
+
+# Enable logging of performance messages in the plugin. By default, performance
+# messages are not logged. Setting this option to true will enable logging
+# trace information messages. (note: enabling info logging does not enable
+# this flag.)
+org.eclipse.ui.intro.universal/trace/logPerformance = false
+
+# Performance flags used by the Performance framework to report failures
+# of specific thresholds.
+
+# Time to create and display the full Intro view.
+# org.eclipse.ui.intro/perf/createView = 1000
+
+# Time needed to switch between Intro standby states.
+# org.eclipse.ui.intro/perf/setStandbyState = 300
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/ECLIPSE_.RSA b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..aea8620
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/ECLIPSE_.RSA differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/ECLIPSE_.SF b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..80f070b
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/ECLIPSE_.SF
@@ -0,0 +1,1208 @@
+Signature-Version: 1.0
+SHA1-Digest-Manifest: +seXZ4xz3pYvyr3JMkhA8hkZJGU=
+Created-By: 1.6.0 (IBM Corporation)
+SHA1-Digest-Manifest-Main-Attributes: 6kzl62q3Ft2eEp9b7AjFWAB9PcY=
+
+Name: themes/shared/graphics/contentpage/wn-fs_med.gif
+SHA1-Digest: g4D4b7wuqTNzRVube5QmKC37bZQ=
+
+Name: themes/slate/graphics/icons/ctool/webresources-select.png
+SHA1-Digest: os+7sc8e6OnYZcVvnz/yAMw64tU=
+
+Name: icons/full/obj16/inew_obj.gif
+SHA1-Digest: eRsScWLx85QUBzF7yK5EkT770CE=
+
+Name: themes/circles/swt/migrate.properties
+SHA1-Digest: RnBLNqobyqHJFvY+WbfB7MeeODU=
+
+Name: themes/circles/graphics/launchbar/migrate16.png
+SHA1-Digest: qOwRgNR0NJh2gKIrVlxWfH7Wi3w=
+
+Name: themes/circles/graphics/icons/ctool/wb_nav_32.gif
+SHA1-Digest: E0ITtJWnQdOwBI7A63vmBKYmKJk=
+
+Name: themes/circles/html/font-relative.css
+SHA1-Digest: tUx0kOFdiFK+vgId6wNuZ2ILYZ8=
+
+Name: themes/purpleMesh/swt/webresources.properties
+SHA1-Digest: QfLszx7vRd8waUr7+oxtskHNArY=
+
+Name: themes/slate/graphics/launchbar/migrate16.png
+SHA1-Digest: ayPNPwCVStgADMkH9M8u10dEbOg=
+
+Name: icons/full/obj16/icallout_obj.gif
+SHA1-Digest: Kv6Ia9Pr7KqdvrrCJXgYdMCga6A=
+
+Name: themes/circles/graphics/icons/ctool/tutorials_tophov.gif
+SHA1-Digest: KaCk6TkrNhd2OS1m32y6SFvUQjs=
+
+Name: themes/circles/swt/overview.properties
+SHA1-Digest: dxfnqH/LIpGVO5/H48/Co1vooSQ=
+
+Name: themes/circles/html/whatsnew.css
+SHA1-Digest: Pacc+BuJXkSeS/6P6vUy+/mVp0A=
+
+Name: themes/shared/html/shared.css
+SHA1-Digest: crEguiJWE7d2fyBBNVkLMurs7u0=
+
+Name: themes/purpleMesh/graphics/icons/etool/firsteps48.gif
+SHA1-Digest: pyhExq17Rqus88SE1gSeerjIk84=
+
+Name: themes/slate/graphics/icons/ctool/tu_nav_32.gif
+SHA1-Digest: XZjEi83SrkVDPJmkH0eHwBltxf8=
+
+Name: themes/slate/graphics/rootpage/samples48_hov.gif
+SHA1-Digest: 634EWkbAYNP7qS102sQltfOzxD8=
+
+Name: themes/shared/graphics/icons/ctool/widget_closed_rtl.gif
+SHA1-Digest: yKDpX4nR40C26tvbU0QUyfpTIe0=
+
+Name: themes/circles/graphics/contentpage/tu_banner.jpg
+SHA1-Digest: 9LU6Z+jPPzhwonByip7zOjz+Wew=
+
+Name: themes/circles/graphics/icons/ctool/wb_nav.png
+SHA1-Digest: Hz8erAP6PxWl6mdmALgFQZ6rHNA=
+
+Name: themes/circles/graphics/icons/ctool/fs_nav.png
+SHA1-Digest: 9ZyDPJBbgq3Qm+eAGh1zdhi9ysk=
+
+Name: icons/welcome16.gif
+SHA1-Digest: V1+WjELc7OwG7ZnrhEYLlXvbpWE=
+
+Name: themes/circles/graphics/icons/ctool/migrate.png
+SHA1-Digest: bjbqV9RpASAtwhOz7+8PcXA0NSw=
+
+Name: themes/circles/html/rtl.css
+SHA1-Digest: 8wVt0d9GAUKHlCBSi/vG90jXQUE=
+
+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew48sel.gif
+SHA1-Digest: c7bdT4i6cjAm6zcUNypiOr2OS5k=
+
+Name: themes/shared/graphics/icons/ctool/widget_closed_hov_rtl.gif
+SHA1-Digest: EuXcHObzV2612U2DjQyZlefkskQ=
+
+Name: themes/purpleMesh/graphics/icons/etool/webrsrc48sel.gif
+SHA1-Digest: x6crnl2+ZiZNMdBFeb4C94S/pow=
+
+Name: themes/circles/graphics/icons/ctool/wn_nav.png
+SHA1-Digest: rrR5bDLi89KX/xOPqmWhq3koD1U=
+
+Name: themes/circles/graphics/launchbar/tutorials16.png
+SHA1-Digest: VoPt5dok7nFgh7IHW6eK9dV7L24=
+
+Name: themes/slate/graphics/icons/ctool/migrate.png
+SHA1-Digest: zZNgvgCCkRxzER4saBd3xBWkfU0=
+
+Name: themes/slate/graphics/standby/wn_standbyhov.gif
+SHA1-Digest: qRYU61gSmQPjlS5wCfZvMhAPEp0=
+
+Name: themes/purpleMesh/graphics/icons/ctool/firsteps72.gif
+SHA1-Digest: ARVlQEp9GeLrHjDN4cZ7V/IWrd8=
+
+Name: themes/slate/graphics/icons/ctool/firststeps-select.gif
+SHA1-Digest: o1HHpOXZp6uT1nBu963GSFujPH8=
+
+Name: themes/circles/graphics/icons/ctool/wr_nav.png
+SHA1-Digest: fRVPpOb8tisIfM9YROkSBCvJ5pI=
+
+Name: themes/circles/graphics/standby/wb_standbyhov.gif
+SHA1-Digest: lobGsW2DF34dXuu4VFfcrz+dg3c=
+
+Name: themes/circles/graphics/icons/obj48/newhov_obj.gif
+SHA1-Digest: cwQdX22yDfLP5bVJE9eJF86EFF0=
+
+Name: themes/purpleMesh/graphics/icons/etool/tutorials72.gif
+SHA1-Digest: kIhjXr2y3uh6QnIxtq9XMRxDn8k=
+
+Name: themes/slate/graphics/standby/wn_standby.gif
+SHA1-Digest: e+qTVlL1+aHCcJWhh19xWZmzu5s=
+
+Name: themes/purpleMesh/graphics/contentpage/migrate_wtr.jpg
+SHA1-Digest: a/QcFu26oZ/i3g7k+yAEWo7k5hY=
+
+Name: themes/circles/graphics/icons/ctool/ov_nav_64.gif
+SHA1-Digest: xrr7IJCqmX2C5xvCQW28vhfuOcg=
+
+Name: themes/purpleMesh/graphics/contentpage/section3.gif
+SHA1-Digest: 3sus86ccku05aAqMn9VCPndrPBw=
+
+Name: themes/circles/graphics/icons/ctool/mi_nav_hover.gif
+SHA1-Digest: q/96M0kKrJeOPkrWAT2N+tGGk3s=
+
+Name: themes/purpleMesh/swt/whatsnew.properties
+SHA1-Digest: vUxMvUZmCL3YN89p33Ez9X8ICO4=
+
+Name: themes/slate/graphics/rootpage/firststeps48_hov.gif
+SHA1-Digest: P86nXECjpze8PbI3FM3eFHkm+Lk=
+
+Name: themes/circles/swt/firststeps.properties
+SHA1-Digest: 5tqsudk/R/1lCEbhDUX0rnhOkCQ=
+
+Name: themes/purpleMesh/graphics/icons/etool/overview48.gif
+SHA1-Digest: 89LuwEnmFVFcrYwOdGX+bEA7/KM=
+
+Name: themes/purpleMesh/graphics/icons/ctool/tutorials48.gif
+SHA1-Digest: cwmzAw4TBv+PQgs4YrD9gDw2Ps4=
+
+Name: themes/purpleMesh/html/font-absolute.css
+SHA1-Digest: 0wDpvhSsczlKTj9djfxQ5ENjEHw=
+
+Name: themes/purpleMesh/graphics/icons/dtool/back.gif
+SHA1-Digest: XlK7L7TiiONgpcL9uktiiGmofl8=
+
+Name: themes/slate/graphics/launchbar/whatsnew16.png
+SHA1-Digest: mQVW9+8NecwhNWgzJgNlDBcxaKs=
+
+Name: themes/purpleMesh/graphics/icons/ctool/migrate48sel.gif
+SHA1-Digest: DlIcxxNoIEYuDve+LFuFNw0KGG8=
+
+Name: themes/circles/html/migrate.css
+SHA1-Digest: Io/nl2lGQsSNtmShvxFj1sBzgMk=
+
+Name: themes/circles/html/standby.css
+SHA1-Digest: BB5vT8i6rIB580zgFNu9DHUox54=
+
+Name: themes/shared/graphics/contentpage/ov_med.gif
+SHA1-Digest: iiTKJ+/qWUGjQ6zU2+3qkI2UrKg=
+
+Name: themes/purpleMesh/graphics/icons/ctool/wb48.gif
+SHA1-Digest: rWX2aVi7U3PQ9oyJFekVUzKsQWc=
+
+Name: themes/circles/graphics/icons/ctool/tu_nav_hover.gif
+SHA1-Digest: uYgUnW0vffa7AXJDv2xR+VSo9Pg=
+
+Name: themes/purpleMesh/graphics/icons/ctool/overview72.gif
+SHA1-Digest: 60dEowqMgf4SCZMOqG/JpzLj7DY=
+
+Name: themes/slate/html/migrate.css
+SHA1-Digest: hcVhm6EOYoE4iCqs8i9Z4t3VWsI=
+
+Name: themes/slate/html/standby.css
+SHA1-Digest: mwzfJyl+pkrSjRtKQID7YBAjuB4=
+
+Name: themes/circles/graphics/icons/ctool/wn_nav_32.gif
+SHA1-Digest: lQhyX2A/+T1vu7AHgHmAdMPJL34=
+
+Name: themes/slate/graphics/rootpage/overview48_hov.png
+SHA1-Digest: Lyw9EfbA+ECmHubXo+hmlO/xDEI=
+
+Name: themes/circles/graphics/icons/ctool/migrate_tophov.gif
+SHA1-Digest: BIFpZUBo5LTGxAgwA2DjUErl7aw=
+
+Name: themes/circles/html/overview.css
+SHA1-Digest: OSQR/YVuPk6nCfCSCUftKIZJ5Es=
+
+Name: themes/slate/preview.png
+SHA1-Digest: uOalswP/Dl7ufM1Ko50b3osY7S4=
+
+Name: themes/circles/graphics/icons/ctool/firststeps.gif
+SHA1-Digest: u8hBUKje68m15K9HmhRViDGyL0Y=
+
+Name: themes/slate/graphics/rootpage/samples48.gif
+SHA1-Digest: qpzjgzvyd5KZAIeAD0+PUzJ5NEE=
+
+Name: themes/purpleMesh/html/firststeps.css
+SHA1-Digest: 9FdW5j9hkbSjH3aZXwrmWZdym2E=
+
+Name: themes/slate/swt/migrate.properties
+SHA1-Digest: hoTfgZ/Y41RoUz4y6LXKz6Yvmqw=
+
+Name: themes/slate/graphics/icons/ctool/tu_nav.png
+SHA1-Digest: QptMtQOmQDoDZ9Vq/dfKdj0pvSs=
+
+Name: themes/slate/html/font-relative.css
+SHA1-Digest: UT05tvIk2jCid+LM7t3bm4zOuIY=
+
+Name: themes/circles/graphics/icons/ctool/mi_nav_32.gif
+SHA1-Digest: IIKBdBw4ER43nMCbg2TYs9jLfM8=
+
+Name: themes/circles/graphics/icons/ctool/workbench_midhov.gif
+SHA1-Digest: KdO2URBysFpSJrlhVnUkPcqMzhs=
+
+Name: themes/purpleMesh/graphics/swt/form_banner.gif
+SHA1-Digest: agcOlycIYp6+B2Y7O27ZvGcKQwE=
+
+Name: themes/circles/graphics/icons/ctool/root_midhov.gif
+SHA1-Digest: qnMDaiSby1RH5YBolr3KVTRzWQo=
+
+Name: themes/circles/graphics/standby/ov_standby.gif
+SHA1-Digest: jeihbsxKFQ3iDSdZMTIWdrJI48M=
+
+Name: themes/slate/swt/tutorials.properties
+SHA1-Digest: siLo70LYVmiYzVqDN/k1RLWzbIs=
+
+Name: themes/circles/graphics/icons/ctool/sa_nav_32.gif
+SHA1-Digest: BcKEHJvATs4/BqfEsPgA0joJd9Y=
+
+Name: themes/slate/graphics/icons/ctool/migrate-select.gif
+SHA1-Digest: GqyboPzStqkM3UYpUv4SJqMhnmk=
+
+Name: themes/purpleMesh/graphics/icons/ctool/firsteps48sel.gif
+SHA1-Digest: ugzJxuex3RlJ7Q+UNJLbp8LNuFs=
+
+Name: themes/purpleMesh/graphics/contentpage/samples_wtr.jpg
+SHA1-Digest: PSVDSrd6C0WDUM0JbfBVw49oKuQ=
+
+Name: themes/circles/graphics/icons/ctool/sa_nav.png
+SHA1-Digest: QTuUi+brurlbvAHYvtukeo4hezY=
+
+Name: themes/slate/graphics/launchbar/webresources16.png
+SHA1-Digest: xufhpZXbOY7O2FJ0EOZKo6stdLc=
+
+Name: themes/slate/graphics/icons/ctool/mi_nav.png
+SHA1-Digest: aFmb0IpPLm9SymHNvBldaj20tQg=
+
+Name: themes/slate/graphics/rootpage/migrate48.gif
+SHA1-Digest: GyLi9+cBSQCQJ6UgLyN9rGmgxlk=
+
+Name: themes/circles/graphics/icons/ctool/cpt_midhov.gif
+SHA1-Digest: TV/CndDQVZeLlDyd+7ha5a2/YtA=
+
+Name: themes/circles/graphics/icons/obj48/new_obj.gif
+SHA1-Digest: /V7T2k6XUN4Uxwg7PFAjvoEBoas=
+
+Name: themes/purpleMesh/graphics/launchbar/whatsnew.gif
+SHA1-Digest: HZrHWXJqmb/u9EGrYxBo5mKrzvs=
+
+Name: themes/slate/graphics/icons/ctool/whatsnew.png
+SHA1-Digest: 6ggZSh719rsO/D0JhDMz9OEXFYU=
+
+Name: themes/slate/swt/root.properties
+SHA1-Digest: 6iCmd1CDStKtdo94zx1EmFAqJmA=
+
+Name: themes/slate/graphics/rootpage/firststeps48.gif
+SHA1-Digest: /Mmg9op/++UvV/A+As2xGD/8CLI=
+
+Name: themes/purpleMesh/graphics/icons/ctool/overview48sel.gif
+SHA1-Digest: uP0uCKdGXLI48c0KK3abD7YY8oo=
+
+Name: themes/circles/graphics/icons/ctool/fs_nav_32.gif
+SHA1-Digest: 03HVCDXBVZPjli1tHI8e6EpWLlU=
+
+Name: themes/slate/graphics/rootpage/root_banner.jpg
+SHA1-Digest: n7ZfrJ3GwQOyVL4MOoI/G07IC8g=
+
+Name: themes/purpleMesh/graphics/contentpage/section2.gif
+SHA1-Digest: cZ+01ZA+CK3U8UgsAGDlu5Nl/1Y=
+
+Name: themes/slate/swt/overview.properties
+SHA1-Digest: Uv1u/8X0S5qqPMJxSyZv8oUtZao=
+
+Name: themes/slate/graphics/contentpage/banner_extension.jpg
+SHA1-Digest: NekY7d51JRcroYcLP4X4RaCIQKc=
+
+Name: themes/circles/graphics/standby/mi_standby.gif
+SHA1-Digest: GZRVo3rq3uXADZMIRao9+j3abu0=
+
+Name: themes/purpleMesh/graphics/icons/etool/webrsrc48.gif
+SHA1-Digest: NxD5ybp1J3PX2YpNJHv/xAZZolo=
+
+Name: themes/slate/graphics/icons/ctool/whatsnew-select.gif
+SHA1-Digest: TW7PjuzcAS8hIMHkc00LSrIUnos=
+
+Name: themes/purpleMesh/html/ltr.css
+SHA1-Digest: nnxeF8h2Cb5AWdVJnx07Natd8ME=
+
+Name: themes/slate/html/tutorials.css
+SHA1-Digest: vWx1UG9xEdUNOlKbOcW0NKkKwQw=
+
+Name: themes/slate/html/shared.css
+SHA1-Digest: 4tqToow/qbtVb2mG3tyVpvgo1dw=
+
+Name: themes/purpleMesh/graphics/icons/ctool/firsteps16.png
+SHA1-Digest: a/0HK4wfeeh5TahwmW/DsCIg3oQ=
+
+Name: themes/circles/html/root.css
+SHA1-Digest: UAjfuJsBvCzCeoc1mbFowYSldQc=
+
+Name: themes/circles/graphics/icons/ctool/workbench_tophov.gif
+SHA1-Digest: hNK2dMZHycA5wImaVQaLg5JbbB0=
+
+Name: themes/slate/graphics/standby/tu_standby.gif
+SHA1-Digest: UOeWghDGiam8u8+KldYhPFxoXuo=
+
+Name: themes/purpleMesh/graphics/icons/etool/firsteps72.gif
+SHA1-Digest: wiQ2V1uB6QBg2/U0V6cQYlhdZTo=
+
+Name: themes/purpleMesh/swt/standby.properties
+SHA1-Digest: kz2Je1Q9V4GRIscHe/+VsoFAfC4=
+
+Name: themes/slate/graphics/icons/ctool/ov_nav_32.gif
+SHA1-Digest: R2JbRey2ODfsEZMFSiutiFvmWhk=
+
+Name: themes/purpleMesh/html/shared.css
+SHA1-Digest: wKu4ekuBsZJSLOe9WyIvV3fGhmo=
+
+Name: themes/circles/graphics/contentpage/ov_banner.jpg
+SHA1-Digest: hJ7QZAKi3i5MDSK1ATTtSJaNaVA=
+
+Name: themes/circles/graphics/icons/ctool/nav_rightedgehov.gif
+SHA1-Digest: GF04sgXI3l6A73ZJWWjek3ajBmw=
+
+Name: themes/purpleMesh/graphics/icons/etool/samples48sel.gif
+SHA1-Digest: 69k3defxrYpGh4PhEyRMO5Vi5UA=
+
+Name: themes/purpleMesh/graphics/contentpage/backgroundcurve.gif
+SHA1-Digest: nOgIqKO1hwHstcMcsM+LzixlOZg=
+
+Name: themes/circles/swt/root.properties
+SHA1-Digest: E5IAZgK2NJUP1F46LWki+enJfLk=
+
+Name: themes/purpleMesh/graphics/icons/ctool/forward.gif
+SHA1-Digest: cquFAtRx0Txit4Vm2loEoHJ+cIg=
+
+Name: themes/slate/html/webresources.css
+SHA1-Digest: TJcQVS4A6XYddwU+NQ2Zad0MtC0=
+
+Name: themes/purpleMesh/graphics/icons/etool/forward.gif
+SHA1-Digest: +q/20TWhTzDUahnEbne7nK6+OxU=
+
+Name: themes/slate/graphics/contentpage/wr_banner.jpg
+SHA1-Digest: PVmx1PDj4UgUTU0wp1GWqGtdwsE=
+
+Name: themes/purpleMesh/graphics/icons/etool/samples48.gif
+SHA1-Digest: 78H0vGlpPUIjody88fklr90khF8=
+
+Name: themes/slate/html/root.css
+SHA1-Digest: 1AONs66wkTgdw6JBcWdOAe4RtHw=
+
+Name: themes/slate/graphics/rootpage/whatsnew48.gif
+SHA1-Digest: ujvbc8lcJx3ejw+leIWtws06+cI=
+
+Name: themes/slate/graphics/icons/ctool/tutorials-select.png
+SHA1-Digest: 0idtv+CNku7484JebhoXHAiAMj0=
+
+Name: themes/purpleMesh/graphics/launchbar/overview.gif
+SHA1-Digest: VFV2qgY3AyttX3JDb78JZ3+K8dY=
+
+Name: themes/circles/graphics/icons/ctool/webresources_tophov.gif
+SHA1-Digest: 4/Ztv8w0TUF7HULsf1OUMUsI788=
+
+Name: themes/circles/graphics/icons/ctool/whatsnew.gif
+SHA1-Digest: sx0cpRs5vjaMIYssTVlTSyvQtUo=
+
+Name: themes/circles/graphics/icons/ctool/samples.gif
+SHA1-Digest: id/tsFIrrpkCbPQCPQN825ioMvc=
+
+Name: themes/purpleMesh/graphics/contentpage/webrsrc_wtr.jpg
+SHA1-Digest: Wq6LSlmt5gYzI6AXkIa6ldIIc4w=
+
+Name: themes/purpleMesh/graphics/icons/ctool/overview16.png
+SHA1-Digest: Ao5Abg5BSbKk4X0BbfQEc+OMvkM=
+
+Name: themes/slate/graphics/icons/ctool/overview.png
+SHA1-Digest: JWs02I/WMHjDq99DCVJvtyCkERQ=
+
+Name: themes/purpleMesh/graphics/contentpage/background.jpg
+SHA1-Digest: wLQFnis+GVZLMyszW3V+N/9DNdg=
+
+Name: themes/purpleMesh/graphics/icons/etool/overview72.gif
+SHA1-Digest: lUMx0uGLh63QRQwVTupF10T8Kog=
+
+Name: themes/slate/html/rtl.css
+SHA1-Digest: r3aNJ0edoWPwbwFP2upWgj93y9U=
+
+Name: themes/circles/html/font-absolute.css
+SHA1-Digest: 4eZcqJkoMPph/5ZVsn2zuo9N+EY=
+
+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew48.gif
+SHA1-Digest: F1cvqHdNJc3uAuxuDAVQ8o7sSCw=
+
+Name: themes/purpleMesh/graphics/icons/ctool/tutorials72.gif
+SHA1-Digest: kp6Keiy+ANG5Okz6MDJzeoXCMqM=
+
+Name: themes/purpleMesh/graphics/icons/etool/migrate48.gif
+SHA1-Digest: qQpYW/r5zXrgvqvwz6HONWBlBM8=
+
+Name: themes/slate/graphics/standby/fs_standby.gif
+SHA1-Digest: ysua65EOe/pPgVmtZ3NYcuboxB8=
+
+Name: themes/circles/graphics/icons/ctool/firststeps_tophov.gif
+SHA1-Digest: JohW0yL7JpgatFwbwOPeF4SHRgs=
+
+Name: themes/slate/graphics/standby/sa_standby.gif
+SHA1-Digest: QTDS8wQ5HwUz3dquK5n6a/kekOg=
+
+Name: themes/circles/graphics/icons/ctool/workbench.png
+SHA1-Digest: 1Ba08N6ckjKrE5s+K1N5OrnbNTs=
+
+Name: themes/circles/graphics/icons/ctool/root_midhov2.gif
+SHA1-Digest: bzi8X0J1ve2JhIgD9M9yGIXyLxA=
+
+Name: themes/circles/swt/webresources.properties
+SHA1-Digest: gLqZuchBV+fHESZbT9pc2c8IbK0=
+
+Name: themes/purpleMesh/graphics/launchbar/webresources16.png
+SHA1-Digest: j+oOC+m+7ezObQPYOZGBMzCo/u4=
+
+Name: themes/slate/graphics/rootpage/webresources48.png
+SHA1-Digest: tFozmyLRaLaao3q/NV1cvbch/7k=
+
+Name: themes/circles/graphics/standby/mi_standbyhov.gif
+SHA1-Digest: AFU0cRERBIat/N4jnXTr40CJCUQ=
+
+Name: themes/shared/graphics/contentpage/grey_callout.gif
+SHA1-Digest: EF+apqbjiVvAa7m2qEXKIzYUTKs=
+
+Name: themes/purpleMesh/graphics/contentpage/section1.gif
+SHA1-Digest: etN4AI95gu487mkd9aB2K6Ps3r8=
+
+Name: themes/slate/html/whatsnew.css
+SHA1-Digest: M6tNal+JVhQ/BhqmpbXnvgQYxfc=
+
+Name: themes/circles/graphics/icons/ctool/tutorials.png
+SHA1-Digest: P4Kgnz0iQ31Xj0oobcA3qUxh0ws=
+
+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc48.gif
+SHA1-Digest: zWJBswCVbgPVObJ4a12xgGt0TwE=
+
+Name: themes/slate/graphics/icons/ctool/arrow_rtl.gif
+SHA1-Digest: 7exnuqC65TE4uX8cgxlDOInIKqU=
+
+Name: themes/circles/graphics/icons/ctool/ov_nav_hover.gif
+SHA1-Digest: YzV+tZ4YSI0OBHwjdcjDK0kA+z0=
+
+Name: themes/circles/graphics/icons/ctool/wn_nav_64.gif
+SHA1-Digest: CuWl/H+lKwNLJTgQ5rx2mdwRpQ8=
+
+Name: themes/circles/graphics/icons/ctool/workbench_bottomhov.gif
+SHA1-Digest: N33Xx/CMHVLwrWGGlW6ljQoq1xo=
+
+Name: themes/slate/graphics/rootpage/workbench48.png
+SHA1-Digest: dqz3JXh1PvgGut3E9SftNpvGImY=
+
+Name: about.html
+SHA1-Digest: M+fykt9heyWoEv1LNiIEeBhi/2Q=
+
+Name: themes/slate/graphics/rootpage/webresources48_hov.gif
+SHA1-Digest: Lz/gwjqz1EiK4fEU49FwH9JmTrI=
+
+Name: themes/slate/html/firststeps.css
+SHA1-Digest: Z753GjoOP2BLMCjgq9otwGAV8q4=
+
+Name: themes/circles/graphics/icons/ctool/mi_nav_64.gif
+SHA1-Digest: /6E3GSTWkn1rSSv8nRu7ZGDI5Do=
+
+Name: themes/circles/swt/whatsnew.properties
+SHA1-Digest: CatjHspqGSpTJKIp9StlbBo5m0E=
+
+Name: themes/circles/graphics/icons/ctool/sa_nav_hover.gif
+SHA1-Digest: eo3QB+njI7IlfkmZmBXYmR5GAEY=
+
+Name: themes/purpleMesh/graphics/icons/ctool/tutorials48sel.gif
+SHA1-Digest: s//j4/vjCRXn0DDxxqa52B3pyGU=
+
+Name: themes/circles/graphics/icons/ctool/sa_nav_64.gif
+SHA1-Digest: tmmMbGmvroC4N/u4rlAcIfMkGDM=
+
+Name: themes/circles/graphics/icons/ctool/overview.gif
+SHA1-Digest: qIrkbkoNDW1ToZ7vvs0Na/s8JFk=
+
+Name: themes/slate/graphics/rootpage/tutorials48_hov.png
+SHA1-Digest: pK/hba/b+vQtcBY1i4d3kYUtDv0=
+
+Name: themes/circles/graphics/icons/ctool/overview_bottomhov.gif
+SHA1-Digest: wX9dXHV2FYWJWl6LQ63qLaHvVtI=
+
+Name: themes/circles/graphics/standby/wn_standby.gif
+SHA1-Digest: lzoFOcQTxRavIf7LR7okgyTh1MA=
+
+Name: themes/slate/graphics/icons/ctool/wb_nav_32.gif
+SHA1-Digest: Yvn/MQ+naKlAbP3IS9CBowI86cs=
+
+Name: themes/purpleMesh/graphics/icons/ctool/samples48.gif
+SHA1-Digest: lHdsyvz00Jan6waGscAzqAYwC3A=
+
+Name: themes/slate/graphics/rootpage/tutorials48.gif
+SHA1-Digest: M+4dqfI2bpZp6uDJ4BUFwLPW/yA=
+
+Name: themes/circles/graphics/launchbar/overview16.png
+SHA1-Digest: Droy5JKc8rSInbFfC0/Gq098fDQ=
+
+Name: themes/circles/graphics/standby/ov_standbyhov.gif
+SHA1-Digest: qIxHOTOCOUloOKsA/wgpkUy3dFc=
+
+Name: themes/slate/graphics/icons/ctool/webresources-select.gif
+SHA1-Digest: 8Cv1H3fsZklsZxg5TTsSQo+WlG4=
+
+Name: themes/purpleMesh/preview.png
+SHA1-Digest: Kn3AvPfDEMTopfc9ip8ySBKf5RQ=
+
+Name: themes/slate/graphics/rootpage/migrate48_hov.png
+SHA1-Digest: vOQlu+RpFEaOqQJbiZoYlY3nsCU=
+
+Name: themes/circles/graphics/icons/ctool/fs_nav_64.gif
+SHA1-Digest: s2pB28B2OgQjTQFl61uJ3kSR4js=
+
+Name: themes/circles/graphics/icons/ctool/overview_midhov.gif
+SHA1-Digest: hfeH61+W0mY1vrxZpPWOCgd2VAw=
+
+Name: themes/purpleMesh/html/webresources.css
+SHA1-Digest: OUHwKpqTA4TzUmTjt3pXG+u0Y+M=
+
+Name: themes/purpleMesh/graphics/root/background.jpg
+SHA1-Digest: uGAyBMFAulKTW35Y1on8wDqO9QU=
+
+Name: themes/purpleMesh/graphics/icons/etool/migrate48sel.gif
+SHA1-Digest: du/TWd2fH3emHpxGjKGLM5q8OAc=
+
+Name: themes/circles/html/ltr.css
+SHA1-Digest: mNUmBOD3D/E4HlyWdDs2dE91vkI=
+
+Name: themes/slate/graphics/contentpage/tu_banner.jpg
+SHA1-Digest: G0czeYWa72mjuj4WNuMoORG+XSE=
+
+Name: themes/purpleMesh/graphics/icons/etool/webrsrc72.gif
+SHA1-Digest: tmmt3wg9gaRNOsCY9/bw9IdiJUw=
+
+Name: themes/slate/html/overview.css
+SHA1-Digest: 1uUtcoJFgCnpf9PfHEQDxZna9oA=
+
+Name: icons/full/obj16/ilow_obj.gif
+SHA1-Digest: AeAIhECiTxTSrP5Fiqt5FyJBpM0=
+
+Name: themes/purpleMesh/graphics/icons/ctool/migrate48.gif
+SHA1-Digest: xDBQf0i2IB1ffnSorwgZRHw+9l4=
+
+Name: themes/slate/graphics/launchbar/tutorials16.png
+SHA1-Digest: SqseXs9r49EveUOjeNuWZz+FqRk=
+
+Name: themes/circles/html/firststeps.css
+SHA1-Digest: oYGGaUJXE0ywRATRWknRI7eDN9s=
+
+Name: themes/circles/graphics/icons/ctool/fs_nav_hover.gif
+SHA1-Digest: cF9yXz/k2USPI4wntdVH5lFplJQ=
+
+Name: themes/slate/graphics/standby/wb_standbyhov.gif
+SHA1-Digest: lND1CpaBKCbGvCmcIk1Jxr7qxI4=
+
+Name: themes/circles/graphics/standby/tu_standbyhov.gif
+SHA1-Digest: OHB7oy52x8oEaY4AU/z8PqYQotg=
+
+Name: themes/slate/html/font-absolute.css
+SHA1-Digest: 8KhGPSwQk728Jh5+mNPe9VKyEqQ=
+
+Name: themes/circles/swt/standby.properties
+SHA1-Digest: jhwOyyIkPm83m3M2smp4w68VWU0=
+
+Name: themes/circles/graphics/icons/ctool/migrate.gif
+SHA1-Digest: ojGLDLfkhAjjald8nSXaI1lnVgg=
+
+Name: themes/circles/graphics/icons/ctool/webresources.png
+SHA1-Digest: XmoXn4Ilf55ncgYDrbiEEq3O2Ts=
+
+Name: icons/full/obj16/image_obj.gif
+SHA1-Digest: lMIn95+1c+iB2gk+iiS9xyfOEFk=
+
+Name: themes/purpleMesh/swt/tutorials.properties
+SHA1-Digest: WlAQ/8/P1Fv8eW2YRvKvJPBaHZI=
+
+Name: themes/slate/graphics/icons/ctool/overview-select.png
+SHA1-Digest: JuSWTtVCUj7cezEdMC+F/tFdI7c=
+
+Name: themes/shared/graphics/contentpage/wn-fs_high.gif
+SHA1-Digest: nwj9eRAksHaGuy+NFhL4LebnK3c=
+
+Name: themes/circles/graphics/icons/ctool/tu_nav.png
+SHA1-Digest: NJg5QlgKxs60ES6wnUGWsSA5h3g=
+
+Name: themes/purpleMesh/graphics/root/brandmark.gif
+SHA1-Digest: bhWOEJCCFG3PKn2AnUITjnNDjcM=
+
+Name: themes/purpleMesh/graphics/icons/ctool/tutorials16.png
+SHA1-Digest: aYfYYzleZ+ZAE4q6zQ83rW7VQ/0=
+
+Name: themes/slate/graphics/icons/ctool/samples-select.png
+SHA1-Digest: pfUR4LuPuwkaVxgBRrlBnc+h02Q=
+
+Name: themes/slate/graphics/rootpage/overview48.png
+SHA1-Digest: ebNKFer6BfGOPcJHHBVGGqDMhsE=
+
+Name: themes/purpleMesh/graphics/icons/etool/samples72.gif
+SHA1-Digest: r2pWetW8OjMuplKYLQXw0X4yzuE=
+
+Name: themes/circles/graphics/standby/fs_standbyhov.gif
+SHA1-Digest: gaXt2pI8mmo0rEo01S51DCuKjOc=
+
+Name: themes/purpleMesh/graphics/icons/etool/whatsnew48.gif
+SHA1-Digest: lWfbzmNx6i35j8ORUDvCto1uAZc=
+
+Name: themes/purpleMesh/graphics/icons/ctool/wb16.png
+SHA1-Digest: up+uMe3sVZCJMnvxhNkgjVT2abY=
+
+Name: themes/circles/graphics/icons/ctool/mi_nav.png
+SHA1-Digest: MXII8Bz8VCao4+zS2hwe7eDh7Sk=
+
+Name: themes/slate/graphics/icons/ctool/ov_nav.png
+SHA1-Digest: kgbCTAH8WaovM3EcUI9T3rsJV+4=
+
+Name: themes/circles/graphics/icons/ctool/wr_nav_32.gif
+SHA1-Digest: ULVD9wG/rtOg/UcSUO7FEvJehO8=
+
+Name: themes/slate/graphics/rootpage/workbench48_hov.png
+SHA1-Digest: JthFEUB98W5dcI0/mU5hawyK4c8=
+
+Name: themes/circles/graphics/icons/ctool/overview_tophov.gif
+SHA1-Digest: xVRhaCgSky6qLi9BrY7DsaE2bvY=
+
+Name: icons/full/obj16/ihigh_obj.gif
+SHA1-Digest: V0EQPr7+pD7tB8JKSV3MKkrYx98=
+
+Name: themes/purpleMesh/graphics/icons/etool/home.gif
+SHA1-Digest: 6WqOV8XouOUvTUGiatZZD4sW8oE=
+
+Name: themes/purpleMesh/graphics/contentpage/whatsnew_wtr.jpg
+SHA1-Digest: dI/3dz9hXc5nHtjbBYmXqYjJyQk=
+
+Name: themes/purpleMesh/graphics/icons/etool/back.gif
+SHA1-Digest: UWSZDd5u+LAE+Q9vWxFdmsJoiGA=
+
+Name: themes/slate/graphics/icons/ctool/wn_nav_32.gif
+SHA1-Digest: a2l0lo+rs2anYZpgA7qXL9B+t+Y=
+
+Name: themes/circles/graphics/contentpage/wn_banner.jpg
+SHA1-Digest: I2SUS0kfBjo1JvwQsZMamIiAkOE=
+
+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew72.gif
+SHA1-Digest: NKAkgxq0wkJVIjKYL1CnVBTwqaM=
+
+Name: themes/purpleMesh/graphics/icons/etool/migrate72.gif
+SHA1-Digest: WRlWNj7lMDFi6IkfE68j8JgaPoE=
+
+Name: themes/shared/graphics/icons/ctool/widget_open.gif
+SHA1-Digest: OP0AXWaRapQtTZx7JNXoy0H3afM=
+
+Name: themes/circles/graphics/icons/ctool/ov_nav_midhov.gif
+SHA1-Digest: jrFgMrYLF0883/Z2o+dq418gsMc=
+
+Name: themes/slate/graphics/rootpage/whatsnew48_hov.png
+SHA1-Digest: 733NHPc1A2l7QkzNGWANyLipD+w=
+
+Name: themes/purpleMesh/swt/samples.properties
+SHA1-Digest: Maoo2vIbozk0abIdI4/9z2mv2ig=
+
+Name: themes/slate/graphics/rootpage/overview48_hov.gif
+SHA1-Digest: t8nxd/Kgl03Fb8Xpz/UBUncgCsk=
+
+Name: themes/purpleMesh/graphics/launchbar/tutorials.gif
+SHA1-Digest: V5Iq0LtZVEol+ENl+76Tv+6yMdM=
+
+Name: themes/slate/graphics/icons/ctool/mi_nav_32.gif
+SHA1-Digest: U/js7L/cMMMdBmMBMxsmSZbPqog=
+
+Name: themes/shared/graphics/contentpage/tu-sa_high.gif
+SHA1-Digest: nWP+1XPA+005Nh2oq9KqYimcNxo=
+
+Name: themes/circles/graphics/standby/wr_standbyhov.gif
+SHA1-Digest: 38woeVnp5WrwKXAvQlG3gP4BOvA=
+
+Name: themes/circles/graphics/contentpage/mi_banner.jpg
+SHA1-Digest: M8PQV2LF1OrUXGwmIq2JohVbPrU=
+
+Name: themes/purpleMesh/graphics/root/dots.gif
+SHA1-Digest: qBBkDO/9SlLM7TvUQ0N4Lj7cF08=
+
+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc72.gif
+SHA1-Digest: 0TT/v0VcJy1YJgeMUIurFP8SabA=
+
+Name: themes/circles/html/shared.css
+SHA1-Digest: 77jbLGKwQArf7QoPDL/thrxTpeE=
+
+Name: themes/slate/graphics/icons/ctool/sa_nav_32.gif
+SHA1-Digest: L/7IP5sDVKLEn2Fv3dne/Eq7XEg=
+
+Name: themes/slate/swt/whatsnew.properties
+SHA1-Digest: 6mtMGtowlTnhOai9pVDrJgB/wak=
+
+Name: themes/circles/graphics/contentpage/sa_banner.jpg
+SHA1-Digest: 8fxkt+0g07/GO8c0MwW45Zu4Cjs=
+
+Name: themes/circles/graphics/standby/tu_standby.gif
+SHA1-Digest: cwp8Xw0OLbnrlfgyDT2rdFgEkoY=
+
+Name: themes/slate/graphics/standby/wb_standby.gif
+SHA1-Digest: 0Fi8mfmP3Q49EkRt5Fs1lCWsdCo=
+
+Name: themes/circles/graphics/icons/ctool/cpt_bottomhov.gif
+SHA1-Digest: ToSku0QPBKph5ncOXI2I4UsyJfo=
+
+Name: themes/circles/graphics/icons/ctool/wn_nav_hover.gif
+SHA1-Digest: NueBDE2T3TidYfVvX0R0OOJQ/Rg=
+
+Name: themes/slate/graphics/standby/wr_standby.gif
+SHA1-Digest: zXUyjgcDhtRkpVIx51PQQ+5T3Ls=
+
+Name: themes/circles/graphics/icons/ctool/content_nav_bar.gif
+SHA1-Digest: keTbxe8+mUli7KKT7VHfw/lWKR4=
+
+Name: themes/slate/swt/standby.properties
+SHA1-Digest: LVxlOn5Dm8yNnQYiUjuyUz0t2bI=
+
+Name: themes/slate/graphics/icons/ctool/fs_nav_32.gif
+SHA1-Digest: ThcSGP5JN6xuQdfgxdRKP8HEClw=
+
+Name: themes/circles/graphics/standby/sa_standbyhov.gif
+SHA1-Digest: nW22Gdy3ikCbJD4vK2ris39MbeM=
+
+Name: themes/circles/graphics/contentpage/fs_banner.jpg
+SHA1-Digest: FpP3YQsWc0TjrDuhAPCV6en00mU=
+
+Name: themes/shared/graphics/icons/ctool/arrow_rtl.gif
+SHA1-Digest: tbSkD5AC62KAiweJ66It9WaS5UI=
+
+Name: themes/purpleMesh/graphics/launchbar/firststeps16.png
+SHA1-Digest: PLDP82s27kAjpMHYCqyuCn4qfbA=
+
+Name: themes/purpleMesh/graphics/contentpage/firsteps_wtr.jpg
+SHA1-Digest: Cvp+baekZhLBnTbnZs610VqriU0=
+
+Name: themes/purpleMesh/graphics/contentpage/overview_wtr.jpg
+SHA1-Digest: kZahFe3kXY11lo0q3qnaTqMI9So=
+
+Name: icons/full/elcl16/configure.gif
+SHA1-Digest: THfvNG6K7cQT9jhbbVHE87vHFe4=
+
+Name: themes/purpleMesh/graphics/icons/ctool/samples72.gif
+SHA1-Digest: KUqdqV64czls4uOSlRNvtr9hOg0=
+
+Name: themes/circles/graphics/launchbar/webresources16.png
+SHA1-Digest: NmF2slgfepjNh+ShDr5bVEvGlUg=
+
+Name: themes/slate/graphics/rootpage/samples48_hov.png
+SHA1-Digest: 18TB/LAyPlqBZYadL7X5+A4MqrU=
+
+Name: themes/circles/graphics/standby/fs_standby.gif
+SHA1-Digest: 5Aua6Y36U3DXOP2qyXNij+CtX9s=
+
+Name: themes/circles/graphics/standby/sa_standby.gif
+SHA1-Digest: RBhTbXp/E6+mF2sHPGNcD4W48N0=
+
+Name: themes/purpleMesh/html/tutorials.css
+SHA1-Digest: RpAVjpFqMkC0hLPq7124qIhs1Yo=
+
+Name: themes/slate/graphics/contentpage/ov_banner.jpg
+SHA1-Digest: l44eO1KYxcGeGZRz2KX+U/5YmOA=
+
+Name: themes/purpleMesh/graphics/icons/ctool/migrate72.gif
+SHA1-Digest: mlt8QusjLk7KHMZf/06EkzhoH/U=
+
+Name: themes/circles/graphics/icons/ctool/tu_nav_32.gif
+SHA1-Digest: F926c6JRQE1pg5PHJgw2jf49OME=
+
+Name: themes/slate/graphics/rootpage/background.jpg
+SHA1-Digest: h0CYLdLBJNRn4GWBy/rxgEyHL50=
+
+Name: themes/shared/graphics/contentpage/tu-sa_med.gif
+SHA1-Digest: ghx5Pe/N01SftTJBQMfAoyULWM8=
+
+Name: themes/slate/graphics/icons/ctool/firststeps-select.png
+SHA1-Digest: SpDrkbO1LEh8joakTeAcSMehUsI=
+
+Name: themes/circles/swt/tutorials.properties
+SHA1-Digest: Y+NaoEsGbgs6aI9AVhku09xvRlk=
+
+Name: META-INF/eclipse.inf
+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=
+
+Name: themes/slate/graphics/icons/ctool/firststeps.png
+SHA1-Digest: o0dCb6AWcfpxTmz3pTYrr7vKMpU=
+
+Name: themes/circles/graphics/standby/wn_standbyhov.gif
+SHA1-Digest: JJnXUeuX2kqSxZ7H3EYW8nTbF2w=
+
+Name: .options
+SHA1-Digest: 7PEGPbnAeaUlhDarJXUCGyuoNjA=
+
+Name: themes/purpleMesh/graphics/icons/etool/whatsnew48sel.gif
+SHA1-Digest: Xf006mRq9AaBH9Q4fMWGUO342HQ=
+
+Name: themes/slate/html/ltr.css
+SHA1-Digest: Nx5KSB+LbNl5ySJ/emAnX+Ydz0g=
+
+Name: themes/shared/graphics/icons/ctool/arrow.gif
+SHA1-Digest: FRdS/kCA4AYt83tpyUt8G0olu68=
+
+Name: themes/slate/graphics/rootpage/firststeps48_hov.png
+SHA1-Digest: v5FRnmZV4N+t69U9GKyUFOFCMYM=
+
+Name: themes/slate/graphics/icons/ctool/tutorials-select.gif
+SHA1-Digest: vGo/EvDVxt2gWjUI8r9wXb7XHqY=
+
+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew16.png
+SHA1-Digest: EtpxHFs833fG1/S7avpbPkpCcRs=
+
+Name: themes/purpleMesh/graphics/icons/ctool/home.gif
+SHA1-Digest: JOoY9pC0dHgTQhAUL9/HfY7vBmo=
+
+Name: themes/slate/graphics/icons/ctool/workbench.png
+SHA1-Digest: DpvcWcrIZ+JpGcQjubdeFu7Mskg=
+
+Name: themes/purpleMesh/graphics/icons/ctool/back.gif
+SHA1-Digest: z+OtZDnlsMdDmcm+viMBpc9tz2k=
+
+Name: themes/purpleMesh/graphics/icons/etool/whatsnew72.gif
+SHA1-Digest: b5paP8zhysvEhuedZidjQL9HEus=
+
+Name: themes/purpleMesh/graphics/launchbar/samples.gif
+SHA1-Digest: eO6+weStxxVdFdbSR7oXUpgr7SU=
+
+Name: plugin.properties
+SHA1-Digest: FVgcQepw2LdjjA9jaP6rkbZ3cNk=
+
+Name: themes/slate/graphics/standby/mi_standbyhov.gif
+SHA1-Digest: EKMu6lK27pq/aBg/9f2YFExIt5s=
+
+Name: themes/slate/graphics/launchbar/overview16.png
+SHA1-Digest: CQKX46RHuZFbOrT3JiKPUK1/mMw=
+
+Name: themes/circles/preview.png
+SHA1-Digest: sEqN3SavR9InMcm4Np9tsFTZi38=
+
+Name: themes/circles/graphics/icons/ctool/wr_nav_64.gif
+SHA1-Digest: HWgi5cePr8R/laS2cHA1pRJFzqM=
+
+Name: themes/circles/html/webresources.css
+SHA1-Digest: xE+K3s3qfPmZWptlBouT4WUKYlw=
+
+Name: themes/circles/graphics/icons/ctool/workbench.gif
+SHA1-Digest: M9+7ZJ8Td5Vz4SgFfI1Ow9WsJGU=
+
+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc16.png
+SHA1-Digest: tg0HIeAi2M876bRApOwKnRSGcD8=
+
+Name: plugin.xml
+SHA1-Digest: AGntXfGyavfewes8K46DbzHl3PM=
+
+Name: themes/slate/graphics/icons/ctool/wb_nav.png
+SHA1-Digest: eOOC/dmxPSefDxPWFsxQy7E2b8I=
+
+Name: themes/slate/graphics/icons/ctool/fs_nav.png
+SHA1-Digest: ZHHwwi/pL6wyqvnxKLrIs1xSIv8=
+
+Name: themes/slate/graphics/icons/ctool/tutorials.png
+SHA1-Digest: Zx41VhOUb0qOWIpS3T11xSGhNZE=
+
+Name: themes/slate/graphics/rootpage/webresources48.gif
+SHA1-Digest: U3VJRQ912H+F2LovRbKXXJ96jtU=
+
+Name: themes/circles/swt/samples.properties
+SHA1-Digest: b72s5ZpdufL+u+iHt7s2M3fRKR0=
+
+Name: themes/purpleMesh/swt/overview.properties
+SHA1-Digest: mvuul3+a9PKCQbnMxeoDVo6pYSw=
+
+Name: themes/slate/graphics/icons/ctool/wn_nav.png
+SHA1-Digest: Otvz1srG7KEBziy19XaNx1QlL+Y=
+
+Name: themes/purpleMesh/html/whatsnew.css
+SHA1-Digest: fRC+M1elXUGhdy5bFG1XlaE+WUk=
+
+Name: themes/slate/graphics/icons/ctool/wr_nav.png
+SHA1-Digest: X/t10DmFigUi7SWQWKb6TlVLWUo=
+
+Name: themes/circles/graphics/icons/ctool/firststeps.png
+SHA1-Digest: RadtV1OpnwwU8YTjkRVswQ6gkrM=
+
+Name: themes/circles/graphics/icons/ctool/tutorials.gif
+SHA1-Digest: octY2R6o9h3crdH3YxcRu5HinAE=
+
+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc48sel.gif
+SHA1-Digest: Y+bL1SYCHZFL3CnkKVeUUdbqhpA=
+
+Name: themes/slate/graphics/rootpage/samples48.png
+SHA1-Digest: o91S2IouhohWh784056j+CwIPbI=
+
+Name: themes/slate/swt/webresources.properties
+SHA1-Digest: woLrtH3B00iBUZkDmqHU5XH6KPM=
+
+Name: themes/purpleMesh/html/samples.css
+SHA1-Digest: 3ZtdRRozIzL+tYNU9FhPPekIVRI=
+
+Name: themes/slate/graphics/rootpage/workbench48.gif
+SHA1-Digest: pzIWQg7A2tk7ISYqiM52y5+QHXE=
+
+Name: themes/purpleMesh/graphics/icons/obj48/newhov_obj.gif
+SHA1-Digest: pyTbLR1DRUpyozcBnlZOStz7yIA=
+
+Name: themes/slate/graphics/icons/ctool/migrate-select.png
+SHA1-Digest: dJhpMAzfZ3gXyS/WvZAhAGjvHqo=
+
+Name: themes/purpleMesh/graphics/icons/dtool/forward.gif
+SHA1-Digest: aCtO1cY0PcLRL6ryFaULIxWFIRQ=
+
+Name: themes/slate/graphics/rootpage/migrate48.png
+SHA1-Digest: 23aWLw+rpVmgwjJP0FsdVjl2snk=
+
+Name: introContent.xml
+SHA1-Digest: p86gbX8qFQho2c9eTwFxLUM2jbY=
+
+Name: themes/purpleMesh/graphics/icons/ctool/samples16.png
+SHA1-Digest: N/RpSt5Kg9cllB8ZVItf9UX+Gi4=
+
+Name: themes/shared/graphics/icons/ctool/widget_open_hov.gif
+SHA1-Digest: q6+gnr1MvGjjGrmKrs7jlSk9G3E=
+
+Name: themes/slate/graphics/standby/ov_standbyhov.gif
+SHA1-Digest: W7euvutqkpXqaZ28T0tIBgfqWBY=
+
+Name: themes/slate/graphics/rootpage/root_banner_logo.jpg
+SHA1-Digest: abI9SllIW+3XhsY6pzv4qmpCG8Q=
+
+Name: themes/purpleMesh/graphics/icons/etool/firsteps48sel.gif
+SHA1-Digest: vq4JP2YEL3U67r160BMe4c0SSMM=
+
+Name: themes/purpleMesh/swt/firststeps.properties
+SHA1-Digest: EInPG8WIRgJVAjGiy8XWr64xU2o=
+
+Name: themes/slate/graphics/rootpage/tutorials48_hov.gif
+SHA1-Digest: UNZLeDg3VnZSaoOSb/1cB4YjZRA=
+
+Name: themes/slate/graphics/rootpage/firststeps48.png
+SHA1-Digest: AZf3rs765AMlL0crSZ1ACx1ITbw=
+
+Name: themes/circles/graphics/launchbar/whatsnew16.png
+SHA1-Digest: IzjfRJtgZO/1pF6e+qNU1tsRInk=
+
+Name: themes/purpleMesh/swt/migrate.properties
+SHA1-Digest: PXl9YyFN/w2mIaeHRLdH+0+d0Iw=
+
+Name: themes/circles/graphics/icons/ctool/root_bottomhov.gif
+SHA1-Digest: Z8bzjCb+groZ7Mudi3sPT0KHduM=
+
+Name: themes/purpleMesh/graphics/launchbar/migrate16.png
+SHA1-Digest: 9dXlttKYwv7e5tKagvSXjya58VA=
+
+Name: themes/purpleMesh/html/font-relative.css
+SHA1-Digest: uztoLwYdMIMBC3VZXmPl2Qpbe7U=
+
+Name: themes/circles/graphics/icons/ctool/wb_nav_hover.gif
+SHA1-Digest: JGea0KimDZnwwiCcQ8qHPqylM+0=
+
+Name: themes/purpleMesh/graphics/icons/ctool/migrate16.png
+SHA1-Digest: Puh69rUopnG/IU/JThhHdbLh1lo=
+
+Name: themes/slate/graphics/rootpage/migrate48_hov.gif
+SHA1-Digest: 3Y6mFYmavunlKwredaGwnwXCNiE=
+
+Name: themes/purpleMesh/graphics/icons/etool/tutorials48sel.gif
+SHA1-Digest: lk2qg8u2u6oUcxFjIFCXgvGBueA=
+
+Name: themes/slate/graphics/icons/ctool/whatsnew-select.png
+SHA1-Digest: Qv9/KgDiu/UwPNMYHaBZQH6i0gI=
+
+Name: themes/circles/graphics/icons/ctool/ov_nav.png
+SHA1-Digest: YeG6eWWkQN+xSr4Zg9oqEL865ks=
+
+Name: themes/purpleMesh/graphics/icons/etool/overview48sel.gif
+SHA1-Digest: m9kn5H05+QgSBOxLlx2dxaWTGmo=
+
+Name: themes/shared/graphics/contentpage/wr-mi_med.gif
+SHA1-Digest: OIQZ/hOeBpbC0WMHReEsbFJVJLc=
+
+Name: themes/slate/graphics/standby/tu_standbyhov.gif
+SHA1-Digest: tnWwgoBPMHeWYfysLndY1HFWUPM=
+
+Name: themes/circles/graphics/icons/ctool/wr_nav_hover.gif
+SHA1-Digest: XdpoqgAH+p1EVxL9GyMzE/Hfv/c=
+
+Name: themes/slate/graphics/launchbar/firststeps16.png
+SHA1-Digest: 9hsrMpO8mZJzpwABMmAgSWU3MQc=
+
+Name: themes/purpleMesh/html/overview.css
+SHA1-Digest: ewtO0S8LN4bgkv7PzeVxcz4wzj0=
+
+Name: themes/slate/graphics/standby/ov_standby.gif
+SHA1-Digest: tQgasT5T5uccRV34rNN/eFA/j1I=
+
+Name: themes/circles/html/tutorials.css
+SHA1-Digest: xa3e4ZW7ls+gOKV7vf3sJ/bKCn4=
+
+Name: themes/circles/graphics/rootpage/welcomebckgrd.jpg
+SHA1-Digest: 1CYoWHrrrQBODT6u1XiiYAc8Ua8=
+
+Name: themes/purpleMesh/html/rtl.css
+SHA1-Digest: 6emyVT06jVF1IpGc+y1ND2z5AgE=
+
+Name: themes/purpleMesh/graphics/icons/ctool/firsteps48.gif
+SHA1-Digest: mBsb4wgGSyU8bNKCIcKAAzHfBdc=
+
+Name: themes/slate/graphics/icons/ctool/sa_nav.png
+SHA1-Digest: +fvKMIGlRhLKb75Ge8kDFcNIlig=
+
+Name: themes/circles/graphics/icons/ctool/samples_tophov.gif
+SHA1-Digest: KB0g/q6q9M8Vej0+uXtDX/4V4gQ=
+
+Name: themes/circles/graphics/icons/ctool/whatsnew_tophov.gif
+SHA1-Digest: l0/AVYCJX3mHyeIM7AVVpjrHRAE=
+
+Name: themes/circles/graphics/icons/ctool/webresources.gif
+SHA1-Digest: PzeqTnB2FYvrmgO3g1mKmko1DF0=
+
+Name: themes/circles/graphics/icons/ctool/ov_nav_rightedgehov.gif
+SHA1-Digest: f0w1YUKKxjFzxukKAiz/X7+SoEQ=
+
+Name: themes/purpleMesh/graphics/icons/etool/tutorials48.gif
+SHA1-Digest: rpkhEx725uQSS4BO8Cu6AYX/1qs=
+
+Name: .api_description
+SHA1-Digest: zVgZ4KXcjfSLvrVOAZybRVyuyD4=
+
+Name: themes/shared/graphics/contentpage/ov_high.gif
+SHA1-Digest: bPF5JPTBYJSjUtUp7l/Q+jYOtX0=
+
+Name: themes/circles/graphics/icons/ctool/ov_nav_32.gif
+SHA1-Digest: zdyV1x+iXWd1D+qvrkSFfVni9Wc=
+
+Name: themes/slate/swt/samples.properties
+SHA1-Digest: U5PKzlW/IGZhPlnupiL0t6JQkeU=
+
+Name: themes/circles/graphics/icons/ctool/tu_nav_64.gif
+SHA1-Digest: QfZiqnjcg8JgKOiaHqQcRAkU68M=
+
+Name: themes/slate/graphics/icons/ctool/overview-select.gif
+SHA1-Digest: C/thmi6ygH/DObJgLK2R6FUFKmo=
+
+Name: themes/shared/graphics/icons/ctool/widget_closed.gif
+SHA1-Digest: UCVQqypGt54bp4bPvYvnBBf3S6s=
+
+Name: themes/slate/graphics/standby/fs_standbyhov.gif
+SHA1-Digest: IFrAPRH50aUnf4lzGXBnp63KBvg=
+
+Name: themes/slate/graphics/icons/ctool/wr_nav_32.gif
+SHA1-Digest: N9FnodopAmjKrlNb/C6xGS7+ATI=
+
+Name: themes/circles/graphics/standby/wb_standby.gif
+SHA1-Digest: VSLzZLxKKBrSxMH+QlFyD/mSYUk=
+
+Name: themes/shared/graphics/icons/ctool/widget_closed_hov.gif
+SHA1-Digest: yBhmvxNDT4l1CwkG8lR3CuEZnpY=
+
+Name: themes/slate/graphics/rootpage/whatsnew48.png
+SHA1-Digest: pizLyNLkBhqTFPW4z0yhKyGxTyU=
+
+Name: themes/circles/graphics/icons/ctool/samples.png
+SHA1-Digest: vkVn8EAwdSUkAjDkBYBk3aVmaJA=
+
+Name: themes/circles/graphics/icons/ctool/whatsnew.png
+SHA1-Digest: fmc+D8Cozv2x21iUal8OcSJ2RCA=
+
+Name: themes/slate/graphics/icons/ctool/samples-select.gif
+SHA1-Digest: MMUTVQz0hk+wFo7QgkgLJIljLdo=
+
+Name: themes/slate/graphics/rootpage/overview48.gif
+SHA1-Digest: 9fQKnwYMYCxPi3Dbf7Iw+P3GCYM=
+
+Name: themes/circles/graphics/contentpage/wr_banner.jpg
+SHA1-Digest: DOJtvC1OhmR/2gE5/nMvZRA5Tzk=
+
+Name: themes/slate/graphics/standby/mi_standby.gif
+SHA1-Digest: zpzqikD2wBf/PIPCZXeEV9gwu8Q=
+
+Name: themes/slate/swt/firststeps.properties
+SHA1-Digest: 3WAuEq0g1VcYEY19Cse2R0eDoyc=
+
+Name: themes/slate/graphics/icons/ctool/samples.png
+SHA1-Digest: JbJjoAzJoy70GkKO9qIdq2Rj6KU=
+
+Name: themes/circles/graphics/standby/wr_standby.gif
+SHA1-Digest: aJpFuRco/12bQ9bNy92cX/A5UPk=
+
+Name: themes/slate/graphics/rootpage/workbench48_hov.gif
+SHA1-Digest: yhz0kRxqnoPZXoFD3TjF9Pz14ik=
+
+Name: themes/slate/graphics/contentpage/wn_banner.jpg
+SHA1-Digest: zB2XWrRELYgqRzvpOE+AQJbwc6E=
+
+Name: themes/circles/graphics/launchbar/firststeps16.png
+SHA1-Digest: fCXz9yJa0b82QZ9rhBE67nJc2E4=
+
+Name: themes/purpleMesh/html/migrate.css
+SHA1-Digest: 1+NqZ1pYXSS2bFk1Fb+6jVSPEqU=
+
+Name: themes/purpleMesh/graphics/icons/ctool/overview48.gif
+SHA1-Digest: +JxWS50R28tHzsqUgQDLpoKxJdk=
+
+Name: themes/purpleMesh/html/standby.css
+SHA1-Digest: NkRX4mALA79ZCAH8rMkPXHjx90s=
+
+Name: icons/full/obj16/extension_obj.gif
+SHA1-Digest: bMeGZKr5c16LVNWBd9bt98uUYXc=
+
+Name: themes/purpleMesh/graphics/icons/etool/wb48.gif
+SHA1-Digest: gWXkEZ45v3k7g90kCWYvfRGydNg=
+
+Name: themes/slate/graphics/rootpage/whatsnew48_hov.gif
+SHA1-Digest: vSO/nScy1F2pIu0bdtjFxGpFg2o=
+
+Name: themes/slate/graphics/standby/wr_standbyhov.gif
+SHA1-Digest: jHQHecCjhxGdDtte6xzQGzOGu3c=
+
+Name: themes/slate/graphics/contentpage/mi_banner.jpg
+SHA1-Digest: dphGVKeWcMuI8dlZDYVT0jNP+Hk=
+
+Name: themes/circles/graphics/icons/ctool/nav_midhov.gif
+SHA1-Digest: Wi2MCADeHhtdwi4Sh0W7uBznlOA=
+
+Name: themes/circles/graphics/icons/ctool/sa_onesample48.gif
+SHA1-Digest: HqfVF+3gBlrx6nGLg5v5MFaaIgc=
+
+Name: themes/purpleMesh/html/root.css
+SHA1-Digest: F8e99wJzj5JSXslAStEW8UVbHnE=
+
+Name: themes/slate/graphics/contentpage/sa_banner.jpg
+SHA1-Digest: UYbMyIlkwRCH/+2xH0qy7SYO9jc=
+
+Name: themes/circles/html/samples.css
+SHA1-Digest: Aa/3mSKEQ/bjtj9HIXMJGgm8YrY=
+
+Name: themes/circles/graphics/icons/ctool/arrow_rtl.gif
+SHA1-Digest: DCAy3+kKDhzBjcBUtFfriO0XZ/Y=
+
+Name: themes/purpleMesh/graphics/contentpage/section4.gif
+SHA1-Digest: 5uQoTC0PIVQXXzoh4GS8uljeT7Q=
+
+Name: themes/purpleMesh/graphics/icons/ctool/samples48sel.gif
+SHA1-Digest: s0SJlUspZ+VpUK59YFpSVdSF4/8=
+
+Name: themes/slate/html/samples.css
+SHA1-Digest: jJB+8DDa8HMq/Howur8Lf6FKxXU=
+
+Name: themes/slate/graphics/rootpage/webresources48_hov.png
+SHA1-Digest: lc1/FiH8g8N5XQpp8VKb84BHcw0=
+
+Name: themes/slate/graphics/standby/sa_standbyhov.gif
+SHA1-Digest: Q4Gml852TuRFm97prfvm+YUFxQQ=
+
+Name: themes/purpleMesh/swt/root.properties
+SHA1-Digest: 13ibm2LcOyuKL4exgCW1FL8omGQ=
+
+Name: themes/slate/graphics/contentpage/fs_banner.jpg
+SHA1-Digest: e1ynwkado6TTdJD+CScC/nSV23w=
+
+Name: themes/purpleMesh/graphics/icons/obj48/new_obj.gif
+SHA1-Digest: m3blOl9A6/k/zOqWSEjVwi7OsX0=
+
+Name: themes/circles/graphics/launchbar/samples16.png
+SHA1-Digest: EJy0O+e7Wn2LQKacpG+ztOKD+xU=
+
+Name: themes/shared/graphics/contentpage/wr-mi_high.gif
+SHA1-Digest: 4Y7Eni6WwPD1XF5qOlZvX7FBicQ=
+
+Name: themes/circles/graphics/icons/ctool/overview.png
+SHA1-Digest: 6Vc2O8P0tc2mBLAtqN6XRg4m6bA=
+
+Name: themes/slate/graphics/launchbar/samples16.png
+SHA1-Digest: OkSBPD+k9fPKmTLDt+KLk67bD+M=
+
+Name: themes/purpleMesh/graphics/contentpage/tutorials_wtr.jpg
+SHA1-Digest: 1DK/EYeYoAy/ecmdrcLVwCp05fs=
+
+Name: universal.jar
+SHA1-Digest: tU+brr9bmP8rYwCJCbs+x9/cUoc=
+
+Name: themes/slate/graphics/icons/ctool/webresources.png
+SHA1-Digest: dMLVSP4HDxxSfiRFrbCaOeFNbVU=
+
+Name: themes/slate/graphics/rootpage/tutorials48.png
+SHA1-Digest: YocgTR+jGu0RLtYAlrHOx5DMmrM=
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/MANIFEST.MF b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..8cad9cb
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/MANIFEST.MF
@@ -0,0 +1,1232 @@
+Manifest-Version: 1.0
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.4
+Bundle-SymbolicName: org.eclipse.ui.intro.universal;singleton:=true
+Eclipse-LazyStart: true; exceptions="org.eclipse.ui.internal.intro.uni
+ versal.contentdetect"
+Eclipse-SourceReferences: scm:git:git://git.eclipse.org/gitroot/platfo
+ rm/eclipse.platform.ua.git;path="org.eclipse.ui.intro.universal";tag=
+ v20120912-155524
+Bundle-Activator: org.eclipse.ui.internal.intro.universal.UniversalInt
+ roPlugin
+Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.6.0,4.0.0)
+ ",org.eclipse.help;bundle-version="[3.5.0,4.0.0)",org.eclipse.ui;bund
+ le-version="[3.6.0,4.0.0)",org.eclipse.ui.intro;bundle-version="[3.4.
+ 0,4.0.0)"
+Bundle-Version: 3.2.600.v20120912-155524
+Export-Package: org.eclipse.ui.internal.intro.universal;x-friends:="or
+ g.eclipse.ua.tests",org.eclipse.ui.internal.intro.universal.contentde
+ tect;x-friends:="org.eclipse.ua.tests",org.eclipse.ui.internal.intro.
+ universal.util;x-internal:=true,org.eclipse.ui.intro.universal
+Bundle-ClassPath: universal.jar
+Bundle-ActivationPolicy: lazy;exclude:="org.eclipse.ui.internal.intro.
+ universal.contentdetect"
+Bundle-Vendor: %provider_name
+Bundle-Name: %plugin_name
+Eclipse-BundleShape: dir
+Import-Package: javax.xml.parsers,org.w3c.dom,org.xml.sax
+Bundle-ManifestVersion: 2
+
+Name: themes/shared/graphics/contentpage/wn-fs_med.gif
+SHA1-Digest: YObD0h+yD3AoEJKcbHpgl7nSg6w=
+
+Name: themes/slate/graphics/icons/ctool/webresources-select.png
+SHA1-Digest: ttFY6mc+rmyD+wi74Uh9u2VOsEA=
+
+Name: icons/full/obj16/inew_obj.gif
+SHA1-Digest: nNCYIZNT6cAnS1piXmICuWj214k=
+
+Name: themes/circles/swt/migrate.properties
+SHA1-Digest: 5AATILQmeOE6lgPTFd7rRWmZfFE=
+
+Name: themes/circles/graphics/icons/ctool/wb_nav_32.gif
+SHA1-Digest: Cn/9w2OEDB5HruOhhsLBFFUwdTA=
+
+Name: themes/circles/graphics/launchbar/migrate16.png
+SHA1-Digest: cdjjFVkozz0y9ji+FpASYhOALwk=
+
+Name: themes/circles/html/font-relative.css
+SHA1-Digest: YNdUuhYcoSgMNnDs8zLlOICeBPg=
+
+Name: themes/purpleMesh/swt/webresources.properties
+SHA1-Digest: CF3gMwhkWGQXjfED1zPxx1nNfWs=
+
+Name: icons/full/obj16/icallout_obj.gif
+SHA1-Digest: BtNHLBdOBOrkuqR5QGDMR1yYOPU=
+
+Name: themes/slate/graphics/launchbar/migrate16.png
+SHA1-Digest: cdjjFVkozz0y9ji+FpASYhOALwk=
+
+Name: themes/circles/graphics/icons/ctool/tutorials_tophov.gif
+SHA1-Digest: l4xpK0NEVv+6HAPqe6Boky17Drs=
+
+Name: themes/circles/swt/overview.properties
+SHA1-Digest: cWbc0RdZ2YXec98Rg1kTqJpT5NY=
+
+Name: themes/circles/html/whatsnew.css
+SHA1-Digest: f/xiSK+pn47wv97YC1T89H3Yggc=
+
+Name: themes/shared/html/shared.css
+SHA1-Digest: OTh/aPQYNhJNbCRlHp4uwANCo6I=
+
+Name: themes/purpleMesh/graphics/icons/etool/firsteps48.gif
+SHA1-Digest: hvcLfSf/ImoeCex6h0I4mKJDYaM=
+
+Name: themes/slate/graphics/icons/ctool/tu_nav_32.gif
+SHA1-Digest: ERMabqNtihbmhosEh+AMC9m6SgQ=
+
+Name: themes/slate/graphics/rootpage/samples48_hov.gif
+SHA1-Digest: 2GZqEq/9FzCx8WiEgECMZDe8Bbg=
+
+Name: themes/shared/graphics/icons/ctool/widget_closed_rtl.gif
+SHA1-Digest: Hls40cTfd5UjRBwAqdmvGB4Qj5A=
+
+Name: themes/circles/graphics/contentpage/tu_banner.jpg
+SHA1-Digest: QS8UTOekR3eu1goLA3IGZbz2ACU=
+
+Name: themes/circles/graphics/icons/ctool/wb_nav.png
+SHA1-Digest: FH8HqOCtz5sLOSGSXLTuXtscYdw=
+
+Name: themes/circles/graphics/icons/ctool/fs_nav.png
+SHA1-Digest: 3F+Z798k2zAOQHXppBvRobdsVgY=
+
+Name: icons/welcome16.gif
+SHA1-Digest: lCVsqUKwrazRDOWbtiyQR6PzEio=
+
+Name: themes/circles/graphics/icons/ctool/migrate.png
+SHA1-Digest: VkjCEMXUNNjo4asomIvGP5KZteA=
+
+Name: themes/circles/html/rtl.css
+SHA1-Digest: cGk5uIu4MDkHeAx2Fx84/hsq1Nw=
+
+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew48sel.gif
+SHA1-Digest: V7JtQrx+Kgg5ssosc9X8gdGTyVs=
+
+Name: themes/purpleMesh/graphics/icons/etool/webrsrc48sel.gif
+SHA1-Digest: ViPbhh1j2zwRpZdBTVLjwaRXvWU=
+
+Name: themes/shared/graphics/icons/ctool/widget_closed_hov_rtl.gif
+SHA1-Digest: lLNX/Q+6E9ygF+QaNhAMMknKE0Q=
+
+Name: themes/circles/graphics/icons/ctool/wn_nav.png
+SHA1-Digest: d7McdCEtfxPQ+F5vlR38rVTvgXo=
+
+Name: themes/circles/graphics/launchbar/tutorials16.png
+SHA1-Digest: i2tAwI/AV2AL9+0LBrkT2facrps=
+
+Name: themes/slate/graphics/icons/ctool/migrate.png
+SHA1-Digest: VkjCEMXUNNjo4asomIvGP5KZteA=
+
+Name: themes/purpleMesh/graphics/icons/ctool/firsteps72.gif
+SHA1-Digest: SBxtT8iB/ApY0HjP6hKYkJuKUok=
+
+Name: themes/slate/graphics/standby/wn_standbyhov.gif
+SHA1-Digest: NbMYb8Ka2D8DlnjzdS2qA6E8j9I=
+
+Name: themes/circles/graphics/icons/ctool/wr_nav.png
+SHA1-Digest: RiRbJ01jNoAefHKxAe7htjgxNc8=
+
+Name: themes/slate/graphics/icons/ctool/firststeps-select.gif
+SHA1-Digest: 2omoFavbjq9B7GnstjVqw0FdtMg=
+
+Name: themes/circles/graphics/standby/wb_standbyhov.gif
+SHA1-Digest: M93nY3cEdQ0Ot7ymKz9lcr/vVgQ=
+
+Name: themes/circles/graphics/icons/obj48/newhov_obj.gif
+SHA1-Digest: bYXzhCgIi1p/aDvaAoOBGIrBuKA=
+
+Name: themes/purpleMesh/graphics/icons/etool/tutorials72.gif
+SHA1-Digest: bgSW0+TBHE6b5pybPnVxwKCeb8o=
+
+Name: themes/slate/graphics/standby/wn_standby.gif
+SHA1-Digest: 88JPC5OW2W/A8nK+jURGNllSjXc=
+
+Name: themes/purpleMesh/graphics/contentpage/migrate_wtr.jpg
+SHA1-Digest: aEzxRxDEcOgBZUkFLh+l3yrPKkc=
+
+Name: themes/circles/graphics/icons/ctool/ov_nav_64.gif
+SHA1-Digest: MiM5uNLCvrkx/ykdKqZM97Y9ZZU=
+
+Name: themes/purpleMesh/graphics/contentpage/section3.gif
+SHA1-Digest: Dti98fXWKSzLZcwWhy0ZH/xv/LQ=
+
+Name: themes/circles/graphics/icons/ctool/mi_nav_hover.gif
+SHA1-Digest: ctUOJTLxQ0tbU8MWdzTinkFSNJY=
+
+Name: themes/purpleMesh/swt/whatsnew.properties
+SHA1-Digest: oMwOlBxzxsbYGpYIiB6r5WvnCOg=
+
+Name: themes/slate/graphics/rootpage/firststeps48_hov.gif
+SHA1-Digest: V1SxrQz5nuodvxHET/Uj/DVfZnU=
+
+Name: themes/circles/swt/firststeps.properties
+SHA1-Digest: sBCpA22sGt4sMuv+F9m/qnMxVSM=
+
+Name: themes/purpleMesh/graphics/icons/etool/overview48.gif
+SHA1-Digest: iCWMhwI9UGBgr2VfDvUWRcFUkvQ=
+
+Name: themes/purpleMesh/graphics/icons/ctool/tutorials48.gif
+SHA1-Digest: g1DLV9w6145WJgolBFoQXPSHED0=
+
+Name: themes/purpleMesh/html/font-absolute.css
+SHA1-Digest: Dp/J3iJgRBHHdbUImvOo/dqS9qQ=
+
+Name: themes/purpleMesh/graphics/icons/dtool/back.gif
+SHA1-Digest: ySnsDpMG5nwH+1FeV2r27mUrMkU=
+
+Name: themes/slate/graphics/launchbar/whatsnew16.png
+SHA1-Digest: h+KhHUY6Dp0Q8Jm2f2zIe/6WTlQ=
+
+Name: themes/purpleMesh/graphics/icons/ctool/migrate48sel.gif
+SHA1-Digest: keNlqQN4S22HPmK1Di1nJy96tpE=
+
+Name: themes/circles/html/migrate.css
+SHA1-Digest: iqCK+hELmQGaI0kDAerL4zBIsH8=
+
+Name: themes/circles/html/standby.css
+SHA1-Digest: 2z23RG44ueQjzJxag9TUR5ipMg8=
+
+Name: themes/shared/graphics/contentpage/ov_med.gif
+SHA1-Digest: BLkJAi4b6F3mxZCsx/D4hbWbUO8=
+
+Name: themes/purpleMesh/graphics/icons/ctool/wb48.gif
+SHA1-Digest: TRanQY4RKQhrmQMzvoEtx9VCEuE=
+
+Name: themes/circles/graphics/icons/ctool/tu_nav_hover.gif
+SHA1-Digest: gnwxFOZ1hWJ15kAtVY9JjWHr8y0=
+
+Name: themes/purpleMesh/graphics/icons/ctool/overview72.gif
+SHA1-Digest: j8YqPAh5zhsG871Xa1oEABhvpwU=
+
+Name: themes/slate/html/migrate.css
+SHA1-Digest: o9xAwZ7xa/HM/hdVTb3tk8uOHw0=
+
+Name: themes/slate/html/standby.css
+SHA1-Digest: dcsodycy9r1Mc13iPMtPm6VaX44=
+
+Name: themes/circles/graphics/icons/ctool/wn_nav_32.gif
+SHA1-Digest: 2MmKSbuOyZVL2zJF4G8nB5PD40E=
+
+Name: themes/slate/graphics/rootpage/overview48_hov.png
+SHA1-Digest: yEu4cL82lrHSfFHqv3eoyrW9YSg=
+
+Name: themes/circles/graphics/icons/ctool/migrate_tophov.gif
+SHA1-Digest: H8SgRLyEnOi1cDZJW0fzb3lAvCo=
+
+Name: themes/circles/html/overview.css
+SHA1-Digest: G+A4n9PJ6fA3WLTPxxbOfcojjXE=
+
+Name: themes/slate/preview.png
+SHA1-Digest: whTvlmnBWZTV8IG0krm8yHohkCI=
+
+Name: themes/circles/graphics/icons/ctool/firststeps.gif
+SHA1-Digest: aw0foujzvfJwyNlhaeXJ9h+811s=
+
+Name: themes/slate/graphics/rootpage/samples48.gif
+SHA1-Digest: a7heSjTUOSoRTKVM3l7UofW0BgY=
+
+Name: themes/purpleMesh/html/firststeps.css
+SHA1-Digest: nACM/CMdpnPS98VKxacu0uWKtn4=
+
+Name: themes/slate/swt/migrate.properties
+SHA1-Digest: 2F6o5tkNwYATwSeIxAhJ4Fawrag=
+
+Name: themes/slate/graphics/icons/ctool/tu_nav.png
+SHA1-Digest: dNoyc7XQ0/y0TYmDYpA3RH2BDu8=
+
+Name: themes/slate/html/font-relative.css
+SHA1-Digest: yc7PqZE0wKy+879beIvCdX5i2As=
+
+Name: themes/circles/graphics/icons/ctool/mi_nav_32.gif
+SHA1-Digest: mATXWuXqCWzSKixiSQs+YOGKGco=
+
+Name: themes/circles/graphics/icons/ctool/workbench_midhov.gif
+SHA1-Digest: 8IcR48lhiM2cA6fVthKbkSUPpuQ=
+
+Name: themes/purpleMesh/graphics/swt/form_banner.gif
+SHA1-Digest: PQhF1iaxN2d2Pjr4NFsLS6syeIU=
+
+Name: themes/circles/graphics/icons/ctool/root_midhov.gif
+SHA1-Digest: 0wGbIZFEsbFYpUJc7aXvM2hdu9s=
+
+Name: themes/circles/graphics/standby/ov_standby.gif
+SHA1-Digest: HunoPS0cid3oVEr1sZr/zorOhSo=
+
+Name: themes/slate/swt/tutorials.properties
+SHA1-Digest: vAquZcTxRXIrBqJjPzS1CivM1DU=
+
+Name: themes/circles/graphics/icons/ctool/sa_nav_32.gif
+SHA1-Digest: zWmN8ic58PiJmRsQN6M8kkO112Y=
+
+Name: themes/slate/graphics/icons/ctool/migrate-select.gif
+SHA1-Digest: rbcMvR3DTWAZ6y8pRLJ1Aj3AR0Y=
+
+Name: themes/purpleMesh/graphics/icons/ctool/firsteps48sel.gif
+SHA1-Digest: opve/Gi8rcg8PqsApScb3gwbsjM=
+
+Name: themes/purpleMesh/graphics/contentpage/samples_wtr.jpg
+SHA1-Digest: g2JddJllH2GnARk4Nou/2R4PymU=
+
+Name: themes/circles/graphics/icons/ctool/sa_nav.png
+SHA1-Digest: uXMdf9iE7j6nm8Kb+4XilPOc3KQ=
+
+Name: themes/slate/graphics/launchbar/webresources16.png
+SHA1-Digest: MKgOo3PUit3DrNfS3CNMBEiz7j0=
+
+Name: themes/slate/graphics/icons/ctool/mi_nav.png
+SHA1-Digest: DugGCwIqDGwAjbE6lxcgfs0Wcv4=
+
+Name: themes/slate/graphics/rootpage/migrate48.gif
+SHA1-Digest: joxhUVMJ4gjNCLOVxveKazhqRQg=
+
+Name: themes/circles/graphics/icons/ctool/cpt_midhov.gif
+SHA1-Digest: RrizlkO8kDokhCsq1RS7MeMZ/8E=
+
+Name: themes/circles/graphics/icons/obj48/new_obj.gif
+SHA1-Digest: Y/Bwx578bV6kzFqO2dx3H9gJtTo=
+
+Name: themes/purpleMesh/graphics/launchbar/whatsnew.gif
+SHA1-Digest: OfLsLlxVJqmHGeWbr+FpZ7WbR5o=
+
+Name: themes/slate/graphics/icons/ctool/whatsnew.png
+SHA1-Digest: 7yax9xdOrPlNoCNBqEo0D2Wn98A=
+
+Name: themes/slate/swt/root.properties
+SHA1-Digest: trht5nL/OVGbn1M9jAAQgsEUxew=
+
+Name: themes/slate/graphics/rootpage/firststeps48.gif
+SHA1-Digest: 728dp/iHajdA6QbwpXrDcWhyr9I=
+
+Name: themes/purpleMesh/graphics/icons/ctool/overview48sel.gif
+SHA1-Digest: QvbOlzxtGauTmRVipO4/FC2ZJ2U=
+
+Name: themes/circles/graphics/icons/ctool/fs_nav_32.gif
+SHA1-Digest: BSKmmm0UjJhF46bslzBFgsMhk28=
+
+Name: themes/slate/graphics/rootpage/root_banner.jpg
+SHA1-Digest: CVENAzN0sGVJ550D3j/tRK/bGUo=
+
+Name: themes/purpleMesh/graphics/contentpage/section2.gif
+SHA1-Digest: jNYinCnDLjHR0d9YHNjblUc/OuA=
+
+Name: themes/slate/swt/overview.properties
+SHA1-Digest: 7OIn4C0e4D6ndcSGGB2rOpSg9OA=
+
+Name: themes/slate/graphics/contentpage/banner_extension.jpg
+SHA1-Digest: hduQzj5oNnCVgoASvulQULdbwPM=
+
+Name: themes/circles/graphics/standby/mi_standby.gif
+SHA1-Digest: 5hYhaXir5S3NKycOObVKVsAr09E=
+
+Name: themes/purpleMesh/graphics/icons/etool/webrsrc48.gif
+SHA1-Digest: eT48bn2xNpwaArD3Ukfr9X5Z3c0=
+
+Name: themes/purpleMesh/html/ltr.css
+SHA1-Digest: Yyu5meBpG9xZ0u7nPC5AeoUW/zw=
+
+Name: themes/slate/graphics/icons/ctool/whatsnew-select.gif
+SHA1-Digest: /Qq4XXE3i1mUaXyx9iRhQ8V/W5c=
+
+Name: themes/slate/html/tutorials.css
+SHA1-Digest: 4Odp/Gvx+GfsR1ECUTI/mKtmUTE=
+
+Name: themes/slate/html/shared.css
+SHA1-Digest: qMIxx3YJ8vHdurH/wNG2IojaQiI=
+
+Name: themes/purpleMesh/graphics/icons/ctool/firsteps16.png
+SHA1-Digest: Xi6gTgcM86DWgA6hyPn8mRMRwE0=
+
+Name: themes/circles/html/root.css
+SHA1-Digest: YX1L9+DDBz6WfuLKH+3xJrz4uN4=
+
+Name: themes/circles/graphics/icons/ctool/workbench_tophov.gif
+SHA1-Digest: +Bd0or2l4puBTP5oSz9gGyqxboc=
+
+Name: themes/slate/graphics/standby/tu_standby.gif
+SHA1-Digest: 76LqWV6eBwFimzZFB6T2Buh40Jw=
+
+Name: themes/purpleMesh/graphics/icons/etool/firsteps72.gif
+SHA1-Digest: 8bFXxASI73oOdjUe/CbahEIuja0=
+
+Name: themes/purpleMesh/swt/standby.properties
+SHA1-Digest: Et13VGQD/DUcY0mXK2+CwdtfEHM=
+
+Name: themes/slate/graphics/icons/ctool/ov_nav_32.gif
+SHA1-Digest: mK2utAnQW2MhbJurFHYi5qKZ1vE=
+
+Name: themes/circles/graphics/contentpage/ov_banner.jpg
+SHA1-Digest: 10sZ9H16pEffvVYkE+oqY7PFVXo=
+
+Name: themes/purpleMesh/html/shared.css
+SHA1-Digest: KPSVwoWza9iUjjzBkJdr5wPP1YM=
+
+Name: themes/circles/graphics/icons/ctool/nav_rightedgehov.gif
+SHA1-Digest: 5LCcU2on4MwQTTw2MBdcyieAAEM=
+
+Name: themes/purpleMesh/graphics/contentpage/backgroundcurve.gif
+SHA1-Digest: SU4SmeQDMdIE/JG9PcJmA8g/ato=
+
+Name: themes/purpleMesh/graphics/icons/etool/samples48sel.gif
+SHA1-Digest: SOwlUuN/dNPbbRGy97y2JyBenP4=
+
+Name: themes/slate/html/webresources.css
+SHA1-Digest: 1bIsUHigc64MRBrTzXlMzGZRX/Q=
+
+Name: themes/purpleMesh/graphics/icons/ctool/forward.gif
+SHA1-Digest: XmaOiMd1jEsrDB6NdyQqw+d1aAY=
+
+Name: themes/circles/swt/root.properties
+SHA1-Digest: tKcoqTuS/A6XBkZrPU/Tp2zE3W0=
+
+Name: themes/purpleMesh/graphics/icons/etool/forward.gif
+SHA1-Digest: /hIcNo6w11v+EpgTXgFX9a1bYwY=
+
+Name: themes/slate/graphics/contentpage/wr_banner.jpg
+SHA1-Digest: wINF//ANvlaP4bKX40ICJ1h4J2Y=
+
+Name: themes/purpleMesh/graphics/icons/etool/samples48.gif
+SHA1-Digest: tVSl1SZ/C1vzumYiVhIg3neCICQ=
+
+Name: themes/slate/graphics/rootpage/whatsnew48.gif
+SHA1-Digest: UvfhrKZoLquL9Mi9ZmLCo09V0Ho=
+
+Name: themes/slate/html/root.css
+SHA1-Digest: AfeYIjFUtTzAXgOxyLSaYF525yA=
+
+Name: themes/purpleMesh/graphics/launchbar/overview.gif
+SHA1-Digest: pfIpf2IyPaP9OPweaGpcIYG+TFs=
+
+Name: themes/slate/graphics/icons/ctool/tutorials-select.png
+SHA1-Digest: cCY5VvZg9hbvygMCXlNA9jbzDZs=
+
+Name: themes/circles/graphics/icons/ctool/webresources_tophov.gif
+SHA1-Digest: VaZ+AWC7rmAsl7EfAf4RMGe7Ajw=
+
+Name: themes/circles/graphics/icons/ctool/samples.gif
+SHA1-Digest: c9b5vr12KuTDgSh4XxVc3A/Yb5o=
+
+Name: themes/circles/graphics/icons/ctool/whatsnew.gif
+SHA1-Digest: R3qLK0sHbAW98RHHMq7zWy1IO5o=
+
+Name: themes/purpleMesh/graphics/icons/ctool/overview16.png
+SHA1-Digest: F9E6l5MA7FwcZoftgNIyKpPuHIs=
+
+Name: themes/purpleMesh/graphics/contentpage/webrsrc_wtr.jpg
+SHA1-Digest: Ido2Czdqp9qBtLXVuqLFKehNnG0=
+
+Name: themes/slate/graphics/icons/ctool/overview.png
+SHA1-Digest: eXxwilTaGiognsDmKoSJ3ZwT7FU=
+
+Name: themes/purpleMesh/graphics/contentpage/background.jpg
+SHA1-Digest: E2oMRaBMnHtodkZ+6dnqpMVtjYw=
+
+Name: themes/purpleMesh/graphics/icons/etool/overview72.gif
+SHA1-Digest: n74Umhh+1Csw/icpzX8BNun9DPY=
+
+Name: themes/slate/html/rtl.css
+SHA1-Digest: ka03w0wDvzu6rYhWR5cBQWwA6BA=
+
+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew48.gif
+SHA1-Digest: KNlMP7MYOWlZW4S9qu3HLv6oCX0=
+
+Name: themes/circles/html/font-absolute.css
+SHA1-Digest: UPrVP11/+ZJNI7V+e7usdgYpotU=
+
+Name: themes/purpleMesh/graphics/icons/ctool/tutorials72.gif
+SHA1-Digest: 4khSgiovoX4YtZ6eJRPyyBG1tVA=
+
+Name: themes/purpleMesh/graphics/icons/etool/migrate48.gif
+SHA1-Digest: fViGJTGmPbKdrj9R9DEEnQadiCQ=
+
+Name: themes/circles/graphics/icons/ctool/firststeps_tophov.gif
+SHA1-Digest: Oh8ahqB46KYlZOW1WUEdG8UzLeE=
+
+Name: themes/slate/graphics/standby/fs_standby.gif
+SHA1-Digest: 5yXOjWYGu9taQwSM6JmLf07j0fI=
+
+Name: themes/slate/graphics/standby/sa_standby.gif
+SHA1-Digest: MzhZk7rGOmDthzPVK6Ss5ZHDWfc=
+
+Name: themes/circles/graphics/icons/ctool/workbench.png
+SHA1-Digest: NvsOkAqCPAe7ectLZ6VMCYoWlAg=
+
+Name: themes/circles/swt/webresources.properties
+SHA1-Digest: d08aTkBCcpnmmJzT8Jsz4fmFFP8=
+
+Name: themes/circles/graphics/icons/ctool/root_midhov2.gif
+SHA1-Digest: MUXRnbm2U/5T/WKg2Fze3zGWip8=
+
+Name: themes/purpleMesh/graphics/launchbar/webresources16.png
+SHA1-Digest: MKgOo3PUit3DrNfS3CNMBEiz7j0=
+
+Name: themes/slate/graphics/rootpage/webresources48.png
+SHA1-Digest: kxjGlQiN/a/+HyqLGGpjOwltaHc=
+
+Name: themes/circles/graphics/standby/mi_standbyhov.gif
+SHA1-Digest: HnHqLAS7Dn7UNF9Lvj7vq9+KBUc=
+
+Name: themes/purpleMesh/graphics/contentpage/section1.gif
+SHA1-Digest: m5w0U3ih9X9y22rCCdBFryaLvAc=
+
+Name: themes/shared/graphics/contentpage/grey_callout.gif
+SHA1-Digest: yi4BN/3biRiO8mkotR+kIwxTG+M=
+
+Name: themes/slate/html/whatsnew.css
+SHA1-Digest: HKoqKVzXRanzKOmmOTkRgxdCtEY=
+
+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc48.gif
+SHA1-Digest: GmnkTgyukr5A180zab5zZYJ1D0g=
+
+Name: themes/circles/graphics/icons/ctool/tutorials.png
+SHA1-Digest: smC+kYLb5F/BlUJxXGb3OIkzMyA=
+
+Name: themes/slate/graphics/icons/ctool/arrow_rtl.gif
+SHA1-Digest: lbqBjzMYJPrTr2480naQFU3Ctkw=
+
+Name: themes/circles/graphics/icons/ctool/ov_nav_hover.gif
+SHA1-Digest: sX+VnILCJbj/P5cRPP65JpGvZWA=
+
+Name: themes/circles/graphics/icons/ctool/wn_nav_64.gif
+SHA1-Digest: 8dnsIP2CGs5jbXtQSdbqUTOU8Ro=
+
+Name: themes/circles/graphics/icons/ctool/workbench_bottomhov.gif
+SHA1-Digest: 6akkwg9PLd5IbNPUtt/6oTD0Fmc=
+
+Name: themes/slate/graphics/rootpage/workbench48.png
+SHA1-Digest: FgczOQ4VpSiYNbMdQ/83/dGtAvQ=
+
+Name: about.html
+SHA1-Digest: ejOZra0kypGLQQ2bJtGTX+LI8tU=
+
+Name: themes/slate/graphics/rootpage/webresources48_hov.gif
+SHA1-Digest: fLFNLYyPZO7VGdv7Y0pW8cFcGX4=
+
+Name: themes/slate/html/firststeps.css
+SHA1-Digest: 44JdqtdGfVaGtE71FyUy2GsR/rs=
+
+Name: themes/circles/graphics/icons/ctool/mi_nav_64.gif
+SHA1-Digest: Q9shp5C6uwXuvLYysv0huYQDB7g=
+
+Name: themes/circles/swt/whatsnew.properties
+SHA1-Digest: 6OFfokUGKPEnPFqOK5mnQZi4YVQ=
+
+Name: themes/circles/graphics/icons/ctool/sa_nav_hover.gif
+SHA1-Digest: 0T/hb/lLM6+4vlYmaQfabpdGLjQ=
+
+Name: themes/purpleMesh/graphics/icons/ctool/tutorials48sel.gif
+SHA1-Digest: tATI5YuOIrBfjWCFp5WnjlycjL0=
+
+Name: themes/circles/graphics/icons/ctool/sa_nav_64.gif
+SHA1-Digest: Dx4v4tsaMKt29b4G9qaOF5QCrOY=
+
+Name: themes/circles/graphics/icons/ctool/overview.gif
+SHA1-Digest: +uFvLkyNf1o3XI+/Ucf9I3zQCPs=
+
+Name: themes/slate/graphics/rootpage/tutorials48_hov.png
+SHA1-Digest: aTlhURRHXXspu8uUZRhYEbDAojc=
+
+Name: themes/circles/graphics/standby/wn_standby.gif
+SHA1-Digest: 88JPC5OW2W/A8nK+jURGNllSjXc=
+
+Name: themes/circles/graphics/icons/ctool/overview_bottomhov.gif
+SHA1-Digest: YL2P91DIXFlIEdG9NrrY+AhPRsw=
+
+Name: themes/slate/graphics/icons/ctool/wb_nav_32.gif
+SHA1-Digest: GpdTBfJKFFJkVfefZF3oVDI+k1o=
+
+Name: themes/purpleMesh/graphics/icons/ctool/samples48.gif
+SHA1-Digest: u0pYTzvBAB63GQT5RCCUbYqIR/8=
+
+Name: themes/slate/graphics/rootpage/tutorials48.gif
+SHA1-Digest: EOb2R8xvUX5bbijE1zT7PW3yi0k=
+
+Name: themes/circles/graphics/standby/ov_standbyhov.gif
+SHA1-Digest: S4jMdmDN03X8/YD+TgHYLJTrQ1k=
+
+Name: themes/circles/graphics/launchbar/overview16.png
+SHA1-Digest: F9E6l5MA7FwcZoftgNIyKpPuHIs=
+
+Name: themes/slate/graphics/icons/ctool/webresources-select.gif
+SHA1-Digest: jEHkJCqvz90c5NrTt50AG6y8R5g=
+
+Name: themes/purpleMesh/preview.png
+SHA1-Digest: CoxC3E6lWpb5CIhBsZIy51kuLSg=
+
+Name: themes/slate/graphics/rootpage/migrate48_hov.png
+SHA1-Digest: 3jv6dZo2sWUoSzG9+fUC8BNHp2A=
+
+Name: themes/circles/graphics/icons/ctool/fs_nav_64.gif
+SHA1-Digest: IZQIQMgx8FkRqKHONIJUlUwq3rk=
+
+Name: themes/circles/graphics/icons/ctool/overview_midhov.gif
+SHA1-Digest: nnLAEvfmeOC+rzaWxpv6yCe7xeQ=
+
+Name: themes/purpleMesh/html/webresources.css
+SHA1-Digest: sWnYR2Hr4y3AO3Okf8oAO2Ijb0o=
+
+Name: themes/purpleMesh/graphics/icons/etool/migrate48sel.gif
+SHA1-Digest: h+GOvx5olDLCqX/Cby35wMDDXuc=
+
+Name: themes/purpleMesh/graphics/root/background.jpg
+SHA1-Digest: 55fuk1Jgqmsw0nmR/NmsLZU/B/E=
+
+Name: themes/circles/html/ltr.css
+SHA1-Digest: Yyu5meBpG9xZ0u7nPC5AeoUW/zw=
+
+Name: themes/purpleMesh/graphics/icons/etool/webrsrc72.gif
+SHA1-Digest: BXvwP9AN31Xn2K8qtsd1gjhWIcc=
+
+Name: themes/slate/graphics/contentpage/tu_banner.jpg
+SHA1-Digest: 4Hiac9ZLmKM1nD5e+1n/PNz2zZg=
+
+Name: icons/full/obj16/ilow_obj.gif
+SHA1-Digest: wAtRYKFnL5qoURQIXumOywvQmIk=
+
+Name: themes/slate/html/overview.css
+SHA1-Digest: 1a0QMXZcM8a6o/ctVWIeWIcYsXk=
+
+Name: themes/purpleMesh/graphics/icons/ctool/migrate48.gif
+SHA1-Digest: 13w8+9/+TWNT9hGKV+Haz8Qiw6o=
+
+Name: themes/slate/graphics/launchbar/tutorials16.png
+SHA1-Digest: i2tAwI/AV2AL9+0LBrkT2facrps=
+
+Name: themes/circles/html/firststeps.css
+SHA1-Digest: EV55fIWanWb1kPj8xH09DQH48HI=
+
+Name: themes/circles/graphics/icons/ctool/fs_nav_hover.gif
+SHA1-Digest: MTOxVXUpblDdX5KvJiaJPR1tU3c=
+
+Name: themes/circles/graphics/standby/tu_standbyhov.gif
+SHA1-Digest: sWxT9jjy1CbwVqXWKiMSMRgDs8I=
+
+Name: themes/slate/graphics/standby/wb_standbyhov.gif
+SHA1-Digest: M93nY3cEdQ0Ot7ymKz9lcr/vVgQ=
+
+Name: themes/slate/html/font-absolute.css
+SHA1-Digest: xS0MRrwTLXqa5OQd1iW6iHIy3Bc=
+
+Name: themes/circles/swt/standby.properties
+SHA1-Digest: hIrIt7g/8ze49RvoZt8oujUIY3U=
+
+Name: themes/circles/graphics/icons/ctool/migrate.gif
+SHA1-Digest: kSYjWyWIS8iBRq1xaFM4xHb3Bdk=
+
+Name: themes/circles/graphics/icons/ctool/webresources.png
+SHA1-Digest: 0sKVVhl4zyGuSQxxs1pyupEqEro=
+
+Name: icons/full/obj16/image_obj.gif
+SHA1-Digest: DT00AOgk+LSxwyBDkotC5FiPYRI=
+
+Name: themes/purpleMesh/swt/tutorials.properties
+SHA1-Digest: I2RxA1+OY6LYltetui8ofyH59eo=
+
+Name: themes/slate/graphics/icons/ctool/overview-select.png
+SHA1-Digest: hVN47i7yjwEaoeO/EczGzvS0h2Q=
+
+Name: themes/shared/graphics/contentpage/wn-fs_high.gif
+SHA1-Digest: oiMP7gOeLwfgSvXA0kWFlpITY7U=
+
+Name: themes/circles/graphics/icons/ctool/tu_nav.png
+SHA1-Digest: dNoyc7XQ0/y0TYmDYpA3RH2BDu8=
+
+Name: themes/purpleMesh/graphics/root/brandmark.gif
+SHA1-Digest: PgN5Rj0TJwB5pNIjtFRXU8ztH0A=
+
+Name: themes/purpleMesh/graphics/icons/ctool/tutorials16.png
+SHA1-Digest: i2tAwI/AV2AL9+0LBrkT2facrps=
+
+Name: themes/slate/graphics/icons/ctool/samples-select.png
+SHA1-Digest: vq/g/Lw1FwHfkm6p/FOlemij/5I=
+
+Name: themes/slate/graphics/rootpage/overview48.png
+SHA1-Digest: 99XyAwX7m5mYQ4AOgObbGzd5RDw=
+
+Name: themes/purpleMesh/graphics/icons/etool/samples72.gif
+SHA1-Digest: yaI/A4O3sg62jftxAs4A5ovsDIE=
+
+Name: themes/circles/graphics/standby/fs_standbyhov.gif
+SHA1-Digest: j3OetXMY7tyEtqQChTtohOIDzgk=
+
+Name: themes/purpleMesh/graphics/icons/etool/whatsnew48.gif
+SHA1-Digest: mPoULJKT+XF9OOr07H7Zm7jItL4=
+
+Name: themes/purpleMesh/graphics/icons/ctool/wb16.png
+SHA1-Digest: rtGpm0vAJROmvKqNhIA86Oii2QU=
+
+Name: themes/circles/graphics/icons/ctool/mi_nav.png
+SHA1-Digest: DugGCwIqDGwAjbE6lxcgfs0Wcv4=
+
+Name: themes/slate/graphics/icons/ctool/ov_nav.png
+SHA1-Digest: KtxMxu+ASHojP1pS3ir3RurjNk8=
+
+Name: themes/circles/graphics/icons/ctool/wr_nav_32.gif
+SHA1-Digest: TdYmSHa2YYmdttUqBg/bnvUwPFU=
+
+Name: themes/slate/graphics/rootpage/workbench48_hov.png
+SHA1-Digest: zEzcCes6vflGY6bOsv24Rl5Gjds=
+
+Name: themes/circles/graphics/icons/ctool/overview_tophov.gif
+SHA1-Digest: wV+i4eDKNxlIgXGRM+u+vAgyE3w=
+
+Name: icons/full/obj16/ihigh_obj.gif
+SHA1-Digest: vI+PIICL5niI3cp3BIHFmKNezJM=
+
+Name: themes/purpleMesh/graphics/icons/etool/home.gif
+SHA1-Digest: /or5ve5EMGFdF2Y0L2g5nyUuIIw=
+
+Name: themes/purpleMesh/graphics/contentpage/whatsnew_wtr.jpg
+SHA1-Digest: XRef3brftgagwayG3XY716228lA=
+
+Name: themes/purpleMesh/graphics/icons/etool/back.gif
+SHA1-Digest: ySnsDpMG5nwH+1FeV2r27mUrMkU=
+
+Name: themes/slate/graphics/icons/ctool/wn_nav_32.gif
+SHA1-Digest: 2MmKSbuOyZVL2zJF4G8nB5PD40E=
+
+Name: themes/circles/graphics/contentpage/wn_banner.jpg
+SHA1-Digest: YUKNXzoHrliZGSKkB1xULdQM1pM=
+
+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew72.gif
+SHA1-Digest: 5291YmuJ2qb7ZUbxqgabvlAUXZw=
+
+Name: themes/purpleMesh/graphics/icons/etool/migrate72.gif
+SHA1-Digest: cixlyOEhHbqYFBRvcfJB++/1zA0=
+
+Name: themes/shared/graphics/icons/ctool/widget_open.gif
+SHA1-Digest: Apgb6HcsxsXMS+sHuk/qeY8n4Hg=
+
+Name: themes/circles/graphics/icons/ctool/ov_nav_midhov.gif
+SHA1-Digest: ww8UaEmFh8Ua/BIxSr1+x4ZGgjs=
+
+Name: themes/slate/graphics/rootpage/whatsnew48_hov.png
+SHA1-Digest: AtJW/I5jeOgeNN8s/05OYoPbiNI=
+
+Name: themes/purpleMesh/swt/samples.properties
+SHA1-Digest: zHgXqSHAR+13ShPdQ+v5A7zVxQ0=
+
+Name: themes/slate/graphics/rootpage/overview48_hov.gif
+SHA1-Digest: lMx3CV4GH+dLQSIaRIcoHkky8Wk=
+
+Name: themes/purpleMesh/graphics/launchbar/tutorials.gif
+SHA1-Digest: p/9KyKfeLBTEfkIq5VoXuUzv+CI=
+
+Name: themes/slate/graphics/icons/ctool/mi_nav_32.gif
+SHA1-Digest: mATXWuXqCWzSKixiSQs+YOGKGco=
+
+Name: themes/shared/graphics/contentpage/tu-sa_high.gif
+SHA1-Digest: yiKi7S7vBveH4hyEQdwg4/A2XPo=
+
+Name: themes/circles/graphics/standby/wr_standbyhov.gif
+SHA1-Digest: 1rq4e0czEMOde7HG8ZUK1yqzD88=
+
+Name: themes/circles/graphics/contentpage/mi_banner.jpg
+SHA1-Digest: 1sw4BuKCsz60H2Os3tfy525HyLo=
+
+Name: themes/purpleMesh/graphics/root/dots.gif
+SHA1-Digest: J8KQRqbJZhxVIt9FA8p0AcCnowc=
+
+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc72.gif
+SHA1-Digest: DD9I/BC6qA7bx2G7VKVRdAIpEYM=
+
+Name: themes/circles/html/shared.css
+SHA1-Digest: NJbZ3ZOvYbHm3hSIEHPQBig4eDA=
+
+Name: themes/slate/graphics/icons/ctool/sa_nav_32.gif
+SHA1-Digest: zWmN8ic58PiJmRsQN6M8kkO112Y=
+
+Name: themes/slate/swt/whatsnew.properties
+SHA1-Digest: +6rLRTIyqqFhxw9OwYjFyI9LYHU=
+
+Name: themes/circles/graphics/contentpage/sa_banner.jpg
+SHA1-Digest: 7WoYSLMwBhmg1/b/vzgmc4EEEYU=
+
+Name: themes/circles/graphics/standby/tu_standby.gif
+SHA1-Digest: 76LqWV6eBwFimzZFB6T2Buh40Jw=
+
+Name: themes/slate/graphics/standby/wb_standby.gif
+SHA1-Digest: iYWACoN3sIlFFpx6p5DfMjT8yp4=
+
+Name: themes/circles/graphics/icons/ctool/cpt_bottomhov.gif
+SHA1-Digest: kK+FVIIHjU6Om4Pa8Mf1Cb9qZ3k=
+
+Name: themes/circles/graphics/icons/ctool/wn_nav_hover.gif
+SHA1-Digest: Dhv+82YCN/981G9RTNEIB18Lpdc=
+
+Name: themes/slate/graphics/standby/wr_standby.gif
+SHA1-Digest: xduVT3RSYRMM5sYjyQAjf+Jf17I=
+
+Name: themes/circles/graphics/icons/ctool/content_nav_bar.gif
+SHA1-Digest: kr9yIeTjSkVaXNPuVOWWopYNvho=
+
+Name: themes/slate/swt/standby.properties
+SHA1-Digest: bV7foFtJyLQF3lqerXPZKET+4ew=
+
+Name: themes/slate/graphics/icons/ctool/fs_nav_32.gif
+SHA1-Digest: BSKmmm0UjJhF46bslzBFgsMhk28=
+
+Name: themes/circles/graphics/standby/sa_standbyhov.gif
+SHA1-Digest: R1KR8mlM3qFlzVMir6EJcoAJ6lE=
+
+Name: themes/circles/graphics/contentpage/fs_banner.jpg
+SHA1-Digest: vUx+zrIjtCFpyr9f3ERQ6/HpSzw=
+
+Name: themes/shared/graphics/icons/ctool/arrow_rtl.gif
+SHA1-Digest: lbqBjzMYJPrTr2480naQFU3Ctkw=
+
+Name: themes/purpleMesh/graphics/launchbar/firststeps16.png
+SHA1-Digest: Xi6gTgcM86DWgA6hyPn8mRMRwE0=
+
+Name: themes/purpleMesh/graphics/contentpage/firsteps_wtr.jpg
+SHA1-Digest: SLogcCehi5NObA2KuLZ7nA738ds=
+
+Name: themes/purpleMesh/graphics/contentpage/overview_wtr.jpg
+SHA1-Digest: koZJeO/5SBXUv2ah5lALiklDKnY=
+
+Name: icons/full/elcl16/configure.gif
+SHA1-Digest: lO5chUjiq4EA093CHoujkIE+2ro=
+
+Name: themes/purpleMesh/graphics/icons/ctool/samples72.gif
+SHA1-Digest: 8tJ5D2Qt3JGFuK3tVzR2zDvw1UA=
+
+Name: themes/circles/graphics/launchbar/webresources16.png
+SHA1-Digest: MKgOo3PUit3DrNfS3CNMBEiz7j0=
+
+Name: themes/slate/graphics/rootpage/samples48_hov.png
+SHA1-Digest: 2YRNbbxotyUjDVT/r3kFEq6poLo=
+
+Name: themes/circles/graphics/standby/fs_standby.gif
+SHA1-Digest: 5yXOjWYGu9taQwSM6JmLf07j0fI=
+
+Name: themes/circles/graphics/standby/sa_standby.gif
+SHA1-Digest: MzhZk7rGOmDthzPVK6Ss5ZHDWfc=
+
+Name: themes/purpleMesh/html/tutorials.css
+SHA1-Digest: ei1JflrAWiaDdaAr3H0KmumaF98=
+
+Name: themes/slate/graphics/contentpage/ov_banner.jpg
+SHA1-Digest: 2Wu7/rm22OIorJVynaU7zk/G8cg=
+
+Name: themes/purpleMesh/graphics/icons/ctool/migrate72.gif
+SHA1-Digest: QpVdHFygYIEYpSnJi/P3L9MHuqE=
+
+Name: themes/circles/graphics/icons/ctool/tu_nav_32.gif
+SHA1-Digest: ERMabqNtihbmhosEh+AMC9m6SgQ=
+
+Name: themes/slate/graphics/rootpage/background.jpg
+SHA1-Digest: clqgSqmczSLuMgglgV10PWWPA9g=
+
+Name: themes/shared/graphics/contentpage/tu-sa_med.gif
+SHA1-Digest: h/hEsdE7RIYhwsmZzkQG1XWxsys=
+
+Name: themes/slate/graphics/icons/ctool/firststeps-select.png
+SHA1-Digest: fe9h2ATKSpO/CQpV0CiE3Ja0Mo0=
+
+Name: themes/circles/swt/tutorials.properties
+SHA1-Digest: KzD9PkAEIUKHMB95H+XTKCwE0yQ=
+
+Name: META-INF/eclipse.inf
+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=
+
+Name: themes/slate/graphics/icons/ctool/firststeps.png
+SHA1-Digest: Slw4nKX4xZvu6mCCFHsDWMjdIMw=
+
+Name: themes/circles/graphics/standby/wn_standbyhov.gif
+SHA1-Digest: NbMYb8Ka2D8DlnjzdS2qA6E8j9I=
+
+Name: .options
+SHA1-Digest: C+1XlDx3q4e5awMudzzcXc0+HR8=
+
+Name: themes/purpleMesh/graphics/icons/etool/whatsnew48sel.gif
+SHA1-Digest: 6aRXuEW+469og8tyzagdemjWMtU=
+
+Name: themes/slate/html/ltr.css
+SHA1-Digest: Yyu5meBpG9xZ0u7nPC5AeoUW/zw=
+
+Name: themes/shared/graphics/icons/ctool/arrow.gif
+SHA1-Digest: iyBS4QdZ6imHjGPw321lqh6SJSo=
+
+Name: themes/slate/graphics/rootpage/firststeps48_hov.png
+SHA1-Digest: u8839OydWVij9f/XScZyzGhsI+E=
+
+Name: themes/slate/graphics/icons/ctool/tutorials-select.gif
+SHA1-Digest: RyAwY/Ne3m1SyA/5nJImuJ3fKNg=
+
+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew16.png
+SHA1-Digest: h+KhHUY6Dp0Q8Jm2f2zIe/6WTlQ=
+
+Name: themes/purpleMesh/graphics/icons/ctool/home.gif
+SHA1-Digest: +dfHtXYrxLHjjn8I1hvSsiolVec=
+
+Name: themes/slate/graphics/icons/ctool/workbench.png
+SHA1-Digest: NvsOkAqCPAe7ectLZ6VMCYoWlAg=
+
+Name: themes/purpleMesh/graphics/icons/ctool/back.gif
+SHA1-Digest: /ee1AJtypM5HojkNnK17U+1toxw=
+
+Name: themes/purpleMesh/graphics/icons/etool/whatsnew72.gif
+SHA1-Digest: VVjmCJZSVuW19ir4QGPMhB7Npwk=
+
+Name: themes/purpleMesh/graphics/launchbar/samples.gif
+SHA1-Digest: f+tsB+8P19AEujlqYKaF47r+bRo=
+
+Name: plugin.properties
+SHA1-Digest: j9b4Qc2R4fauSPFwVkCuw/97RmY=
+
+Name: themes/slate/graphics/standby/mi_standbyhov.gif
+SHA1-Digest: HnHqLAS7Dn7UNF9Lvj7vq9+KBUc=
+
+Name: themes/slate/graphics/launchbar/overview16.png
+SHA1-Digest: F9E6l5MA7FwcZoftgNIyKpPuHIs=
+
+Name: themes/circles/preview.png
+SHA1-Digest: p2GDfi7EuI8iZYsSRdPhU6yn/tA=
+
+Name: themes/circles/graphics/icons/ctool/wr_nav_64.gif
+SHA1-Digest: yKH5q0AkPnPz33CwUnAawnSB37Y=
+
+Name: themes/circles/html/webresources.css
+SHA1-Digest: oJ2uN/Df/fQ9VVcHmmjDUenv7AM=
+
+Name: themes/circles/graphics/icons/ctool/workbench.gif
+SHA1-Digest: fXSnXQQliUHXuHkVtPEd48wAmU0=
+
+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc16.png
+SHA1-Digest: MKgOo3PUit3DrNfS3CNMBEiz7j0=
+
+Name: plugin.xml
+SHA1-Digest: HTH+0R6u0txmcBdMgUYHHxi5NA0=
+
+Name: themes/slate/graphics/icons/ctool/wb_nav.png
+SHA1-Digest: FH8HqOCtz5sLOSGSXLTuXtscYdw=
+
+Name: themes/slate/graphics/icons/ctool/fs_nav.png
+SHA1-Digest: 3F+Z798k2zAOQHXppBvRobdsVgY=
+
+Name: themes/slate/graphics/icons/ctool/tutorials.png
+SHA1-Digest: smC+kYLb5F/BlUJxXGb3OIkzMyA=
+
+Name: themes/slate/graphics/rootpage/webresources48.gif
+SHA1-Digest: Wkwu0trR5o4j216/eKGrLUXQgVQ=
+
+Name: themes/circles/swt/samples.properties
+SHA1-Digest: Ncf3sOn+P9/86/XoIn4hcq9icD4=
+
+Name: themes/purpleMesh/swt/overview.properties
+SHA1-Digest: 4XuXPT9lJyYZUd15XLQ2S2NY0Rs=
+
+Name: themes/slate/graphics/icons/ctool/wn_nav.png
+SHA1-Digest: d7McdCEtfxPQ+F5vlR38rVTvgXo=
+
+Name: themes/purpleMesh/html/whatsnew.css
+SHA1-Digest: a2kvguq57VvzsFpUWd3lNE8NhXk=
+
+Name: themes/slate/graphics/icons/ctool/wr_nav.png
+SHA1-Digest: RiRbJ01jNoAefHKxAe7htjgxNc8=
+
+Name: themes/circles/graphics/icons/ctool/firststeps.png
+SHA1-Digest: Slw4nKX4xZvu6mCCFHsDWMjdIMw=
+
+Name: themes/circles/graphics/icons/ctool/tutorials.gif
+SHA1-Digest: B3mR2l7PuKW4ohGN2+6MgQ0N4+E=
+
+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc48sel.gif
+SHA1-Digest: xolbR3GLHkwY40HpoCR7l2cvo8E=
+
+Name: themes/slate/graphics/rootpage/samples48.png
+SHA1-Digest: 0aBwYaDsSfDY9wFfyZYhgWauOts=
+
+Name: themes/slate/swt/webresources.properties
+SHA1-Digest: t5J8E7LadPCb0Nado0og3neqeP4=
+
+Name: themes/purpleMesh/html/samples.css
+SHA1-Digest: aV9FCYH/Y99OxfBo3a89dBVVb2w=
+
+Name: themes/slate/graphics/rootpage/workbench48.gif
+SHA1-Digest: bCEuWQrXaxDHRsdbV32vhZTaTAw=
+
+Name: themes/purpleMesh/graphics/icons/obj48/newhov_obj.gif
+SHA1-Digest: bYXzhCgIi1p/aDvaAoOBGIrBuKA=
+
+Name: themes/slate/graphics/icons/ctool/migrate-select.png
+SHA1-Digest: 4FsIwltnwRBT6zUU9ZhfqWqeCMg=
+
+Name: themes/purpleMesh/graphics/icons/dtool/forward.gif
+SHA1-Digest: /hIcNo6w11v+EpgTXgFX9a1bYwY=
+
+Name: themes/slate/graphics/rootpage/migrate48.png
+SHA1-Digest: fYUHrau4PFFvcGeeVKUmDXXFlzM=
+
+Name: introContent.xml
+SHA1-Digest: oBGOdDNVJDRhzWJduBCcMgybxlg=
+
+Name: themes/purpleMesh/graphics/icons/ctool/samples16.png
+SHA1-Digest: +A2GGC4SIIC5T7Tlg4U4Z0UqIVQ=
+
+Name: themes/shared/graphics/icons/ctool/widget_open_hov.gif
+SHA1-Digest: MmG5r1m7Bt3SovQedHnqx/yef6c=
+
+Name: themes/slate/graphics/standby/ov_standbyhov.gif
+SHA1-Digest: S4jMdmDN03X8/YD+TgHYLJTrQ1k=
+
+Name: themes/slate/graphics/rootpage/root_banner_logo.jpg
+SHA1-Digest: /CP6QAhd0edNjnbONqlngQnllMA=
+
+Name: themes/purpleMesh/graphics/icons/etool/firsteps48sel.gif
+SHA1-Digest: uOZ5e0VrbpuNNVW7lRzqZfCtTW4=
+
+Name: themes/purpleMesh/swt/firststeps.properties
+SHA1-Digest: aASynB9pAU45n6Ybk1G/NcO1fdI=
+
+Name: themes/slate/graphics/rootpage/tutorials48_hov.gif
+SHA1-Digest: 4SvJnMqRTwJ+zIoB8cQR38SSd24=
+
+Name: themes/slate/graphics/rootpage/firststeps48.png
+SHA1-Digest: 5Mnj5NHzv8W/LV+9YDC5mHVlj9A=
+
+Name: themes/circles/graphics/launchbar/whatsnew16.png
+SHA1-Digest: h+KhHUY6Dp0Q8Jm2f2zIe/6WTlQ=
+
+Name: themes/purpleMesh/swt/migrate.properties
+SHA1-Digest: cE6O/0BBstAtfvzhz8YejE5SX8Q=
+
+Name: themes/circles/graphics/icons/ctool/root_bottomhov.gif
+SHA1-Digest: iwXyduiJRV5Bdtz/1NQf51QxyqU=
+
+Name: themes/purpleMesh/graphics/launchbar/migrate16.png
+SHA1-Digest: cdjjFVkozz0y9ji+FpASYhOALwk=
+
+Name: themes/purpleMesh/html/font-relative.css
+SHA1-Digest: PqZAKDAg+G3+bdo7roEyD1vX+6Y=
+
+Name: themes/circles/graphics/icons/ctool/wb_nav_hover.gif
+SHA1-Digest: D42boB3rk+XDSbYZH5AZmnsKB4A=
+
+Name: themes/purpleMesh/graphics/icons/ctool/migrate16.png
+SHA1-Digest: cdjjFVkozz0y9ji+FpASYhOALwk=
+
+Name: themes/slate/graphics/rootpage/migrate48_hov.gif
+SHA1-Digest: cLdOTCmvcsdeG2+P5GWUtX33mwc=
+
+Name: themes/purpleMesh/graphics/icons/etool/tutorials48sel.gif
+SHA1-Digest: jc00LK6MGDAAaGfP4M5RyJXGuQE=
+
+Name: themes/slate/graphics/icons/ctool/whatsnew-select.png
+SHA1-Digest: h1ALltqSjS2PyFiadyhunaVj0Rc=
+
+Name: themes/circles/graphics/icons/ctool/ov_nav.png
+SHA1-Digest: KtxMxu+ASHojP1pS3ir3RurjNk8=
+
+Name: themes/purpleMesh/graphics/icons/etool/overview48sel.gif
+SHA1-Digest: OKGFb61YvHR3BUEWxZMRoOrDc0U=
+
+Name: themes/shared/graphics/contentpage/wr-mi_med.gif
+SHA1-Digest: sMBntAOuQRZ4SVT9n0EUumCXqio=
+
+Name: themes/slate/graphics/standby/tu_standbyhov.gif
+SHA1-Digest: sWxT9jjy1CbwVqXWKiMSMRgDs8I=
+
+Name: themes/circles/graphics/icons/ctool/wr_nav_hover.gif
+SHA1-Digest: PqoCgMnPYQAZ5Sh//KRwq3GiElY=
+
+Name: themes/slate/graphics/launchbar/firststeps16.png
+SHA1-Digest: Xi6gTgcM86DWgA6hyPn8mRMRwE0=
+
+Name: themes/purpleMesh/html/overview.css
+SHA1-Digest: y0DWH504MPKylYGmOgVS5qb3pB0=
+
+Name: themes/slate/graphics/standby/ov_standby.gif
+SHA1-Digest: HunoPS0cid3oVEr1sZr/zorOhSo=
+
+Name: themes/circles/html/tutorials.css
+SHA1-Digest: w/Jtk6Bi+30x/49Z8c/2RbISOTk=
+
+Name: themes/circles/graphics/rootpage/welcomebckgrd.jpg
+SHA1-Digest: RsjLJW93PHvXmiEpV1h7Z7/PmG0=
+
+Name: themes/purpleMesh/html/rtl.css
+SHA1-Digest: 2B29TxTe/FduV6aD5p0J9bAq9Vw=
+
+Name: themes/purpleMesh/graphics/icons/ctool/firsteps48.gif
+SHA1-Digest: +i2ExoEMVgv5OsKcPs/8ZqldrV4=
+
+Name: themes/slate/graphics/icons/ctool/sa_nav.png
+SHA1-Digest: uXMdf9iE7j6nm8Kb+4XilPOc3KQ=
+
+Name: themes/circles/graphics/icons/ctool/samples_tophov.gif
+SHA1-Digest: 9fSubIMcSGRm6kHstxpp/hWR2MY=
+
+Name: themes/circles/graphics/icons/ctool/whatsnew_tophov.gif
+SHA1-Digest: Dz4B6J4zj82LLZHLRDUGJ5zhaa8=
+
+Name: themes/circles/graphics/icons/ctool/webresources.gif
+SHA1-Digest: XXqmYcqNJAe+O7jDcR2IF01wCvI=
+
+Name: themes/circles/graphics/icons/ctool/ov_nav_rightedgehov.gif
+SHA1-Digest: +ldcPGuLxaDCtgM9cCVBp834H6w=
+
+Name: themes/purpleMesh/graphics/icons/etool/tutorials48.gif
+SHA1-Digest: fxo+8hPJ1SxRJQpke2wKEXdASIA=
+
+Name: .api_description
+SHA1-Digest: aEjIyLX/qavVSW+KUVFCWyFNqno=
+
+Name: themes/shared/graphics/contentpage/ov_high.gif
+SHA1-Digest: IKGW38eYO7vaBoKhdiw7GpIAKBk=
+
+Name: themes/circles/graphics/icons/ctool/ov_nav_32.gif
+SHA1-Digest: mK2utAnQW2MhbJurFHYi5qKZ1vE=
+
+Name: themes/slate/swt/samples.properties
+SHA1-Digest: Lk9VkvX9y75vbaIYZjTwpe3vlc8=
+
+Name: themes/circles/graphics/icons/ctool/tu_nav_64.gif
+SHA1-Digest: L64ZAN2mr8wKAPAY0pRqPrEZgp0=
+
+Name: themes/slate/graphics/icons/ctool/overview-select.gif
+SHA1-Digest: rDatrh5+RWGgBQOsdxqZlA4w2Zc=
+
+Name: themes/shared/graphics/icons/ctool/widget_closed.gif
+SHA1-Digest: Ce25KultCG+5fRN3Er6QposVUqQ=
+
+Name: themes/slate/graphics/standby/fs_standbyhov.gif
+SHA1-Digest: j3OetXMY7tyEtqQChTtohOIDzgk=
+
+Name: themes/slate/graphics/icons/ctool/wr_nav_32.gif
+SHA1-Digest: TdYmSHa2YYmdttUqBg/bnvUwPFU=
+
+Name: themes/circles/graphics/standby/wb_standby.gif
+SHA1-Digest: iYWACoN3sIlFFpx6p5DfMjT8yp4=
+
+Name: themes/shared/graphics/icons/ctool/widget_closed_hov.gif
+SHA1-Digest: RdXAhCz407pCYDiqC38P0Uup5Lk=
+
+Name: themes/slate/graphics/rootpage/whatsnew48.png
+SHA1-Digest: XqPtN6ePY9fMqiYf413JSqumPYM=
+
+Name: themes/circles/graphics/icons/ctool/samples.png
+SHA1-Digest: mUEIQ9eqMWNIQEiNPyGfsplQZTY=
+
+Name: themes/circles/graphics/icons/ctool/whatsnew.png
+SHA1-Digest: 7yax9xdOrPlNoCNBqEo0D2Wn98A=
+
+Name: themes/slate/graphics/icons/ctool/samples-select.gif
+SHA1-Digest: 2jcUxYNETQZSndqWOTWNrNjZr3M=
+
+Name: themes/slate/graphics/rootpage/overview48.gif
+SHA1-Digest: HJKThR/+8xlKkV/iwAnJoKIBEjc=
+
+Name: themes/circles/graphics/contentpage/wr_banner.jpg
+SHA1-Digest: lMNC8ZRpqVeAjGGom/2FCfIla0I=
+
+Name: themes/slate/graphics/standby/mi_standby.gif
+SHA1-Digest: 5hYhaXir5S3NKycOObVKVsAr09E=
+
+Name: themes/slate/swt/firststeps.properties
+SHA1-Digest: XEd5LUGfrXm+Fi2Pm2Sxabb+o2Q=
+
+Name: themes/slate/graphics/icons/ctool/samples.png
+SHA1-Digest: mUEIQ9eqMWNIQEiNPyGfsplQZTY=
+
+Name: themes/circles/graphics/standby/wr_standby.gif
+SHA1-Digest: xduVT3RSYRMM5sYjyQAjf+Jf17I=
+
+Name: themes/slate/graphics/rootpage/workbench48_hov.gif
+SHA1-Digest: Y2ot6r+86mWEmot6dSbW7qBXxrA=
+
+Name: themes/slate/graphics/contentpage/wn_banner.jpg
+SHA1-Digest: B7PqiMv+1kh2aQSblUfgzqJY+vc=
+
+Name: themes/circles/graphics/launchbar/firststeps16.png
+SHA1-Digest: Xi6gTgcM86DWgA6hyPn8mRMRwE0=
+
+Name: themes/purpleMesh/html/migrate.css
+SHA1-Digest: QWGn8isbJ0z51DThM2DY0vmiUQY=
+
+Name: themes/purpleMesh/graphics/icons/ctool/overview48.gif
+SHA1-Digest: p166YKsHvy7lDhFvTVC+MWHEPNI=
+
+Name: themes/purpleMesh/html/standby.css
+SHA1-Digest: YImivxRli186nUOikfJNfRQ9heg=
+
+Name: icons/full/obj16/extension_obj.gif
+SHA1-Digest: Z2OZk1zGHkMoKUiUg4yQs9yLbG0=
+
+Name: themes/purpleMesh/graphics/icons/etool/wb48.gif
+SHA1-Digest: hUPACtH5KYkHcJaBMckWNa6Rp0Y=
+
+Name: themes/slate/graphics/rootpage/whatsnew48_hov.gif
+SHA1-Digest: 2irx38fThjn95Bc5TeX4Nz2l1eM=
+
+Name: themes/slate/graphics/standby/wr_standbyhov.gif
+SHA1-Digest: 1rq4e0czEMOde7HG8ZUK1yqzD88=
+
+Name: themes/slate/graphics/contentpage/mi_banner.jpg
+SHA1-Digest: BmFPKdVlhpqtGVVuiBAEfsWiDJc=
+
+Name: themes/circles/graphics/icons/ctool/nav_midhov.gif
+SHA1-Digest: UzxXgA/8cTju4cty8vMKKxHvc4k=
+
+Name: themes/circles/graphics/icons/ctool/sa_onesample48.gif
+SHA1-Digest: SgTfSJwJOJRFZ/IcEX2QPiygsNc=
+
+Name: themes/purpleMesh/html/root.css
+SHA1-Digest: L5Tx+BMdeBiODngBKJUu+AAVctw=
+
+Name: themes/slate/graphics/contentpage/sa_banner.jpg
+SHA1-Digest: Ug2BpLsYYBUgSQ7NunyprrBNUl0=
+
+Name: themes/circles/html/samples.css
+SHA1-Digest: i1NavsbJM5qrz/TuG8KCHYInrGw=
+
+Name: themes/circles/graphics/icons/ctool/arrow_rtl.gif
+SHA1-Digest: lbqBjzMYJPrTr2480naQFU3Ctkw=
+
+Name: themes/purpleMesh/graphics/icons/ctool/samples48sel.gif
+SHA1-Digest: oN1vH4wGhKWwoMcHmyoj58c+wv4=
+
+Name: themes/purpleMesh/graphics/contentpage/section4.gif
+SHA1-Digest: G6k7Z/zfXfLy9LtPLbb9QOw8ocE=
+
+Name: themes/slate/graphics/rootpage/webresources48_hov.png
+SHA1-Digest: uQSI5dNR5WKXZqCPYNBXOwlAero=
+
+Name: themes/slate/html/samples.css
+SHA1-Digest: MQjp+/7X99His50rasEJD96/e7k=
+
+Name: themes/slate/graphics/standby/sa_standbyhov.gif
+SHA1-Digest: R1KR8mlM3qFlzVMir6EJcoAJ6lE=
+
+Name: themes/purpleMesh/swt/root.properties
+SHA1-Digest: kzz0orYVHgZJ1gxM+EZQxlbiK6k=
+
+Name: themes/slate/graphics/contentpage/fs_banner.jpg
+SHA1-Digest: pKMXP4ayqEGlW6vkG4+uUzK8KOY=
+
+Name: themes/purpleMesh/graphics/icons/obj48/new_obj.gif
+SHA1-Digest: Y/Bwx578bV6kzFqO2dx3H9gJtTo=
+
+Name: themes/circles/graphics/launchbar/samples16.png
+SHA1-Digest: +A2GGC4SIIC5T7Tlg4U4Z0UqIVQ=
+
+Name: themes/shared/graphics/contentpage/wr-mi_high.gif
+SHA1-Digest: 2RQtHiwrJLvAsbE+LgDUgDBAREk=
+
+Name: themes/circles/graphics/icons/ctool/overview.png
+SHA1-Digest: eXxwilTaGiognsDmKoSJ3ZwT7FU=
+
+Name: themes/slate/graphics/launchbar/samples16.png
+SHA1-Digest: +A2GGC4SIIC5T7Tlg4U4Z0UqIVQ=
+
+Name: themes/purpleMesh/graphics/contentpage/tutorials_wtr.jpg
+SHA1-Digest: crA+sbMxuv6QOQml9WDHmcSYGcE=
+
+Name: universal.jar
+SHA1-Digest: jr+MZWA89AGisRFIF165u4g8kbE=
+
+Name: themes/slate/graphics/icons/ctool/webresources.png
+SHA1-Digest: 0sKVVhl4zyGuSQxxs1pyupEqEro=
+
+Name: themes/slate/graphics/rootpage/tutorials48.png
+SHA1-Digest: yKtB0uZVtrJ+JoR2z0YAYQ5W3sA=
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/eclipse.inf b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/about.html b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/about.html
new file mode 100644
index 0000000..4602330
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/about.html
@@ -0,0 +1,28 @@
+
+
+
+
+About
+
+
+
About This Content
+
+
June 2, 2006
+
License
+
+
The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise
+indicated below, the Content is provided to you under the terms and conditions of the
+Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available
+at http://www.eclipse.org/legal/epl-v10.html.
+For purposes of the EPL, "Program" will mean the Content.
+
+
If you did not receive this Content directly from the Eclipse Foundation, the Content is
+being redistributed by another party ("Redistributor") and different terms and conditions may
+apply to your use of any object code in the Content. Check the Redistributor's license that was
+provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise
+indicated below, the terms and conditions of the EPL still apply to any source code in the Content
+and such source code may be obtained at http://www.eclipse.org.
+
+
+
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/elcl16/configure.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/elcl16/configure.gif
new file mode 100644
index 0000000..13102f6
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/elcl16/configure.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/extension_obj.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/extension_obj.gif
new file mode 100644
index 0000000..7f3f595
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/extension_obj.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/icallout_obj.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/icallout_obj.gif
new file mode 100644
index 0000000..f52d86a
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/icallout_obj.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/ihigh_obj.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/ihigh_obj.gif
new file mode 100644
index 0000000..f99bdc3
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/ihigh_obj.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/ilow_obj.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/ilow_obj.gif
new file mode 100644
index 0000000..a6815bc
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/ilow_obj.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/image_obj.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/image_obj.gif
new file mode 100644
index 0000000..830be0e
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/image_obj.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/inew_obj.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/inew_obj.gif
new file mode 100644
index 0000000..b1526e9
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/inew_obj.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/welcome16.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/welcome16.gif
new file mode 100644
index 0000000..b20cc78
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/welcome16.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/introContent.xml b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/introContent.xml
new file mode 100644
index 0000000..77066b7
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/introContent.xml
@@ -0,0 +1,270 @@
+
+
+
+
+
+
+
+
+ $introTitle$
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $introTitle$
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $introTitle$
+
+
+
+
+
+
+
+ Go to the workbench
+
+
+
+
+
+
+
+ Overview
+ $introDescription-overview$
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $introTitle$
+
+
+
+
+
+
+ Go to the workbench
+
+
+
+
+
+
+ Tutorials
+ $introDescription-tutorials$
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $introTitle$
+
+
+
+
+
+
+ Go to the workbench
+
+
+
+
+
+
+ Samples
+ $introDescription-samples$
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $introTitle$
+
+
+
+
+
+
+ Go to the workbench
+
+
+
+
+
+
+ What's New
+ $introDescription-whatsnew$
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $introTitle$
+
+
+
+
+
+
+ Go to the workbench
+
+
+
+
+
+
+ First Steps
+ $introDescription-firststeps$
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $introTitle$
+
+
+
+
+
+
+ Go to the workbench
+
+
+
+
+
+
+ Web Resources
+ $introDescription-webresources$
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $introTitle$
+
+
+
+
+
+
+ Go to the workbench
+
+
+
+
+
+
+ Migrate
+ $introDescription-migrate$
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/plugin.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/plugin.properties
new file mode 100644
index 0000000..c4efcb7
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/plugin.properties
@@ -0,0 +1,21 @@
+###############################################################################
+# Copyright (c) 2000, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+# ==============================================
+# Universal Welcome plugin.xml properties file
+# ==============================================
+
+plugin_name = Universal Welcome
+provider_name = Eclipse.org
+
+theme.name.circles = Circles
+theme.name.purpleMesh = Purple Mesh (Classic Eclipse)
+theme.name.slate = Slate
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/plugin.xml b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/plugin.xml
new file mode 100644
index 0000000..e9f8e1d
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/plugin.xml
@@ -0,0 +1,247 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/fs_banner.jpg b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/fs_banner.jpg
new file mode 100644
index 0000000..5b6c738
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/fs_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/mi_banner.jpg b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/mi_banner.jpg
new file mode 100644
index 0000000..5fb63c5
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/mi_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/ov_banner.jpg b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/ov_banner.jpg
new file mode 100644
index 0000000..9b963cb
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/ov_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/sa_banner.jpg b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/sa_banner.jpg
new file mode 100644
index 0000000..3eff0a5
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/sa_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/tu_banner.jpg b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/tu_banner.jpg
new file mode 100644
index 0000000..cc6bae7
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/tu_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/wn_banner.jpg b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/wn_banner.jpg
new file mode 100644
index 0000000..ab13b22
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/wn_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/wr_banner.jpg b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/wr_banner.jpg
new file mode 100644
index 0000000..de17898
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/wr_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/arrow_rtl.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/arrow_rtl.gif
new file mode 100644
index 0000000..d7bb424
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/arrow_rtl.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/content_nav_bar.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/content_nav_bar.gif
new file mode 100644
index 0000000..86ebb16
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/content_nav_bar.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/cpt_bottomhov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/cpt_bottomhov.gif
new file mode 100644
index 0000000..13df2dc
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/cpt_bottomhov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/cpt_midhov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/cpt_midhov.gif
new file mode 100644
index 0000000..1467458
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/cpt_midhov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps.gif
new file mode 100644
index 0000000..f6dd773
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps.png
new file mode 100644
index 0000000..eccc757
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps_tophov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps_tophov.gif
new file mode 100644
index 0000000..9745892
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps_tophov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav.png
new file mode 100644
index 0000000..99eb592
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_32.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_32.gif
new file mode 100644
index 0000000..84885b5
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_64.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_64.gif
new file mode 100644
index 0000000..c410b0d
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_64.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_hover.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_hover.gif
new file mode 100644
index 0000000..182ed76
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_hover.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav.png
new file mode 100644
index 0000000..5434708
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_32.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_32.gif
new file mode 100644
index 0000000..d49d950
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_64.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_64.gif
new file mode 100644
index 0000000..9bf4493
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_64.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_hover.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_hover.gif
new file mode 100644
index 0000000..257fd4b
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_hover.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate.gif
new file mode 100644
index 0000000..f082b35
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate.png
new file mode 100644
index 0000000..07fea1d
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate_tophov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate_tophov.gif
new file mode 100644
index 0000000..5c95055
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate_tophov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/nav_midhov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/nav_midhov.gif
new file mode 100644
index 0000000..d2a082f
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/nav_midhov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/nav_rightedgehov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/nav_rightedgehov.gif
new file mode 100644
index 0000000..2f53c5c
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/nav_rightedgehov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav.png
new file mode 100644
index 0000000..709f69a
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_32.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_32.gif
new file mode 100644
index 0000000..2ff3933
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_64.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_64.gif
new file mode 100644
index 0000000..7198903
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_64.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_hover.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_hover.gif
new file mode 100644
index 0000000..72dc200
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_hover.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_midhov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_midhov.gif
new file mode 100644
index 0000000..85e8183
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_midhov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_rightedgehov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_rightedgehov.gif
new file mode 100644
index 0000000..5d75a71
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_rightedgehov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview.gif
new file mode 100644
index 0000000..daed6c0
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview.png
new file mode 100644
index 0000000..a60034c
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_bottomhov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_bottomhov.gif
new file mode 100644
index 0000000..255e924
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_bottomhov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_midhov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_midhov.gif
new file mode 100644
index 0000000..710d015
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_midhov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_tophov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_tophov.gif
new file mode 100644
index 0000000..af9144a
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_tophov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_bottomhov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_bottomhov.gif
new file mode 100644
index 0000000..cea4511
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_bottomhov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_midhov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_midhov.gif
new file mode 100644
index 0000000..30288f9
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_midhov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_midhov2.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_midhov2.gif
new file mode 100644
index 0000000..83f17fc
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_midhov2.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav.png
new file mode 100644
index 0000000..9871b72
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_32.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_32.gif
new file mode 100644
index 0000000..ffbe90e
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_64.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_64.gif
new file mode 100644
index 0000000..db4ffac
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_64.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_hover.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_hover.gif
new file mode 100644
index 0000000..6922f96
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_hover.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_onesample48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_onesample48.gif
new file mode 100644
index 0000000..e65c123
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_onesample48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples.gif
new file mode 100644
index 0000000..622983c
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples.png
new file mode 100644
index 0000000..cb3db1d
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples_tophov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples_tophov.gif
new file mode 100644
index 0000000..ede103c
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples_tophov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav.png
new file mode 100644
index 0000000..ce589ab
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_32.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_32.gif
new file mode 100644
index 0000000..77a3421
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_64.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_64.gif
new file mode 100644
index 0000000..45d2ff1
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_64.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_hover.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_hover.gif
new file mode 100644
index 0000000..c3e79ab
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_hover.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials.gif
new file mode 100644
index 0000000..aae93e5
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials.png
new file mode 100644
index 0000000..e40a823
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials_tophov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials_tophov.gif
new file mode 100644
index 0000000..dcb76e5
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials_tophov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav.png
new file mode 100644
index 0000000..0621c3c
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav_32.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav_32.gif
new file mode 100644
index 0000000..8161cfc
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav_hover.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav_hover.gif
new file mode 100644
index 0000000..96afba7
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav_hover.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources.gif
new file mode 100644
index 0000000..230a502
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources.png
new file mode 100644
index 0000000..1a876dc
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources_tophov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources_tophov.gif
new file mode 100644
index 0000000..ea8713c
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources_tophov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew.gif
new file mode 100644
index 0000000..29dfe28
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew.png
new file mode 100644
index 0000000..a10dd3d
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew_tophov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew_tophov.gif
new file mode 100644
index 0000000..bfd58dc
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew_tophov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav.png
new file mode 100644
index 0000000..47ecb7c
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_32.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_32.gif
new file mode 100644
index 0000000..ce9c743
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_64.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_64.gif
new file mode 100644
index 0000000..6a545cc
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_64.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_hover.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_hover.gif
new file mode 100644
index 0000000..a2eb9a2
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_hover.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench.gif
new file mode 100644
index 0000000..ea3d603
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench.png
new file mode 100644
index 0000000..868f3ab
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_bottomhov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_bottomhov.gif
new file mode 100644
index 0000000..d347a1d
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_bottomhov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_midhov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_midhov.gif
new file mode 100644
index 0000000..ee5d6af
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_midhov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_tophov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_tophov.gif
new file mode 100644
index 0000000..443a433
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_tophov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav.png
new file mode 100644
index 0000000..00d3056
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_32.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_32.gif
new file mode 100644
index 0000000..a741e2f
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_64.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_64.gif
new file mode 100644
index 0000000..fab4a28
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_64.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_hover.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_hover.gif
new file mode 100644
index 0000000..7908508
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_hover.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/obj48/new_obj.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/obj48/new_obj.gif
new file mode 100644
index 0000000..f46b81b
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/obj48/new_obj.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/obj48/newhov_obj.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/obj48/newhov_obj.gif
new file mode 100644
index 0000000..593e63b
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/obj48/newhov_obj.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/firststeps16.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/firststeps16.png
new file mode 100644
index 0000000..4c15c82
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/firststeps16.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/migrate16.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/migrate16.png
new file mode 100644
index 0000000..3fc8414
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/migrate16.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/overview16.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/overview16.png
new file mode 100644
index 0000000..b2e977f
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/overview16.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/samples16.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/samples16.png
new file mode 100644
index 0000000..fdff5dd
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/samples16.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/tutorials16.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/tutorials16.png
new file mode 100644
index 0000000..f2d688f
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/tutorials16.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/webresources16.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/webresources16.png
new file mode 100644
index 0000000..b847caa
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/webresources16.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/whatsnew16.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/whatsnew16.png
new file mode 100644
index 0000000..5294b17
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/whatsnew16.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/rootpage/welcomebckgrd.jpg.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/rootpage/welcomebckgrd.jpg.REMOVED.git-id
new file mode 100644
index 0000000..980c2d2
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/rootpage/welcomebckgrd.jpg.REMOVED.git-id
@@ -0,0 +1 @@
+12a3c9400fe9ed6230527ce3f7e6ff6f441fadd8
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/fs_standby.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/fs_standby.gif
new file mode 100644
index 0000000..aac6d6b
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/fs_standby.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/fs_standbyhov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/fs_standbyhov.gif
new file mode 100644
index 0000000..eded4ff
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/fs_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/mi_standby.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/mi_standby.gif
new file mode 100644
index 0000000..34b8963
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/mi_standby.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/mi_standbyhov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/mi_standbyhov.gif
new file mode 100644
index 0000000..08c4479
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/mi_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/ov_standby.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/ov_standby.gif
new file mode 100644
index 0000000..bfcf7b2
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/ov_standby.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/ov_standbyhov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/ov_standbyhov.gif
new file mode 100644
index 0000000..11e7892
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/ov_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/sa_standby.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/sa_standby.gif
new file mode 100644
index 0000000..a18a047
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/sa_standby.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/sa_standbyhov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/sa_standbyhov.gif
new file mode 100644
index 0000000..2063d8a
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/sa_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/tu_standby.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/tu_standby.gif
new file mode 100644
index 0000000..75baabf
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/tu_standby.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/tu_standbyhov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/tu_standbyhov.gif
new file mode 100644
index 0000000..82b758f
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/tu_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wb_standby.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wb_standby.gif
new file mode 100644
index 0000000..5037784
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wb_standby.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wb_standbyhov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wb_standbyhov.gif
new file mode 100644
index 0000000..d3be575
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wb_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wn_standby.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wn_standby.gif
new file mode 100644
index 0000000..77c7912
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wn_standby.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wn_standbyhov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wn_standbyhov.gif
new file mode 100644
index 0000000..2867f15
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wn_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wr_standby.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wr_standby.gif
new file mode 100644
index 0000000..cb4fa47
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wr_standby.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wr_standbyhov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wr_standbyhov.gif
new file mode 100644
index 0000000..00b4231
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wr_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/firststeps.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/firststeps.css
new file mode 100644
index 0000000..15f2dfc
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/firststeps.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* show the "selected" image for this page */
+#navigation-links a#firststeps img,
+#navigation-links a#firststeps:hover img,
+#navigation-links a#firststeps:focus img,
+#navigation-links a#firststeps:active img {
+ background-image : url(../graphics/icons/ctool/fs_nav_64.gif);
+ top : 2px;
+ left : -3px;
+}
+
+#navigation-links {
+ background-image: url(../graphics/contentpage/fs_banner.jpg);
+}
+
+#navigation-links a:hover#firststeps .link-label,
+#navigation-links a:focus#firststeps .link-label,
+#navigation-links a:active#firststeps .link-label {
+ display : none;
+}
+
+#navigation-links a:hover#firststeps,
+#navigation-links a:focus#firststeps,
+#navigation-links a:active#firststeps {
+ background-image : none;
+}
+
+#navigation-links a:hover#firststeps .link-extra-div,
+#navigation-links a:focus#firststeps .link-extra-div,
+#navigation-links a:active#firststeps .link-extra-div {
+ display: none;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/font-absolute.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/font-absolute.css
new file mode 100644
index 0000000..e610e26
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/font-absolute.css
@@ -0,0 +1,118 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+ font-size : 10pt;
+}
+
+/*
+ * We are not using titles in this theme.
+ */
+.intro-header {
+ display : none;
+}
+
+h2 {
+ font-size : 13pt;
+}
+
+/* For regular div labels */
+H4 .div-label {
+ font-size: 10pt;
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+ font-size: 23pt;
+}
+
+
+/* Page description if the page has it. */
+.page-description {
+ font-size: 10pt;
+}
+
+/* General link labels */
+a .link-label {
+ font-size : 10pt;
+}
+
+/* Floating link labels for navigation links */
+#navigation-links a .link-label {
+ font-size : 8pt;
+}
+
+/* Text in links. */
+a .text {
+ font-size : 8pt;
+}
+
+p .group-description {
+ font-size : 10pt;
+}
+
+.content-link .link-label {
+ font-size: 11pt;
+}
+
+.content-link .text {
+ font-size: 10pt;
+}
+
+.categoryContentnav {
+ font-size:10pt;
+}
+
+.contentpgNavhover {
+ font-size: 8pt;
+}
+
+.topicList {
+ font-size:8pt;
+}
+
+/*
+ * Root page settings
+ */
+#root .intro-header H1 {
+ font-size : 18pt;
+}
+
+/* Link label properties */
+#root #page-links a .link-label {
+ font-size : 12.5pt;
+}
+
+/* Link description properties */
+#root #page-links a p .text {
+ font-size : 11pt;
+}
+
+#root #page-links a:hover .link-extra-div {
+ font-size : 13pt;
+}
+
+/*
+ * Standby page settings
+ */
+
+#standby .intro-header H1 {
+ font-size : 15pt;
+}
+
+#standby #page-links a .link-label, #action-links a .link-label {
+ font-size : 10pt;
+}
+
+#standby #page-links a p .text, #action-links a p .text {
+ font-size : 10pt;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/font-relative.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/font-relative.css
new file mode 100644
index 0000000..af2383e
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/font-relative.css
@@ -0,0 +1,126 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * Font sizes for the circles theme
+ */
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+ font-size : 100%;
+}
+
+h2 {
+ font-size : 120%;
+}
+
+/* For regular div labels */
+H4 .div-label {
+ font-size: 120%;
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+ font-size: 240%;
+}
+
+
+/* Page description if the page has it. */
+.page-description {
+ font-size: 100%;
+}
+
+/* General link labels */
+a .link-label {
+ //font-size : 10pt;
+}
+
+/* Floating link labels for navigation links */
+#navigation-links a .link-label {
+ font-size : 8pt;
+}
+
+/* Text in links. */
+a .text {
+ font-size : 90%;
+}
+
+p .group-description {
+ font-size : 100%;
+}
+
+.content-link .link-label {
+ font-size: 120%;
+}
+
+.content-link .text {
+ font-size: 100%;
+}
+
+.categoryContentnav {
+ //font-size:10pt;
+}
+
+.contentpgNavhover {
+ font-size: 8pt;
+}
+
+.topicList, .rss-feed-link {
+ font-size:90%;
+}
+
+/* Link label properties */
+#root #page-links a .link-label {
+ font-size : 110%;
+}
+
+#root #page-links a:active .link-label,
+#root #page-links a:focus .link-label,
+#root #page-links a:hover .link-label {
+ font-size : 12.5pt;
+}
+
+/* Link description properties */
+#root #page-links a p .text {
+ font-size : 11pt;
+}
+
+#root #page-links a:hover .link-extra-div {
+ font-size : 13pt;
+}
+
+#root .intro-header {
+ display : inline;
+}
+
+#root .intro-header h1 {
+ color : white;
+ //padding-top : 10px;
+ margin-top : 10px;
+ margin-left : 20px;
+ font-size : 150%;
+}
+
+/*
+ * Standby page settings
+ */
+
+#standby .intro-header H1 {
+ font-size : 150%;
+}
+
+#standby #page-links a .link-label, #standby #action-links a .link-label {
+ font-size : 100%;
+}
+
+#standby #page-links a p .text, #standby #action-links a p .text {
+ font-size : 100%;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/ltr.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/ltr.css
new file mode 100644
index 0000000..57586c8
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/ltr.css
@@ -0,0 +1,19 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * This file contains styles that are specific to left to right display
+ */
+
+body {
+ direction: ltr;
+}
+
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/migrate.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/migrate.css
new file mode 100644
index 0000000..cd34954
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/migrate.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* show the "selected" image for this page */
+#navigation-links a#migrate img,
+#navigation-links a#migrate:hover img,
+#navigation-links a#migrate:focus img,
+#navigation-links a#migrate:active img {
+ background-image : url(../graphics/icons/ctool/mi_nav_64.gif);
+ top : 2px;
+ left : -3px;
+}
+
+#navigation-links {
+ background-image: url(../graphics/contentpage/mi_banner.jpg);
+}
+
+#navigation-links a:hover#migrate .link-label,
+#navigation-links a:focus#migrate .link-label,
+#navigation-links a:active#migrate .link-label {
+ display : none;
+}
+
+#navigation-links a:hover#migrate,
+#navigation-links a:focus#migrate,
+#navigation-links a:active#migrate {
+ background-image : none;
+}
+
+#navigation-links a:hover#migrate .link-extra-div,
+#navigation-links a:focus#migrate .link-extra-div,
+#navigation-links a:active#migrate .link-extra-div {
+ background-image : none;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/overview.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/overview.css
new file mode 100644
index 0000000..7bc18ce
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/overview.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* show the "selected" image for this page */
+#navigation-links a#overview img,
+#navigation-links a#overview:hover img,
+#navigation-links a#overview:focus img,
+#navigation-links a#overview:active img {
+ background-image : url(../graphics/icons/ctool/ov_nav_64.gif);
+ top : 2px;
+ left : -3px;
+}
+
+#navigation-links {
+ background-image: url(../graphics/contentpage/ov_banner.jpg);
+}
+
+#navigation-links a:hover#overview .link-label,
+#navigation-links a:focus#overview .link-label,
+#navigation-links a:active#overview .link-label {
+ display : none;
+}
+
+#navigation-links a:hover#overview,
+#navigation-links a:focus#overview,
+#navigation-links a:active#overview {
+ background-image : none;
+}
+
+#navigation-links a:hover#overview .link-extra-div,
+#navigation-links a:focus#overview .link-extra-div,
+#navigation-links a:active#overview .link-extra-div {
+ display: none;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/root.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/root.css
new file mode 100644
index 0000000..8697080
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/root.css
@@ -0,0 +1,382 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* Hide the extra div for links in the normal state. */
+a .link-extra-div {
+ display: none;
+}
+
+/* Link label properties */
+#page-links a .link-label {
+ margin-left: 7px;
+ position: relative;
+ top: -1.2em;
font-weight : 600;
+ margin-left : 13px;
+ padding-left: 10px;
+ padding-right: 10px;
+ margin-bottom: -1.2pm;
+ color : white;
+}
+
+#page-links a:active .link-label,
+#page-links a:focus .link-label,
+#page-links a:hover .link-label {
+ background-image: url("../graphics/icons/ctool/root_midhov2.gif");
+ background-repeat: repeat-y;
+ color : black;
+}
+
+#page-links a#overview .link-label {
+ margin-left: 15px;
+ margin-top: -50px;
+ padding-left: 20px;
+}
+
+#page-links a:active#overview .link-label,
+#page-links a:focus#overview .link-label,
+#page-links a:hover#overview .link-label {
+ padding-left: 10px;
+ margin-top: 0px;
+}
+
+#page-links a#workbench .link-label {
+ padding-left: 10px;
+ margin-left: 0px;
+}
+
+/* Necessary for hover text to align in rtl mode */
+#page-links a {
+ direction: ltr;
+}
+
+/* Link description properties */
+#page-links a p .text {
+ margin-left: 3px;
+ position: relative;
+ top: -1.6em;
+ padding-top: 5px;
+ padding-left: 9px;
+ padding-right: 10px;
+ margin-bottom: -1.6em;
font-weight : 500;
+ padding-bottom: 5px;
+ background-image: url("../graphics/icons/ctool/root_midhov2.gif");
+ background-repeat: repeat-y;
+}
+
+#page-links a#overview p .text {
+ margin-left: 5px;
+}
+
+#page-links a#workbench p .text {
+ margin-left: -10px;
+}
+
+/* Some differences between Mozilla and IE here */
+
+#page-links a#workbench > p .text {
+ margin-left: -10px;
+}
+
+
+/*
+ * Set up the content for the root page.
+ */
+html, body {
+
+
+ background-image : url("../graphics/rootpage/welcomebckgrd.jpg");
background-repeat : no-repeat;
background-position : center center;
+ background-attachment : fixed;
+ overflow : auto;
+ overflow-clip: rect(0, auto, auto, 0);
+ background-color : #345365;
+}
+#root {
+ min-height : 450px;
+ height : expression(document.body.clientHeight < 450? "450px": "100%" );
+
+ min-width : 940px;
+ width:expression(document.body.clientWidth < 940? "940px": "auto" );
+
+ overflow: hidden;
+}
+
+#branding {
+ position: absolute;
+ bottom : 20px;
+ left : 20px;
+}
+
+/*
+ * Set up the navigation bar. It should be centered in the middle
+ * of the page
+ */
+#links-background {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ text-align : center;
+}
+
+#page-links {
+ position : relative;
+ left : 0px;
+ top : 0x;
+}
+
+#page-links a {
+ position : absolute;
+ text-align : left;
+ padding-bottom: 2px;
+}
+
+/* Position root links using absolute coordinates */
+#page-links a img {
+ height : 84px;
+ width : 103px;
+}
+
+#page-links a:active img,
+#page-links a:focus img,
+#page-links a:hover img
+{
+ width : 215px;
+}
+
+#page-links a#overview {
+ left: -444px;
+ top: -188px;
+}
+
+#page-links a#overview:hover {
+ left: -444px;
+}
+
+#page-links a#overview img {
+ width : 217px;
+ height : 149px;
+}
+
+#page-links a#overview:active img,
+#page-links a#overview:focus img,
+#page-links a#overview:hover img {
+ width : 217px;
+ height : 99px;
+}
+
+#page-links a#workbench img {
+ width : 202px;
+ background-position : right top;
+ margin-left : 0px;
+}
+
+/* Absolute positions of root links */
+
+#page-links a#whatsnew {
+ left: -292px;
+ top: -82px;
+}
+
+#page-links a#tutorials {
+ left: -11px;
+ top: 104px;
+}
+
+#page-links a#samples {
+ left: -199px;
+ top: 104px;
+}
+
+#page-links a#firststeps {
+ left: -105px;
+ top: -82px;
+}
+
+#page-links a#webresources {
+ left: 82px;
+ top: 11px;
+}
+
+#page-links a#migrate {
+ left: 269px;
+ top: 104px;
+}
+
+#page-links a#workbench {
+ left: 271px;
+ top: -82px;
+}
+
+/* Paint bottom edge of the text box as a background image */
+
+#page-links a:hover,
+#page-links a:focus,
+#page-links a:active {
+ background-image: url("../graphics/icons/ctool/root_bottomhov.gif");
+ background-repeat: no-repeat;
+ background-position: bottom left;
+ z-index: 20;
+}
+
+#page-links a#overview:hover,
+#page-links a#overview:focus,
+#page-links a#overview:active {
+ background-image: url("../graphics/icons/ctool/overview_bottomhov.gif");
+}
+
+#page-links a#workbench:hover,
+#page-links a#workbench:focus,
+#page-links a#workbench:active {
+ background-image: url("../graphics/icons/ctool/workbench_bottomhov.gif");
+ background-position: bottom left;
+}
+
+#page-links > a#workbench:hover,
+#page-links > a#workbench:focus,
+#page-links > a#workbench:active {
+ background-position: bottom 2px;
+}
+
+/* Hide the text in the normal state */
+#page-links a .text {
+ display : none;
+}
+
+/* Hide the links in the normal state */
+#page-links a .link-label {
+ display : none;
+}
+
+/* Note that the links can be made to show by including the following lines for example in the css for an extension.
+#page-links a span.link-label {
+ display : block;
+}
+*/
+
+/* Show the link label and link text as block on hover */
+
+#page-links a:hover .link-label,
+#page-links a:focus .link-label,
+#page-links a:active .link-label {
+ display : block;
+}
+
+#page-links a:hover p .text,
+#page-links a:hover p .text,
+#page-links a:focus p .text,
+#page-links a:active p .text {
+ display : block;
+ z-index: 35;
+}
+
+#page-links .link-label,
+#page-links a:hover .link-label,
+#page-links a:focus .link-label,
+#page-links a:active .link-label {
+ width: 202px;
+}
+
+#page-links a:hover p .text,
+#page-links a:focus p .text,
+#page-links a:active p .text {
+ width: 202px;
+}
+
+#page-links a:hover > .link-label,
+#page-links a:focus > .link-label,
+#page-links a:active > .link-label {
+ width: 192px;
+}
+
+#page-links a:hover > p .text,
+#page-links a:focus > p .text,
+#page-links a:active > p .text {
+ width: 192px;
+}
+
+#page-links a#workbench:hover .link-label,
+#page-links a#workbench:focus .link-label,
+#page-links a#workbench:active .link-label {
+ width: 202px;
+}
+
+#page-links a#workbench:hover p .text,
+#page-links a#workbench:focus p .text,
+#page-links a#workbench:active p .text {
+ width: 202px;
+}
+
+#page-links a#workbench:hover > .link-label,
+#page-links a#workbench:focus > .link-label,
+#page-links a#workbench:active > .link-label {
+ width: 182px;
+}
+
+#page-links a#workbench:hover p > .text,
+#page-links a#workbench:focus p > .text,
+#page-links a#workbench:active p > .text {
+ width: 193px;
+}
+
+#page-links a .background-image {
+ display: none;
+}
+
+#page-links a .link-extra-div {
+ display :none;
+}
+
+/* Link images */
+#page-links a#overview .content-img { background-image : url("../graphics/icons/ctool/overview.gif"); }
+#page-links a:active#overview .content-img,
+#page-links a:focus#overview .content-img ,
+#page-links a:hover#overview .content-img { background-image : url("../graphics/icons/ctool/overview_tophov.gif"); }
+
+#page-links a#tutorials .content-img { background-image : url("../graphics/icons/ctool/tutorials.gif"); }
+#page-links a:active#tutorials .content-img,
+#page-links a:focus#tutorials .content-img ,
+#page-links a:hover#tutorials .content-img { background-image : url("../graphics/icons/ctool/tutorials_tophov.gif"); }
+
+#page-links a#samples .content-img { background-image : url("../graphics/icons/ctool/samples.gif"); }
+#page-links a:active#samples .content-img,
+#page-links a:focus#samples .content-img ,
+#page-links a:hover#samples .content-img { background-image : url("../graphics/icons/ctool/samples_tophov.gif"); }
+
+#page-links a#whatsnew .content-img { background-image : url("../graphics/icons/ctool/whatsnew.gif"); }
+#page-links a:active#whatsnew .content-img,
+#page-links a:focus#whatsnew .content-img,
+#page-links a:hover#whatsnew .content-img { background-image : url("../graphics/icons/ctool/whatsnew_tophov.gif"); }
+
+#page-links a#firststeps .content-img { background-image : url("../graphics/icons/ctool/firststeps.gif"); }
+#page-links a:active#firststeps .content-img,
+#page-links a:focus#firststeps .content-img ,
+#page-links a:hover#firststeps .content-img { background-image : url("../graphics/icons/ctool/firststeps_tophov.gif"); }
+
+#page-links a#migrate .content-img { background-image : url("../graphics/icons/ctool/migrate.gif"); }
+#page-links a:active#migrate .content-img,
+#page-links a:focus#migrate .content-img ,
+#page-links a:hover#migrate .content-img { background-image : url("../graphics/icons/ctool/migrate_tophov.gif"); }
+
+#page-links a#webresources .content-img { background-image : url("../graphics/icons/ctool/webresources.gif"); }
+#page-links a:active#webresources .content-img,
+#page-links a:focus#webresources .content-img ,
+#page-links a:hover#webresources .content-img { background-image : url("../graphics/icons/ctool/webresources_tophov.gif"); }
+
+#page-links a#workbench .content-img { background-image : url("../graphics/icons/ctool/workbench.gif"); }
+#page-links a:hover#workbench .content-img { background-image : url("../graphics/icons/ctool/workbench_tophov.gif"); }
+#page-links a:active#workbench .content-img { background-image : url("../graphics/icons/ctool/workbench_tophov.gif"); }
+#page-links a:focus#workbench .content-img { background-image : url("../graphics/icons/ctool/workbench_tophov.gif"); }
+
+/*
+ * Not using action links.
+ */
+#action-links {
+ display: none;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/rtl.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/rtl.css
new file mode 100644
index 0000000..b444c37
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/rtl.css
@@ -0,0 +1,83 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * This file contains styles that are specific to right to left display
+ */
+
+
+table {
+ direction: rtl;
+}
+
+#page-content p {
+ text-align : right;
+}
+
+#page-content #content-header H4, .page-description {
+ text-align : right;
+}
+
+#page-content table tr td a > .link-label {
+ left:0px;
+}
+
+#page-content * td a .link-label {
+ display:block;
+ left:0px;
+ margin-right:0px;
+ position:static;
+ top:0px;
+}
+
+#page-content * td a .text {
+ display:block;
+ left:0px;
+ margin-right:0px;
+ position:static;
+ top:0px;
+}
+
+.content-group {
+ text-align: right;
+}
+
+.intro-header span {
+ margin-right : 45px;
+ padding-right : 45px;
+}
+
+div div#rss-news {
+ position:static;
+ margin-left:0px;
+ margin-bottom: 0px;
+ margin-top: 10px;
+ top : 0px;
+ margin-right : 30px;
+}
+
+div ul.news-list {
+ list-style-image: url("../graphics/icons/ctool/arrow_rtl.gif");
+ margin-left: 0px;
+ padding-right: 10px;
+ margin-right: 10px;
+}
+
+/* The 'closed' toggle image part of the folding section. */
+#page-content .section-title-link .section-toggle-image-closed {
+ background-image : url(../graphics/icons/ctool/widget_closed_rtl.gif);
+}
+
+#page-content .section-title-link:hover .section-toggle-image-closed,
+#page-content .section-title-link:active .section-toggle-image-closed {
+ background-image : url(../graphics/icons/ctool/widget_closed_hov_rtl.gif);
+}
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/samples.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/samples.css
new file mode 100644
index 0000000..5437466
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/samples.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* show the "selected" image for this page */
+#navigation-links a#samples img,
+#navigation-links a#samples:hover img,
+#navigation-links a#samples:focus img,
+#navigation-links a#samples:active img {
+ background-image : url(../graphics/icons/ctool/sa_nav_64.gif);
+ top : 2px;
+ left : -3px;
+}
+
+#navigation-links {
+ background-image: url(../graphics/contentpage/sa_banner.jpg);
+}
+
+#navigation-links a:hover#samples .link-label,
+#navigation-links a:focus#samples .link-label,
+#navigation-links a:active#samples .link-label {
+ display : none;
+}
+
+#navigation-links a:hover#samples,
+#navigation-links a:focus#samples,
+#navigation-links a:active#samples {
+ background-image : none;
+}
+
+#navigation-links a:hover#samples .link-extra-div,
+#navigation-links a:focus#samples .link-extra-div,
+#navigation-links a:active#samples .link-extra-div {
+ background-image : none;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/shared.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/shared.css
new file mode 100644
index 0000000..fbaf550
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/shared.css
@@ -0,0 +1,647 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * Set up general fonts, sizes and colors
+ */
+body { font-family : Arial, sans-serif; }
+
+H1, H2, H3, H4, p, a { color : #4D4D4D; }
+
+/*
+ * We are not using titles in this theme.
+ */
+.intro-header {
+ display : none;
+}
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+ display : inline;
+}
+
+h2 {
+ font-weight : normal;
+ color : #7B8694;
+}
+
+/* For regular div labels */
+H4 .div-label {
+ font-family: Verdana, Arial, Helvetica;
+ font-weight: bold;
+ color: #4A4D4A;
+ line-height:1.3;
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+ font-family: Verdana, Arial, Helvetica;
+ color:#333333;
+ font-weight: normal;
+ letter-spacing:-0.03em;
+ margin-left: 68px;
+ float : none;
+ clear : both;
+}
+
+/* For separators */
+HR {
+ width: 90%;
+ align: left;
+ height : 1px;
+ color : #dfdfe4;
+}
+
+/* Page description if the page has it. */
+.page-description {
+ display: block;
+ font-family: Verdana, Arial, Helvetica;
+ line-height:1.3;
+ float : none;
+ clear : both;
+ margin-left: 70px;
+}
+
+a {
+ font-weight : bold;
+ text-decoration : none;
+ color : #4D4D4D;
+}
+
+/* General link labels */
+a .link-label {
+ font-weight : normal;
+}
+
+/* Floating link labels for navigation links */
+#navigation-links a .link-label {
+ font-weight : bold;
+}
+
+#navigation-links a.high-contrast .link-label {
+ display : none !important;
+}
+
+/* Text in links. */
+a .text {
+ font-weight : normal;
+}
+
+p .group-description {
+ font-family: Verdana, Arial, Helvetica;
+ font-weight : normal;
+}
+
+/* Hide the extra div in links by default. */
+.link-extra-div {
+ display : none;
+}
+
+/*
+ * Set up other general properties like padding/margins
+ */
+html, body { width : 100%; height : 100%; }
+
+html, body, div, h1, h4, p, a { margin : 0px; padding : 0px; }
+
+/*
+ * Page header - adding extra padding at the bottom to compensate
+ * for navigation background/header overlap.
+ */
+#page-content #content-header {
+ padding-bottom : 22px;
+}
+
+/* For regular div labels */
+#page-content div H4 {
+ padding : 10px;
+ padding-bottom : 0px;
+}
+
+/* For the main page content's div label */
+#page-content #content-header H4 {
+ padding-bottom : 10px;
+ padding-top : 0px;
+}
+
+/* special case for Mozilla's main content-header label.
+ Mozilla 1.4 needs more room at the top */
+#page-content > #content-header H4 { padding-top : 10px; }
+
+/* Needed in IE to get shift+tab to show the active image properly */
+a:active {
+ border : solid 0px;
+}
+
+a img {
+ border-width : 0;
+ background-repeat : no-repeat;
+}
+
+/*
+ * to get scrollbars working in both IE and Mozilla
+ */
+
+/*
+ * to get scrollbars working in both IE and Mozilla
+ */
+html,body { overflow: auto; }
+html>body { overflow: visible; }
+
+/*
+ * Set up the body, decorative background, and navigation for the content
+ * pages.
+ * Note: the root page handles its own background and navigation; these
+ * settings primarily apply to the content pages
+ */
+body {
+ background-color : #FFFFFF;
+ background-repeat : no-repeat;
+ background-position : bottom right;
+}
+
+/*
+ * Hide the general-purpose groups - not using them in this theme.
+ */
+#extra-group1,
+#extra-group2,
+#extra-group3,
+#extra-group4,
+#extra-group5 {
+ display : none;
+}
+
+/*
+ * Dimensions.
+ */
+body, .page {
+ /* since IE doesn't support min-width, try expression */
+ height : 100%;
+}
+
+.page {
+ background-image : url(../graphics/contentpage/background.jpg);
+ background-repeat : repeat-x;
+ background-position : top left;
+
+ min-width : 770px;
+ width:expression(document.body.clientWidth < 770? "770px": "auto" );
+ min-height : 425px;
+ height : expression(document.body.clientHeight < 425? "425px": "100%" );
+}
+
+#page-content {
+ background-repeat : no-repeat;
+ background-position : bottom right;
+ height : 65%;
+}
+
+/*
+ * Lay out the navigation links
+ * (Root page does something similar for its navigation)
+ */
+#navigation-links {
+ position : relative;
+ left : 0px;
+ top : 0px;
+ padding-left: 12px;
+ height : 118px;
+ width : 100%;
+}
+
+.page > #navigation-links {
+ width: 98.1%;
+}
+
+#navigation-links a {
+ text-align : left;
+ width : auto;
+ height : 64px;
+}
+
+/*
+ * Navigation links have a mixin style 'nav_link' where goes from
+ * 1 to N. This allows us to position these fixed link slots while
+ * not hand-coding the actual link IDs because they can be turned off
+ * by users or products via preferences.
+ */
+
+#navigation-links a.nav_link1 {
+ position: absolute;
+ left : 12px;
+}
+
+#navigation-links a.nav_link2 {
+ position : absolute;
+ left : 76px;
+}
+
+#navigation-links a.nav_link3 {
+ position : absolute;
+ left : 140px;
+}
+
+#navigation-links a.nav_link4 {
+ position : absolute;
+ left : 204px;
+}
+
+#navigation-links a.nav_link5 {
+ position : absolute;
+ left : 268px;
+}
+
+#navigation-links a.nav_link6 {
+ position : absolute;
+ left : 332px;
+}
+
+#navigation-links a.nav_link7 {
+ position: absolute;
+ left : 396px;
+}
+
+#navigation-links a img {
+ position : relative;
+ height : 64px;
+ width : 64px;
+ vertical-align : center;
+ horizontal-align : center;
+ top : 10px;
+ left : 9px;
+}
+
+#navigation-links a.high-contrast img {
+ height: 32px;
+ width: 32px;
+ top: 5px !important;
+ left: 0px !important;
+}
+
+/*
+ * Adjust image position for hover version.
+ */
+
+#navigation-links a:hover img,
+#navigation-links a:focus img,
+#navigation-links a:active img {
+ top : 2px;
+ left : 0px;
+}
+
+/*
+ * Navigation link label text is normally hidden. Workaround to produce the
+ * same effect as display: none while still allowing screenreaders to
+ * speak it.
+ */
+#navigation-links a .link-label {
+ display : none;
+}
+
+/*
+ * Not showing description for navigation links.
+ */
+#navigation-links a .text { display : none; }
+
+#navigation-links a:hover,
+#navigation-links a:focus,
+#navigation-links a:active {
+ border-right : 0px;
+ background-image: url(../graphics/icons/ctool/nav_midhov.gif);
+ background-repeat: repeat-x;
+ background-position: 0px 2px;
+ z-index: 20;
+}
+
+#navigation-links a:hover .link-label,
+#navigation-links a:focus .link-label,
+#navigation-links a:active .link-label {
+ display : inline;
+ clear : both;
+ float : left;
+ text-align: right;
+ position : relative;
+ padding-left: 7px;
+ padding-top: 7px;
+ padding-right: 7px;
+ margin-right: auto;
+ top : -35px;
+ white-space: nowrap;
+ height : 32px;
+ left: auto;
+ width: auto;
+}
+
+/*
+ * Add the right edge by using the extra div generated for links
+ * and set the right edge image as the background.
+ */
+
+#navigation-links a:hover .link-extra-div,
+#navigation-links a:focus .link-extra-div,
+#navigation-links a:active .link-extra-div {
+ display: block;
+ position: absolute;
+ right : -2px;
+ top : 2px;
+ width : 2px;
+ height : 64px;
+ background-image: url(../graphics/icons/ctool/nav_rightedgehov.gif);
+ background-repeat: no-repeat;
+}
+
+/* properties for each of the navigation-links */
+#navigation-links a#overview img {
+ background-image : url(../graphics/icons/ctool/ov_nav_32.gif);
+}
+#navigation-links a#overview:hover img,
+#navigation-links a#overview:focus img,
+#navigation-links a#overview:active img {
+ background-image : url(../graphics/icons/ctool/ov_nav_hover.gif);
+}
+
+#navigation-links a#firststeps img {
+ background-image : url(../graphics/icons/ctool/fs_nav_32.gif);
+}
+#navigation-links a#firststeps:hover img,
+#navigation-links a#firststeps:focus img,
+#navigation-links a#firststeps:active img {
+ background-image : url(../graphics/icons/ctool/fs_nav_hover.gif); }
+
+#navigation-links a#tutorials img {
+ background-image : url(../graphics/icons/ctool/tu_nav_32.gif);
+}
+#navigation-links a#tutorials:hover img,
+#navigation-links a#tutorials:active img,
+#navigation-links a#tutorials:focus img {
+ background-image : url(../graphics/icons/ctool/tu_nav_hover.gif);
+}
+
+#navigation-links a#samples img {
+ background-image : url(../graphics/icons/ctool/sa_nav_32.gif);
+}
+#navigation-links a#samples:hover img,
+#navigation-links a#samples:active img,
+#navigation-links a#samples:focus img {
+ background-image : url(../graphics/icons/ctool/sa_nav_hover.gif);
+ left: -1px;
+}
+
+#navigation-links a#whatsnew img {
+ background-image : url(../graphics/icons/ctool/wn_nav_32.gif);
+}
+#navigation-links a#whatsnew:hover img,
+#navigation-links a#whatsnew:focus img,
+#navigation-links a#whatsnew:active img {
+ background-image : url(../graphics/icons/ctool/wn_nav_hover.gif);
+ left: -1px;
+}
+
+#navigation-links a#migrate img {
+ background-image : url(../graphics/icons/ctool/mi_nav_32.gif);
+}
+#navigation-links a#migrate:hover img,
+#navigation-links a#migrate:focus img,
+#navigation-links a#migrate:active img {
+ background-image : url(../graphics/icons/ctool/mi_nav_hover.gif);
+ left: -1px;
+}
+
+#navigation-links a#webresources img {
+ background-image : url(../graphics/icons/ctool/wr_nav_32.gif);
+}
+#navigation-links a#webresources:hover img,
+#navigation-links a#webresources:focus img,
+#navigation-links a#webresources:active img {
+ background-image : url(../graphics/icons/ctool/wr_nav_hover.gif);
+ left: -1px;
+}
+
+#navigation-links a#workbench {
+ position : absolute;
+ left : 494px;
+ text-align : left;
+}
+#navigation-links a#workbench .text { display : none; }
+
+#navigation-links a.high-contrast#workbench:hover img,
+#navigation-links a.high-contrast#workbench:focus img,
+#navigation-links a.high-contrast#workbench:active img,
+#navigation-links a#workbench img {
+ background-image : url(../graphics/icons/ctool/wb_nav_32.gif);
+ width : 32px;
+ height : 32px;
+}
+
+#navigation-links a#workbench:hover img,
+#navigation-links a#workbench:focus img,
+#navigation-links a#workbench:active img {
+ background-image : url(../graphics/icons/ctool/wb_nav_hover.gif);
+ width : 51px;
+ height : 64px;
+ left: -1px;
+}
+
+#action-links a.high-contrast img,
+#action-links a.high-contrast:hover img,
+#action-links a.high-contrast:focus img,
+#action-links a.high-contrast:active img {
+ display: none !important;
+}
+
+#action-links a.high-contrast .link-label {
+ display: none;
+}
+
+#page-links a.high-contrast:focus .link-label,
+#page-links a.high-contrast:active .link-label {
+ display: block !important;
+ text-decoration: underline;
+ top : 5px;
+}
+
+/*
+ * Lay out the page title and description
+ */
+h1, p { margin-left : 10px; } /* required in mozilla so the page description is properly indented */
+
+/* position the page content so that the page title overlays the bottom
+ * of the background image, but make sure the content is always on top
+ * (using z-index) */
+
+#page-content {
+ float : none;
+ clear : both;
+ text-align : center;
+ position : relative;
+ top : -50px;
+ margin-bottom: -50px;
+ z-index : 10;
+}
+
+#page-content p {
+ padding-bottom : 15px;
+ text-align : left;
+ float : none;
+ clear : both;
+}
+
+/* Page content quadrants. Page content is placed in four quadrants.
+ * Upper pair is separated from the bottom pair with a divider
+ * to ensure bottom pair is aligned even with the uneven content
+ * in the upper pair.
+ */
+
+#page-content #top-left {
+ border: none; float: left; margin: 0px; padding: 0px; width: 49%;
+ clear: left;
+}
+#page-content #top-right {
+ border: none; float: right; margin: 0px; padding: 0px; width: 49%;
+ clear: right;
+}
+/* top-bottom divider - runs the entire width to ensure
+ * bottom boxes start at the same y
+ */
+#page-content #content-divider {
+ border: none; float: none; margin: 0; padding: 0px; width: 100%;
+ clear: both;
+}
+
+#page-content #bottom-left {
+ border: none; float: left; margin: 0px; padding: 0px; width: 49%;
+ clear: left;
+}
+#page-content #bottom-right {
+ border: none; float: right; margin: 0px; padding: 0px; width: 49%;
+ clear: right;
+}
+
+#page-content #content-header H4, .page-description {
+ text-align : left;
+ margin-right : 10px;
+ float : none;
+ clear : both;
+}
+
+#page-content * > a {
+ vertical-align : middle;
+}
+
+#page-content * a img {
+ height : 57px;
+ width : 57px;
+ vertical-align : middle;
+}
+
+#page-content * a .link-label {
+ display : block;
+ position : relative;
+ top : -50px;
+ left : 60px;
+ margin-right: 60px;
+}
+
+#page-content * a > .link-label { left: 65px; }
+
+#page-content * a p .text {
+ display : block;
+ position : relative;
+ top : -45px;
+ margin-bottom: -25px;
+ left : 53px;
+ margin-right: 53px;
+}
+
+#page-content * a p > .text { left: 58px; }
+
+#page-content * a:hover { border-right : 5px; }
+
+/* The following rules are for extensions in all pages. Extensions should be placed in
+ * groups with the style 'content-group' and contain links with the style 'content-link'.
+ * Group is important so that importance mixin style can be applied to the group that
+ * uses block display. We need to see a solid rectangle around the extension, not
+ * a tight polygon around the link perimeter.
+ */
+
+.content-group {
+ margin-left: 10px;
+ margin-right: 10px;
+ padding-left: 10px;
+ padding-right: 10px;
+ float : none;
+ clear : both;
+ text-align: left;
+}
+
+.content-link .link-label {
+ font-family: Verdana, Arial, Helvetica;
+ font-weight: bold;
+ line-height:1.5;
+ color: #00507C;
+}
+
+.content-link:hover .link-label {
+ color: #69c;
+ text-decoration : underline;
+}
+
+.content-link .text {
+ font-family: Verdana, Arial, Helvetica;
+ line-height: 1.3;
+}
+
+.categoryContentnav {
+ font-family: Verdana, Arial, Helvetica;
+ font-weight: bold;
+ color: #4A4D4A;
+ line-height:1.3;
+}
+
+.contentpgNavhover {
+ font-family: Verdana, Arial, Helvetica;
+ font-weight: bold;
+ color: #000;
+}
+
+.topicList {
+ font-family: Verdana, Arial, Helvetica;
+ line-height:1.75;
+ color: #00507C;
+}
+
+.topicList:hover {
+ color: #69c;
+}
+
+.rss-feed-link a {
+ font-family: Verdana, Arial, Helvetica;
+ color: #00507C;
+}
+
+/*
+ * This part is for hosting embedded document inside
+ * the content area.
+ */
+
+iframe {
+ position:relative;
+ top:16px;
+ width:100%;
+ height:100%;
+ padding-left:10px;
+}
+
+/* mozilla scrollbar appearing off page fix */
+#page-content > iframe {
+ width: 98%;
+ padding-left: 2%;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/standby.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/standby.css
new file mode 100644
index 0000000..8a7735e
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/standby.css
@@ -0,0 +1,159 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+
+/*
+ * We will not use the general-purpose group1 used in
+ * other pages for a curve image.
+ */
+
+#extra-group1 {
+ display : none;
+}
+
+
+#page-links a .link-label, #action-links a .link-label {
+ font-weight : 600;
+ color : #E5E5E5;
+}
+
+#page-links a p .text, #action-links a p .text {
+ font-weight : 500;
+ color : #E5E5E5;
+}
+
+/*
+ * Set up the content for the standby page.
+ */
+body {
+ min-width : 230px;
+ /* since IE doesn't support min-width, use expression */
+ width:expression(document.body.clientWidth < 230? "230px": "auto" );
+ background-repeat : no-repeat;
+ background-position : top left;
+ background-color : #6d7e85;
+}
+
+.page {
+ background-repeat : no-repeat;
+ background-position : bottom left;
+ min-width : 230px;
+ /* since IE doesn't support min-width, use expression */
+ width:expression(document.body.clientWidth < 230? "230px": "auto" );
+ min-height : 610px;
+ height : 100%;
+ height : expression(document.body.clientHeight < 450? "450px": "100%" );
+}
+
+/*
+ * Set up the navigation bar. It should be centered in the middle
+ * of the page
+ */
+
+#links-background {
+ width : 100%;
+ margin-top : 10%;
+ margin-bottom : auto;
+ text-align : center;
+}
+
+#page-links a {
+ display : block;
+ width : 220px;
+ text-align : left;
+ margin-left : auto;
+ margin-right : auto;
+ margin-top : 0px;
+ vertical-align : top;
+}
+
+#page-links a span, #page-links a p {
+ display : block;
+ width : 160px;
+ margin : 0px;
+ padding : 0px;
+}
+
+#page-links a .link-label {
+ position : relative;
+ left : 60px;
+ top : -50px;
+}
+
+#page-links a p .text {
+ position : relative;
+ left : 60px;
+ top : -50px;
+}
+
+#page-links a img {
+ height : 52px;
+ width : 52px;
+ vertical-align : middle;
+}
+
+#page-links a:hover,
+#page-links a:focus,
+#page-links a:active { border : 0px; }
+
+#page-links a:hover p,
+#page-links a:focus p,
+#page-links a:active p { margin : 0px; padding : 0px; }
+
+/* properties for each of the page-links */
+
+#page-links a .background-image {
+ display: none;
+}
+
+#page-links a .link-extra-div {
+ display :none;
+}
+
+a#overview img { background-image : url(../graphics/standby/ov_standby.gif); }
+a#overview:hover img,
+a#overview:focus img,
+a#overview:active img { background-image : url(../graphics/standby/ov_standbyhov.gif); }
+
+a#firststeps img { background-image : url(../graphics/standby/fs_standby.gif); }
+a#firststeps:hover img,
+a#firststeps:focus img,
+a#firststeps:active img { background-image : url(../graphics/standby/fs_standbyhov.gif); }
+
+a#tutorials img { background-image : url(../graphics/standby/tu_standby.gif); }
+a#tutorials:hover img,
+a#tutorials:focus img,
+a#tutorials:active img { background-image : url(../graphics/standby/tu_standbyhov.gif); }
+
+a#samples img { background-image : url(../graphics/standby/sa_standby.gif); }
+a#samples:hover img,
+a#samples:focus img,
+a#samples:active img { background-image : url(../graphics/standby/sa_standbyhov.gif); }
+
+a#whatsnew img { background-image : url(../graphics/standby/wn_standby.gif); }
+a#whatsnew:hover img,
+a#whatsnew:focus img,
+a#whatsnew:active img { background-image : url(../graphics/standby/wn_standbyhov.gif); }
+
+a#webresources img { background-image : url(../graphics/standby/wr_standby.gif); }
+a#webresources:hover img,
+a#webresources:focus img,
+a#webresources:active img { background-image : url(../graphics/standby/wr_standbyhov.gif); }
+
+a#migrate img { background-image : url(../graphics/standby/mi_standby.gif); }
+a#migrate:hover img,
+a#migrate:focus img,
+a#migrate:active img { background-image : url(../graphics/standby/mi_standbyhov.gif); }
+
+a#workbench img { background-image : url(../graphics/standby/wb_standby.gif); }
+a#workbench:hover img,
+a#workbench:focus img,
+a#workbench:active img { background-image : url(../graphics/standby/wb_standbyhov.gif); }
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/tutorials.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/tutorials.css
new file mode 100644
index 0000000..ab12e64
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/tutorials.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* show the "selected" image for this page */
+#navigation-links a#tutorials img,
+#navigation-links a#tutorials:hover img,
+#navigation-links a#tutorials:focus img,
+#navigation-links a#tutorials:active img {
+ background-image : url(../graphics/icons/ctool/tu_nav_64.gif);
+ top : 2px;
+ left : -3px;
+}
+
+#navigation-links {
+ background-image: url(../graphics/contentpage/tu_banner.jpg);
+}
+
+#navigation-links a:hover#tutorials .link-label,
+#navigation-links a:focus#tutorials .link-label,
+#navigation-links a:active#tutorials .link-label {
+ display : none;
+}
+
+#navigation-links a:hover#tutorials,
+#navigation-links a:focus#tutorials,
+#navigation-links a:active#tutorials {
+ background-image : none;
+}
+
+#navigation-links a:hover#tutorials .link-extra-div,
+#navigation-links a:focus#tutorials .link-extra-div,
+#navigation-links a:active#tutorials .link-extra-div {
+ background-image : none;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/webresources.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/webresources.css
new file mode 100644
index 0000000..e785d0d
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/webresources.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* show the "selected" image for this page */
+#navigation-links a#webresources img,
+#navigation-links a#webresources:hover img,
+#navigation-links a#webresources:focus img,
+#navigation-links a#webresources:active img {
+ background-image : url(../graphics/icons/ctool/wr_nav_64.gif);
+ top : 2px;
+ left : -3px;
+}
+
+#navigation-links {
+ background-image: url(../graphics/contentpage/wr_banner.jpg);
+}
+
+#navigation-links a:hover#webresources .link-label,
+#navigation-links a:focus#webresources .link-label,
+#navigation-links a:active#webresources .link-label {
+ display : none;
+}
+
+#navigation-links a:hover#webresources,
+#navigation-links a:focus#webresources,
+#navigation-links a:active#webresources {
+ background-image : none;
+}
+
+#navigation-links a:hover#webresources .link-extra-div,
+#navigation-links a:focus#webresources .link-extra-div,
+#navigation-links a:active#webresources .link-extra-div {
+ background-image : none;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/whatsnew.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/whatsnew.css
new file mode 100644
index 0000000..b317c0a
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/whatsnew.css
@@ -0,0 +1,47 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* show the "selected" image for this page */
+#navigation-links a#whatsnew img,
+#navigation-links a#whatsnew:hover img,
+#navigation-links a#whatsnew:focus img,
+#navigation-links a#whatsnew:active img {
+ background-image : url(../graphics/icons/ctool/wn_nav_64.gif);
+ top : 2px;
+ left : -3px;
+}
+
+#navigation-links {
+ background-image: url(../graphics/contentpage/wn_banner.jpg);
+}
+
+#navigation-links a:hover#whatsnew .link-label,
+#navigation-links a:focus#whatsnew .link-label,
+#navigation-links a:active#whatsnew .link-label {
+ display : none;
+}
+
+#navigation-links a:hover#whatsnew,
+#navigation-links a:focus#whatsnew,
+#navigation-links a:active#whatsnew {
+ background-image : none;
+}
+
+#navigation-links a:hover#whatsnew .link-extra-div,
+#navigation-links a:focus#whatsnew .link-extra-div,
+#navigation-links a:active#whatsnew .link-extra-div {
+ background-image : none;
+}
+/*
+ * Default images for content links in this page.
+ */
+.content-link img { background-image : url(../graphics/icons/obj48/new_obj.gif); }
+.content-link:hover img { background-image : url(../graphics/icons/obj48/newhov_obj.gif); }
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/preview.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/preview.png
new file mode 100644
index 0000000..0e81aea
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/preview.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/firststeps.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/firststeps.properties
new file mode 100644
index 0000000..48b1b5c
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/firststeps.properties
@@ -0,0 +1,18 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+firststeps.page-content.layout.vspacing = 40
+firststeps.page-content.layout.ncolumns = 2
+firststeps.page-content.page-title.layout.colspan = 2
+firststeps.page-content.page-description.layout.colspan = 2
+firststeps.page-content.content-divider.layout.colspan = 2
+firststeps.subtitle-id = firststeps/page-content/page-title
+firststeps.description-id = firststeps/page-content/page-description
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/migrate.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/migrate.properties
new file mode 100644
index 0000000..eaaa815
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/migrate.properties
@@ -0,0 +1,18 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+migrate.page-content.layout.vspacing = 40
+migrate.page-content.layout.ncolumns = 2
+migrate.page-content.page-title.layout.colspan = 2
+migrate.page-content.page-description.layout.colspan = 2
+migrate.page-content.content-divider.layout.colspan = 2
+
+migrate.subtitle-id = migrate/page-content/page-title
+migrate.description-id = migrate/page-content/page-description
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/overview.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/overview.properties
new file mode 100644
index 0000000..78c262f
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/overview.properties
@@ -0,0 +1,18 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+overview.page-content.layout.ncolumns = 2
+overview.page-content.page-title.layout.colspan = 2
+overview.page-content.page-description.layout.colspan = 2
+overview.page-content.content-divider.layout.colspan = 2
+
+overview.subtitle-id = overview/page-content/page-title
+overview.description-id = overview/page-content/page-description
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/root.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/root.properties
new file mode 100644
index 0000000..05ec22b
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/root.properties
@@ -0,0 +1,51 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+theme=true
+root.links-background.page-links.overview.link-icon = ../graphics/icons/ctool/overview.png
+root.links-background.page-links.tutorials.link-icon = ../graphics/icons/ctool/tutorials.png
+root.links-background.page-links.samples.link-icon= ../graphics/icons/ctool/samples.png
+root.links-background.page-links.whatsnew.link-icon = ../graphics/icons/ctool/whatsnew.png
+root.links-background.page-links.firststeps.link-icon = ../graphics/icons/ctool/firststeps.png
+root.links-background.page-links.migrate.link-icon = ../graphics/icons/ctool/migrate.png
+root.links-background.page-links.webresources.link-icon = ../graphics/icons/ctool/webresources.png
+root.action-links.workbench.link-icon = ../graphics/icons/ctool/workbench.png
+
+root.links-background.page-links.overview.hover-icon = ../graphics/icons/ctool/overview.png
+root.links-background.page-links.tutorials.hover-icon = ../graphics/icons/ctool/tutorials.png
+root.links-background.page-links.samples.hover-icon = ../graphics/icons/ctool/samples.png
+root.links-background.page-links.whatsnew.hover-icon = ../graphics/icons/ctool/whatsnew.png
+root.links-background.page-links.firststeps.hover-icon = ../graphics/icons/ctool/firststeps.png
+root.links-background.page-links.migrate.hover-icon = ../graphics/icons/ctool/migrate.png
+root.links-background.page-links.webresources.hover-icon = ../graphics/icons/ctool/webresources.png
+root.action-links.workbench.hover-icon = ../graphics/icons/ctool/workbench.png
+
+root.links-background.page-links.overview.small-link-icon = ../graphics/icons/ctool/ov_nav.png
+root.links-background.page-links.tutorials.small-link-icon = ../graphics/icons/ctool/tu_nav.png
+root.links-background.page-links.samples.small-link-icon = ../graphics/icons/ctool/sa_nav.png
+root.links-background.page-links.whatsnew.small-link-icon = ../graphics/icons/ctool/wn_nav.png
+root.links-background.page-links.firststeps.small-link-icon = ../graphics/icons/ctool/fs_nav.png
+root.links-background.page-links.migrate.small-link-icon = ../graphics/icons/ctool/mi_nav.png
+root.links-background.page-links.webresources.small-link-icon = ../graphics/icons/ctool/wr_nav.png
+root.action-links.workbench.small-link-icon = ../graphics/icons/ctool/wb_nav.png
+
+root.links-background.page-links.overview.small-hover-icon = ../graphics/icons/ctool/ov_nav.png
+root.links-background.page-links.tutorials.small-hover-icon = ../graphics/icons/ctool/tu_nav.png
+root.links-background.page-links.samples.small-hover-icon = ../graphics/icons/ctool/sa_nav.png
+root.links-background.page-links.whatsnew.small-hover-icon = ../graphics/icons/ctool/wn_nav.png
+root.links-background.page-links.firststeps.small-hover-icon = ../graphics/icons/ctool/fs_nav.png
+root.links-background.page-links.migrate.small-hover-icon = ../graphics/icons/ctool/mi_nav.png
+root.links-background.page-links.webresources.small-hover-icon = ../graphics/icons/ctool/wr_nav.png
+root.action-links.workbench.small-hover-icon = ../graphics/icons/ctool/wb_nav.png
+
+
+root.layout.ncolumns = 1
+root.links-background.page-links.layout.hspacing = 40
+root.layout.vspacing = 35
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/samples.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/samples.properties
new file mode 100644
index 0000000..c4551f8
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/samples.properties
@@ -0,0 +1,21 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+samples.page-content.layout.vspacing = 40
+samples.page-content.layout.ncolumns = 2
+samples.page-content.layout.equalWidth = true
+samples.page-content.page-title.layout.colspan = 2
+samples.page-content.page-description.layout.colspan = 2
+samples.page-content.content-divider.layout.colspan = 2
+
+description-style-id = group-description
+samples.subtitle-id = samples/page-content/page-title
+samples.description-id = samples/page-content/page-description
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/standby.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/standby.properties
new file mode 100644
index 0000000..25f6d6d
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/standby.properties
@@ -0,0 +1,24 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+theme = true
+standby.links-background.page-links.overview.link-icon = ../graphics/icons/ctool/ov_nav.png
+standby.links-background.page-links.firststeps.link-icon = ../graphics/icons/ctool/fs_nav.png
+standby.links-background.page-links.tutorials.link-icon = ../graphics/icons/ctool/tu_nav.png
+standby.links-background.page-links.samples.link-icon = ../graphics/icons/ctool/sa_nav.png
+standby.links-background.page-links.whatsnew.link-icon = ../graphics/icons/ctool/wn_nav.png
+standby.links-background.page-links.migrate.link-icon = ../graphics/icons/ctool/mi_nav.png
+standby.links-background.page-links.webresources.link-icon = ../graphics/icons/ctool/wr_nav.png
+standby.links-background.page-links.workbench.link-icon = ../graphics/icons/ctool/wb_nav.png
+
+standby.links-background.page-links.layout.vspacing = 30
+standby.layout.vspacing = 35
+standby.show-link-description = false
+standby.show-home-page-navigation = false
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/tutorials.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/tutorials.properties
new file mode 100644
index 0000000..2f7eb0d
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/tutorials.properties
@@ -0,0 +1,19 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+tutorials.page-content.layout.vspacing = 40
+tutorials.page-content.layout.ncolumns = 2
+tutorials.page-content.layout.equalWidth = true
+tutorials.page-content.page-title.layout.colspan = 2
+tutorials.page-content.page-description.layout.colspan = 2
+tutorials.page-content.content-divider.layout.colspan = 2
+tutorials.subtitle-id = tutorials/page-content/page-title
+tutorials.description-id = tutorials/page-content/page-description
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/webresources.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/webresources.properties
new file mode 100644
index 0000000..db164a9
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/webresources.properties
@@ -0,0 +1,19 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+webresources.page-content.layout.vspacing = 40
+webresources.page-content.layout.ncolumns = 2
+webresources.page-content.page-title.layout.colspan = 2
+webresources.page-content.page-description.layout.colspan = 2
+webresources.page-content.content-divider.layout.colspan = 2
+
+webresources.subtitle-id = webresources/page-content/page-title
+webresources.description-id = webresources/page-content/page-description
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/whatsnew.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/whatsnew.properties
new file mode 100644
index 0000000..3d57994
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/whatsnew.properties
@@ -0,0 +1,24 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+theme = true
+whatsnew.page-content.layout.vspacing = 40
+whatsnew.page-content.layout.ncolumns = 2
+whatsnew.page-content.layout.equalWidth = true
+whatsnew.page-content.page-title.layout.colspan = 2
+whatsnew.page-content.page-description.layout.colspan = 2
+whatsnew.page-content.content-divider.layout.colspan = 2
+
+whatsnew.separator.fg = #dfdfe4
+
+whatsnew.link-icon = ../graphics/icons/obj48/new_obj.gif
+whatsnew.hover-icon = ../graphics/icons/obj48/newhov_obj.gif
+
+whatsnew.subtitle-id = whatsnew/page-content/page-title
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/background.jpg.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/background.jpg.REMOVED.git-id
new file mode 100644
index 0000000..b12cabf
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/background.jpg.REMOVED.git-id
@@ -0,0 +1 @@
+ce1cada2093a9ded1e3686e3f33e07aea8c2f94f
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/backgroundcurve.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/backgroundcurve.gif
new file mode 100644
index 0000000..8c5ec1d
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/backgroundcurve.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/firsteps_wtr.jpg b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/firsteps_wtr.jpg
new file mode 100644
index 0000000..11e7725
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/firsteps_wtr.jpg differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/migrate_wtr.jpg b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/migrate_wtr.jpg
new file mode 100644
index 0000000..c45dc6f
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/migrate_wtr.jpg differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/overview_wtr.jpg b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/overview_wtr.jpg
new file mode 100644
index 0000000..733e48c
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/overview_wtr.jpg differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/samples_wtr.jpg b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/samples_wtr.jpg
new file mode 100644
index 0000000..9e0fa8a
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/samples_wtr.jpg differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section1.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section1.gif
new file mode 100644
index 0000000..6147513
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section1.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section2.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section2.gif
new file mode 100644
index 0000000..0ee148b
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section2.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section3.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section3.gif
new file mode 100644
index 0000000..b5d24e6
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section3.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section4.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section4.gif
new file mode 100644
index 0000000..258d4a8
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section4.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/tutorials_wtr.jpg b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/tutorials_wtr.jpg
new file mode 100644
index 0000000..2cf26b2
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/tutorials_wtr.jpg differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/webrsrc_wtr.jpg b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/webrsrc_wtr.jpg
new file mode 100644
index 0000000..c002f2d
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/webrsrc_wtr.jpg differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/whatsnew_wtr.jpg b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/whatsnew_wtr.jpg
new file mode 100644
index 0000000..c2a42da
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/whatsnew_wtr.jpg differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/back.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/back.gif
new file mode 100644
index 0000000..1c81cb6
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/back.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps16.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps16.png
new file mode 100644
index 0000000..4c15c82
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps16.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps48.gif
new file mode 100644
index 0000000..5140ad8
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps48sel.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps48sel.gif
new file mode 100644
index 0000000..954955d
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps48sel.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps72.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps72.gif
new file mode 100644
index 0000000..ff92f6e
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps72.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/forward.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/forward.gif
new file mode 100644
index 0000000..3e4a4f4
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/forward.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/home.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/home.gif
new file mode 100644
index 0000000..0160f8f
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/home.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate16.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate16.png
new file mode 100644
index 0000000..3fc8414
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate16.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate48.gif
new file mode 100644
index 0000000..dc48b18
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate48sel.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate48sel.gif
new file mode 100644
index 0000000..a9d6d07
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate48sel.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate72.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate72.gif
new file mode 100644
index 0000000..25fc317
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate72.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview16.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview16.png
new file mode 100644
index 0000000..b2e977f
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview16.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview48.gif
new file mode 100644
index 0000000..3843412
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview48sel.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview48sel.gif
new file mode 100644
index 0000000..fafc1a6
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview48sel.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview72.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview72.gif
new file mode 100644
index 0000000..39d089a
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview72.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples16.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples16.png
new file mode 100644
index 0000000..fdff5dd
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples16.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples48.gif
new file mode 100644
index 0000000..e71836e
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples48sel.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples48sel.gif
new file mode 100644
index 0000000..daaa044
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples48sel.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples72.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples72.gif
new file mode 100644
index 0000000..1515906
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples72.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials16.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials16.png
new file mode 100644
index 0000000..f2d688f
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials16.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials48.gif
new file mode 100644
index 0000000..f527297
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials48sel.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials48sel.gif
new file mode 100644
index 0000000..9d41c08
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials48sel.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials72.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials72.gif
new file mode 100644
index 0000000..8fd4816
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials72.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/wb16.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/wb16.png
new file mode 100644
index 0000000..e73ca61
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/wb16.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/wb48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/wb48.gif
new file mode 100644
index 0000000..c2fd06a
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/wb48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc16.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc16.png
new file mode 100644
index 0000000..b847caa
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc16.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc48.gif
new file mode 100644
index 0000000..b54d518
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc48sel.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc48sel.gif
new file mode 100644
index 0000000..798f415
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc48sel.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc72.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc72.gif
new file mode 100644
index 0000000..c4df0ad
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc72.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew16.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew16.png
new file mode 100644
index 0000000..5294b17
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew16.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew48.gif
new file mode 100644
index 0000000..4eeb56a
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew48sel.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew48sel.gif
new file mode 100644
index 0000000..d5ba746
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew48sel.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew72.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew72.gif
new file mode 100644
index 0000000..df3bd99
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew72.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/dtool/back.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/dtool/back.gif
new file mode 100644
index 0000000..f0d0929
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/dtool/back.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/dtool/forward.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/dtool/forward.gif
new file mode 100644
index 0000000..dbe58b2
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/dtool/forward.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/back.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/back.gif
new file mode 100644
index 0000000..f0d0929
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/back.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps48.gif
new file mode 100644
index 0000000..b277a7f
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps48sel.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps48sel.gif
new file mode 100644
index 0000000..9679b5f
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps48sel.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps72.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps72.gif
new file mode 100644
index 0000000..a68e0aa
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps72.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/forward.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/forward.gif
new file mode 100644
index 0000000..dbe58b2
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/forward.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/home.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/home.gif
new file mode 100644
index 0000000..b101d12
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/home.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate48.gif
new file mode 100644
index 0000000..313c983
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate48sel.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate48sel.gif
new file mode 100644
index 0000000..6a12231
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate48sel.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate72.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate72.gif
new file mode 100644
index 0000000..2a3fe17
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate72.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview48.gif
new file mode 100644
index 0000000..6ac4cf7
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview48sel.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview48sel.gif
new file mode 100644
index 0000000..5588700
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview48sel.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview72.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview72.gif
new file mode 100644
index 0000000..1e612b5
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview72.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples48.gif
new file mode 100644
index 0000000..eeace58
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples48sel.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples48sel.gif
new file mode 100644
index 0000000..38b965d
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples48sel.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples72.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples72.gif
new file mode 100644
index 0000000..504fea0
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples72.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials48.gif
new file mode 100644
index 0000000..dfe572b
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials48sel.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials48sel.gif
new file mode 100644
index 0000000..e8a8d93
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials48sel.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials72.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials72.gif
new file mode 100644
index 0000000..12698f6
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials72.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/wb48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/wb48.gif
new file mode 100644
index 0000000..50ca287
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/wb48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc48.gif
new file mode 100644
index 0000000..41fef5f
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc48sel.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc48sel.gif
new file mode 100644
index 0000000..5f7b9c7
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc48sel.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc72.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc72.gif
new file mode 100644
index 0000000..cdf21e4
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc72.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew48.gif
new file mode 100644
index 0000000..d73db3e
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew48sel.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew48sel.gif
new file mode 100644
index 0000000..8c9aaa2
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew48sel.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew72.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew72.gif
new file mode 100644
index 0000000..63844fd
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew72.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/obj48/new_obj.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/obj48/new_obj.gif
new file mode 100644
index 0000000..f46b81b
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/obj48/new_obj.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/obj48/newhov_obj.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/obj48/newhov_obj.gif
new file mode 100644
index 0000000..593e63b
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/obj48/newhov_obj.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/firststeps16.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/firststeps16.png
new file mode 100644
index 0000000..4c15c82
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/firststeps16.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/migrate16.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/migrate16.png
new file mode 100644
index 0000000..3fc8414
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/migrate16.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/overview.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/overview.gif
new file mode 100644
index 0000000..3fe629a
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/overview.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/samples.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/samples.gif
new file mode 100644
index 0000000..c695884
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/samples.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/tutorials.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/tutorials.gif
new file mode 100644
index 0000000..a18d7dd
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/tutorials.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/webresources16.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/webresources16.png
new file mode 100644
index 0000000..b847caa
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/webresources16.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/whatsnew.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/whatsnew.gif
new file mode 100644
index 0000000..f022324
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/whatsnew.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/background.jpg.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/background.jpg.REMOVED.git-id
new file mode 100644
index 0000000..ea27a4e
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/background.jpg.REMOVED.git-id
@@ -0,0 +1 @@
+969fcf3364fa68d76f88893a295845d310e05f79
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/brandmark.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/brandmark.gif
new file mode 100644
index 0000000..93f25f7
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/brandmark.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/dots.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/dots.gif
new file mode 100644
index 0000000..6621b7c
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/dots.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/swt/form_banner.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/swt/form_banner.gif
new file mode 100644
index 0000000..aebc0b2
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/swt/form_banner.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/firststeps.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/firststeps.css
new file mode 100644
index 0000000..0904e2b
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/firststeps.css
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+body {
+ background-image : url(../graphics/contentpage/firsteps_wtr.jpg);
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#firststeps img,
+#navigation-links a#firststeps:hover img,
+#navigation-links a#firststeps:focus img,
+#navigation-links a#firststeps:active img {
+ background-image : url(../graphics/icons/ctool/firsteps48sel.gif);
+}
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/font-absolute.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/font-absolute.css
new file mode 100644
index 0000000..a8b42e2
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/font-absolute.css
@@ -0,0 +1,88 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+.intro-header H1 {
+ font-size : 16pt;
+}
+
+h2 {
+ font-size : 13pt;
+}
+
+/* For regular div labels */
+H4 .div-label {
+ font-size : 10pt;
+}
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+ font-size : 10pt;
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+ font-size : 14pt;
+}
+
+.page-description {
+ font-size : 10pt;
+}
+
+a .link-label {
+ font-size : 10pt;
+}
+
+#navigation-links a .link-label {
+ font-size : 9pt;
+}
+
+a .text {
+ font-size : 8pt;
+}
+
+p .group-description {
+ font-size : 10pt;
+}
+
+.categoryContentnav {
+ font-size: 9pt;
+}
+
+.topicList {
+ font-size: 8pt;
+}
+
+/*
+ * Set up general font colours, sizes, etc. Some of these will override
+ * settings from the shared CSS
+ */
+#root .intro-header H1 {
+ font-size : 18pt;
+}
+#root #page-links a .link-label, #action-links a .link-label {
+ font-size : 13pt;
+}
+
+#root #page-links a p .text, #action-links a p .text {
+ font-size : 13pt;
+}
+
+#standby .intro-header H1 {
+ font-size : 15pt;
+}
+
+#standby #page-links a .link-label, #standby #action-links a .link-label {
+ font-size : 10pt;
+}
+
+#standby #page-links a p .text, #standby #action-links a p .text {
+ font-size : 10pt;
+}
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/font-relative.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/font-relative.css
new file mode 100644
index 0000000..f3ed239
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/font-relative.css
@@ -0,0 +1,88 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+.intro-header H1 {
+ font-size : 16pt
+}
+
+h2 {
+ font-size : 120%;
+}
+
+/* For regular div labels */
+H4 .div-label {
+ font-size : 100%;
+}
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+ font-size : 100%;
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+ font-size : 160%;
+}
+
+.page-description {
+ font-size : 100%;
+}
+
+a .link-label {
+ font-size : 100%;
+}
+
+#navigation-links a .link-label {
+ font-size : 90%;
+}
+
+a .text {
+ font-size : 90%;
+}
+
+p .group-description {
+ font-size : 100%;
+}
+
+.categoryContentnav {
+ //font-size: 9pt;
+}
+
+.topicList {
+ font-size: 90%;
+}
+
+/*
+ * Set up general font colours, sizes, etc. Some of these will override
+ * settings from the shared CSS
+ */
+#root .intro-header H1 {
+ font-size : 200%;
+}
+#root #page-links a .link-label, #root #action-links a .link-label {
+ font-size : 13pt;
+}
+
+#root #page-links a p .text, #root #action-links a p .text {
+ font-size : 13pt;
+}
+
+#standby .intro-header H1 {
+ font-size : 150%;
+}
+
+#standby #page-links a .link-label, #standby #action-links a .link-label {
+ font-size : 100%;
+}
+
+#standby #page-links a p .text, #standby #action-links a p .text {
+ font-size : 100%;
+}
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/ltr.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/ltr.css
new file mode 100644
index 0000000..57586c8
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/ltr.css
@@ -0,0 +1,19 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * This file contains styles that are specific to left to right display
+ */
+
+body {
+ direction: ltr;
+}
+
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/migrate.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/migrate.css
new file mode 100644
index 0000000..8d23eb9
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/migrate.css
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+body {
+ background-image : url(../graphics/contentpage/migrate_wtr.jpg);
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#migrate img,
+#navigation-links a#migrate:hover img,
+#navigation-links a#migrate:focus img,
+#navigation-links a#migrate:active img {
+ background-image : url(../graphics/icons/ctool/migrate48sel.gif);
+}
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/overview.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/overview.css
new file mode 100644
index 0000000..113c21c
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/overview.css
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+body {
+ background-image : url(../graphics/contentpage/overview_wtr.jpg);
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#overview img,
+#navigation-links a#overview:hover img,
+#navigation-links a#overview:focus img,
+#navigation-links a#overview:active img {
+ background-image : url(../graphics/icons/ctool/overview48sel.gif);
+}
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/root.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/root.css
new file mode 100644
index 0000000..4a998d9
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/root.css
@@ -0,0 +1,219 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+#page-links a .link-label, #action-links a .link-label {
font-weight : 600;
color : #E5E5E5;
+}
+#page-links a p .text, #action-links a p .text {
font-weight : 500;
color : #E5E5E5;
+}
+
+/*
+ * Turn off shared backround image.
+ */
+
+.page {
+ background-image: none;
+}
+
+/*
+ * Set up the content for the root page.
+ */
+body {
+ min-width : 770px;
/* since IE doesn't support min-width, use expression */
+ width:expression(document.body.clientWidth < 770? "770px": "auto" );
background-image : url(../graphics/root/background.jpg);
background-repeat : no-repeat;
background-position : top left;
background-color : #7169D1;
+}
+#root {
+/*
+ background-image : url(../graphics/root/brandmark.gif);
+*/
+ background-repeat : no-repeat;
background-position : bottom left;
+ min-height : 450px;
height : 100%;
height : expression(document.body.clientHeight < 450? "450px": "100%" );
+}
+
+#branding {
+ position: absolute;
+ bottom : 20px;
+ left : 20px;
+}
+
+/*
+ * We will not use the general-purpose group1 used in
+ * other pages for a curve image.
+ */
+
+#extra-group1 {
+ display : none;
+}
+/*
+ * Set up the navigation bar. It should be centered in the middle
+ * of the page
+ */
+#links-background {
+ background-image : url(../graphics/root/dots.gif);
background-repeat : repeat-x;
width : 100%;
height : 177px;
margin-top : 18%;
margin-bottom : auto;
text-align : center;
+}
+/* specify a width for Moz so we can center.
+ * **Important** If additional links are added, we will have to increase this width
+ * to accomodate them, otherwise they will wrap to a new line
+ */
+
+#links-background > #page-links {
+ width: 33em;
+ margin: 0 auto;
+}
+
+#page-links {
+ position : relative;
top : 50px;
+ text-align: center;
+}
+#page-links a {
+ position : relative;
width : 86px;
margin-left : 1em;
margin-right : 1em;
text-align : center;
vertical-align : top;
+}
+/* float left for Moz so the items all appear inline */
+#page-links > a {
+ float : left;
position : relative;
+}
+#page-links a img {
+ height : 82px;
width : 82px;
vertical-align : middle;
+}
+/* remove the hover image from the flow of the document,
+ so it doesn't take up space and change the position
+ of the link label and descriptions */
+#page-links a .background-image {
+ position : absolute;
+}
+/* properly align the link label and text based on class (left vs. right) */
+#page-links a:hover {
+ /* This is needed for IE to force the hover pseudo selectors below to work.*/
padding : 0 em;
+}
+/* Hide both the label and the description of the link and remove them from static HTML flow, until user hovers over link */
+/* First, set the width of both the label and the description to a max of 15 em. */
+/* This can be changed when translated to different country locals. */
+#page-links a span {
+ width : 16em;
}
+/* Set up left links orientation first. */
+#page-links a.left:link .link-label,
+#page-links a.left:visited .link-label {
+ display: none;
+}
+#page-links a.left:hover .link-label,
+#page-links a.left:focus .link-label,
+#page-links a.left:active .link-label {
+ text-align: left;
display: block;
position: absolute;
top : 120 %;
left : 0;
+}
+/* hide description and remove it from static HTML flow, until user hovers over link */
+#page-links a.left:link .text,
+#page-links a.left:visited .text {
+ display: none;
+}
+#page-links a.left:hover .text,
+#page-links a.left:focus .text,
+#page-links a.left:active .text {
+ text-align: left;
display: block;
position: absolute;
left : 0;
top: 145%;
+}
+/* Set up right links orientation now. */
+#page-links a.right:link .link-label,
+#page-links a.right:visited .link-label {
+ display: none;
+}
+#page-links a.right:hover .link-label,
+#page-links a.right:focus .link-label,
+#page-links a.right:active .link-label {
+ text-align: right;
display: block;
position: absolute;
top : 120 %;
right : 0;
+}
+/* hide description and remove it from static HTML flow, until user hovers over link */
+#page-links a.right:link .text,
+#page-links a.right:visited .text {
+ display: none;
+}
+#page-links a.right:hover .text,
+#page-links a.right:focus .text,
+#page-links a.right:active .text {
+ text-align: right;
display: block;
position: absolute;
right : 0;
top: 145%;
+}
+/* properties for each of the page-links */
+#page-links a#overview img { background-image : url(../graphics/icons/etool/overview72.gif); }
+#page-links a:hover#overview img { background-image : url(../graphics/icons/ctool/overview72.gif); }
+
+#page-links a#tutorials img { background-image : url(../graphics/icons/etool/tutorials72.gif); }
+#page-links a:hover#tutorials img { background-image : url(../graphics/icons/ctool/tutorials72.gif); }
+
+#page-links a#samples img { background-image : url(../graphics/icons/etool/samples72.gif); }
+#page-links a:hover#samples img { background-image : url(../graphics/icons/ctool/samples72.gif); }
+
+#page-links a#whatsnew img { background-image : url(../graphics/icons/etool/whatsnew72.gif); }
+#page-links a:hover#whatsnew img { background-image : url(../graphics/icons/ctool/whatsnew72.gif); }
+
+#page-links a#firststeps img { background-image : url(../graphics/icons/etool/firsteps72.gif); }
+#page-links a:hover#firststeps img { background-image : url(../graphics/icons/ctool/firsteps72.gif); }
+
+#page-links a#webresources img { background-image : url(../graphics/icons/etool/webrsrc72.gif); }
+#page-links a:hover#webresources img { background-image : url(../graphics/icons/ctool/webrsrc72.gif); }
+
+#page-links a#migrate img { background-image : url(../graphics/icons/etool/migrate72.gif); }
+#page-links a:hover#migrate img { background-image : url(../graphics/icons/ctool/migrate72.gif); }
+
+/*
+ * Set up the action links
+ */
+#action-links {
+ width : 98%;
position : absolute;
left : 0px;
top : 20px;
+}
+#action-links a#workbench {
+ position : absolute;
top : -16px;
right : -8px;
text-align : right;
+}
+#action-links a .background-image,
+#action-links a #workbench_img {
+ height : 53px;
width : 53px;
text-align : center;
vertical-align : top;
+}
+/* special case for mozilla */
+#action-links a > .background-image,
+#action-links a > #workbench_img {
+ vertical-align : middle;
+}
+/* remove the hover image from the flow of the document,
+ so it doesn't take up space and change the position
+ of the main image */
+#action-links a .background-image {
+ position : absolute;
+}
+
+#action-links a#workbench .background-image {
+ background-image : url(../graphics/icons/etool/wb48.gif);
+}
+
+#action-links a#workbench:hover .background-image,
+#action-links a#workbench:focus .background-image,
+#action-links a#workbench:active .background-image {
+ background-image : url(../graphics/icons/ctool/wb48.gif);
+ visibility : visible;
+ position: absolute;
+ top: 0px;
+ right: 0px;
+}
+/* hide the link and description until users hover over the link */
+#action-links a p .text, #action-links a .link-label {
+ display : none;
+}
+#action-links a:hover .link-label,
+#action-links a:focus .link-label,
+#action-links a:active .link-label {
+ display : block;
width : 16em;
+ margin-left : 10px;
+}
+#action-links a:hover p .text,
+#action-links a:focus p .text,
+#action-links a:active p .text {
+ display : block;
width : 16em;
+}
+#action-links a:hover,
+#action-links a:focus,
+#action-links a:active {
+ border : 0px;
+}
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/rtl.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/rtl.css
new file mode 100644
index 0000000..8929906
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/rtl.css
@@ -0,0 +1,106 @@
+/*******************************************************************************
+ * Copyright (c) 2008, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * This file contains styles that are specific to right to left display
+ */
+
+
+table {
+ direction: rtl;
+}
+
+#page-content p {
+ text-align : right;
+}
+
+#page-content #content-header H4, .page-description {
+ text-align : right;
+}
+
+#page-content table tr td a > .link-label {
+ left:0px;
+}
+
+#page-content * td a .link-label {
+ display:block;
+ left:0px;
+ margin-right:0px;
+ position:static;
+ top:0px;
+}
+
+#page-content * td a .text {
+ display:block;
+ left:0px;
+ margin-right:0px;
+ position:static;
+ top:0px;
+}
+
+.content-group {
+ text-align: right;
+}
+
+.intro-header span {
+ margin-right : 45px;
+ padding-right : 45px;
+}
+
+div div#rss-news {
+ position:static;
+ margin-left:0px;
+ margin-bottom: 0px;
+ margin-top: 10px;
+ top : 0px;
+ margin-right : 30px;
+}
+
+div ul#eclipse-news {
+ list-style-image: url("../graphics/icons/ctool/arrow_rtl.gif");
+ margin-left: 0px;
+ padding-right: 10px;
+ margin-right: 10px;
+}
+
+/* The 'closed' toggle image part of the folding section. */
+#page-content .section-title-link .section-toggle-image-closed {
+ background-image : url(../graphics/icons/ctool/widget_closed_rtl.gif);
+}
+
+#page-content .section-title-link:hover .section-toggle-image-closed,
+#page-content .section-title-link:active .section-toggle-image-closed {
+ background-image : url(../graphics/icons/ctool/widget_closed_hov_rtl.gif);
+}
+
+#standby #links-background {
+ text-align:right;
+}
+
+#standby #page-links a {
+ text-align : right;
+}
+
+#standby #page-links a .link-label {
+ left:auto;
+ right : 60px;
+}
+
+#standby #page-links p {
+ right : 60px;
+}
+
+#standby #page-links a p .text {
+ margin-right:auto;
+ left:auto;
+ right : 60px;
+}
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/samples.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/samples.css
new file mode 100644
index 0000000..b994004
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/samples.css
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+body {
+ background-image : url(../graphics/contentpage/samples_wtr.jpg);
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#samples img,
+#navigation-links a#samples:hover img,
+#navigation-links a#samples:focus img,
+#navigation-links a#samples:active img {
+ background-image : url(../graphics/icons/ctool/samples48sel.gif);
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/shared.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/shared.css
new file mode 100644
index 0000000..6e9e694
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/shared.css
@@ -0,0 +1,420 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * Set up general fonts, sizes and colors
+ */
+body { font-family : Arial, sans-serif; }
+
+H1, H2, H3, H4, p, a { color : #4D4D4D; }
+
+.intro-header H1 {
+ font-weight : normal;
+ color : #E5E5E5;
+}
+
+h2 {
+ font-weight : normal;
+ color : #7B8694;
+}
+/* For regular div labels */
+H4 .div-label {
+ font-weight : bold;
+}
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+ display : inline;
+}
+
+/* For separators */
+HR {
+ width: 90%;
+ align: left;
+ height : 1px;
+ color : #dfdfe4;
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+ font-weight : normal;
+ color : #8C96A2;
+ float : none;
+ clear : both;
+}
+
+.page-description {
+ float : none;
+ clear : both;
+}
+
+a {
+ font-weight : bold;
+ text-decoration : none;
+ color : #4D4D4D;
+}
+
+a .link-label {
+ font-weight : normal;
+}
+
+/* Hide the 'special-effect' extra div in links by default. */
+.link-extra-div {
+ display : none;
+}
+
+#navigation-links a .link-label {
+ font-weight : normal;
+ color : #E5E5E5;
+}
+
+a .text {
+ font-weight : normal;
+}
+
+p .group-description {
+ font-weight : normal;
+}
+
+
+/*
+ * Set up other general properties like padding/margins
+ */
+html, body { width : 100%; height : 100%; }
+
+html, body, div, h1, h4, p, a { margin : 0px; padding : 0px; }
+
+.intro-header H1 { padding-top : 10px; margin-left : 10px; }
+
+.section { }
+.section-body { display: none; padding : 0px; }
+
+/* For regular div labels */
+#page-content div H4 {
+ padding : 10px;
+ padding-bottom : 0px;
+}
+
+/* For the main page content's div label */
+#page-content #content-header H4 {
+ padding-bottom : 10px;
+ padding-top : 0px;
+}
+
+/* special case for Mozilla's main content-header label.
+ Mozilla 1.4 needs more room at the top */
+#page-content > #content-header H4 { padding-top : 10px; }
+
+/* Needed in IE to get shift+tab to show the active image properly */
+a:active {
+ border : solid 0px;
+}
+
+a img {
+ border-width : 0;
+ background-repeat : no-repeat;
+}
+
+/*
+ * to get scrollbars working in both IE and Mozilla
+ */
+html,body { overflow: auto; }
+html>body { overflow: visible; }
+
+/*
+ * Set up the body, decorative background, and navigation for the content
+ * pages.
+ * Note: the root page handles its own background and navigation; these
+ * settings primarily apply to the content pages
+ */
+body {
+ background-color : #FFFFFF;
+ background-repeat : no-repeat;
+ background-position : bottom right;
+}
+
+/*
+ * We will use one of the general purpose groups to show
+ * the curve image
+ */
+#extra-group1 {
+ width : 100%;
+ height : 164px;
+ position : absolute;
+ top : 0px;
+ background-image : url(../graphics/contentpage/backgroundcurve.gif);
+ background-repeat : no-repeat;
+ background-position : top center;
+ margin : 0;
+ padding : 0;
+}
+
+/*
+ * Hide the other general-purpose groups
+ */
+
+#extra-group2,
+#extra-group3,
+#extra-group4,
+#extra-group5 {
+ display : none;
+}
+
+.intro-header { background-color : transparent; z-index : 100;}
+
+body, .page{
+ min-width : 770px;
+ /* since IE doesn't support min-width, try expression */
+ width:expression(document.body.clientWidth < 770? "770px": "auto" );
+ min-height : 425px;
+ height : 100%;
+ height : expression(document.body.clientHeight < 425? "425px": "100%" );
+}
+
+.page {
+ min-height : 475px;
+ background-image : url(../graphics/contentpage/background.jpg);
+ background-repeat : repeat-x;
+ background-position : top left;
+}
+
+#page-content {
+ background-repeat : no-repeat;
+ background-position : bottom right;
+ height : 70%;
+}
+
+/*
+ * Lay out the navigation links
+ * (Root page does something similar for its navigation)
+ */
+#navigation-links {
+ position : relative;
+ left : 10px;
+ top : 5px;
+ height : 60px;
+ width : 98%;
+}
+
+#navigation-links a {
+ padding-left : 5px;
+ padding-right : 5px;
+ float : left;
+ text-align : center;
+}
+
+#navigation-links #customize {
+ padding-left : 5px;
+ padding-right : 5px;
+ float : left;
+ text-align : center;
+}
+
+#navigation-links a img {
+ height : 52px;
+ width : 52px;
+ vertical-align : middle;
+}
+
+#navigation-links a .link-label { display : block; margin-top : 5px;}
+
+#navigation-links a .text { display : none; }
+
+#navigation-links a:hover,
+#navigation-links a:focus
+#navigation-links a:active { border-right : 0px;}
+
+/* properties for each of the navigation-links */
+#navigation-links a#overview img { background-image : url(../graphics/icons/etool/overview48.gif); }
+#navigation-links a#overview:hover img,
+#navigation-links a#overview:focus img,
+#navigation-links a#overview:active img { background-image : url(../graphics/icons/ctool/overview48.gif); }
+
+#navigation-links a#tutorials img { background-image : url(../graphics/icons/etool/tutorials48.gif); }
+#navigation-links a#tutorials:hover img,
+#navigation-links a#tutorials:active img,
+#navigation-links a#tutorials:focus img { background-image : url(../graphics/icons/ctool/tutorials48.gif); }
+
+#navigation-links a#samples img { background-image : url(../graphics/icons/etool/samples48.gif); }
+#navigation-links a#samples:hover img,
+#navigation-links a#samples:active img,
+#navigation-links a#samples:focus img { background-image : url(../graphics/icons/ctool/samples48.gif); }
+
+#navigation-links a#whatsnew img { background-image : url(../graphics/icons/etool/whatsnew48.gif); }
+#navigation-links a#whatsnew:hover img,
+#navigation-links a#whatsnew:focus img,
+#navigation-links a#whatsnew:active img { background-image : url(../graphics/icons/ctool/whatsnew48.gif); }
+
+#navigation-links a#firststeps img { background-image : url(../graphics/icons/etool/firsteps48.gif); }
+#navigation-links a#firststeps:hover img,
+#navigation-links a#firststeps:focus img,
+#navigation-links a#firststeps:active img { background-image : url(../graphics/icons/ctool/firsteps48.gif); }
+
+#navigation-links a#webresources img { background-image : url(../graphics/icons/etool/webrsrc48.gif); }
+#navigation-links a#webresources:hover img,
+#navigation-links a#webresources:focus img,
+#navigation-links a#webresources:active img { background-image : url(../graphics/icons/ctool/webrsrc48.gif); }
+
+#navigation-links a#migrate img { background-image : url(../graphics/icons/etool/migrate48.gif); }
+#navigation-links a#migrate:hover img,
+#navigation-links a#migrate:focus img,
+#navigation-links a#migrate:active img { background-image : url(../graphics/icons/ctool/migrate48.gif); }
+
+
+#navigation-links a#workbench { position : absolute; right : 0px; top : -35px; text-align : right;}
+#navigation-links a#workbench .text { display : none; }
+#navigation-links a#workbench img { background-image : url(../graphics/icons/etool/wb48.gif); width : 53px; height : 53px;}
+#navigation-links a#workbench:hover img,
+#navigation-links a#workbench:focus img,
+#navigation-links a#workbench:active img { background-image : url(../graphics/icons/ctool/wb48.gif); }
+
+/*
+ * Lay out the page title and description
+ */
+h1, p { margin-left : 10px; } /* required in mozilla so the page description is properly indented */
+
+/* position the page content so that the page title overlays the bottom
+ * of the background image, but make sure the content is always on top
+ * (using z-index) */
+#page-content {
+ float : none;
+ clear : both;
+ text-align : center;
+ margin-top : 35px;
+}
+
+.page > #page-content { margin-top : 50px; }
+
+#page-content p {
+ padding-bottom : 15px;
+ text-align : left;
+ float : none;
+ clear : both;
+}
+
+/* Page content bins */
+
+#page-content #top-left {
+ border: none; float: left; margin: 0px; padding: 0px; width: 49%;
+ clear: left;
+}
+#page-content #top-right {
+ border: none; float: right; margin: 0px; padding: 0px; width: 49%;
+ clear: right;
+}
+
+/* top-bottom divider - runs the entire width to ensure
+ * bottom boxes start at the same y
+ */
+#page-content #content-divider {
+ border: none; float: none; margin: 0; padding: 0px; width: 100%;
+ clear: both;
+}
+
+#page-content #bottom-left {
+ border: none; float: left; margin: 0px; padding: 0px; width: 49%;
+ clear: left;
+}
+#page-content #bottom-right {
+ border: none; float: right; margin: 0px; padding: 0px; width: 49%;
+ clear: right;
+}
+
+#page-content #content-header H4, .page-description {
+ text-align : left;
+ margin-right : 10px;
+ float : none;
+ clear : both;
+}
+
+#page-content #top-left > *,
+#page-content #top-right > *,
+#page-content #bottom-left > *,
+#page-content #bottom-right > * {
+ display: block;
+}
+
+#page-content * > a {
+ vertical-align : middle;
+}
+
+#page-content * a img {
+ height : 57px;
+ width : 57px;
+ vertical-align : middle;
+}
+
+#page-content * a .link-label {
+ display : block;
+ position : relative;
+ top : -50px;
+ left : 60px;
+ margin-right: 60px;
+}
+
+#page-content * a > .link-label { left: 65px; }
+
+#page-content * a p .text {
+ display : block;
+ position : relative;
+ top : -45px;
+ margin-bottom: -25px;
+ left : 53px;
+ margin-right: 53px;
+}
+
+#page-content * a p > .text { left: 58px; }
+
+#page-content * a:hover { border-right : 5px; }
+
+
+/* The following rules are for extensions in all pages. Extensions should be placed in
+ * groups with the style 'content-group' and contain links with the style 'content-link'.
+ * Group is important so that importance mixin style can be applied to the group that
+ * uses block display. We need to see a solid rectangle around the extension, not
+ * a tight polygon around the link perimeter.
+ */
+
+.content-group {
+ margin-left: 10px;
+ margin-right: 10px;
+ padding-left: 10px;
+ padding-right: 10px;
+ float : none;
+ clear : both;
+ text-align : left;
+}
+
+.categoryContentnav {
+ font-weight: bold;
+ color: #4A4D4A;
+}
+
+.topicList {
+ line-height:1.75;
+ color: #00507C;
+}
+
+.content-link:hover { border-right : 0px; }
+
+iframe {
+ position:relative;
+ top:16px;
+ width:100%;
+ height:100%;
+ padding-left:10px;
+ }
+
+/* mozilla scrollbar appearing off page fix */
+#page-content > iframe {
+ width: 98%;
+ padding-left: 2%;
+}
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/standby.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/standby.css
new file mode 100644
index 0000000..9406e97
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/standby.css
@@ -0,0 +1,169 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * Set up general font colours, sizes, etc. Some of these will override
+ * settings from the shared CSS
+ */
+
+#page-links a .link-label, #action-links a .link-label {
+ font-weight : 600;
+ color : #E5E5E5;
+}
+
+#page-links a p .text, #action-links a p .text {
+ font-weight : 500;
+ color : #E5E5E5;
+}
+
+/*
+ * We will not use the general-purpose group1 used in
+ * other pages for a curve image.
+ */
+
+#extra-group1 {
+ display : none;
+}
+
+/*
+ * Set up the content for the standby page.
+ */
+body {
+ min-width : 230px;
+ /* since IE doesn't support min-width, use expression */
+ width:expression(document.body.clientWidth < 230? "230px": "auto" );
+ background-image : url(../graphics/root/background.jpg);
+ background-repeat : no-repeat;
+ background-position : top left;
+ background-color : #7169D1;
+}
+
+.page {
+/*
+ background-image : url(../graphics/root/brandmark.gif);
+ background-repeat : no-repeat;
+ background-position : bottom left;
+*/
+ background-image: none;
+ min-width : 230px;
+ /* since IE doesn't support min-width, use expression */
+ width:expression(document.body.clientWidth < 230? "230px": "auto" );
+ min-height : 610px;
+ height : 100%;
+ height : expression(document.body.clientHeight < 450? "450px": "100%" );
+}
+
+#extra-group1 {
+ display: none;
+}
+
+/*
+ * Set up the navigation bar. It should be centered in the middle
+ * of the page
+ */
+
+#links-background {
+ width : 100%;
+ margin-top : 10%;
+ margin-bottom : auto;
+ text-align : center;
+}
+
+#page-links a {
+ display : block;
+ width : 220px;
+ text-align : left;
+ margin-left : auto;
+ margin-right : auto;
+ margin-top : 0px;
+ vertical-align : top;
+}
+#page-links a span, #page-links a p {
+ display : block;
+ width : 160px;
+ margin : 0px;
+ padding : 0px;
+}
+
+#page-links a .link-label {
+ position : relative;
+ left : 60px;
+ top : -50px;
+}
+
+#page-links a p .text {
+ position : relative;
+ left : 60px;
+ top : -50px;
+
+}
+
+#page-links a .content-img {
+ visibility: hidden;
+}
+
+#page-links a img {
+ height : 52px;
+ width : 52px;
+ vertical-align : middle;
+}
+
+#page-links a:hover,
+#page-links a:focus,
+#page-links a:active { border : 0px; }
+
+#page-links a:hover p,
+#page-links a:focus p,
+#page-links a:active p { margin : 0px; padding : 0px; }
+
+#action-links a { visibility: hidden; }
+
+/* properties for each of the page-links */
+a#overview img { background-image : url(../graphics/icons/etool/overview48.gif); }
+a#overview:hover img,
+a#overview:focus img,
+a#overview:active img { background-image : url(../graphics/icons/ctool/overview48.gif); }
+
+a#tutorials img { background-image : url(../graphics/icons/etool/tutorials48.gif); }
+a#tutorials:hover img,
+a#tutorials:focus img,
+a#tutorials:active img { background-image : url(../graphics/icons/ctool/tutorials48.gif); }
+
+a#samples img { background-image : url(../graphics/icons/etool/samples48.gif); }
+a#samples:hover img,
+a#samples:focus img,
+a#samples:active img { background-image : url(../graphics/icons/ctool/samples48.gif); }
+
+a#whatsnew img { background-image : url(../graphics/icons/etool/whatsnew48.gif); }
+a#whatsnew:hover img,
+a#whatsnew:focus img,
+a#whatsnew:active img { background-image : url(../graphics/icons/ctool/whatsnew48.gif); }
+
+a#firststeps img { background-image : url(../graphics/icons/etool/firsteps48.gif); }
+a#firststeps:hover img,
+a#firststeps:focus img,
+a#firststeps:active img { background-image : url(../graphics/icons/ctool/firsteps48.gif); }
+
+a#webresources img { background-image : url(../graphics/icons/etool/webrsrc48.gif); }
+a#webresources:hover img,
+a#webresources:focus img,
+a#webresources:active img { background-image : url(../graphics/icons/ctool/webrsrc48.gif); }
+
+a#migrate img { background-image : url(../graphics/icons/etool/migrate48.gif); }
+a#migrate:hover img,
+a#migrate:focus img,
+a#migrate:active img { background-image : url(../graphics/icons/ctool/migrate48.gif); }
+
+a#workbench img { background-image : url(../graphics/icons/etool/wb48.gif); }
+a#workbench:hover img,
+a#workbench:focus img,
+a#workbench:active img { background-image : url(../graphics/icons/ctool/wb48.gif); }
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/tutorials.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/tutorials.css
new file mode 100644
index 0000000..1f35046
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/tutorials.css
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+body {
+ background-image : url(../graphics/contentpage/tutorials_wtr.jpg);
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#tutorials img,
+#navigation-links a#tutorials:hover img,
+#navigation-links a#tutorials:focus img,
+#navigation-links a#tutorials:active img {
+ background-image : url(../graphics/icons/ctool/tutorials48sel.gif);
+}
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/webresources.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/webresources.css
new file mode 100644
index 0000000..f15c3cd
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/webresources.css
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+body {
+ background-image : url(../graphics/contentpage/webrsrc_wtr.jpg);
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#webresources img,
+#navigation-links a#webresources:hover img,
+#navigation-links a#webresources:focus img,
+#navigation-links a#webresources:active img {
+ background-image : url(../graphics/icons/ctool/webrsrc48sel.gif);
+}
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/whatsnew.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/whatsnew.css
new file mode 100644
index 0000000..1d23ca3
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/whatsnew.css
@@ -0,0 +1,28 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+body {
+ background-image : url(../graphics/contentpage/whatsnew_wtr.jpg);
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#whatsnew img,
+#navigation-links a#whatsnew:hover img,
+#navigation-links a#whatsnew:focus img,
+#navigation-links a#whatsnew:active img {
+ background-image : url(../graphics/icons/ctool/whatsnew48sel.gif);
+}
+
+/*
+ * Default images for content links in this page.
+ */
+.content-link img { background-image : url(../graphics/icons/obj48/new_obj.gif); }
+.content-link:hover img { background-image : url(../graphics/icons/obj48/newhov_obj.gif); }
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/preview.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/preview.png
new file mode 100644
index 0000000..e280b53
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/preview.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/firststeps.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/firststeps.properties
new file mode 100644
index 0000000..ea3ca84
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/firststeps.properties
@@ -0,0 +1,15 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+firststeps.page-content.layout.ncolumns = 2
+firststeps.page-content.page-title.layout.colspan = 2
+firststeps.page-content.page-description.layout.colspan = 2
+firststeps.page-content.content-divider.layout.colspan = 2
+firststeps.subtitle-id = firststeps/page-content/page-title
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/migrate.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/migrate.properties
new file mode 100644
index 0000000..6c2cb2b
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/migrate.properties
@@ -0,0 +1,15 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+migrate.page-content.layout.ncolumns = 2
+migrate.page-content.page-title.layout.colspan = 2
+migrate.page-content.page-description.layout.colspan = 2
+migrate.page-content.content-divider.layout.colspan = 2
+migrate.subtitle-id = migrate/page-content/page-title
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/overview.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/overview.properties
new file mode 100644
index 0000000..1576641
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/overview.properties
@@ -0,0 +1,17 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+overview.page-content.layout.ncolumns = 2
+overview.page-content.page-title.layout.colspan = 2
+overview.page-content.page-description.layout.colspan = 2
+overview.page-content.content-divider.layout.colspan = 2
+
+overview.subtitle-id = overview/page-content/page-title
+overview.description-id = overview/page-content/page-description
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/root.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/root.properties
new file mode 100644
index 0000000..71518d0
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/root.properties
@@ -0,0 +1,51 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+theme=true
+root.links-background.page-links.overview.link-icon = ../graphics/icons/etool/overview72.gif
+root.links-background.page-links.tutorials.link-icon = ../graphics/icons/etool/tutorials72.gif
+root.links-background.page-links.samples.link-icon= ../graphics/icons/etool/samples72.gif
+root.links-background.page-links.whatsnew.link-icon = ../graphics/icons/etool/whatsnew72.gif
+root.links-background.page-links.migrate.link-icon = ../graphics/icons/etool/migrate72.gif
+root.links-background.page-links.firststeps.link-icon = ../graphics/icons/etool/firsteps72.gif
+root.links-background.page-links.webresources.link-icon = ../graphics/icons/etool/webrsrc72.gif
+root.action-links.workbench.link-icon = ../graphics/icons/etool/wb48.gif
+
+root.links-background.page-links.overview.hover-icon = ../graphics/icons/ctool/overview72.gif
+root.links-background.page-links.tutorials.hover-icon = ../graphics/icons/ctool/tutorials72.gif
+root.links-background.page-links.samples.hover-icon = ../graphics/icons/ctool/samples72.gif
+root.links-background.page-links.whatsnew.hover-icon = ../graphics/icons/ctool/whatsnew72.gif
+root.links-background.page-links.migrate.hover-icon = ../graphics/icons/ctool/migrate72.gif
+root.links-background.page-links.firststeps.hover-icon = ../graphics/icons/ctool/firsteps72.gif
+root.links-background.page-links.webresources.hover-icon = ../graphics/icons/ctool/webrsrc72.gif
+root.action-links.workbench.hover-icon = ../graphics/icons/ctool/wb48.gif
+
+
+root.links-background.page-links.overview.small-link-icon = ../graphics/icons/etool/overview48.gif
+root.links-background.page-links.tutorials.small-link-icon = ../graphics/icons/etool/tutorials48.gif
+root.links-background.page-links.samples.small-link-icon = ../graphics/icons/etool/samples48.gif
+root.links-background.page-links.whatsnew.small-link-icon = ../graphics/icons/etool/whatsnew48.gif
+root.links-background.page-links.migrate.small-link-icon = ../graphics/icons/etool/migrate48.gif
+root.links-background.page-links.firststeps.small-link-icon = ../graphics/icons/etool/firsteps48.gif
+root.links-background.page-links.webresources.small-link-icon = ../graphics/icons/etool/webrsrc48.gif
+root.action-links.workbench.small-link-icon = ../graphics/icons/etool/wb48.gif
+
+root.links-background.page-links.overview.small-hover-icon = ../graphics/icons/ctool/overview48.gif
+root.links-background.page-links.tutorials.small-hover-icon = ../graphics/icons/ctool/tutorials48.gif
+root.links-background.page-links.samples.small-hover-icon = ../graphics/icons/ctool/samples48.gif
+root.links-background.page-links.whatsnew.small-hover-icon = ../graphics/icons/ctool/whatsnew48.gif
+root.links-background.page-links.migrate.small-hover-icon = ../graphics/icons/ctool/migrate48.gif
+root.links-background.page-links.firststeps.small-hover-icon = ../graphics/icons/ctool/firsteps48.gif
+root.links-background.page-links.webresources.small-hover-icon = ../graphics/icons/ctool/webrsrc48.gif
+root.action-links.workbench.small-hover-icon = ../graphics/icons/ctool/wb48.gif
+
+root.layout.ncolumns = 1
+root.links-background.page-links.layout.hspacing = 40
+root.layout.vspacing = 35
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/samples.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/samples.properties
new file mode 100644
index 0000000..c5f11f3
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/samples.properties
@@ -0,0 +1,20 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+samples.page-content.layout.vspacing = 40
+
+samples.page-content.layout.ncolumns = 2
+samples.page-content.page-title.layout.colspan = 2
+samples.page-content.page-description.layout.colspan = 2
+samples.page-content.content-divider.layout.colspan = 2
+
+description-style-id = group-description
+samples.subtitle-id = samples/page-content/page-title
+samples.description-id = samples/page-content/page-description
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/standby.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/standby.properties
new file mode 100644
index 0000000..c6e4435
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/standby.properties
@@ -0,0 +1,33 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+theme=true
+standby.links-background.page-links.overview.link-icon = ../graphics/icons/etool/overview72.gif
+standby.links-background.page-links.tutorials.link-icon = ../graphics/icons/etool/tutorials72.gif
+standby.links-background.page-links.samples.link-icon= ../graphics/icons/etool/samples72.gif
+standby.links-background.page-links.whatsnew.link-icon = ../graphics/icons/etool/whatsnew72.gif
+standby.links-background.page-links.firststeps.link-icon = ../graphics/icons/etool/firsteps72.gif
+standby.links-background.page-links.migrate.link-icon = ../graphics/icons/etool/migrate72.gif
+standby.links-background.page-links.webresources.link-icon = ../graphics/icons/etool/webrsrc72.gif
+standby.action-links.workbench.link-icon = ../graphics/icons/etool/wb48.gif
+
+standby.links-background.page-links.overview.hover-icon = ../graphics/icons/ctool/overview72.gif
+standby.links-background.page-links.tutorials.hover-icon = ../graphics/icons/ctool/tutorials72.gif
+standby.links-background.page-links.samples.hover-icon = ../graphics/icons/ctool/samples72.gif
+standby.links-background.page-links.whatsnew.hover-icon = ../graphics/icons/ctool/whatsnew72.gif
+standby.links-background.page-links.migrate.hover-icon = ../graphics/icons/ctool/migrate72.gif
+standby.links-background.page-links.firststeps.hover-icon = ../graphics/icons/ctool/firsteps72.gif
+standby.links-background.page-links.webresources.hover-icon = ../graphics/icons/ctool/webrsrc72.gif
+standby.action-links.workbench.hover-icon = ../graphics/icons/ctool/wb48.gif
+
+standby.links-background.page-links.layout.vspacing = 30
+standby.layout.vspacing = 35
+standby.show-link-description = false
+standby.show-home-page-navigation = false
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/tutorials.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/tutorials.properties
new file mode 100644
index 0000000..b74fbc9
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/tutorials.properties
@@ -0,0 +1,19 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+tutorials.page-content.layout.vspacing = 40
+tutorials.page-content.layout.ncolumns = 2
+tutorials.page-content.page-title.layout.colspan = 2
+tutorials.page-content.page-description.layout.colspan = 2
+tutorials.page-content.content-divider.layout.colspan = 2
+
+tutorials.subtitle-id = tutorials/page-content/page-title
+tutorials.description-id = tutorials/page-content/page-description
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/webresources.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/webresources.properties
new file mode 100644
index 0000000..45cc9b2
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/webresources.properties
@@ -0,0 +1,19 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+webresources.page-content.layout.vspacing = 40
+
+webresources.page-content.layout.ncolumns = 2
+webresources.page-content.page-title.layout.colspan = 2
+webresources.page-content.page-description.layout.colspan = 2
+webresources.page-content.content-divider.layout.colspan = 2
+
+webresources.subtitle-id = webresources/page-content/page-title
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/whatsnew.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/whatsnew.properties
new file mode 100644
index 0000000..2bba9c2
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/whatsnew.properties
@@ -0,0 +1,24 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+theme = true
+whatsnew.page-content.layout.vspacing = 40
+
+whatsnew.page-content.layout.ncolumns = 2
+whatsnew.page-content.page-title.layout.colspan = 2
+whatsnew.page-content.page-description.layout.colspan = 2
+whatsnew.page-content.content-divider.layout.colspan = 2
+
+whatsnew.separator.fg = #dfdfe4
+
+whatsnew.link-icon = ../graphics/icons/obj48/new_obj.gif
+whatsnew.hover-icon = ../graphics/icons/obj48/newhov_obj.gif
+
+whatsnew.subtitle-id = whatsnew/page-content/page-title
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/grey_callout.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/grey_callout.gif
new file mode 100644
index 0000000..e8877a1
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/grey_callout.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/ov_high.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/ov_high.gif
new file mode 100644
index 0000000..144af18
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/ov_high.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/ov_med.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/ov_med.gif
new file mode 100644
index 0000000..1ed93fa
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/ov_med.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/tu-sa_high.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/tu-sa_high.gif
new file mode 100644
index 0000000..4059b1c
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/tu-sa_high.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/tu-sa_med.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/tu-sa_med.gif
new file mode 100644
index 0000000..a939a97
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/tu-sa_med.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wn-fs_high.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wn-fs_high.gif
new file mode 100644
index 0000000..492f2b1
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wn-fs_high.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wn-fs_med.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wn-fs_med.gif
new file mode 100644
index 0000000..fcfcac8
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wn-fs_med.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wr-mi_high.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wr-mi_high.gif
new file mode 100644
index 0000000..9d97731
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wr-mi_high.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wr-mi_med.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wr-mi_med.gif
new file mode 100644
index 0000000..551a32c
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wr-mi_med.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/arrow.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/arrow.gif
new file mode 100644
index 0000000..7d4c3f1
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/arrow.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/arrow_rtl.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/arrow_rtl.gif
new file mode 100644
index 0000000..d7bb424
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/arrow_rtl.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed.gif
new file mode 100644
index 0000000..21f09b1
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_hov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_hov.gif
new file mode 100644
index 0000000..dfef2a7
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_hov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_hov_rtl.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_hov_rtl.gif
new file mode 100644
index 0000000..deadfe5
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_hov_rtl.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_rtl.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_rtl.gif
new file mode 100644
index 0000000..60283fd
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_rtl.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_open.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_open.gif
new file mode 100644
index 0000000..e96eb25
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_open.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_open_hov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_open_hov.gif
new file mode 100644
index 0000000..9fafae4
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_open_hov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/html/shared.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/html/shared.css
new file mode 100644
index 0000000..062a630
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/html/shared.css
@@ -0,0 +1,156 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2007 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * This file contains styles that are shared between multiple themes.
+ */
+
+/* Folding section settings. */
+
+/* The foldable part of the section. It is off by default. */
+.section-body {
+ display: none;
+}
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+ display : inline;
+}
+
+.section-title-link .section-title,
+.section-title-link:focus .section-title {
+ color: #00517d;
+}
+
+.section-title-link {
+ vertical-align: bottom;
+}
+
+/* The 'open' toggle image part of the folding section. */
+#page-content .section-title-link .section-toggle-image-open {
+ display: none;
+ clear: right;
+ width : 7px;
+ height : 7px;
+ background-image : url(../graphics/icons/ctool/widget_open.gif);
+}
+
+/* The 'closed' toggle image part of the folding section. */
+#page-content .section-title-link .section-toggle-image-closed {
+ display: inline;
+ clear: right;
+ width : 7px;
+ height : 7px;
+ background-image : url(../graphics/icons/ctool/widget_closed.gif);
+}
+
+/*
+ * Section title during hover.
+ */
+.section-title-link:hover .section-title,
+.section-title-link:active .section-title {
+ color: #6699cc;
+}
+
+.section-title-link:hover .section-title {
+ text-decoration: underline;
+}
+
+/*
+ * Toggle image during hover.
+ */
+#page-content .section-title-link:hover .section-toggle-image-closed,
+#page-content .section-title-link:active .section-toggle-image-closed {
+ background-image : url(../graphics/icons/ctool/widget_closed_hov.gif);
+}
+#page-content .section-title-link:hover .section-toggle-image-open,
+#page-content .section-title-link:active .section-toggle-image-open {
+ background-image : url(../graphics/icons/ctool/widget_open_hov.gif);
+}
+
+/*
+ * Importance highlights for page content. Gradient image is
+ * tiled vertically. In addition, background color is applied
+ * to fill in the areas not covered by the gradient image.
+ */
+.importance-high,
+.importance-low,
+.importance-callout,
+.importance-medium,
+.importance-new {
+ background-position: top left;
+ background-repeat: repeat-y;
+}
+
+body .importance-low {
+ background-color: #ffffff;
+}
+
+body .importance-new {
+ background-image: url("../graphics/contentpage/ov_high.gif");
+ background-color: #fffacd;
+}
+
+body #overview .importance-high {
+ background-color: #fff7da;
+ background-image: url("../graphics/contentpage/ov_high.gif");
+}
+
+body #overview .importance-medium {
+ background-color: #fffbec;
+ background-image: url("../graphics/contentpage/ov_med.gif");
+}
+
+body #tutorials .importance-high,
+body #samples .importance-high {
+ background-color: #e1eaf2;
+ background-image: url("../graphics/contentpage/tu-sa_high.gif");
+}
+
+body #tutorials .importance-medium,
+body #samples .importance-medium {
+ background-color: #f0f4f8;
+ background-image: url("../graphics/contentpage/tu-sa_med.gif");
+}
+
+body #whatsnew .importance-high,
+body #firststeps .importance-high {
+ background-color: #f3ecdb;
+ background-image: url("../graphics/contentpage/wn-fs_high.gif");
+}
+
+body #whatsnew .importance-medium,
+body #firststeps .importance-medium {
+ background-color: #f7f2e7;
+ background-image: url("../graphics/contentpage/wn-fs_med.gif");
+}
+
+body #webresources .importance-high,
+body #migrate .importance-high {
+ background-color: #ecf4d7;
+ background-image: url("../graphics/contentpage/wr-mi_high.gif");
+}
+
+body #webresources .importance-medium,
+body #migrate .importance-medium {
+ background-color: #f5f9eb;
+ background-image: url("../graphics/contentpage/wr-mi_med.gif");
+}
+
+.importance-callout {
+ background-color: #eeeeee;
+ background-image: url("../graphics/contentpage/grey_callout.gif");
+}
+
+ul.news-list {
+ list-style-image: url("../graphics/icons/ctool/arrow.gif");
+}
+
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/banner_extension.jpg b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/banner_extension.jpg
new file mode 100644
index 0000000..4f885f5
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/banner_extension.jpg differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/fs_banner.jpg b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/fs_banner.jpg
new file mode 100644
index 0000000..bed56b4
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/fs_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/mi_banner.jpg b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/mi_banner.jpg
new file mode 100644
index 0000000..12e6e20
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/mi_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/ov_banner.jpg b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/ov_banner.jpg
new file mode 100644
index 0000000..53cfcd1
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/ov_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/sa_banner.jpg b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/sa_banner.jpg
new file mode 100644
index 0000000..61d0937
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/sa_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/tu_banner.jpg b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/tu_banner.jpg
new file mode 100644
index 0000000..276c1a8
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/tu_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/wn_banner.jpg b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/wn_banner.jpg
new file mode 100644
index 0000000..91445fe
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/wn_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/wr_banner.jpg b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/wr_banner.jpg
new file mode 100644
index 0000000..0626d13
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/wr_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/arrow_rtl.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/arrow_rtl.gif
new file mode 100644
index 0000000..d7bb424
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/arrow_rtl.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps-select.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps-select.gif
new file mode 100644
index 0000000..ce1d903
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps-select.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps-select.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps-select.png
new file mode 100644
index 0000000..846b278
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps-select.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps.png
new file mode 100644
index 0000000..eccc757
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/fs_nav.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/fs_nav.png
new file mode 100644
index 0000000..99eb592
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/fs_nav.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/fs_nav_32.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/fs_nav_32.gif
new file mode 100644
index 0000000..84885b5
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/fs_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/mi_nav.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/mi_nav.png
new file mode 100644
index 0000000..5434708
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/mi_nav.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/mi_nav_32.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/mi_nav_32.gif
new file mode 100644
index 0000000..d49d950
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/mi_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate-select.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate-select.gif
new file mode 100644
index 0000000..79ab661
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate-select.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate-select.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate-select.png
new file mode 100644
index 0000000..df8e2ff
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate-select.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate.png
new file mode 100644
index 0000000..07fea1d
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/ov_nav.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/ov_nav.png
new file mode 100644
index 0000000..709f69a
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/ov_nav.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/ov_nav_32.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/ov_nav_32.gif
new file mode 100644
index 0000000..2ff3933
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/ov_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview-select.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview-select.gif
new file mode 100644
index 0000000..e1563d2
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview-select.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview-select.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview-select.png
new file mode 100644
index 0000000..c2513e9
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview-select.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview.png
new file mode 100644
index 0000000..a60034c
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/sa_nav.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/sa_nav.png
new file mode 100644
index 0000000..9871b72
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/sa_nav.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/sa_nav_32.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/sa_nav_32.gif
new file mode 100644
index 0000000..ffbe90e
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/sa_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples-select.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples-select.gif
new file mode 100644
index 0000000..aa36563
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples-select.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples-select.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples-select.png
new file mode 100644
index 0000000..d2cabf1
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples-select.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples.png
new file mode 100644
index 0000000..cb3db1d
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tu_nav.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tu_nav.png
new file mode 100644
index 0000000..ce589ab
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tu_nav.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tu_nav_32.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tu_nav_32.gif
new file mode 100644
index 0000000..77a3421
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tu_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials-select.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials-select.gif
new file mode 100644
index 0000000..6e36ffe
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials-select.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials-select.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials-select.png
new file mode 100644
index 0000000..4c66644
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials-select.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials.png
new file mode 100644
index 0000000..e40a823
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wb_nav.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wb_nav.png
new file mode 100644
index 0000000..0621c3c
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wb_nav.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wb_nav_32.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wb_nav_32.gif
new file mode 100644
index 0000000..3db3072
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wb_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources-select.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources-select.gif
new file mode 100644
index 0000000..34a1812
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources-select.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources-select.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources-select.png
new file mode 100644
index 0000000..dc106f2
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources-select.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources.png
new file mode 100644
index 0000000..1a876dc
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew-select.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew-select.gif
new file mode 100644
index 0000000..5acbd8f
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew-select.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew-select.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew-select.png
new file mode 100644
index 0000000..cb686d2
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew-select.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew.png
new file mode 100644
index 0000000..a10dd3d
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wn_nav.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wn_nav.png
new file mode 100644
index 0000000..47ecb7c
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wn_nav.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wn_nav_32.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wn_nav_32.gif
new file mode 100644
index 0000000..ce9c743
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wn_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/workbench.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/workbench.png
new file mode 100644
index 0000000..868f3ab
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/workbench.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wr_nav.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wr_nav.png
new file mode 100644
index 0000000..00d3056
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wr_nav.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wr_nav_32.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wr_nav_32.gif
new file mode 100644
index 0000000..a741e2f
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wr_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/firststeps16.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/firststeps16.png
new file mode 100644
index 0000000..4c15c82
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/firststeps16.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/migrate16.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/migrate16.png
new file mode 100644
index 0000000..3fc8414
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/migrate16.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/overview16.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/overview16.png
new file mode 100644
index 0000000..b2e977f
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/overview16.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/samples16.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/samples16.png
new file mode 100644
index 0000000..fdff5dd
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/samples16.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/tutorials16.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/tutorials16.png
new file mode 100644
index 0000000..f2d688f
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/tutorials16.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/webresources16.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/webresources16.png
new file mode 100644
index 0000000..b847caa
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/webresources16.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/whatsnew16.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/whatsnew16.png
new file mode 100644
index 0000000..5294b17
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/whatsnew16.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/background.jpg.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/background.jpg.REMOVED.git-id
new file mode 100644
index 0000000..9f0769f
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/background.jpg.REMOVED.git-id
@@ -0,0 +1 @@
+2595c789f8a8ac0fbde48e1a938209f16bb16ac5
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48.gif
new file mode 100644
index 0000000..7211d18
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48.png
new file mode 100644
index 0000000..a925486
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48_hov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48_hov.gif
new file mode 100644
index 0000000..82fa55f
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48_hov.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48_hov.png
new file mode 100644
index 0000000..60b1e58
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48_hov.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48.gif
new file mode 100644
index 0000000..19ecef3
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48.png
new file mode 100644
index 0000000..98e167e
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48_hov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48_hov.gif
new file mode 100644
index 0000000..f9395da
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48_hov.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48_hov.png
new file mode 100644
index 0000000..6d21e5b
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48_hov.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48.gif
new file mode 100644
index 0000000..7d7053d
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48.png
new file mode 100644
index 0000000..71c5668
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48_hov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48_hov.gif
new file mode 100644
index 0000000..35690f3
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48_hov.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48_hov.png
new file mode 100644
index 0000000..334f7de
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48_hov.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/root_banner.jpg b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/root_banner.jpg
new file mode 100644
index 0000000..a6ab1b1
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/root_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/root_banner_logo.jpg b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/root_banner_logo.jpg
new file mode 100644
index 0000000..a5fd7c4
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/root_banner_logo.jpg differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48.gif
new file mode 100644
index 0000000..da714d8
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48.png
new file mode 100644
index 0000000..7104822
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48_hov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48_hov.gif
new file mode 100644
index 0000000..dd77558
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48_hov.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48_hov.png
new file mode 100644
index 0000000..2e1c9e7
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48_hov.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48.gif
new file mode 100644
index 0000000..bdc3e9e
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48.png
new file mode 100644
index 0000000..e5b8179
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48_hov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48_hov.gif
new file mode 100644
index 0000000..2aac380
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48_hov.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48_hov.png
new file mode 100644
index 0000000..1609d2e
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48_hov.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48.gif
new file mode 100644
index 0000000..4cce719
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48.png
new file mode 100644
index 0000000..bcc3528
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48_hov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48_hov.gif
new file mode 100644
index 0000000..90b3487
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48_hov.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48_hov.png
new file mode 100644
index 0000000..638b0c8
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48_hov.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48.gif
new file mode 100644
index 0000000..d80d0c4
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48.png
new file mode 100644
index 0000000..62a1e3c
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48_hov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48_hov.gif
new file mode 100644
index 0000000..6fe8c73
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48_hov.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48_hov.png
new file mode 100644
index 0000000..88ae9b4
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48_hov.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48.gif
new file mode 100644
index 0000000..e8c3e26
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48.png
new file mode 100644
index 0000000..739fde5
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48_hov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48_hov.gif
new file mode 100644
index 0000000..fb807e9
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48_hov.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48_hov.png
new file mode 100644
index 0000000..860890c
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48_hov.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/fs_standby.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/fs_standby.gif
new file mode 100644
index 0000000..aac6d6b
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/fs_standby.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/fs_standbyhov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/fs_standbyhov.gif
new file mode 100644
index 0000000..eded4ff
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/fs_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/mi_standby.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/mi_standby.gif
new file mode 100644
index 0000000..34b8963
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/mi_standby.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/mi_standbyhov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/mi_standbyhov.gif
new file mode 100644
index 0000000..08c4479
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/mi_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/ov_standby.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/ov_standby.gif
new file mode 100644
index 0000000..bfcf7b2
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/ov_standby.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/ov_standbyhov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/ov_standbyhov.gif
new file mode 100644
index 0000000..11e7892
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/ov_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/sa_standby.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/sa_standby.gif
new file mode 100644
index 0000000..a18a047
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/sa_standby.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/sa_standbyhov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/sa_standbyhov.gif
new file mode 100644
index 0000000..2063d8a
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/sa_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/tu_standby.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/tu_standby.gif
new file mode 100644
index 0000000..75baabf
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/tu_standby.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/tu_standbyhov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/tu_standbyhov.gif
new file mode 100644
index 0000000..82b758f
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/tu_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wb_standby.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wb_standby.gif
new file mode 100644
index 0000000..5037784
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wb_standby.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wb_standbyhov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wb_standbyhov.gif
new file mode 100644
index 0000000..d3be575
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wb_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wn_standby.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wn_standby.gif
new file mode 100644
index 0000000..77c7912
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wn_standby.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wn_standbyhov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wn_standbyhov.gif
new file mode 100644
index 0000000..2867f15
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wn_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wr_standby.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wr_standby.gif
new file mode 100644
index 0000000..cb4fa47
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wr_standby.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wr_standbyhov.gif b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wr_standbyhov.gif
new file mode 100644
index 0000000..00b4231
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wr_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/firststeps.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/firststeps.css
new file mode 100644
index 0000000..2613074
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/firststeps.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+ display : none;
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#firststeps img {
+ background-image : url(../graphics/icons/ctool/firststeps-select.png);
+ width : 64px;
+ height: 64px;
+ margin-top : 12px;
+}
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+* html #navigation-links a#firststeps img {
+ background-image : url(../graphics/icons/ctool/firststeps-select.gif);
+}
+
+#navigation-links a#.high-contrast#firststeps img {
+ display : none;
+}
+
+.page {
+ background-image: url(../graphics/contentpage/fs_banner.jpg);
+}
+
+#navigation-links #firststeps .link-label {
+ display : none;
+}
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/font-absolute.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/font-absolute.css
new file mode 100644
index 0000000..145a584
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/font-absolute.css
@@ -0,0 +1,102 @@
+/*******************************************************************************
+ * Copyright (c) 2008, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+ font-size : 10pt;
+}
+
+h2 {
+ font-size : 13pt;
+}
+
+/* For regular div labels */
+H4 .div-label {
+ font-size: 10pt;
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+ font-size: 23pt;
+}
+
+
+/* Page description if the page has it. */
+.page-description {
+ font-size: 10pt;
+}
+
+/* General link labels */
+a .link-label {
+ font-size : 10pt;
+}
+
+/* Floating link labels for navigation links */
+#navigation-links a .link-label {
+ font-size : 8pt;
+}
+
+/* Text in links. */
+a .text {
+ font-size : 8pt;
+}
+
+p .group-description {
+ font-size : 10pt;
+}
+
+.content-link .link-label {
+ font-size: 11pt;
+}
+
+.content-link .text {
+ font-size: 10pt;
+}
+
+.categoryContentnav {
+ font-size:10pt;
+}
+
+.contentpgNavhover {
+ font-size: 8pt;
+}
+
+.topicList {
+ font-size:8pt;
+}
+
+/*
+ * Root page settings
+ */
+#root .intro-header H1 {
+ font-size : 23pt;
+}
+
+/* Link label properties */
+#root #page-links a .link-label {
+ font-size : 14pt;
+}
+
+/*
+ * Standby page settings
+ */
+
+#standby .intro-header H1 {
+ font-size : 15pt;
+}
+
+#standby #page-links a .link-label {
+ font-size : 10pt;
+}
+
+#standby #page-links a p .text {
+ font-size : 10pt;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/font-relative.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/font-relative.css
new file mode 100644
index 0000000..240a626
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/font-relative.css
@@ -0,0 +1,110 @@
+L/*******************************************************************************
+ * Copyright (c) 2008, 2010 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * Font sizes for the circles theme
+ */
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+ font-size : 100%;
+}
+
+h2 {
+ font-size : 120%;
+}
+
+/* For regular div labels */
+H4 .div-label {
+ font-size: 120%;
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+ font-size: 240%;
+}
+
+
+/* Page description if the page has it. */
+.page-description {
+ font-size: 100%;
+}
+
+#page-links, #action-links {
+ font-size : 8pt;
+}
+
+#standby #page-links {
+ font-size : 100%;
+}
+
+/* Floating link labels for navigation links */
+#navigation-links a .link-label {
+ font-size : 8pt;
+}
+
+/* Text in links. */
+a .text {
+ font-size : 90%;
+}
+
+p .group-description {
+ font-size : 100%;
+}
+
+.content-link .link-label {
+ font-size: 120%;
+}
+
+.content-link .text {
+ font-size: 100%;
+}
+
+.categoryContentnav {
+ //font-size:10pt;
+}
+
+.contentpgNavhover {
+ font-size: 8pt;
+}
+
+.topicList, .rss-feed-link {
+ font-size:90%;
+}
+
+#root #page-links, #root #action-links, #root #page-links a p .text {
+ font-size : 100%;
+}
+
+/* Link label properties */
+#root #page-links a .link-label {
+ font-size : 130%;
+}
+
+#root .intro-header span {
+ font-size : 125%;
+}
+
+/*
+ * Standby page settings
+ */
+
+#standby .intro-header H1 {
+ font-size : 150%;
+}
+
+#standby #page-links a .link-label, #standby #action-links a .link-label {
+ font-size : 100%;
+}
+
+#standby #page-links a p .text, #standby #action-links a p .text {
+ font-size : 100%;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/ltr.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/ltr.css
new file mode 100644
index 0000000..57586c8
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/ltr.css
@@ -0,0 +1,19 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * This file contains styles that are specific to left to right display
+ */
+
+body {
+ direction: ltr;
+}
+
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/migrate.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/migrate.css
new file mode 100644
index 0000000..be06798
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/migrate.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+ display : none;
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#migrate img {
+ background-image : url(../graphics/icons/ctool/migrate-select.png);
+ width : 64px;
+ height: 64px;
+ margin-top : 12px
+}
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+* html #navigation-links a#migrate img {
+ background-image : url(../graphics/icons/ctool/migrate-select.gif);
+}
+
+#navigation-links a#.high-contrast#migrate img {
+ display : none;
+}
+
+.page {
+ background-image: url(../graphics/contentpage/mi_banner.jpg);
+}
+
+#navigation-links #migrate .link-label {
+ display : none;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/overview.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/overview.css
new file mode 100644
index 0000000..716bfa0
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/overview.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+ display : none;
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#overview img {
+ background-image : url(../graphics/icons/ctool/overview-select.png);
+ width : 64px;
+ height: 64px;
+ margin-top : 12px
+}
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+* html #navigation-links a#overview img {
+ background-image : url(../graphics/icons/ctool/overview-select.gif);
+}
+
+#navigation-links a#.high-contrast#overview img {
+ display : none;
+}
+
+.page {
+ background-image: url(../graphics/contentpage/ov_banner.jpg);
+}
+
+#navigation-links #overview .link-label {
+ display : none;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/root.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/root.css
new file mode 100644
index 0000000..071b69f
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/root.css
@@ -0,0 +1,271 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2010 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* Hide the extra div for links in the normal state. */
+a .link-extra-div {
+ display: none;
+}
+
+/* Link label properties */
+#page-links a .link-label {
+ top: -1.2em;
+ color:#00507C;
+ font-family:Verdana,Arial,Helvetica;
+ font-weight:bold;
+}
+
+#page-links a:hover .link-label {
+ color: #69c;
+ text-decoration : underline;
+}
+
+#page-links a {
+ width : 45%;
+ float : left;
+ margin-left : 3%;
+ margin-bottom : 35px;
+}
+
+/*
+ * Set up the content for the root page.
+ */
+html, body {
+ overflow : auto;
+ overflow-clip: rect(0, auto, auto, 0);
+ background-color : none;
+ background-image : url("../graphics/rootpage/background.jpg");
+ background-position : top left;
+ background-repeat : no-repeat;
+}
+
+#root {
+ background-image : url("../graphics/rootpage/root_banner.jpg");
+ background-position : top left;
+ background-repeat : repeat-x;
+}
+
+#branding {
+ position: absolute;
+ top : 0px;
+ left : 0px;
+}
+
+/*
+ * Set up the navigation bar. It should be centered in the middle
+ * of the page
+*/
+
+.intro-header {
+ padding-top : 90px;
+ margin-left : 7%;
+ margin-bottom : 40px;
+}
+
+/* For the main page content's title */
+.intro-header h1 {
+ font-family: Verdana, Arial, Helvetica;
+ color:#333333;
+ font-weight: normal;
+ letter-spacing:-0.03em;
+}
+
+#page-links a img {
+ height : 48px;
+ width : 64px;
+ vertical-align : middle;
+}
+
+#page-links a span {
+ display : block;
+}
+
+#page-links a span.link-label {
+ position : relative;
+ top : -45px;
+ left : 60px;
+ margin-right: 60px;
+ font-family: Verdana, Arial, Helvetica;
+ font-weight: bold;
+ line-height:1.5;
+ color: #00507C;
+}
+
+#page-links a p .text {
+ left: 51px;
+ display : block;
+ position : relative;
+ top : -40px;
+ margin-bottom: -25px;
+ margin-right: 53px;
+ font-family: Verdana, Arial, Helvetica;
+ line-height: 1.3;
+}
+
+#page-links a .background-image {
+ display: none;
+}
+
+#page-links a .link-extra-div {
+ display :none;
+}
+
+.content-img {
+ padding-left: 15px;
+}
+
+/* Link images */
+#page-links a#overview .content-img { background-image : url("../graphics/rootpage/overview48.png"); }
+#page-links a#overview:hover .content-img,
+#page-links a#overview:active .content-img,
+#page-links a#overview:focus .content-img { background-image : url("../graphics/rootpage/overview48_hov.png"); }
+
+#page-links a#tutorials .content-img { background-image : url("../graphics/rootpage/tutorials48.png"); }
+#page-links a#tutorials:hover .content-img,
+#page-links a#tutorials:active .content-img,
+#page-links a#tutorials:focus .content-img { background-image : url("../graphics/rootpage/tutorials48_hov.png"); }
+
+#page-links a#samples .content-img { background-image : url("../graphics/rootpage/samples48.png"); }
+#page-links a#samples:hover .content-img,
+#page-links a#samples:active .content-img,
+#page-links a#samples:focus .content-img { background-image : url("../graphics/rootpage/samples48_hov.png"); }
+
+#page-links a#whatsnew .content-img { background-image : url("../graphics/rootpage/whatsnew48.png"); }
+#page-links a#whatsnew:hover .content-img,
+#page-links a#whatsnew:active .content-img,
+#page-links a#whatsnew:focus .content-img { background-image : url("../graphics/rootpage/whatsnew48_hov.png"); }
+
+#page-links a#firststeps .content-img { background-image : url("../graphics/rootpage/firststeps48.png"); }
+#page-links a#firststeps:hover .content-img,
+#page-links a#firststeps:active .content-img,
+#page-links a#firststeps:focus .content-img { background-image : url("../graphics/rootpage/firststeps48_hov.png"); }
+
+#page-links a#migrate .content-img { background-image : url("../graphics/rootpage/migrate48.png"); }
+#page-links a#migrate:hover .content-img,
+#page-links a#migrate:active .content-img,
+#page-links a#migrate:focus .content-img { background-image : url("../graphics/rootpage/migrate48_hov.png"); }
+
+#page-links a#webresources .content-img { background-image : url("../graphics/rootpage/webresources48.png"); }
+#page-links a#webresources:hover .content-img,
+#page-links a#webresources:active .content-img,
+#page-links a#webresources:focus .content-img { background-image : url("../graphics/rootpage/webresources48_hov.png"); }
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+
+* html #page-links a#overview .content-img { background-image : url("../graphics/rootpage/overview48.gif"); }
+* html #page-links a#overview:hover .content-img,
+* html #page-links a#overview:active .content-img,
+* html #page-links a#overview:focus .content-img { background-image : url("../graphics/rootpage/overview48_hov.gif"); }
+
+* html #page-links a#tutorials .content-img { background-image : url("../graphics/rootpage/tutorials48.gif"); }
+* html #page-links a#tutorials:hover .content-img,
+* html #page-links a#tutorials:active .content-img,
+* html #page-links a#tutorials:focus .content-img { background-image : url("../graphics/rootpage/tutorials48_hov.gif"); }
+
+* html #page-links a#samples .content-img { background-image : url("../graphics/rootpage/samples48.gif"); }
+* html #page-links a#samples:hover .content-img,
+* html #page-links a#samples:active .content-img,
+* html #page-links a#samples:focus .content-img { background-image : url("../graphics/rootpage/samples48_hov.gif"); }
+
+* html #page-links a#whatsnew .content-img { background-image : url("../graphics/rootpage/whatsnew48.gif"); }
+* html #page-links a#whatsnew:hover .content-img,
+* html #page-links a#whatsnew:active .content-img,
+* html #page-links a#whatsnew:focus .content-img { background-image : url("../graphics/rootpage/whatsnew48_hov.gif"); }
+
+* html #page-links a#firststeps .content-img { background-image : url("../graphics/rootpage/firststeps48.gif"); }
+* html #page-links a#firststeps:hover .content-img,
+* html #page-links a#firststeps:active .content-img,
+* html #page-links a#firststeps:focus .content-img { background-image : url("../graphics/rootpage/firststeps48_hov.gif"); }
+
+* html #page-links a#migrate .content-img { background-image : url("../graphics/rootpage/migrate48.gif"); }
+* html #page-links a#migrate:hover .content-img,
+* html #page-links a#migrate:active .content-img,
+* html #page-links a#migrate:focus .content-img { background-image : url("../graphics/rootpage/migrate48_hov.gif"); }
+
+* html #page-links a#webresources .content-img { background-image : url("../graphics/rootpage/webresources48.gif"); }
+* html #page-links a#webresources:hover .content-img,
+* html #page-links a#webresources:active .content-img,
+* html #page-links a#webresources:focus .content-img { background-image : url("../graphics/rootpage/webresources48_hov.gif"); }
+
+/* End hack for IE6 */
+
+/*
+ * Not using action links.
+ */
+#action-links {
+ display: none;
+}
+
+/*
+* Workbench
+*/
+
+#page-links a#workbench:hover .link-label
+{
+ color : #FFEC89;
+ text-decoration : none;
+}
+
+#workbench p span {
+ display : none;
+}
+
+* html #page-links a#workbench .content-img {
+ background-image:url(../graphics/icons/ctool/wb_nav_32.gif);
+}
+
+#page-links a#workbench .content-img {
+ background-image:url(../graphics/icons/ctool/wb_nav_32.gif);
+ display:block;
+ color : white;
+ height:32px;
+ margin:5px auto 0;
+ width:32px;
+ background-repeat:no-repeat;
+ border-width:0;
+}
+
+#page-links a#workbench .link-label {
+ position : static;
+ margin-right : 0px;
+ font-weight : bold;
+ color : white;
+ font-family:Arial,sans-serif;
+}
+
+#page-links a#workbench .text {
+ display : none;
+}
+
+#page-links a#workbench {
+ position : absolute;
+ right : 20px;
+ top : 0px;
+ width : auto;
+ text-align:center;
+ margin-bottom : 0px;
+}
+
+#page-links a#workbench img {
+ padding : 0px;
+}
+
+#page-links a#workbench span {
+ margin-top : 0px;
+ line-height : normal;
+}
+
+#page-links a#workbench .link-label {
+ font-size:8pt;
+ color:white;
+ font-weight:bold;
+ text-align:center;
+ margin-left: 0;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/rtl.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/rtl.css
new file mode 100644
index 0000000..7053216
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/rtl.css
@@ -0,0 +1,137 @@
+/*******************************************************************************
+ * Copyright (c) 2009, 2011 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * This file contains styles that are specific to right to left display
+ */
+
+#page-links {
+ direction: rtl;
+ }
+
+table {
+ direction: rtl;
+}
+
+#page-links a span.link-label {
+ right : 48px;
+ margin-right: 0px;
+}
+
+#page-links a p .text {
+ right: 51px;
+ margin-right: 0px;
+}
+
+#page-content p {
+ text-align : right;
+}
+
+#page-content #content-header H4, .page-description {
+ text-align : right;
+}
+
+#page-content table tr td a > .link-label {
+ left:0px;
+}
+
+#page-content * td a .link-label {
+ display:block;
+ left:0px;
+ margin-right:0px;
+ position:static;
+ top:0px;
+}
+
+#page-content * td a .text {
+ display:block;
+ left:0px;
+ margin-right:0px;
+ position:static;
+ top:0px;
+}
+
+#page-content * a p {
+ margin-bottom:0px;
+ position:static;
+ top:0px;
+}
+
+.content-group {
+ text-align: right;
+}
+
+.intro-header span {
+ margin-right : 45px;
+ padding-right : 45px;
+}
+
+#navigation-links a {
+ float:right;
+ margin-left:auto;
+ margin-left : 10px;
+}
+
+#action-links a {
+ float:left;
+ margin-left:20px;
+ margin-right : auto;
+}
+
+div div#rss-news {
+ position:static;
+ margin-left:0px;
+ margin-bottom: 0px;
+ margin-top: 10px;
+ top : 0px;
+ margin-right : 30px;
+}
+
+div ul.news-list {
+ list-style-image: url("../graphics/icons/ctool/arrow_rtl.gif");
+ margin-left: 0px;
+ padding-right: 10px;
+ margin-right: 10px;
+}
+
+/* The 'closed' toggle image part of the folding section. */
+#page-content .section-title-link .section-toggle-image-closed {
+ background-image : url(../graphics/icons/ctool/widget_closed_rtl.gif);
+}
+
+#page-content .section-title-link:hover .section-toggle-image-closed,
+#page-content .section-title-link:active .section-toggle-image-closed {
+ background-image : url(../graphics/icons/ctool/widget_closed_hov_rtl.gif);
+}
+
+#standby #links-background {
+ text-align:right;
+}
+
+#standby #page-links a {
+ text-align : right;
+}
+
+#standby #page-links a .link-label {
+ left:auto;
+ right : 60px;
+}
+
+#standby #page-links p {
+ right : 60px;
+}
+
+#standby #page-links a p .text {
+ margin-right:auto;
+ left:auto;
+ right : 60px;
+}
+
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/samples.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/samples.css
new file mode 100644
index 0000000..665946c
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/samples.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+ display : none;
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#samples img {
+ background-image : url(../graphics/icons/ctool/samples-select.png);
+ width : 64px;
+ height: 64px;
+ margin-top : 12px;
+}
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+* html #navigation-links a#samples img {
+ background-image : url(../graphics/icons/ctool/samples-select.gif);
+}
+
+#navigation-links a#.high-contrast#samples img {
+ display : none;
+}
+
+.page {
+ background-image: url(../graphics/contentpage/sa_banner.jpg);
+}
+
+#navigation-links #samples .link-label {
+ display : none;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/shared.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/shared.css
new file mode 100644
index 0000000..309d565
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/shared.css
@@ -0,0 +1,522 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2010 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * Set up general fonts, sizes and colors
+ */
+body { font-family : Arial, sans-serif; }
+
+H1, H2, H3, H4, p, a { color : #4D4D4D; }
+
+ body {
+ background-color : #FFFFFF;
+}
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+ display : inline;
+}
+
+h2 {
+ font-weight : normal;
+ color : #7B8694;
+}
+
+/* For regular div labels */
+H4 .div-label {
+ font-family: Verdana, Arial, Helvetica;
+ font-weight: bold;
+ color: #4A4D4A;
+ line-height:1.3;
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+ font-family: Verdana, Arial, Helvetica;
+ color:#333333;
+ font-weight: normal;
+ letter-spacing:-0.03em;
+ margin-left: 68px;
+ float : none;
+ clear : both;
+}
+
+/* For separators */
+HR {
+ width: 90%;
+ align: left;
+ height : 1px;
+ color : #dfdfe4;
+}
+
+/* Page description if the page has it. */
+.page-description {
+ display: block;
+ font-family: Verdana, Arial, Helvetica;
+ line-height:1.3;
+ float : none;
+ clear : both;
+ margin-left: 70px;
+ position : relative;
+ top : -25px;
+}
+
+a {
+ font-weight : bold;
+ text-decoration : none;
+ color : #4D4D4D;
+}
+
+a:hover {
+ color: #69c;
+}
+
+/* General link labels */
+a .link-label {
+ font-weight : normal;
+}
+
+/* Floating link labels for navigation links */
+#navigation-links a .link-label,
+#action links a .text {
+ font-weight : bold;
+ color : white;
+}
+
+#navigation-links a#overview:hover .link-label
+{
+ color : #FFEC89;
+}
+
+#navigation-links a#tutorials:hover .link-label,
+#navigation-links a#samples:hover .link-label
+{
+ color : #ACCCE9;
+}
+
+#navigation-links a#whatsnew:hover .link-label,
+#navigation-links a#firststeps:hover .link-label
+{
+ color : #E5CD89;
+}
+
+#navigation-links a#webresources:hover .link-label ,
+#navigation-links a#migrate:hover .link-label
+{
+ color : #BCD77C;
+}
+
+#action-links a:hover .link-label {
+ color : E0DFE3;
+}
+
+/* Text in links. */
+a .text {
+ font-weight : normal;
+}
+
+p .group-description {
+ font-family: Verdana, Arial, Helvetica;
+ font-weight : normal;
+}
+
+/* Hide the extra div in links by default. */
+.link-extra-div {
+ display : none;
+}
+
+/*
+ * Set up other general properties like padding/margins
+ */
+html, body { width : 100%; height : 100%; }
+
+html, body, div, h1, h4, p, a { margin : 0px; padding : 0px; }
+
+/*
+ * Page header - adding extra padding at the bottom to compensate
+ * for navigation background/header overlap.
+ */
+#page-content #content-header {
+ padding-top : 10px;
+ padding-bottom : 22px;
+}
+
+/* For regular div labels */
+#page-content div H4 {
+ padding : 10px;
+ padding-bottom : 0px;
+}
+
+/* For the main page content's div label */
+#page-content #content-header H4 {
+ padding-bottom : 10px;
+ padding-top : 0px;
+}
+
+/* special case for Mozilla's main content-header label.
+ Mozilla 1.4 needs more room at the top */
+#page-content > #content-header H4 { padding-top : 10px; }
+
+/* Needed in IE to get shift+tab to show the active image properly */
+a:active {
+ border : solid 0px;
+}
+
+a img {
+ border-width : 0;
+ background-repeat : no-repeat;
+}
+
+/*
+ * to get scrollbars working in both IE and Mozilla
+ */
+
+/*
+ * to get scrollbars working in both IE and Mozilla
+ */
+html,body { overflow: auto; }
+html>body { overflow: visible; }
+
+/*
+ * Set up the body, decorative background, and navigation for the content
+ * pages.
+ * Note: the root page handles its own background and navigation; these
+ * settings primarily apply to the content pages
+ */
+body {
+ background-image: url(../graphics/contentpage/banner_extension.jpg);
+ background-repeat: repeat-x;
+ background-position: top left;
+}
+
+/*
+ * Hide the general-purpose groups - not using them in this theme.
+ */
+#extra-group1,
+#extra-group2,
+#extra-group3,
+#extra-group4,
+#extra-group5 {
+ display : none;
+}
+
+/*
+ * Dimensions.
+ */
+body, .page {
+ /* since IE doesn't support min-width, try expression */
+ height : 100%;
+}
+
+.page {
+ background-repeat : no-repeat;
+ background-position : top left;
+
+ min-width : 770px;
+ width:expression(document.body.clientWidth < 770? "770px": "auto" );
+ min-height : 425px;
+ height : expression(document.body.clientHeight < 425? "425px": "100%" );
+}
+
+#page-content {
+ background-repeat : no-repeat;
+ background-position : bottom right;
+ height : 65%;
+}
+
+/*
+ * Lay out the navigation links
+ * (Root page does something similar for its navigation)
+ */
+#navigation-links {
+ position : relative;
+ left : 0px;
+ top : 0px;
+ padding-left: 12px;
+ height : 118px;
+}
+
+#navigation-links a {
+ text-align : left;
+ height : 64px;
+ float : left;
+ margin-left : 10px;
+ position : relative;
+ text-align : center;
+}
+
+#action-links a {
+ float : right;
+ margin-right : 20px;
+}
+
+#navigation-links a img {
+ height : 32px;
+ width : 32px;
+ vertical-align : center;
+ horizontal-align : center;
+ display : block;
+ margin-top : 5px;
+ margin-bottom : 0px;
+ margin-left : auto;
+ margin-right : auto;
+}
+
+#navigation-links a.high-contrast img {
+ margin-bottom : 0px;
+}
+
+
+/*
+ * Not showing description for navigation links.
+ */
+#navigation-links a .text { display : none; }
+
+/* properties for each of the navigation-links */
+#navigation-links a#overview img {
+ background-image : url(../graphics/icons/ctool/ov_nav_32.gif);
+}
+
+#navigation-links a#firststeps img {
+ background-image : url(../graphics/icons/ctool/fs_nav_32.gif);
+}
+
+#navigation-links a#tutorials img {
+ background-image : url(../graphics/icons/ctool/tu_nav_32.gif);
+}
+
+#navigation-links a#samples img {
+ background-image : url(../graphics/icons/ctool/sa_nav_32.gif);
+}
+
+#navigation-links a#whatsnew img {
+ background-image : url(../graphics/icons/ctool/wn_nav_32.gif);
+}
+
+#navigation-links a#migrate img {
+ background-image : url(../graphics/icons/ctool/mi_nav_32.gif);
+}
+
+#navigation-links a#webresources img {
+ background-image : url(../graphics/icons/ctool/wr_nav_32.gif);
+}
+
+#navigation-links a#workbench img {
+ background-image : url(../graphics/icons/ctool/wb_nav_32.gif);
+}
+
+#action-links a {
+ text-align : center;
+}
+
+#action-links a.high-contrast .link-label {
+ display: none;
+}
+
+#navigation-links a.high-contrast .background-image {
+ display: none;
+}
+
+#page-links a.high-contrast:focus .link-label,
+#page-links a.high-contrast:active .link-label {
+ display: block !important;
+ text-decoration: underline;
+ top : 5px;
+}
+
+#page-links span {
+ display : block;
+ margin-top : -2px;
+}
+
+/*
+ * Lay out the page title and description
+ */
+h1, p { margin-left : 10px; } /* required in mozilla so the page description is properly indented */
+
+/* position the page content so that the page title overlays the bottom
+ * of the background image, but make sure the content is always on top
+ * (using z-index) */
+
+#page-content {
+ float : none;
+ clear : both;
+ text-align : center;
+ position : relative;
+ top : -50px;
+ margin-bottom: -50px;
+ z-index : 10;
+}
+
+#page-content p {
+ padding-bottom : 15px;
+ text-align : left;
+ float : none;
+ clear : both;
+}
+
+/* Page content quadrants. Page content is placed in four quadrants.
+ * Upper pair is separated from the bottom pair with a divider
+ * to ensure bottom pair is aligned even with the uneven content
+ * in the upper pair.
+ */
+
+#page-content #top-left {
+ border: none; float: left; margin: 0px; padding: 0px; width: 49%;
+ clear: left;
+}
+#page-content #top-right {
+ border: none; float: right; margin: 0px; padding: 0px; width: 49%;
+ clear: right;
+}
+/* top-bottom divider - runs the entire width to ensure
+ * bottom boxes start at the same y
+ */
+#page-content #content-divider {
+ border: none; float: none; margin: 0; padding: 0px; width: 100%;
+ clear: both;
+}
+
+#page-content #bottom-left {
+ border: none; float: left; margin: 0px; padding: 0px; width: 49%;
+ clear: left;
+}
+#page-content #bottom-right {
+ border: none; float: right; margin: 0px; padding: 0px; width: 49%;
+ clear: right;
+}
+
+#page-content #content-header H4, .page-description {
+ text-align : left;
+ margin-right : 10px;
+ float : none;
+ clear : both;
+}
+
+#page-content * > a {
+ vertical-align : middle;
+}
+
+#page-content * a img {
+ height : 57px;
+ width : 57px;
+ vertical-align : middle;
+}
+
+#page-content * a .link-label {
+ display : block;
+ position : relative;
+ top : -50px;
+ left : 60px;
+ margin-right: 60px;
+}
+
+#page-content * a > .link-label { left: 65px; }
+
+#page-content * a p {
+ display : block;
+ position : relative;
+ top : -45px;
+ margin-bottom: -25px;
+}
+
+#page-content * a p .text {
+ display : block;
+ position : relative;
+ left : 53px;
+ margin-right: 53px;
+}
+
+#page-content * a p > .text { left: 56px; }
+
+#page-content * a:hover { border-right : 5px; }
+
+/* The following rules are for extensions in all pages. Extensions should be placed in
+ * groups with the style 'content-group' and contain links with the style 'content-link'.
+ * Group is important so that importance mixin style can be applied to the group that
+ * uses block display. We need to see a solid rectangle around the extension, not
+ * a tight polygon around the link perimeter.
+ */
+
+.content-group {
+ margin-left: 10px;
+ margin-right: 10px;
+ padding-left: 10px;
+ padding-right: 10px;
+ float : none;
+ clear : both;
+ text-align: left;
+}
+
+.content-link .link-label {
+ font-family: Verdana, Arial, Helvetica;
+ font-weight: bold;
+ line-height:1.5;
+ color: #00507C;
+}
+
+.content-link:hover .link-label {
+ color: #69c;
+ text-decoration : underline;
+}
+
+.content-link .text {
+ font-family: Verdana, Arial, Helvetica;
+ line-height: 1.3;
+}
+
+.categoryContentnav {
+ font-family: Verdana, Arial, Helvetica;
+ font-weight: bold;
+ color: #4A4D4A;
+ line-height:1.3;
+}
+
+.contentpgNavhover {
+ font-family: Verdana, Arial, Helvetica;
+ font-weight: bold;
+ color: #000;
+}
+
+.topicList {
+ font-family: Verdana, Arial, Helvetica;
+ line-height:1.75;
+ color: #00507C;
+}
+
+.topicList:hover {
+ color: #69c;
+}
+
+
+.rss-feed-link a {
+ font-family: Verdana, Arial, Helvetica;
+ color: #00507C;
+}
+
+/*
+ * This part is for hosting embedded document inside
+ * the content area.
+ */
+
+iframe {
+ position:relative;
+ top:16px;
+ width:100%;
+ height:100%;
+ padding-left:10px;
+}
+
+/* mozilla scrollbar appearing off page fix */
+#page-content > iframe {
+ width: 98%;
+ padding-left: 2%;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/standby.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/standby.css
new file mode 100644
index 0000000..5af77a1
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/standby.css
@@ -0,0 +1,165 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+ display : none;
+}
+
+/*
+ * We will not use the general-purpose group1 used in
+ * other pages for a curve image.
+ */
+
+#extra-group1 {
+ display : none;
+}
+
+
+#page-links a .link-label, #action-links a .link-label {
+ font-weight : 600;
+ color : #E5E5E5;
+}
+
+#page-links a p .text, #action-links a p .text {
+ font-weight : 500;
+ color : #E5E5E5;
+}
+
+/*
+ * Set up the content for the standby page.
+ */
+body {
+ min-width : 230px;
+ /* since IE doesn't support min-width, use expression */
+ width:expression(document.body.clientWidth < 230? "230px": "auto" );
+ background-repeat : no-repeat;
+ background-position : top left;
+ background-color : #6d7e85;
+}
+
+.page {
+ background-repeat : no-repeat;
+ background-position : bottom left;
+ min-width : 230px;
+ /* since IE doesn't support min-width, use expression */
+ width:expression(document.body.clientWidth < 230? "230px": "auto" );
+ min-height : 610px;
+ height : 100%;
+ height : expression(document.body.clientHeight < 450? "450px": "100%" );
+}
+
+/*
+ * Set up the navigation bar. It should be centered in the middle
+ * of the page
+ */
+
+#links-background {
+ width : 100%;
+ margin-top : 10%;
+ margin-bottom : auto;
+ text-align : center;
+}
+
+#page-links a {
+ display : block;
+ width : 220px;
+ text-align : left;
+ margin-left : auto;
+ margin-right : auto;
+ margin-top : 0px;
+ vertical-align : top;
+}
+
+#page-links a span, #page-links a p {
+ display : block;
+ width : 160px;
+ margin : 0px;
+ padding : 0px;
+}
+
+#page-links a .link-label {
+ position : relative;
+ left : 60px;
+ top : -50px;
+}
+
+#page-links a p .text {
+ position : relative;
+ left : 60px;
+ top : -50px;
+}
+
+#page-links a img {
+ height : 52px;
+ width : 52px;
+ vertical-align : middle;
+}
+
+#page-links a:hover,
+#page-links a:focus,
+#page-links a:active { border : 0px; }
+
+#page-links a:hover p,
+#page-links a:focus p,
+#page-links a:active p { margin : 0px; padding : 0px; }
+
+/* properties for each of the page-links */
+
+#page-links a .background-image {
+ display: none;
+}
+
+#page-links a .link-extra-div {
+ display :none;
+}
+
+a#overview img { background-image : url(../graphics/standby/ov_standby.gif); }
+a#overview:hover img,
+a#overview:focus img,
+a#overview:active img { background-image : url(../graphics/standby/ov_standbyhov.gif); }
+
+a#firststeps img { background-image : url(../graphics/standby/fs_standby.gif); }
+a#firststeps:hover img,
+a#firststeps:focus img,
+a#firststeps:active img { background-image : url(../graphics/standby/fs_standbyhov.gif); }
+
+a#tutorials img { background-image : url(../graphics/standby/tu_standby.gif); }
+a#tutorials:hover img,
+a#tutorials:focus img,
+a#tutorials:active img { background-image : url(../graphics/standby/tu_standbyhov.gif); }
+
+a#samples img { background-image : url(../graphics/standby/sa_standby.gif); }
+a#samples:hover img,
+a#samples:focus img,
+a#samples:active img { background-image : url(../graphics/standby/sa_standbyhov.gif); }
+
+a#whatsnew img { background-image : url(../graphics/standby/wn_standby.gif); }
+a#whatsnew:hover img,
+a#whatsnew:focus img,
+a#whatsnew:active img { background-image : url(../graphics/standby/wn_standbyhov.gif); }
+
+a#webresources img { background-image : url(../graphics/standby/wr_standby.gif); }
+a#webresources:hover img,
+a#webresources:focus img,
+a#webresources:active img { background-image : url(../graphics/standby/wr_standbyhov.gif); }
+
+a#migrate img { background-image : url(../graphics/standby/mi_standby.gif); }
+a#migrate:hover img,
+a#migrate:focus img,
+a#migrate:active img { background-image : url(../graphics/standby/mi_standbyhov.gif); }
+
+a#workbench img { background-image : url(../graphics/standby/wb_standby.gif); }
+a#workbench:hover img,
+a#workbench:focus img,
+a#workbench:active img { background-image : url(../graphics/standby/wb_standbyhov.gif); }
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/tutorials.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/tutorials.css
new file mode 100644
index 0000000..8ae9294
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/tutorials.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+ display : none;
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#tutorials img {
+ background-image : url(../graphics/icons/ctool/tutorials-select.png);
+ width : 64px;
+ height: 64px;
+ margin-top : 12px
+}
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+* html #navigation-links a#tutorials img {
+ background-image : url(../graphics/icons/ctool/tutorials-select.gif);
+}
+
+#navigation-links a.high-contrast#tutorials img {
+ display : none;
+}
+
+.page {
+ background-image: url(../graphics/contentpage/tu_banner.jpg);
+}
+
+#navigation-links #tutorials .link-label {
+ display : none;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/webresources.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/webresources.css
new file mode 100644
index 0000000..0e19a44
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/webresources.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+ display : none;
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#webresources img {
+ background-image : url(../graphics/icons/ctool/webresources-select.png);
+ width : 64px;
+ height: 64px;
+ margin-top : 12px
+}
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+* html #navigation-links a#webresources img {
+ background-image : url(../graphics/icons/ctool/webresources-select.gif);
+}
+
+#navigation-links a#.high-contrast#webresources img {
+ display : none;
+}
+
+.page {
+ background-image: url(../graphics/contentpage/wr_banner.jpg);
+}
+
+#navigation-links #webresources .link-label {
+ display : none;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/whatsnew.css b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/whatsnew.css
new file mode 100644
index 0000000..01d5b97
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/whatsnew.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+ display : none;
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#whatsnew img {
+ background-image : url(../graphics/icons/ctool/whatsnew-select.png);
+ width : 64px;
+ height: 64px;
+ margin-top : 12px;
+}
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+* html #navigation-links a#whatsnew img {
+ background-image : url(../graphics/icons/ctool/whatsnew-select.gif);
+}
+
+#navigation-links a#.high-contrast#whatsnew img {
+ display : none;
+}
+
+.page {
+ background-image: url(../graphics/contentpage/wn_banner.jpg);
+}
+
+#navigation-links #whatsnew .link-label {
+ display : none;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/preview.png b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/preview.png
new file mode 100644
index 0000000..79d7066
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/preview.png differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/firststeps.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/firststeps.properties
new file mode 100644
index 0000000..f294360
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/firststeps.properties
@@ -0,0 +1,18 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+firststeps.page-content.layout.vspacing = 40
+firststeps.page-content.layout.ncolumns = 2
+firststeps.page-content.page-title.layout.colspan = 2
+firststeps.page-content.page-description.layout.colspan = 2
+firststeps.page-content.content-divider.layout.colspan = 2
+firststeps.subtitle-id = firststeps/page-content/page-title
+firststeps.description-id = firststeps/page-content/page-description
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/migrate.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/migrate.properties
new file mode 100644
index 0000000..6de0f5c
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/migrate.properties
@@ -0,0 +1,18 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+migrate.page-content.layout.vspacing = 40
+migrate.page-content.layout.ncolumns = 2
+migrate.page-content.page-title.layout.colspan = 2
+migrate.page-content.page-description.layout.colspan = 2
+migrate.page-content.content-divider.layout.colspan = 2
+
+migrate.subtitle-id = migrate/page-content/page-title
+migrate.description-id = migrate/page-content/page-description
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/overview.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/overview.properties
new file mode 100644
index 0000000..43e9398
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/overview.properties
@@ -0,0 +1,18 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+overview.page-content.layout.ncolumns = 2
+overview.page-content.page-title.layout.colspan = 2
+overview.page-content.page-description.layout.colspan = 2
+overview.page-content.content-divider.layout.colspan = 2
+
+overview.subtitle-id = overview/page-content/page-title
+overview.description-id = overview/page-content/page-description
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/root.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/root.properties
new file mode 100644
index 0000000..3dbf653
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/root.properties
@@ -0,0 +1,51 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+theme=true
+root.links-background.page-links.overview.link-icon = ../graphics/icons/ctool/overview.png
+root.links-background.page-links.tutorials.link-icon = ../graphics/icons/ctool/tutorials.png
+root.links-background.page-links.samples.link-icon= ../graphics/icons/ctool/samples.png
+root.links-background.page-links.whatsnew.link-icon = ../graphics/icons/ctool/whatsnew.png
+root.links-background.page-links.firststeps.link-icon = ../graphics/icons/ctool/firststeps.png
+root.links-background.page-links.migrate.link-icon = ../graphics/icons/ctool/migrate.png
+root.links-background.page-links.webresources.link-icon = ../graphics/icons/ctool/webresources.png
+root.action-links.workbench.link-icon = ../graphics/icons/ctool/workbench.png
+
+root.links-background.page-links.overview.hover-icon = ../graphics/icons/ctool/overview.png
+root.links-background.page-links.tutorials.hover-icon = ../graphics/icons/ctool/tutorials.png
+root.links-background.page-links.samples.hover-icon = ../graphics/icons/ctool/samples.png
+root.links-background.page-links.whatsnew.hover-icon = ../graphics/icons/ctool/whatsnew.png
+root.links-background.page-links.firststeps.hover-icon = ../graphics/icons/ctool/firststeps.png
+root.links-background.page-links.migrate.hover-icon = ../graphics/icons/ctool/migrate.png
+root.links-background.page-links.webresources.hover-icon = ../graphics/icons/ctool/webresources.png
+root.action-links.workbench.hover-icon = ../graphics/icons/ctool/workbench.png
+
+root.links-background.page-links.overview.small-link-icon = ../graphics/icons/ctool/ov_nav.png
+root.links-background.page-links.tutorials.small-link-icon = ../graphics/icons/ctool/tu_nav.png
+root.links-background.page-links.samples.small-link-icon = ../graphics/icons/ctool/sa_nav.png
+root.links-background.page-links.whatsnew.small-link-icon = ../graphics/icons/ctool/wn_nav.png
+root.links-background.page-links.firststeps.small-link-icon = ../graphics/icons/ctool/fs_nav.png
+root.links-background.page-links.migrate.small-link-icon = ../graphics/icons/ctool/mi_nav.png
+root.links-background.page-links.webresources.small-link-icon = ../graphics/icons/ctool/wr_nav.png
+root.action-links.workbench.small-link-icon = ../graphics/icons/ctool/wb_nav.png
+
+root.links-background.page-links.overview.small-hover-icon = ../graphics/icons/ctool/ov_nav.png
+root.links-background.page-links.tutorials.small-hover-icon = ../graphics/icons/ctool/tu_nav.png
+root.links-background.page-links.samples.small-hover-icon = ../graphics/icons/ctool/sa_nav.png
+root.links-background.page-links.whatsnew.small-hover-icon = ../graphics/icons/ctool/wn_nav.png
+root.links-background.page-links.firststeps.small-hover-icon = ../graphics/icons/ctool/fs_nav.png
+root.links-background.page-links.migrate.small-hover-icon = ../graphics/icons/ctool/mi_nav.png
+root.links-background.page-links.webresources.small-hover-icon = ../graphics/icons/ctool/wr_nav.png
+root.action-links.workbench.small-hover-icon = ../graphics/icons/ctool/wb_nav.png
+
+
+root.layout.ncolumns = 1
+root.links-background.page-links.layout.hspacing = 40
+root.layout.vspacing = 35
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/samples.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/samples.properties
new file mode 100644
index 0000000..da16d12
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/samples.properties
@@ -0,0 +1,21 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+samples.page-content.layout.vspacing = 40
+samples.page-content.layout.ncolumns = 2
+samples.page-content.layout.equalWidth = true
+samples.page-content.page-title.layout.colspan = 2
+samples.page-content.page-description.layout.colspan = 2
+samples.page-content.content-divider.layout.colspan = 2
+
+description-style-id = group-description
+samples.subtitle-id = samples/page-content/page-title
+samples.description-id = samples/page-content/page-description
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/standby.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/standby.properties
new file mode 100644
index 0000000..0a474d2
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/standby.properties
@@ -0,0 +1,24 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+theme = true
+standby.links-background.page-links.overview.link-icon = ../graphics/icons/ctool/ov_nav.png
+standby.links-background.page-links.firststeps.link-icon = ../graphics/icons/ctool/fs_nav.png
+standby.links-background.page-links.tutorials.link-icon = ../graphics/icons/ctool/tu_nav.png
+standby.links-background.page-links.samples.link-icon = ../graphics/icons/ctool/sa_nav.png
+standby.links-background.page-links.whatsnew.link-icon = ../graphics/icons/ctool/wn_nav.png
+standby.links-background.page-links.migrate.link-icon = ../graphics/icons/ctool/mi_nav.png
+standby.links-background.page-links.webresources.link-icon = ../graphics/icons/ctool/wr_nav.png
+standby.links-background.page-links.workbench.link-icon = ../graphics/icons/ctool/wb_nav.png
+
+standby.links-background.page-links.layout.vspacing = 30
+standby.layout.vspacing = 35
+standby.show-link-description = false
+standby.show-home-page-navigation = false
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/tutorials.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/tutorials.properties
new file mode 100644
index 0000000..b7e1492
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/tutorials.properties
@@ -0,0 +1,19 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+tutorials.page-content.layout.vspacing = 40
+tutorials.page-content.layout.ncolumns = 2
+tutorials.page-content.layout.equalWidth = true
+tutorials.page-content.page-title.layout.colspan = 2
+tutorials.page-content.page-description.layout.colspan = 2
+tutorials.page-content.content-divider.layout.colspan = 2
+tutorials.subtitle-id = tutorials/page-content/page-title
+tutorials.description-id = tutorials/page-content/page-description
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/webresources.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/webresources.properties
new file mode 100644
index 0000000..1bba0e8
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/webresources.properties
@@ -0,0 +1,19 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+webresources.page-content.layout.vspacing = 40
+webresources.page-content.layout.ncolumns = 2
+webresources.page-content.page-title.layout.colspan = 2
+webresources.page-content.page-description.layout.colspan = 2
+webresources.page-content.content-divider.layout.colspan = 2
+
+webresources.subtitle-id = webresources/page-content/page-title
+webresources.description-id = webresources/page-content/page-description
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/whatsnew.properties b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/whatsnew.properties
new file mode 100644
index 0000000..28c5acf
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/whatsnew.properties
@@ -0,0 +1,24 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+theme = true
+whatsnew.page-content.layout.vspacing = 40
+whatsnew.page-content.layout.ncolumns = 2
+whatsnew.page-content.layout.equalWidth = true
+whatsnew.page-content.page-title.layout.colspan = 2
+whatsnew.page-content.page-description.layout.colspan = 2
+whatsnew.page-content.content-divider.layout.colspan = 2
+
+whatsnew.separator.fg = #dfdfe4
+
+whatsnew.link-icon = ../graphics/icons/obj48/new_obj.gif
+whatsnew.hover-icon = ../graphics/icons/obj48/newhov_obj.gif
+
+whatsnew.subtitle-id = whatsnew/page-content/page-title
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/universal.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/universal.jar.REMOVED.git-id
new file mode 100644
index 0000000..581522c
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/universal.jar.REMOVED.git-id
@@ -0,0 +1 @@
+620ad463c2748c9a63c08b3cc47a76369dc4ca90
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.navigator.resources_3.4.400.v20120705-114010.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.navigator.resources_3.4.400.v20120705-114010.jar.REMOVED.git-id
new file mode 100644
index 0000000..211f437
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.navigator.resources_3.4.400.v20120705-114010.jar.REMOVED.git-id
@@ -0,0 +1 @@
+55d4d7d4d4b5c93a6df5dbf6b291c7e957fc0e91
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.navigator_3.5.200.v20120705-114103.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.navigator_3.5.200.v20120705-114103.jar.REMOVED.git-id
new file mode 100644
index 0000000..ec85058
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.navigator_3.5.200.v20120705-114103.jar.REMOVED.git-id
@@ -0,0 +1 @@
+e96146c52ed419a8766b2df6c7839b23e660c4b5
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.net_1.2.101.v20120914-093638.jar b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.net_1.2.101.v20120914-093638.jar
new file mode 100644
index 0000000..d90264d
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.net_1.2.101.v20120914-093638.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.views.properties.tabbed_3.5.300.v20120912-132807.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.views.properties.tabbed_3.5.300.v20120912-132807.jar.REMOVED.git-id
new file mode 100644
index 0000000..012b4c5
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.views.properties.tabbed_3.5.300.v20120912-132807.jar.REMOVED.git-id
@@ -0,0 +1 @@
+20686026286536e2e56dcae0f84337d55874d613
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.views_3.6.100.v20120705-114010.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.views_3.6.100.v20120705-114010.jar.REMOVED.git-id
new file mode 100644
index 0000000..53bcbf3
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.views_3.6.100.v20120705-114010.jar.REMOVED.git-id
@@ -0,0 +1 @@
+28573c712172625907a184ca913e4ac115c35170
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.workbench.texteditor_3.8.0.v20120523-1310.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.workbench.texteditor_3.8.0.v20120523-1310.jar.REMOVED.git-id
new file mode 100644
index 0000000..7443810
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.workbench.texteditor_3.8.0.v20120523-1310.jar.REMOVED.git-id
@@ -0,0 +1 @@
+a776ee2f4defa5cf47f71c8b61d76eea0b92214a
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.workbench_3.104.0.v20130204-164612.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.workbench_3.104.0.v20130204-164612.jar.REMOVED.git-id
new file mode 100644
index 0000000..e2a25dc
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui.workbench_3.104.0.v20130204-164612.jar.REMOVED.git-id
@@ -0,0 +1 @@
+f56c2b552a80ab13cb655afb162f259c50992f18
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.ui_3.104.0.v20121024-145224.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui_3.104.0.v20121024-145224.jar.REMOVED.git-id
new file mode 100644
index 0000000..b9a2f42
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.ui_3.104.0.v20121024-145224.jar.REMOVED.git-id
@@ -0,0 +1 @@
+5d53c3ff1632f3e1d7966e5719e794567ff351fa
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.eclipse.update.configurator_3.3.200.v20120912-144026.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.eclipse.update.configurator_3.3.200.v20120912-144026.jar.REMOVED.git-id
new file mode 100644
index 0000000..4701759
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.eclipse.update.configurator_3.3.200.v20120912-144026.jar.REMOVED.git-id
@@ -0,0 +1 @@
+17d3fb279398b709db6b180f4f0c28320543f3b3
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.sat4j.core_2.3.0.v20110329.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.sat4j.core_2.3.0.v20110329.jar.REMOVED.git-id
new file mode 100644
index 0000000..567a74c
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.sat4j.core_2.3.0.v20110329.jar.REMOVED.git-id
@@ -0,0 +1 @@
+019572aa20a3b7d3d3b97fa6c5e84f30ed91af91
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.sat4j.pb_2.3.0.v20110329.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.sat4j.pb_2.3.0.v20110329.jar.REMOVED.git-id
new file mode 100644
index 0000000..7a16fca
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.sat4j.pb_2.3.0.v20110329.jar.REMOVED.git-id
@@ -0,0 +1 @@
+cf7bb368eebd51d3687b856482b4c077db51f867
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/plugins/org.w3c.css.sac_1.3.1.v200903091627.jar b/android/tools/lib/monitor-x86/plugins/org.w3c.css.sac_1.3.1.v200903091627.jar
new file mode 100644
index 0000000..2144c3a
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.w3c.css.sac_1.3.1.v200903091627.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.w3c.dom.smil_1.0.0.v200806040011.jar b/android/tools/lib/monitor-x86/plugins/org.w3c.dom.smil_1.0.0.v200806040011.jar
new file mode 100644
index 0000000..a1c8a83
Binary files /dev/null and b/android/tools/lib/monitor-x86/plugins/org.w3c.dom.smil_1.0.0.v200806040011.jar differ
diff --git a/android/tools/lib/monitor-x86/plugins/org.w3c.dom.svg_1.1.0.v201011041433.jar.REMOVED.git-id b/android/tools/lib/monitor-x86/plugins/org.w3c.dom.svg_1.1.0.v201011041433.jar.REMOVED.git-id
new file mode 100644
index 0000000..aab994c
--- /dev/null
+++ b/android/tools/lib/monitor-x86/plugins/org.w3c.dom.svg_1.1.0.v201011041433.jar.REMOVED.git-id
@@ -0,0 +1 @@
+99cfac18bc5f352de7dc626677e97927d9a81b79
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86/readme/readme_eclipse.html.REMOVED.git-id b/android/tools/lib/monitor-x86/readme/readme_eclipse.html.REMOVED.git-id
new file mode 100644
index 0000000..bfcd895
--- /dev/null
+++ b/android/tools/lib/monitor-x86/readme/readme_eclipse.html.REMOVED.git-id
@@ -0,0 +1 @@
+99113248a93d5a7e3a97f46c4ebcb6bc3a74938e
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/.eclipseproduct b/android/tools/lib/monitor-x86_64/.eclipseproduct
new file mode 100644
index 0000000..2bbf3ac
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/.eclipseproduct
@@ -0,0 +1,3 @@
+name=Eclipse Platform
+id=org.eclipse.platform
+version=4.2.0
diff --git a/android/tools/lib/monitor-x86_64/artifacts.xml b/android/tools/lib/monitor-x86_64/artifacts.xml
new file mode 100644
index 0000000..dee9eac
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/artifacts.xml
@@ -0,0 +1,1085 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/configuration/config.ini b/android/tools/lib/monitor-x86_64/configuration/config.ini
new file mode 100644
index 0000000..ca7bad9
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/configuration/config.ini
@@ -0,0 +1,12 @@
+#This configuration file was written by: org.eclipse.equinox.internal.frameworkadmin.equinox.EquinoxFwConfigFileParser
+#Wed Sep 13 21:54:49 UTC 2017
+eclipse.p2.profile=DefaultProfile
+osgi.framework=file\:plugins/org.eclipse.osgi_3.8.2.v20130124-134944.jar
+equinox.use.ds=true
+osgi.bundles=reference\:file\:com.android.ide.eclipse.base_25.2.2.4333796.jar@4,reference\:file\:com.android.ide.eclipse.ddms_25.2.2.4333796.jar@4,reference\:file\:com.android.ide.eclipse.gldebugger_25.2.2.4333796.jar@4,reference\:file\:com.android.ide.eclipse.hierarchyviewer_25.4.0.4333796.jar@4,reference\:file\:com.android.ide.eclipse.monitor_25.2.2.4333796.jar@4,reference\:file\:com.android.ide.eclipse.traceview_25.2.2.4333796.jar@4,reference\:file\:com.ibm.icu_4.4.2.v20110823.jar@4,reference\:file\:com.jcraft.jsch_0.1.46.v201205102330.jar@4,reference\:file\:com.sun.el_2.2.0.v201108011116.jar@4,reference\:file\:javax.annotation_1.0.0.v20101115-0725.jar@4,reference\:file\:javax.el_2.2.0.v201108011116.jar@4,reference\:file\:javax.inject_1.0.0.v20091030.jar@4,reference\:file\:javax.servlet_3.0.0.v201112011016.jar@4,reference\:file\:javax.servlet.jsp_2.2.0.v201112011158.jar@4,reference\:file\:javax.xml_1.3.4.v201005080400.jar@4,reference\:file\:org.apache.ant_1.8.3.v201301120609/@4,reference\:file\:org.apache.batik.css_1.6.0.v201011041432.jar@4,reference\:file\:org.apache.batik.util_1.6.0.v201011041432.jar@4,reference\:file\:org.apache.batik.util.gui_1.6.0.v201011041432.jar@4,reference\:file\:org.apache.commons.codec_1.3.0.v201101211617.jar@4,reference\:file\:org.apache.commons.httpclient_3.1.0.v201012070820.jar@4,reference\:file\:org.apache.commons.logging_1.0.4.v201101211617.jar@4,reference\:file\:org.apache.felix.gogo.command_0.8.0.v201108120515.jar@4,reference\:file\:org.apache.felix.gogo.runtime_0.8.0.v201108120515.jar@4,reference\:file\:org.apache.felix.gogo.shell_0.8.0.v201110170705.jar@4,reference\:file\:org.apache.jasper.glassfish_2.2.2.v201205150955.jar@4,reference\:file\:org.apache.lucene_2.9.1.v201101211721.jar@4,reference\:file\:org.apache.lucene.analysis_2.9.1.v201101211721.jar@4,reference\:file\:org.apache.lucene.core_2.9.1.v201101211721.jar@4,reference\:file\:org.eclipse.ant.core_3.2.401.v20121204-162022.jar@4,reference\:file\:org.eclipse.compare_3.5.301.v20130125-135424.jar@4,reference\:file\:org.eclipse.compare.core_3.5.200.v20120522-1148.jar@4,reference\:file\:org.eclipse.core.commands_3.6.2.v20130123-162658.jar@4,reference\:file\:org.eclipse.core.contenttype_3.4.200.v20120523-2004.jar@4,reference\:file\:org.eclipse.core.databinding_1.4.1.v20120912-132807.jar@4,reference\:file\:org.eclipse.core.databinding.beans_1.2.200.v20120523-1955.jar@4,reference\:file\:org.eclipse.core.databinding.observable_1.4.1.v20120521-2329.jar@4,reference\:file\:org.eclipse.core.databinding.property_1.4.100.v20120523-1955.jar@4,reference\:file\:org.eclipse.core.expressions_3.4.401.v20120912-155018.jar@4,reference\:file\:org.eclipse.core.externaltools_1.0.100.v20120521-2012.jar@4,reference\:file\:org.eclipse.core.filebuffers_3.5.200.v20120523-1310.jar@4,reference\:file\:org.eclipse.core.filesystem_1.3.200.v20130115-145044.jar@4,reference\:file\:org.eclipse.core.filesystem.linux.x86_64_1.2.0.v20120522-1137.jar@4,reference\:file\:org.eclipse.core.jobs_3.5.300.v20120912-155018.jar@4,reference\:file\:org.eclipse.core.net_1.2.200.v20120914-093638.jar@4,reference\:file\:org.eclipse.core.net.linux.x86_64_1.1.0.v20120522-1148.jar@4,reference\:file\:org.eclipse.core.resources_3.8.1.v20121114-124432.jar@4,reference\:file\:org.eclipse.core.runtime_3.8.0.v20120912-155025.jar@2\:start,reference\:file\:org.eclipse.core.runtime.compatibility_3.2.200.v20120521-2346.jar@4,reference\:file\:org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/@4,reference\:file\:org.eclipse.core.variables_3.2.600.v20120521-2012.jar@4,reference\:file\:org.eclipse.debug.core_3.7.100.v20120521-2012.jar@4,reference\:file\:org.eclipse.debug.ui_3.8.2.v20130130-171415.jar@4,reference\:file\:org.eclipse.e4.core.commands_0.10.1.v20120523-1955.jar@4,reference\:file\:org.eclipse.e4.core.contexts_1.2.0.v20121221-192508.jar@4,reference\:file\:org.eclipse.e4.core.di_1.2.0.v20121024-173149.jar@4,reference\:file\:org.eclipse.e4.core.di.extensions_0.11.100.v20121024-182359.jar@4,reference\:file\:org.eclipse.e4.core.services_1.0.0.v20120521-2346.jar@4,reference\:file\:org.eclipse.e4.ui.bindings_0.10.3.v20130123-162658.jar@4,reference\:file\:org.eclipse.e4.ui.css.core_0.10.2.v20120912-132817.jar@4,reference\:file\:org.eclipse.e4.ui.css.swt_0.10.3.v20130123-162658.jar@4,reference\:file\:org.eclipse.e4.ui.css.swt.theme_0.9.4.v20130123-162658.jar@4,reference\:file\:org.eclipse.e4.ui.di_0.10.1.v20120523-1955.jar@4,reference\:file\:org.eclipse.e4.ui.model.workbench_0.10.1.v20120523-1955.jar@4,reference\:file\:org.eclipse.e4.ui.services_0.10.3.v20130123-162658.jar@4,reference\:file\:org.eclipse.e4.ui.widgets_0.12.3.v20130123-162658.jar@4,reference\:file\:org.eclipse.e4.ui.workbench_0.11.0.v20130125-100758.jar@4,reference\:file\:org.eclipse.e4.ui.workbench.addons.swt_0.10.3.v20130124-185622.jar@4,reference\:file\:org.eclipse.e4.ui.workbench.renderers.swt_0.10.3.v20130124-170312.jar@4,reference\:file\:org.eclipse.e4.ui.workbench.swt_0.10.3.v20130124-133900.jar@4,reference\:file\:org.eclipse.e4.ui.workbench3_0.12.0.v20120521-2329.jar@4,reference\:file\:org.eclipse.ecf_3.1.300.v20120610-1946.jar@4,reference\:file\:org.eclipse.ecf.filetransfer_5.0.0.v20120610-1946.jar@4,reference\:file\:org.eclipse.ecf.identity_3.1.200.v20120610-1946.jar@4,reference\:file\:org.eclipse.ecf.provider.filetransfer_3.2.0.v20120610-1946.jar@4,reference\:file\:org.eclipse.ecf.provider.filetransfer.httpclient_4.0.200.v20120610-1946.jar@4,reference\:file\:org.eclipse.ecf.provider.filetransfer.httpclient.ssl_1.0.0.v20120610-1946.jar@4,reference\:file\:org.eclipse.ecf.provider.filetransfer.ssl_1.0.0.v20120610-1946.jar@4,reference\:file\:org.eclipse.ecf.ssl_1.0.100.v20120610-1946.jar@4,reference\:file\:org.eclipse.emf.common_2.8.0.v20130125-0546.jar@4,reference\:file\:org.eclipse.emf.ecore_2.8.3.v20130125-0546.jar@4,reference\:file\:org.eclipse.emf.ecore.change_2.8.0.v20130125-0546.jar@4,reference\:file\:org.eclipse.emf.ecore.xmi_2.8.1.v20130125-0546.jar@4,reference\:file\:org.eclipse.equinox.app_1.3.100.v20120522-1841.jar@4,reference\:file\:org.eclipse.equinox.bidi_0.9.100.v20121107-021609.jar@4,reference\:file\:org.eclipse.equinox.common_3.6.100.v20120522-1841.jar@2\:start,reference\:file\:org.eclipse.equinox.console_1.0.0.v20120522-1841.jar@4,reference\:file\:org.eclipse.equinox.ds_1.4.1.v20120926-201320.jar@2\:start,reference\:file\:org.eclipse.equinox.event_1.2.200.v20120522-2049.jar@4,reference\:file\:org.eclipse.equinox.frameworkadmin_2.0.100.v20120913-155515.jar@4,reference\:file\:org.eclipse.equinox.frameworkadmin.equinox_1.0.400.v20120913-155709.jar@4,reference\:file\:org.eclipse.equinox.http.jetty_3.0.1.v20121109-203239.jar@4,reference\:file\:org.eclipse.equinox.http.registry_1.1.200.v20120912-130548.jar@4,reference\:file\:org.eclipse.equinox.http.servlet_1.1.300.v20120912-130548.jar@4,reference\:file\:org.eclipse.equinox.jsp.jasper_1.0.400.v20120912-130548.jar@4,reference\:file\:org.eclipse.equinox.jsp.jasper.registry_1.0.300.v20120912-130548.jar@4,reference\:file\:org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar@4,reference\:file\:org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/@4,reference\:file\:org.eclipse.equinox.p2.artifact.repository_1.1.200.v20120430-1959.jar@4,reference\:file\:org.eclipse.equinox.p2.console_1.0.300.v20120429-0125.jar@4,reference\:file\:org.eclipse.equinox.p2.core_2.2.0.v20120430-0525.jar@4,reference\:file\:org.eclipse.equinox.p2.director_2.2.0.v20120524-0542.jar@4,reference\:file\:org.eclipse.equinox.p2.director.app_1.0.300.v20120428-0517.jar@4,reference\:file\:org.eclipse.equinox.p2.directorywatcher_1.0.300.v20110808-1657.jar@4,reference\:file\:org.eclipse.equinox.p2.engine_2.2.0.v20130121-021919.jar@4,reference\:file\:org.eclipse.equinox.p2.extensionlocation_1.2.100.v20110808-1657.jar@4,reference\:file\:org.eclipse.equinox.p2.garbagecollector_1.0.200.v20110808-1657.jar@4,reference\:file\:org.eclipse.equinox.p2.jarprocessor_1.0.200.v20110808-1657.jar@4,reference\:file\:org.eclipse.equinox.p2.metadata_2.1.0.v20120430-2001.jar@4,reference\:file\:org.eclipse.equinox.p2.metadata.repository_1.2.100.v20120524-1717.jar@4,reference\:file\:org.eclipse.equinox.p2.operations_2.2.0.v20130119-010614.jar@4,reference\:file\:org.eclipse.equinox.p2.publisher_1.2.0.v20121002-080415.jar@4,reference\:file\:org.eclipse.equinox.p2.publisher.eclipse_1.1.0.v20120913-155635.jar@4,reference\:file\:org.eclipse.equinox.p2.ql_2.0.100.v20110808-1657.jar@4,reference\:file\:org.eclipse.equinox.p2.reconciler.dropins_1.1.200.v20120301-2145.jar@4,reference\:file\:org.eclipse.equinox.p2.repository_2.2.0.v20120524-1945.jar@4,reference\:file\:org.eclipse.equinox.p2.repository.tools_2.0.100.v20120501-1314.jar@4,reference\:file\:org.eclipse.equinox.p2.touchpoint.eclipse_2.1.100.v20120428-0117.jar@4,reference\:file\:org.eclipse.equinox.p2.touchpoint.natives_1.1.0.v20130121-021919.jar@4,reference\:file\:org.eclipse.equinox.p2.transport.ecf_1.0.100.v20120913-155635.jar@4,reference\:file\:org.eclipse.equinox.p2.ui_2.2.0.v20130119-010614.jar@4,reference\:file\:org.eclipse.equinox.p2.ui.importexport_1.0.1.v20120913-155635.jar@4,reference\:file\:org.eclipse.equinox.p2.ui.sdk_1.0.200.v20120515-1650.jar@4,reference\:file\:org.eclipse.equinox.p2.ui.sdk.scheduler_1.1.0.v20110815-1744.jar@4,reference\:file\:org.eclipse.equinox.p2.updatechecker_1.1.200.v20110808-1657.jar@4,reference\:file\:org.eclipse.equinox.p2.updatesite_1.0.400.v20120412-1615.jar@4,reference\:file\:org.eclipse.equinox.preferences_3.5.1.v20121031-182809.jar@4,reference\:file\:org.eclipse.equinox.registry_3.5.200.v20120522-1841.jar@4,reference\:file\:org.eclipse.equinox.security_1.1.100.v20120522-1841.jar@4,reference\:file\:org.eclipse.equinox.security.ui_1.1.100.v20120522-2049.jar@4,reference\:file\:org.eclipse.equinox.simpleconfigurator_1.0.301.v20120914-163612.jar@4,reference\:file\:org.eclipse.equinox.simpleconfigurator.manipulator_2.0.0.v20110808-1657.jar@4,reference\:file\:org.eclipse.equinox.util_1.0.400.v20120917-192807.jar@4,reference\:file\:org.eclipse.help_3.6.0.v20120912-134126.jar@4,reference\:file\:org.eclipse.help.base_3.6.101.v201302041200.jar@4,reference\:file\:org.eclipse.help.ui_3.5.201.v20130108-092756.jar@4,reference\:file\:org.eclipse.help.webapp_3.6.101.v20130116-182509.jar@4,reference\:file\:org.eclipse.jetty.continuation_8.1.3.v20120522.jar@4,reference\:file\:org.eclipse.jetty.http_8.1.3.v20120522.jar@4,reference\:file\:org.eclipse.jetty.io_8.1.3.v20120522.jar@4,reference\:file\:org.eclipse.jetty.security_8.1.3.v20120522.jar@4,reference\:file\:org.eclipse.jetty.server_8.1.3.v20120522.jar@4,reference\:file\:org.eclipse.jetty.servlet_8.1.3.v20120522.jar@4,reference\:file\:org.eclipse.jetty.util_8.1.3.v20120522.jar@4,reference\:file\:org.eclipse.jface_3.8.102.v20130123-162658.jar@4,reference\:file\:org.eclipse.jface.databinding_1.6.0.v20120912-132807.jar@4,reference\:file\:org.eclipse.jface.text_3.8.2.v20121126-164145.jar@4,reference\:file\:org.eclipse.jsch.core_1.1.400.v20120522-1148.jar@4,reference\:file\:org.eclipse.jsch.ui_1.1.400.v20120522-1148.jar@4,reference\:file\:org.eclipse.ltk.core.refactoring_3.6.0.v20120523-1543.jar@4,reference\:file\:org.eclipse.ltk.ui.refactoring_3.7.0.v20120523-1543.jar@4,reference\:file\:org.eclipse.osgi.services_3.3.100.v20120522-1822.jar@4,reference\:file\:org.eclipse.osgi.util_3.2.300.v20120913-144807.jar@4,reference\:file\:org.eclipse.platform_4.2.2.v201302041200/@4,reference\:file\:org.eclipse.platform.doc.user_4.2.2.v20130121-200410.jar@4,reference\:file\:org.eclipse.rcp_4.2.1.v201302041200.jar@4,reference\:file\:org.eclipse.search_3.8.0.v20120523-1540.jar@4,reference\:file\:org.eclipse.swt_3.100.1.v4236b.jar@4,reference\:file\:org.eclipse.swt.gtk.linux.x86_64_3.100.1.v4236b.jar@4,reference\:file\:org.eclipse.team.core_3.6.100.v20120524-0627.jar@4,reference\:file\:org.eclipse.team.ui_3.6.201.v20130125-135424.jar@4,reference\:file\:org.eclipse.text_3.5.200.v20120523-1310.jar@4,reference\:file\:org.eclipse.ui_3.104.0.v20121024-145224.jar@4,reference\:file\:org.eclipse.ui.browser_3.4.2.v20130123-162658.jar@4,reference\:file\:org.eclipse.ui.cheatsheets_3.4.200.v20120521-2344.jar@4,reference\:file\:org.eclipse.ui.console_3.5.100.v20120521-2012.jar@4,reference\:file\:org.eclipse.ui.editors_3.8.0.v20120523-1540.jar@4,reference\:file\:org.eclipse.ui.externaltools_3.2.100.v20120530-1753.jar@4,reference\:file\:org.eclipse.ui.forms_3.5.200.v20120705-114351.jar@4,reference\:file\:org.eclipse.ui.ide_3.8.2.v20121106-165923.jar@4,reference\:file\:org.eclipse.ui.ide.application_1.0.400.v20120523-1955.jar@4,reference\:file\:org.eclipse.ui.intro_3.4.200.v20120521-2344.jar@4,reference\:file\:org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/@4,reference\:file\:org.eclipse.ui.navigator_3.5.200.v20120705-114103.jar@4,reference\:file\:org.eclipse.ui.navigator.resources_3.4.400.v20120705-114010.jar@4,reference\:file\:org.eclipse.ui.net_1.2.101.v20120914-093638.jar@4,reference\:file\:org.eclipse.ui.views_3.6.100.v20120705-114010.jar@4,reference\:file\:org.eclipse.ui.views.properties.tabbed_3.5.300.v20120912-132807.jar@4,reference\:file\:org.eclipse.ui.workbench_3.104.0.v20130204-164612.jar@4,reference\:file\:org.eclipse.ui.workbench.texteditor_3.8.0.v20120523-1310.jar@4,reference\:file\:org.eclipse.update.configurator_3.3.200.v20120912-144026.jar@4,reference\:file\:org.sat4j.core_2.3.0.v20110329.jar@4,reference\:file\:org.sat4j.pb_2.3.0.v20110329.jar@4,reference\:file\:org.w3c.css.sac_1.3.1.v200903091627.jar@4,reference\:file\:org.w3c.dom.smil_1.0.0.v200806040011.jar@4,reference\:file\:org.w3c.dom.svg_1.1.0.v201011041433.jar@4
+eclipse.product=com.android.ide.eclipse.monitor.product
+osgi.splashPath=platform\:/base/plugins/com.android.ide.eclipse.monitor
+osgi.framework.extensions=
+eclipse.p2.data.area=@config.dir/../p2
+osgi.bundles.defaultStartLevel=4
+eclipse.application=com.android.ide.eclipse.monitor.Application
diff --git a/android/tools/lib/monitor-x86_64/configuration/org.eclipse.update/platform.xml b/android/tools/lib/monitor-x86_64/configuration/org.eclipse.update/platform.xml
new file mode 100644
index 0000000..8ccf03e
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/configuration/org.eclipse.update/platform.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/epl-v10.html b/android/tools/lib/monitor-x86_64/epl-v10.html
new file mode 100644
index 0000000..ed4b196
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/epl-v10.html
@@ -0,0 +1,328 @@
+
+
+
+
+
+
+
+
+Eclipse Public License - Version 1.0
+
+
+
+
+
+
+
+
+
Eclipse Public License - v 1.0
+
+
+
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER
+THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE,
+REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE
+OF THIS AGREEMENT.
+
+
1. DEFINITIONS
+
+
"Contribution" means:
+
+
a)
+in the case of the initial Contributor, the initial code and documentation
+distributed under this Agreement, and
+b) in the case of each subsequent Contributor:
+
+
i)
+changes to the Program, and
+
+
ii)
+additions to the Program;
+
+
where
+such changes and/or additions to the Program originate from and are distributed
+by that particular Contributor. A Contribution 'originates' from a Contributor
+if it was added to the Program by such Contributor itself or anyone acting on
+such Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in conjunction
+with the Program under their own license agreement, and (ii) are not derivative
+works of the Program.
+
+
"Contributor" means any person or
+entity that distributes the Program.
+
+
"Licensed Patents " mean patent
+claims licensable by a Contributor which are necessarily infringed by the use
+or sale of its Contribution alone or when combined with the Program.
+
+
"Program" means the Contributions
+distributed in accordance with this Agreement.
+
+
"Recipient" means anyone who
+receives the Program under this Agreement, including all Contributors.
+
+
2. GRANT OF RIGHTS
+
+
a)
+Subject to the terms of this Agreement, each Contributor hereby grants Recipient
+a non-exclusive, worldwide, royalty-free copyright license toreproduce, prepare derivative works of, publicly
+display, publicly perform, distribute and sublicense the Contribution of such
+Contributor, if any, and such derivative works, in source code and object code
+form.
+
+
b)
+Subject to the terms of this Agreement, each Contributor hereby grants
+Recipient a non-exclusive, worldwide,royalty-free
+patent license under Licensed Patents to make, use, sell, offer to sell, import
+and otherwise transfer the Contribution of such Contributor, if any, in source
+code and object code form. This patent license shall apply to the combination
+of the Contribution and the Program if, at the time the Contribution is added
+by the Contributor, such addition of the Contribution causes such combination
+to be covered by the Licensed Patents. The patent license shall not apply to
+any other combinations which include the Contribution. No hardware per se is
+licensed hereunder.
+
+
c)
+Recipient understands that although each Contributor grants the licenses to its
+Contributions set forth herein, no assurances are provided by any Contributor
+that the Program does not infringe the patent or other intellectual property
+rights of any other entity. Each Contributor disclaims any liability to Recipient
+for claims brought by any other entity based on infringement of intellectual
+property rights or otherwise. As a condition to exercising the rights and
+licenses granted hereunder, each Recipient hereby assumes sole responsibility
+to secure any other intellectual property rights needed, if any. For example,
+if a third party patent license is required to allow Recipient to distribute
+the Program, it is Recipient's responsibility to acquire that license before
+distributing the Program.
+
+
d)
+Each Contributor represents that to its knowledge it has sufficient copyright
+rights in its Contribution, if any, to grant the copyright license set forth in
+this Agreement.
+
+
3. REQUIREMENTS
+
+
A Contributor may choose to distribute the
+Program in object code form under its own license agreement, provided that:
+
+
+
a)
+it complies with the terms and conditions of this Agreement; and
+
+
b)
+its license agreement:
+
+
i)
+effectively disclaims on behalf of all Contributors all warranties and
+conditions, express and implied, including warranties or conditions of title
+and non-infringement, and implied warranties or conditions of merchantability
+and fitness for a particular purpose;
+
+
ii)
+effectively excludes on behalf of all Contributors all liability for damages,
+including direct, indirect, special, incidental and consequential damages, such
+as lost profits;
+
+
iii)
+states that any provisions which differ from this Agreement are offered by that
+Contributor alone and not by any other party; and
+
+
iv)
+states that source code for the Program is available from such Contributor, and
+informs licensees how to obtain it in a reasonable manner on or through a
+medium customarily used for software exchange.
+
+
When the Program is made available in source
+code form:
+
+
a)
+it must be made available under this Agreement; and
+
+
b) a
+copy of this Agreement must be included with each copy of the Program.
+
+
Contributors may not remove or alter any
+copyright notices contained within the Program.
+
+
Each Contributor must identify itself as the
+originator of its Contribution, if any, in a manner that reasonably allows
+subsequent Recipients to identify the originator of the Contribution.
+
+
4. COMMERCIAL DISTRIBUTION
+
+
Commercial distributors of software may
+accept certain responsibilities with respect to end users, business partners
+and the like. While this license is intended to facilitate the commercial use
+of the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create potential
+liability for other Contributors. Therefore, if a Contributor includes the
+Program in a commercial product offering, such Contributor ("Commercial
+Contributor") hereby agrees to defend and indemnify every other
+Contributor ("Indemnified Contributor") against any losses, damages and
+costs (collectively "Losses") arising from claims, lawsuits and other
+legal actions brought by a third party against the Indemnified Contributor to
+the extent caused by the acts or omissions of such Commercial Contributor in
+connection with its distribution of the Program in a commercial product
+offering. The obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In order
+to qualify, an Indemnified Contributor must: a) promptly notify the Commercial
+Contributor in writing of such claim, and b) allow the Commercial Contributor
+to control, and cooperate with the Commercial Contributor in, the defense and
+any related settlement negotiations. The Indemnified Contributor may participate
+in any such claim at its own expense.
+
+
For example, a Contributor might include the
+Program in a commercial product offering, Product X. That Contributor is then a
+Commercial Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance claims and
+warranties are such Commercial Contributor's responsibility alone. Under this
+section, the Commercial Contributor would have to defend claims against the
+other Contributors related to those performance claims and warranties, and if a
+court requires any other Contributor to pay any damages as a result, the
+Commercial Contributor must pay those damages.
+
+
5. NO WARRANTY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS
+AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT
+WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING,
+WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
+MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and distributing the
+Program and assumes all risks associated with its exercise of rights under this
+Agreement , including but not limited to the risks and costs of program errors,
+compliance with applicable laws, damage to or loss of data, programs or
+equipment, and unavailability or interruption of operations.
+
+
6. DISCLAIMER OF LIABILITY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS
+AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY
+OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF
+THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF
+THE POSSIBILITY OF SUCH DAMAGES.
+
+
7. GENERAL
+
+
If any provision of this Agreement is invalid
+or unenforceable under applicable law, it shall not affect the validity or
+enforceability of the remainder of the terms of this Agreement, and without
+further action by the parties hereto, such provision shall be reformed to the
+minimum extent necessary to make such provision valid and enforceable.
+
+
If Recipient institutes patent litigation
+against any entity (including a cross-claim or counterclaim in a lawsuit)
+alleging that the Program itself (excluding combinations of the Program with
+other software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the date
+such litigation is filed.
+
+
All Recipient's rights under this Agreement
+shall terminate if it fails to comply with any of the material terms or
+conditions of this Agreement and does not cure such failure in a reasonable
+period of time after becoming aware of such noncompliance. If all Recipient's
+rights under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.
+
+
Everyone is permitted to copy and distribute
+copies of this Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The Agreement
+Steward reserves the right to publish new versions (including revisions) of
+this Agreement from time to time. No one other than the Agreement Steward has
+the right to modify this Agreement. The Eclipse Foundation is the initial
+Agreement Steward. The Eclipse Foundation may assign the responsibility to
+serve as the Agreement Steward to a suitable separate entity. Each new version
+of the Agreement will be given a distinguishing version number. The Program
+(including Contributions) may always be distributed subject to the version of
+the Agreement under which it was received. In addition, after a new version of
+the Agreement is published, Contributor may elect to distribute the Program
+(including its Contributions) under the new version. Except as expressly stated
+in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to
+the intellectual property of any Contributor under this Agreement, whether
+expressly, by implication, estoppel or otherwise. All rights in the Program not
+expressly granted under this Agreement are reserved.
+
+
This Agreement is governed by the laws of the
+State of New York and the intellectual property laws of the United States of
+America. No party to this Agreement will bring a legal action under this
+Agreement more than one year after the cause of action arose. Each party waives
+its rights to a jury trial in any resulting litigation.
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.ddms.feature_25.2.2.4333796/META-INF/MANIFEST.MF b/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.ddms.feature_25.2.2.4333796/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..72ab081
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.ddms.feature_25.2.2.4333796/META-INF/MANIFEST.MF
@@ -0,0 +1,6 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Built-By: android-build
+Created-By: Apache Maven
+Build-Jdk: 1.8.0_45-internal
+
diff --git a/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.ddms.feature_25.2.2.4333796/feature.xml b/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.ddms.feature_25.2.2.4333796/feature.xml
new file mode 100644
index 0000000..4c0a14f
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.ddms.feature_25.2.2.4333796/feature.xml
@@ -0,0 +1,253 @@
+
+
+
+
+ Android Dalvik Debug Monitor Service
+
+
+
+ Copyright (C) 2007-2011 The Android Open Source Project
+
+
+
+ Note: jcommon-1.0.12.jar is under the BSD license rather than the APL. You can find a copy of the BSD License at http://www.opensource.org/licenses/bsd-license.php
+
+ jfreechart-1.0.9.jar and jfreechart-1.0.9-swt.jar are under the LGPL rather than the APL. You can find a copy of the LGPL at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt. You can get the source code for these two components at http://android.git.kernel.org/pub/jfreechart-1.0.9.zip
+
+
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.gldebugger.feature_25.2.2.4333796/META-INF/MANIFEST.MF b/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.gldebugger.feature_25.2.2.4333796/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..72ab081
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.gldebugger.feature_25.2.2.4333796/META-INF/MANIFEST.MF
@@ -0,0 +1,6 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Built-By: android-build
+Created-By: Apache Maven
+Build-Jdk: 1.8.0_45-internal
+
diff --git a/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.gldebugger.feature_25.2.2.4333796/feature.xml b/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.gldebugger.feature_25.2.2.4333796/feature.xml
new file mode 100644
index 0000000..256fbee
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.gldebugger.feature_25.2.2.4333796/feature.xml
@@ -0,0 +1,232 @@
+
+
+
+
+ GLESv2 Debugger Client (Alpha status).
+
+
+
+ Copyright (C) 2011 The Android Open Source Project
+
+
+
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.hierarchyviewer.feature_25.4.0.4333796/META-INF/MANIFEST.MF b/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.hierarchyviewer.feature_25.4.0.4333796/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..72ab081
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.hierarchyviewer.feature_25.4.0.4333796/META-INF/MANIFEST.MF
@@ -0,0 +1,6 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Built-By: android-build
+Created-By: Apache Maven
+Build-Jdk: 1.8.0_45-internal
+
diff --git a/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.hierarchyviewer.feature_25.4.0.4333796/feature.xml b/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.hierarchyviewer.feature_25.4.0.4333796/feature.xml
new file mode 100644
index 0000000..841174d
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.hierarchyviewer.feature_25.4.0.4333796/feature.xml
@@ -0,0 +1,239 @@
+
+
+
+
+ Android Hierarchy Viewer.
+
+
+
+ Copyright (C) 2010-2011 The Android Open Source Project
+
+
+
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.monitor.feature_25.2.2.4333796/META-INF/MANIFEST.MF b/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.monitor.feature_25.2.2.4333796/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..72ab081
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.monitor.feature_25.2.2.4333796/META-INF/MANIFEST.MF
@@ -0,0 +1,6 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Built-By: android-build
+Created-By: Apache Maven
+Build-Jdk: 1.8.0_45-internal
+
diff --git a/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.monitor.feature_25.2.2.4333796/feature.xml b/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.monitor.feature_25.2.2.4333796/feature.xml
new file mode 100644
index 0000000..f34b57b
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.monitor.feature_25.2.2.4333796/feature.xml
@@ -0,0 +1,233 @@
+
+
+
+
+ Android Debug Monitor
+
+
+
+ Copyright (C) 2007-2014 The Android Open Source Project
+
+
+
+ Note: jcommon-1.0.12.jar is under the BSD license rather than the APL. You can find a copy of the BSD License at http://www.opensource.org/licenses/bsd-license.php
+
+ jfreechart-1.0.9.jar and jfreechart-1.0.9-swt.jar are under the LGPL rather than the APL. You can find a copy of the LGPL at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt. You can get the source code for these two components at http://android.git.kernel.org/pub/jfreechart-1.0.9.zip
+
+
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.traceview.feature_25.2.2.4333796/META-INF/MANIFEST.MF b/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.traceview.feature_25.2.2.4333796/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..72ab081
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.traceview.feature_25.2.2.4333796/META-INF/MANIFEST.MF
@@ -0,0 +1,6 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Built-By: android-build
+Created-By: Apache Maven
+Build-Jdk: 1.8.0_45-internal
+
diff --git a/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.traceview.feature_25.2.2.4333796/feature.xml b/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.traceview.feature_25.2.2.4333796/feature.xml
new file mode 100644
index 0000000..11ef3bd
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/com.android.ide.eclipse.traceview.feature_25.2.2.4333796/feature.xml
@@ -0,0 +1,239 @@
+
+
+
+
+ Android Traceview
+
+
+
+ Copyright (C) 2011 The Android Open Source Project
+
+
+
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/ECLIPSE_.RSA b/android/tools/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..e5ed7f4
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/ECLIPSE_.RSA differ
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/ECLIPSE_.SF b/android/tools/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..0c11cbf
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/ECLIPSE_.SF
@@ -0,0 +1,23 @@
+Signature-Version: 1.0
+SHA1-Digest-Manifest: aj3K+VfVL+O/zAucK68OY7bP01Y=
+Created-By: 1.6.0 (IBM Corporation)
+SHA1-Digest-Manifest-Main-Attributes: 4gIfTP5y3EzwI5ecyebQLugBMgo=
+
+Name: epl-v10.html
+SHA1-Digest: /iY8aEvT0IMpNnSjB0FpTUhvUGc=
+
+Name: eclipse_update_120.jpg
+SHA1-Digest: RyXo3knk5T635eCpQEPXyFBrCyA=
+
+Name: META-INF/eclipse.inf
+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=
+
+Name: license.html
+SHA1-Digest: Rp9AnRyeUIxNWe10fjaMDkQB8rU=
+
+Name: feature.properties
+SHA1-Digest: 9JE/KpVMKgJVCtwr9TedfPzDZx0=
+
+Name: feature.xml
+SHA1-Digest: WmrjBlVvFXQFWshXEEhLD51nkTA=
+
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/MANIFEST.MF b/android/tools/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..418b23e
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/MANIFEST.MF
@@ -0,0 +1,21 @@
+Manifest-Version: 1.0
+Created-By: 1.6.0 (IBM Corporation)
+
+Name: epl-v10.html
+SHA1-Digest: jYDaDJLBJpthCwPMgGFVYASJjIU=
+
+Name: META-INF/eclipse.inf
+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=
+
+Name: eclipse_update_120.jpg
+SHA1-Digest: xstAqMgs/a5AsQXQZSdDQ79veOA=
+
+Name: license.html
+SHA1-Digest: /vLZjlHkZSXMSfPrWwNqOUDqqbM=
+
+Name: feature.properties
+SHA1-Digest: NXFVr95HoF5vEzy9CBTLtpJiBJE=
+
+Name: feature.xml
+SHA1-Digest: 9NC7t93zlxasuZw/nuWdD1fpCd0=
+
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/eclipse.inf b/android/tools/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/eclipse_update_120.jpg b/android/tools/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/eclipse_update_120.jpg
new file mode 100644
index 0000000..bfdf708
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/eclipse_update_120.jpg differ
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/epl-v10.html b/android/tools/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/epl-v10.html
new file mode 100644
index 0000000..fd39122
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/epl-v10.html
@@ -0,0 +1,261 @@
+
+
+
+
+
+
+Eclipse Public License - Version 1.0
+
+
+
+
+
+
+
Eclipse Public License - v 1.0
+
+
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.
+
+
1. DEFINITIONS
+
+
"Contribution" means:
+
+
a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and
+
b) in the case of each subsequent Contributor:
+
i) changes to the Program, and
+
ii) additions to the Program;
+
where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.
+
+
"Contributor" means any person or entity that distributes
+the Program.
+
+
"Licensed Patents" mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.
+
+
"Program" means the Contributions distributed in accordance
+with this Agreement.
+
+
"Recipient" means anyone who receives the Program under
+this Agreement, including all Contributors.
+
+
2. GRANT OF RIGHTS
+
+
a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.
+
+
b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.
+
+
c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.
+
+
d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.
+
+
3. REQUIREMENTS
+
+
A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:
+
+
a) it complies with the terms and conditions of this
+Agreement; and
+
+
b) its license agreement:
+
+
i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;
+
+
ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;
+
+
iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and
+
+
iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.
+
+
When the Program is made available in source code form:
+
+
a) it must be made available under this Agreement; and
+
+
b) a copy of this Agreement must be included with each
+copy of the Program.
+
+
Contributors may not remove or alter any copyright notices contained
+within the Program.
+
+
Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.
+
+
4. COMMERCIAL DISTRIBUTION
+
+
Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+("Commercial Contributor") hereby agrees to defend and
+indemnify every other Contributor ("Indemnified Contributor")
+against any losses, damages and costs (collectively "Losses")
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.
+
+
For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.
+
+
5. NO WARRANTY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.
+
+
6. DISCLAIMER OF LIABILITY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+
7. GENERAL
+
+
If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.
+
+
If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.
+
+
All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.
+
+
Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.
+
+
This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/feature.properties b/android/tools/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/feature.properties
new file mode 100644
index 0000000..57a7531
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/feature.properties
@@ -0,0 +1,197 @@
+###############################################################################
+# Copyright (c) 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Eclipse e4 Rich Client Platform
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org
+
+# "description" property - description of the feature
+description=The bundles required by org.eclipse.rcp version 4.0
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2010 IBM Corporation and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+ IBM Corporation - initial API and implementation\n
+################ end of copyright property ####################################
+
+
+########### end of license property #########################################################################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+ - Content may be structured and packaged into modules to facilitate delivering,\n\
+ extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+ plug-in fragments ("Fragments"), and features ("Features").\n\
+ - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+ in a directory named "plugins".\n\
+ - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+ Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+ Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+ numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+ - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+ named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+ - The top-level (root) directory\n\
+ - Plug-in and Fragment directories\n\
+ - Inside Plug-ins and Fragments packaged as JARs\n\
+ - Sub-directories of the directory named "src" of certain Plug-ins\n\
+ - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+ - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+ - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+ - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+ - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+ - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+ - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+ 1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+ the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+ extending or updating the functionality of an Eclipse-based product.\n\
+ 2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+ Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+ 3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+ govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+ Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+ with the Specification. Such Installable Software Agreement must inform the user of the\n\
+ terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+ the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+ indication of agreement by the user, the provisioning Technology will complete installation\n\
+ of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/feature.xml b/android/tools/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/feature.xml
new file mode 100644
index 0000000..00cf3bf
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/feature.xml
@@ -0,0 +1,764 @@
+
+
+
+
+ %description
+
+
+
+ %copyright
+
+
+
+ %license
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/license.html b/android/tools/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.e4.rcp_1.1.2.v20130130-191718-91FUvGP7GIX2Kgz-z-gvjMvXV1NS/license.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+Eclipse Foundation Software User Agreement
+
+
+
+
Eclipse Foundation Software User Agreement
+
February 1, 2011
+
+
Usage Of Content
+
+
THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+ (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+ CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+ OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+ NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+ CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.
+
+
Applicable Licenses
+
+
Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+ ("EPL"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.
+ For purposes of the EPL, "Program" will mean the Content.
+
+
Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+ repository ("Repository") in software modules ("Modules") and made available as downloadable archives ("Downloads").
+
+
+
Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features").
+
Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins".
+
A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins
+ and/or Fragments associated with that Feature.
+
Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features.
+
+
+
The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and
+Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:
+
+
+
The top-level (root) directory
+
Plug-in and Fragment directories
+
Inside Plug-ins and Fragments packaged as JARs
+
Sub-directories of the directory named "src" of certain Plug-ins
+
Feature directories
+
+
+
Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license ("Feature Update License") during the
+installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.
+
+
THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):
IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.
+
+
+
Use of Provisioning Technology
+
+
The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+ Update Manager ("Provisioning Technology") for the purpose of allowing users to install software, documentation, information and/or
+ other materials (collectively "Installable Software"). This capability is provided with the intent of allowing such users to
+ install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html
+ ("Specification").
+
+
You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+ applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+ in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+ Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:
+
+
+
A series of actions may occur ("Provisioning Process") in which a user may execute the Provisioning Technology
+ on a machine ("Target Machine") with the intent of installing, extending or updating the functionality of an Eclipse-based
+ product.
+
During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+ accessed and copied to the Target Machine.
+
Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+ Software ("Installable Software Agreement") and such Installable Software Agreement shall be accessed from the Target
+ Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+ the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+ indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.
+
+
+
Cryptography
+
+
Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+ another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+ possession, or use, and re-export of encryption software, to see if this is permitted.
+
+
Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER
+THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE,
+REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE
+OF THIS AGREEMENT.
+
+
1. DEFINITIONS
+
+
"Contribution" means:
+
+
a)
+in the case of the initial Contributor, the initial code and documentation
+distributed under this Agreement, and
+b) in the case of each subsequent Contributor:
+
+
i)
+changes to the Program, and
+
+
ii)
+additions to the Program;
+
+
where
+such changes and/or additions to the Program originate from and are distributed
+by that particular Contributor. A Contribution 'originates' from a Contributor
+if it was added to the Program by such Contributor itself or anyone acting on
+such Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in conjunction
+with the Program under their own license agreement, and (ii) are not derivative
+works of the Program.
+
+
"Contributor" means any person or
+entity that distributes the Program.
+
+
"Licensed Patents " mean patent
+claims licensable by a Contributor which are necessarily infringed by the use
+or sale of its Contribution alone or when combined with the Program.
+
+
"Program" means the Contributions
+distributed in accordance with this Agreement.
+
+
"Recipient" means anyone who
+receives the Program under this Agreement, including all Contributors.
+
+
2. GRANT OF RIGHTS
+
+
a)
+Subject to the terms of this Agreement, each Contributor hereby grants Recipient
+a non-exclusive, worldwide, royalty-free copyright license toreproduce, prepare derivative works of, publicly
+display, publicly perform, distribute and sublicense the Contribution of such
+Contributor, if any, and such derivative works, in source code and object code
+form.
+
+
b)
+Subject to the terms of this Agreement, each Contributor hereby grants
+Recipient a non-exclusive, worldwide,royalty-free
+patent license under Licensed Patents to make, use, sell, offer to sell, import
+and otherwise transfer the Contribution of such Contributor, if any, in source
+code and object code form. This patent license shall apply to the combination
+of the Contribution and the Program if, at the time the Contribution is added
+by the Contributor, such addition of the Contribution causes such combination
+to be covered by the Licensed Patents. The patent license shall not apply to
+any other combinations which include the Contribution. No hardware per se is
+licensed hereunder.
+
+
c)
+Recipient understands that although each Contributor grants the licenses to its
+Contributions set forth herein, no assurances are provided by any Contributor
+that the Program does not infringe the patent or other intellectual property
+rights of any other entity. Each Contributor disclaims any liability to Recipient
+for claims brought by any other entity based on infringement of intellectual
+property rights or otherwise. As a condition to exercising the rights and
+licenses granted hereunder, each Recipient hereby assumes sole responsibility
+to secure any other intellectual property rights needed, if any. For example,
+if a third party patent license is required to allow Recipient to distribute
+the Program, it is Recipient's responsibility to acquire that license before
+distributing the Program.
+
+
d)
+Each Contributor represents that to its knowledge it has sufficient copyright
+rights in its Contribution, if any, to grant the copyright license set forth in
+this Agreement.
+
+
3. REQUIREMENTS
+
+
A Contributor may choose to distribute the
+Program in object code form under its own license agreement, provided that:
+
+
+
a)
+it complies with the terms and conditions of this Agreement; and
+
+
b)
+its license agreement:
+
+
i)
+effectively disclaims on behalf of all Contributors all warranties and
+conditions, express and implied, including warranties or conditions of title
+and non-infringement, and implied warranties or conditions of merchantability
+and fitness for a particular purpose;
+
+
ii)
+effectively excludes on behalf of all Contributors all liability for damages,
+including direct, indirect, special, incidental and consequential damages, such
+as lost profits;
+
+
iii)
+states that any provisions which differ from this Agreement are offered by that
+Contributor alone and not by any other party; and
+
+
iv)
+states that source code for the Program is available from such Contributor, and
+informs licensees how to obtain it in a reasonable manner on or through a
+medium customarily used for software exchange.
+
+
When the Program is made available in source
+code form:
+
+
a)
+it must be made available under this Agreement; and
+
+
b) a
+copy of this Agreement must be included with each copy of the Program.
+
+
Contributors may not remove or alter any
+copyright notices contained within the Program.
+
+
Each Contributor must identify itself as the
+originator of its Contribution, if any, in a manner that reasonably allows
+subsequent Recipients to identify the originator of the Contribution.
+
+
4. COMMERCIAL DISTRIBUTION
+
+
Commercial distributors of software may
+accept certain responsibilities with respect to end users, business partners
+and the like. While this license is intended to facilitate the commercial use
+of the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create potential
+liability for other Contributors. Therefore, if a Contributor includes the
+Program in a commercial product offering, such Contributor ("Commercial
+Contributor") hereby agrees to defend and indemnify every other
+Contributor ("Indemnified Contributor") against any losses, damages and
+costs (collectively "Losses") arising from claims, lawsuits and other
+legal actions brought by a third party against the Indemnified Contributor to
+the extent caused by the acts or omissions of such Commercial Contributor in
+connection with its distribution of the Program in a commercial product
+offering. The obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In order
+to qualify, an Indemnified Contributor must: a) promptly notify the Commercial
+Contributor in writing of such claim, and b) allow the Commercial Contributor
+to control, and cooperate with the Commercial Contributor in, the defense and
+any related settlement negotiations. The Indemnified Contributor may participate
+in any such claim at its own expense.
+
+
For example, a Contributor might include the
+Program in a commercial product offering, Product X. That Contributor is then a
+Commercial Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance claims and
+warranties are such Commercial Contributor's responsibility alone. Under this
+section, the Commercial Contributor would have to defend claims against the
+other Contributors related to those performance claims and warranties, and if a
+court requires any other Contributor to pay any damages as a result, the
+Commercial Contributor must pay those damages.
+
+
5. NO WARRANTY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS
+AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT
+WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING,
+WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
+MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and distributing the
+Program and assumes all risks associated with its exercise of rights under this
+Agreement , including but not limited to the risks and costs of program errors,
+compliance with applicable laws, damage to or loss of data, programs or
+equipment, and unavailability or interruption of operations.
+
+
6. DISCLAIMER OF LIABILITY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS
+AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY
+OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF
+THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF
+THE POSSIBILITY OF SUCH DAMAGES.
+
+
7. GENERAL
+
+
If any provision of this Agreement is invalid
+or unenforceable under applicable law, it shall not affect the validity or
+enforceability of the remainder of the terms of this Agreement, and without
+further action by the parties hereto, such provision shall be reformed to the
+minimum extent necessary to make such provision valid and enforceable.
+
+
If Recipient institutes patent litigation
+against any entity (including a cross-claim or counterclaim in a lawsuit)
+alleging that the Program itself (excluding combinations of the Program with
+other software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the date
+such litigation is filed.
+
+
All Recipient's rights under this Agreement
+shall terminate if it fails to comply with any of the material terms or
+conditions of this Agreement and does not cure such failure in a reasonable
+period of time after becoming aware of such noncompliance. If all Recipient's
+rights under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.
+
+
Everyone is permitted to copy and distribute
+copies of this Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The Agreement
+Steward reserves the right to publish new versions (including revisions) of
+this Agreement from time to time. No one other than the Agreement Steward has
+the right to modify this Agreement. The Eclipse Foundation is the initial
+Agreement Steward. The Eclipse Foundation may assign the responsibility to
+serve as the Agreement Steward to a suitable separate entity. Each new version
+of the Agreement will be given a distinguishing version number. The Program
+(including Contributions) may always be distributed subject to the version of
+the Agreement under which it was received. In addition, after a new version of
+the Agreement is published, Contributor may elect to distribute the Program
+(including its Contributions) under the new version. Except as expressly stated
+in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to
+the intellectual property of any Contributor under this Agreement, whether
+expressly, by implication, estoppel or otherwise. All rights in the Program not
+expressly granted under this Agreement are reserved.
+
+
This Agreement is governed by the laws of the
+State of New York and the intellectual property laws of the United States of
+America. No party to this Agreement will bring a legal action under this
+Agreement more than one year after the cause of action arose. Each party waives
+its rights to a jury trial in any resulting litigation.
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/feature.properties b/android/tools/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/feature.properties
new file mode 100644
index 0000000..ad5ccaf
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/feature.properties
@@ -0,0 +1,155 @@
+# /**
+# * Copyright (c) 2002-2011 IBM Corporation and others.
+# * All rights reserved. This program and the accompanying materials
+# * are made available under the terms of the Eclipse Public License v1.0
+# * which accompanies this distribution, and is available at
+# * http://www.eclipse.org/legal/epl-v10.html
+# *
+# * Contributors:
+# * IBM - Initial API and implementation
+# */
+
+# NLS_MESSAGEFORMAT_VAR
+
+# "featureName" property - name of the feature
+featureName=EMF Common
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse Modeling Project
+
+# "description" property - description of the feature
+description=Common platform-independent utilities used throughout EMF, including collection classes, notifiers, adapters, and commands.
+
+ModelingUpdateSiteName=Eclipse Modeling Project Updates
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+ - Content may be structured and packaged into modules to facilitate delivering,\n\
+ extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+ plug-in fragments ("Fragments"), and features ("Features").\n\
+ - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+ in a directory named "plugins".\n\
+ - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+ Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+ Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+ numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+ - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+ named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+ - The top-level (root) directory\n\
+ - Plug-in and Fragment directories\n\
+ - Inside Plug-ins and Fragments packaged as JARs\n\
+ - Sub-directories of the directory named "src" of certain Plug-ins\n\
+ - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+ - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+ - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+ - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+ - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+ - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+ - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+ 1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+ the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+ extending or updating the functionality of an Eclipse-based product.\n\
+ 2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+ Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+ 3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+ govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+ Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+ with the Specification. Such Installable Software Agreement must inform the user of the\n\
+ terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+ the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+ indication of agreement by the user, the provisioning Technology will complete installation\n\
+ of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/feature.xml b/android/tools/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/feature.xml
new file mode 100644
index 0000000..7b6a919
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/feature.xml
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+ %description
+
+
+
+ Copyright (c) 2002-2011 IBM Corporation and others.
+All rights reserved. This program and the accompanying materials
+are made available under the terms of the Eclipse Public License v1.0
+which accompanies this distribution, and is available at
+http://www.eclipse.org/legal/epl-v10.html
+
+
+
+ %license
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/license.html b/android/tools/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.emf.common_2.8.0.v20130125-0546/license.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+Eclipse Foundation Software User Agreement
+
+
+
+
Eclipse Foundation Software User Agreement
+
February 1, 2011
+
+
Usage Of Content
+
+
THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+ (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+ CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+ OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+ NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+ CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.
+
+
Applicable Licenses
+
+
Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+ ("EPL"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.
+ For purposes of the EPL, "Program" will mean the Content.
+
+
Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+ repository ("Repository") in software modules ("Modules") and made available as downloadable archives ("Downloads").
+
+
+
Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features").
+
Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins".
+
A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins
+ and/or Fragments associated with that Feature.
+
Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features.
+
+
+
The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and
+Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:
+
+
+
The top-level (root) directory
+
Plug-in and Fragment directories
+
Inside Plug-ins and Fragments packaged as JARs
+
Sub-directories of the directory named "src" of certain Plug-ins
+
Feature directories
+
+
+
Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license ("Feature Update License") during the
+installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.
+
+
THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):
IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.
+
+
+
Use of Provisioning Technology
+
+
The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+ Update Manager ("Provisioning Technology") for the purpose of allowing users to install software, documentation, information and/or
+ other materials (collectively "Installable Software"). This capability is provided with the intent of allowing such users to
+ install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html
+ ("Specification").
+
+
You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+ applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+ in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+ Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:
+
+
+
A series of actions may occur ("Provisioning Process") in which a user may execute the Provisioning Technology
+ on a machine ("Target Machine") with the intent of installing, extending or updating the functionality of an Eclipse-based
+ product.
+
During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+ accessed and copied to the Target Machine.
+
Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+ Software ("Installable Software Agreement") and such Installable Software Agreement shall be accessed from the Target
+ Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+ the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+ indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.
+
+
+
Cryptography
+
+
Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+ another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+ possession, or use, and re-export of encryption software, to see if this is permitted.
+
+
Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER
+THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE,
+REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE
+OF THIS AGREEMENT.
+
+
1. DEFINITIONS
+
+
"Contribution" means:
+
+
a)
+in the case of the initial Contributor, the initial code and documentation
+distributed under this Agreement, and
+b) in the case of each subsequent Contributor:
+
+
i)
+changes to the Program, and
+
+
ii)
+additions to the Program;
+
+
where
+such changes and/or additions to the Program originate from and are distributed
+by that particular Contributor. A Contribution 'originates' from a Contributor
+if it was added to the Program by such Contributor itself or anyone acting on
+such Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in conjunction
+with the Program under their own license agreement, and (ii) are not derivative
+works of the Program.
+
+
"Contributor" means any person or
+entity that distributes the Program.
+
+
"Licensed Patents " mean patent
+claims licensable by a Contributor which are necessarily infringed by the use
+or sale of its Contribution alone or when combined with the Program.
+
+
"Program" means the Contributions
+distributed in accordance with this Agreement.
+
+
"Recipient" means anyone who
+receives the Program under this Agreement, including all Contributors.
+
+
2. GRANT OF RIGHTS
+
+
a)
+Subject to the terms of this Agreement, each Contributor hereby grants Recipient
+a non-exclusive, worldwide, royalty-free copyright license toreproduce, prepare derivative works of, publicly
+display, publicly perform, distribute and sublicense the Contribution of such
+Contributor, if any, and such derivative works, in source code and object code
+form.
+
+
b)
+Subject to the terms of this Agreement, each Contributor hereby grants
+Recipient a non-exclusive, worldwide,royalty-free
+patent license under Licensed Patents to make, use, sell, offer to sell, import
+and otherwise transfer the Contribution of such Contributor, if any, in source
+code and object code form. This patent license shall apply to the combination
+of the Contribution and the Program if, at the time the Contribution is added
+by the Contributor, such addition of the Contribution causes such combination
+to be covered by the Licensed Patents. The patent license shall not apply to
+any other combinations which include the Contribution. No hardware per se is
+licensed hereunder.
+
+
c)
+Recipient understands that although each Contributor grants the licenses to its
+Contributions set forth herein, no assurances are provided by any Contributor
+that the Program does not infringe the patent or other intellectual property
+rights of any other entity. Each Contributor disclaims any liability to Recipient
+for claims brought by any other entity based on infringement of intellectual
+property rights or otherwise. As a condition to exercising the rights and
+licenses granted hereunder, each Recipient hereby assumes sole responsibility
+to secure any other intellectual property rights needed, if any. For example,
+if a third party patent license is required to allow Recipient to distribute
+the Program, it is Recipient's responsibility to acquire that license before
+distributing the Program.
+
+
d)
+Each Contributor represents that to its knowledge it has sufficient copyright
+rights in its Contribution, if any, to grant the copyright license set forth in
+this Agreement.
+
+
3. REQUIREMENTS
+
+
A Contributor may choose to distribute the
+Program in object code form under its own license agreement, provided that:
+
+
+
a)
+it complies with the terms and conditions of this Agreement; and
+
+
b)
+its license agreement:
+
+
i)
+effectively disclaims on behalf of all Contributors all warranties and
+conditions, express and implied, including warranties or conditions of title
+and non-infringement, and implied warranties or conditions of merchantability
+and fitness for a particular purpose;
+
+
ii)
+effectively excludes on behalf of all Contributors all liability for damages,
+including direct, indirect, special, incidental and consequential damages, such
+as lost profits;
+
+
iii)
+states that any provisions which differ from this Agreement are offered by that
+Contributor alone and not by any other party; and
+
+
iv)
+states that source code for the Program is available from such Contributor, and
+informs licensees how to obtain it in a reasonable manner on or through a
+medium customarily used for software exchange.
+
+
When the Program is made available in source
+code form:
+
+
a)
+it must be made available under this Agreement; and
+
+
b) a
+copy of this Agreement must be included with each copy of the Program.
+
+
Contributors may not remove or alter any
+copyright notices contained within the Program.
+
+
Each Contributor must identify itself as the
+originator of its Contribution, if any, in a manner that reasonably allows
+subsequent Recipients to identify the originator of the Contribution.
+
+
4. COMMERCIAL DISTRIBUTION
+
+
Commercial distributors of software may
+accept certain responsibilities with respect to end users, business partners
+and the like. While this license is intended to facilitate the commercial use
+of the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create potential
+liability for other Contributors. Therefore, if a Contributor includes the
+Program in a commercial product offering, such Contributor ("Commercial
+Contributor") hereby agrees to defend and indemnify every other
+Contributor ("Indemnified Contributor") against any losses, damages and
+costs (collectively "Losses") arising from claims, lawsuits and other
+legal actions brought by a third party against the Indemnified Contributor to
+the extent caused by the acts or omissions of such Commercial Contributor in
+connection with its distribution of the Program in a commercial product
+offering. The obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In order
+to qualify, an Indemnified Contributor must: a) promptly notify the Commercial
+Contributor in writing of such claim, and b) allow the Commercial Contributor
+to control, and cooperate with the Commercial Contributor in, the defense and
+any related settlement negotiations. The Indemnified Contributor may participate
+in any such claim at its own expense.
+
+
For example, a Contributor might include the
+Program in a commercial product offering, Product X. That Contributor is then a
+Commercial Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance claims and
+warranties are such Commercial Contributor's responsibility alone. Under this
+section, the Commercial Contributor would have to defend claims against the
+other Contributors related to those performance claims and warranties, and if a
+court requires any other Contributor to pay any damages as a result, the
+Commercial Contributor must pay those damages.
+
+
5. NO WARRANTY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS
+AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT
+WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING,
+WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
+MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and distributing the
+Program and assumes all risks associated with its exercise of rights under this
+Agreement , including but not limited to the risks and costs of program errors,
+compliance with applicable laws, damage to or loss of data, programs or
+equipment, and unavailability or interruption of operations.
+
+
6. DISCLAIMER OF LIABILITY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS
+AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY
+OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF
+THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF
+THE POSSIBILITY OF SUCH DAMAGES.
+
+
7. GENERAL
+
+
If any provision of this Agreement is invalid
+or unenforceable under applicable law, it shall not affect the validity or
+enforceability of the remainder of the terms of this Agreement, and without
+further action by the parties hereto, such provision shall be reformed to the
+minimum extent necessary to make such provision valid and enforceable.
+
+
If Recipient institutes patent litigation
+against any entity (including a cross-claim or counterclaim in a lawsuit)
+alleging that the Program itself (excluding combinations of the Program with
+other software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the date
+such litigation is filed.
+
+
All Recipient's rights under this Agreement
+shall terminate if it fails to comply with any of the material terms or
+conditions of this Agreement and does not cure such failure in a reasonable
+period of time after becoming aware of such noncompliance. If all Recipient's
+rights under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.
+
+
Everyone is permitted to copy and distribute
+copies of this Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The Agreement
+Steward reserves the right to publish new versions (including revisions) of
+this Agreement from time to time. No one other than the Agreement Steward has
+the right to modify this Agreement. The Eclipse Foundation is the initial
+Agreement Steward. The Eclipse Foundation may assign the responsibility to
+serve as the Agreement Steward to a suitable separate entity. Each new version
+of the Agreement will be given a distinguishing version number. The Program
+(including Contributions) may always be distributed subject to the version of
+the Agreement under which it was received. In addition, after a new version of
+the Agreement is published, Contributor may elect to distribute the Program
+(including its Contributions) under the new version. Except as expressly stated
+in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to
+the intellectual property of any Contributor under this Agreement, whether
+expressly, by implication, estoppel or otherwise. All rights in the Program not
+expressly granted under this Agreement are reserved.
+
+
This Agreement is governed by the laws of the
+State of New York and the intellectual property laws of the United States of
+America. No party to this Agreement will bring a legal action under this
+Agreement more than one year after the cause of action arose. Each party waives
+its rights to a jury trial in any resulting litigation.
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/feature.properties b/android/tools/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/feature.properties
new file mode 100644
index 0000000..249c276
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/feature.properties
@@ -0,0 +1,155 @@
+# /**
+# * Copyright (c) 2002-2011 IBM Corporation and others.
+# * All rights reserved. This program and the accompanying materials
+# * are made available under the terms of the Eclipse Public License v1.0
+# * which accompanies this distribution, and is available at
+# * http://www.eclipse.org/legal/epl-v10.html
+# *
+# * Contributors:
+# * IBM - Initial API and implementation
+# */
+
+# NLS_MESSAGEFORMAT_VAR
+
+# "featureName" property - name of the feature
+featureName=EMF - Eclipse Modeling Framework Core Runtime
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse Modeling Project
+
+# "description" property - description of the feature
+description=The core runtime for EMF, including EMF's common utilities, Ecore, XML/XMI persistence, and the change model.
+
+ModelingUpdateSiteName=Eclipse Modeling Project Updates
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+ - Content may be structured and packaged into modules to facilitate delivering,\n\
+ extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+ plug-in fragments ("Fragments"), and features ("Features").\n\
+ - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+ in a directory named "plugins".\n\
+ - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+ Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+ Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+ numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+ - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+ named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+ - The top-level (root) directory\n\
+ - Plug-in and Fragment directories\n\
+ - Inside Plug-ins and Fragments packaged as JARs\n\
+ - Sub-directories of the directory named "src" of certain Plug-ins\n\
+ - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+ - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+ - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+ - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+ - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+ - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+ - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+ 1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+ the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+ extending or updating the functionality of an Eclipse-based product.\n\
+ 2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+ Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+ 3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+ govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+ Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+ with the Specification. Such Installable Software Agreement must inform the user of the\n\
+ terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+ the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+ indication of agreement by the user, the provisioning Technology will complete installation\n\
+ of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/feature.xml b/android/tools/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/feature.xml
new file mode 100644
index 0000000..9655608
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/feature.xml
@@ -0,0 +1,57 @@
+
+
+
+
+
+
+ %description
+
+
+
+ Copyright (c) 2002-2011 IBM Corporation and others.
+All rights reserved. This program and the accompanying materials
+are made available under the terms of the Eclipse Public License v1.0
+which accompanies this distribution, and is available at
+http://www.eclipse.org/legal/epl-v10.html
+
+
+
+ %license
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/license.html b/android/tools/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.emf.ecore_2.8.3.v20130125-0546/license.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+Eclipse Foundation Software User Agreement
+
+
+
+
Eclipse Foundation Software User Agreement
+
February 1, 2011
+
+
Usage Of Content
+
+
THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+ (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+ CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+ OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+ NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+ CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.
+
+
Applicable Licenses
+
+
Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+ ("EPL"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.
+ For purposes of the EPL, "Program" will mean the Content.
+
+
Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+ repository ("Repository") in software modules ("Modules") and made available as downloadable archives ("Downloads").
+
+
+
Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features").
+
Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins".
+
A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins
+ and/or Fragments associated with that Feature.
+
Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features.
+
+
+
The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and
+Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:
+
+
+
The top-level (root) directory
+
Plug-in and Fragment directories
+
Inside Plug-ins and Fragments packaged as JARs
+
Sub-directories of the directory named "src" of certain Plug-ins
+
Feature directories
+
+
+
Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license ("Feature Update License") during the
+installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.
+
+
THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):
IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.
+
+
+
Use of Provisioning Technology
+
+
The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+ Update Manager ("Provisioning Technology") for the purpose of allowing users to install software, documentation, information and/or
+ other materials (collectively "Installable Software"). This capability is provided with the intent of allowing such users to
+ install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html
+ ("Specification").
+
+
You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+ applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+ in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+ Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:
+
+
+
A series of actions may occur ("Provisioning Process") in which a user may execute the Provisioning Technology
+ on a machine ("Target Machine") with the intent of installing, extending or updating the functionality of an Eclipse-based
+ product.
+
During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+ accessed and copied to the Target Machine.
+
Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+ Software ("Installable Software Agreement") and such Installable Software Agreement shall be accessed from the Target
+ Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+ the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+ indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.
+
+
+
Cryptography
+
+
Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+ another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+ possession, or use, and re-export of encryption software, to see if this is permitted.
+
+
Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.
+
+
1. DEFINITIONS
+
+
"Contribution" means:
+
+
a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and
+
b) in the case of each subsequent Contributor:
+
i) changes to the Program, and
+
ii) additions to the Program;
+
where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.
+
+
"Contributor" means any person or entity that distributes
+the Program.
+
+
"Licensed Patents" mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.
+
+
"Program" means the Contributions distributed in accordance
+with this Agreement.
+
+
"Recipient" means anyone who receives the Program under
+this Agreement, including all Contributors.
+
+
2. GRANT OF RIGHTS
+
+
a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.
+
+
b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.
+
+
c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.
+
+
d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.
+
+
3. REQUIREMENTS
+
+
A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:
+
+
a) it complies with the terms and conditions of this
+Agreement; and
+
+
b) its license agreement:
+
+
i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;
+
+
ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;
+
+
iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and
+
+
iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.
+
+
When the Program is made available in source code form:
+
+
a) it must be made available under this Agreement; and
+
+
b) a copy of this Agreement must be included with each
+copy of the Program.
+
+
Contributors may not remove or alter any copyright notices contained
+within the Program.
+
+
Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.
+
+
4. COMMERCIAL DISTRIBUTION
+
+
Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+("Commercial Contributor") hereby agrees to defend and
+indemnify every other Contributor ("Indemnified Contributor")
+against any losses, damages and costs (collectively "Losses")
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.
+
+
For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.
+
+
5. NO WARRANTY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.
+
+
6. DISCLAIMER OF LIABILITY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+
7. GENERAL
+
+
If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.
+
+
If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.
+
+
All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.
+
+
Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.
+
+
This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/feature.properties b/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/feature.properties
new file mode 100644
index 0000000..35a39f0
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/feature.properties
@@ -0,0 +1,194 @@
+###############################################################################
+# Copyright (c) 2010, 2011 EclipseSource Inc. and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# EclipseSource - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Equinox p2 Core Function
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org - Equinox
+
+description=Provides a minimal headless provisioning system.
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2010 EclipseSource Inc. and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+ EclipseSource - initial API and implementation\n
+################ end of copyright property ####################################
+###############################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+ - Content may be structured and packaged into modules to facilitate delivering,\n\
+ extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+ plug-in fragments ("Fragments"), and features ("Features").\n\
+ - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+ in a directory named "plugins".\n\
+ - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+ Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+ Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+ numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+ - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+ named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+ - The top-level (root) directory\n\
+ - Plug-in and Fragment directories\n\
+ - Inside Plug-ins and Fragments packaged as JARs\n\
+ - Sub-directories of the directory named "src" of certain Plug-ins\n\
+ - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+ - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+ - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+ - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+ - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+ - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+ - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+ 1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+ the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+ extending or updating the functionality of an Eclipse-based product.\n\
+ 2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+ Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+ 3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+ govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+ Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+ with the Specification. Such Installable Software Agreement must inform the user of the\n\
+ terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+ the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+ indication of agreement by the user, the provisioning Technology will complete installation\n\
+ of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/feature.xml b/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/feature.xml
new file mode 100644
index 0000000..164ec80
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/feature.xml
@@ -0,0 +1,286 @@
+
+
+
+
+ %description
+
+
+
+ %copyright
+
+
+
+ %license
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/license.html b/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.core.feature_1.1.0.v20121211-153934-8297FndFWmE7h7Bpz-vcqkxyKz0/license.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+Eclipse Foundation Software User Agreement
+
+
+
+
Eclipse Foundation Software User Agreement
+
February 1, 2011
+
+
Usage Of Content
+
+
THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+ (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+ CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+ OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+ NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+ CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.
+
+
Applicable Licenses
+
+
Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+ ("EPL"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.
+ For purposes of the EPL, "Program" will mean the Content.
+
+
Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+ repository ("Repository") in software modules ("Modules") and made available as downloadable archives ("Downloads").
+
+
+
Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features").
+
Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins".
+
A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins
+ and/or Fragments associated with that Feature.
+
Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features.
+
+
+
The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and
+Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:
+
+
+
The top-level (root) directory
+
Plug-in and Fragment directories
+
Inside Plug-ins and Fragments packaged as JARs
+
Sub-directories of the directory named "src" of certain Plug-ins
+
Feature directories
+
+
+
Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license ("Feature Update License") during the
+installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.
+
+
THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):
IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.
+
+
+
Use of Provisioning Technology
+
+
The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+ Update Manager ("Provisioning Technology") for the purpose of allowing users to install software, documentation, information and/or
+ other materials (collectively "Installable Software"). This capability is provided with the intent of allowing such users to
+ install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html
+ ("Specification").
+
+
You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+ applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+ in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+ Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:
+
+
+
A series of actions may occur ("Provisioning Process") in which a user may execute the Provisioning Technology
+ on a machine ("Target Machine") with the intent of installing, extending or updating the functionality of an Eclipse-based
+ product.
+
During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+ accessed and copied to the Target Machine.
+
Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+ Software ("Installable Software Agreement") and such Installable Software Agreement shall be accessed from the Target
+ Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+ the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+ indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.
+
+
+
Cryptography
+
+
Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+ another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+ possession, or use, and re-export of encryption software, to see if this is permitted.
+
+
Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.
+
+
1. DEFINITIONS
+
+
"Contribution" means:
+
+
a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and
+
b) in the case of each subsequent Contributor:
+
i) changes to the Program, and
+
ii) additions to the Program;
+
where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.
+
+
"Contributor" means any person or entity that distributes
+the Program.
+
+
"Licensed Patents" mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.
+
+
"Program" means the Contributions distributed in accordance
+with this Agreement.
+
+
"Recipient" means anyone who receives the Program under
+this Agreement, including all Contributors.
+
+
2. GRANT OF RIGHTS
+
+
a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.
+
+
b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.
+
+
c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.
+
+
d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.
+
+
3. REQUIREMENTS
+
+
A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:
+
+
a) it complies with the terms and conditions of this
+Agreement; and
+
+
b) its license agreement:
+
+
i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;
+
+
ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;
+
+
iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and
+
+
iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.
+
+
When the Program is made available in source code form:
+
+
a) it must be made available under this Agreement; and
+
+
b) a copy of this Agreement must be included with each
+copy of the Program.
+
+
Contributors may not remove or alter any copyright notices contained
+within the Program.
+
+
Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.
+
+
4. COMMERCIAL DISTRIBUTION
+
+
Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+("Commercial Contributor") hereby agrees to defend and
+indemnify every other Contributor ("Indemnified Contributor")
+against any losses, damages and costs (collectively "Losses")
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.
+
+
For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.
+
+
5. NO WARRANTY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.
+
+
6. DISCLAIMER OF LIABILITY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+
7. GENERAL
+
+
If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.
+
+
If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.
+
+
All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.
+
+
Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.
+
+
This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/feature.properties b/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/feature.properties
new file mode 100644
index 0000000..a612ea1
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/feature.properties
@@ -0,0 +1,193 @@
+###############################################################################
+# Copyright (c) 2010, 2011 EclipseSource Inc. and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# EclipseSource - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Add-on Function for p2
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org - Equinox
+
+description=Provides some backward compatibility support (e.g. drop-ins, legacy update site) and the metadata generation facility.
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2010 EclipseSource Inc. and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+ EclipseSource - initial API and implementation\n
+################ end of copyright property ###################################################################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+ - Content may be structured and packaged into modules to facilitate delivering,\n\
+ extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+ plug-in fragments ("Fragments"), and features ("Features").\n\
+ - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+ in a directory named "plugins".\n\
+ - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+ Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+ Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+ numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+ - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+ named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+ - The top-level (root) directory\n\
+ - Plug-in and Fragment directories\n\
+ - Inside Plug-ins and Fragments packaged as JARs\n\
+ - Sub-directories of the directory named "src" of certain Plug-ins\n\
+ - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+ - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+ - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+ - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+ - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+ - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+ - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+ 1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+ the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+ extending or updating the functionality of an Eclipse-based product.\n\
+ 2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+ Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+ 3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+ govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+ Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+ with the Specification. Such Installable Software Agreement must inform the user of the\n\
+ terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+ the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+ indication of agreement by the user, the provisioning Technology will complete installation\n\
+ of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/feature.xml b/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/feature.xml
new file mode 100644
index 0000000..0ef45b9
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/feature.xml
@@ -0,0 +1,76 @@
+
+
+
+
+ %description
+
+
+
+ %copyright
+
+
+
+ %license
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/license.html b/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.extras.feature_1.1.0.v20121211-153934-7A6FEcDiVOTg2RYDuZuFz-L2z00w/license.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+Eclipse Foundation Software User Agreement
+
+
+
+
Eclipse Foundation Software User Agreement
+
February 1, 2011
+
+
Usage Of Content
+
+
THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+ (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+ CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+ OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+ NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+ CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.
+
+
Applicable Licenses
+
+
Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+ ("EPL"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.
+ For purposes of the EPL, "Program" will mean the Content.
+
+
Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+ repository ("Repository") in software modules ("Modules") and made available as downloadable archives ("Downloads").
+
+
+
Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features").
+
Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins".
+
A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins
+ and/or Fragments associated with that Feature.
+
Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features.
+
+
+
The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and
+Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:
+
+
+
The top-level (root) directory
+
Plug-in and Fragment directories
+
Inside Plug-ins and Fragments packaged as JARs
+
Sub-directories of the directory named "src" of certain Plug-ins
+
Feature directories
+
+
+
Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license ("Feature Update License") during the
+installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.
+
+
THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):
IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.
+
+
+
Use of Provisioning Technology
+
+
The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+ Update Manager ("Provisioning Technology") for the purpose of allowing users to install software, documentation, information and/or
+ other materials (collectively "Installable Software"). This capability is provided with the intent of allowing such users to
+ install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html
+ ("Specification").
+
+
You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+ applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+ in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+ Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:
+
+
+
A series of actions may occur ("Provisioning Process") in which a user may execute the Provisioning Technology
+ on a machine ("Target Machine") with the intent of installing, extending or updating the functionality of an Eclipse-based
+ product.
+
During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+ accessed and copied to the Target Machine.
+
Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+ Software ("Installable Software Agreement") and such Installable Software Agreement shall be accessed from the Target
+ Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+ the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+ indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.
+
+
+
Cryptography
+
+
Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+ another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+ possession, or use, and re-export of encryption software, to see if this is permitted.
+
+
Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.
+
+
1. DEFINITIONS
+
+
"Contribution" means:
+
+
a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and
+
b) in the case of each subsequent Contributor:
+
i) changes to the Program, and
+
ii) additions to the Program;
+
where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.
+
+
"Contributor" means any person or entity that distributes
+the Program.
+
+
"Licensed Patents" mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.
+
+
"Program" means the Contributions distributed in accordance
+with this Agreement.
+
+
"Recipient" means anyone who receives the Program under
+this Agreement, including all Contributors.
+
+
2. GRANT OF RIGHTS
+
+
a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.
+
+
b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.
+
+
c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.
+
+
d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.
+
+
3. REQUIREMENTS
+
+
A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:
+
+
a) it complies with the terms and conditions of this
+Agreement; and
+
+
b) its license agreement:
+
+
i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;
+
+
ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;
+
+
iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and
+
+
iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.
+
+
When the Program is made available in source code form:
+
+
a) it must be made available under this Agreement; and
+
+
b) a copy of this Agreement must be included with each
+copy of the Program.
+
+
Contributors may not remove or alter any copyright notices contained
+within the Program.
+
+
Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.
+
+
4. COMMERCIAL DISTRIBUTION
+
+
Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+("Commercial Contributor") hereby agrees to defend and
+indemnify every other Contributor ("Indemnified Contributor")
+against any losses, damages and costs (collectively "Losses")
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.
+
+
For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.
+
+
5. NO WARRANTY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.
+
+
6. DISCLAIMER OF LIABILITY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+
7. GENERAL
+
+
If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.
+
+
If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.
+
+
All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.
+
+
Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.
+
+
This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/feature.properties b/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/feature.properties
new file mode 100644
index 0000000..5d06bc4
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/feature.properties
@@ -0,0 +1,194 @@
+###############################################################################
+# Copyright (c) 2011 EclipseSource Inc. and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# EclipseSource - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Equinox p2 RCP Management Facilities
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org - Equinox
+
+description=Provides SWT based UI component for p2.
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2011 EclipseSource Inc. and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+ EclipseSource - initial API and implementation\n
+################ end of copyright property ####################################
+###############################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+ - Content may be structured and packaged into modules to facilitate delivering,\n\
+ extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+ plug-in fragments ("Fragments"), and features ("Features").\n\
+ - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+ in a directory named "plugins".\n\
+ - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+ Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+ Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+ numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+ - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+ named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+ - The top-level (root) directory\n\
+ - Plug-in and Fragment directories\n\
+ - Inside Plug-ins and Fragments packaged as JARs\n\
+ - Sub-directories of the directory named "src" of certain Plug-ins\n\
+ - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+ - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+ - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+ - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+ - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+ - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+ - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+ 1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+ the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+ extending or updating the functionality of an Eclipse-based product.\n\
+ 2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+ Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+ 3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+ govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+ Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+ with the Specification. Such Installable Software Agreement must inform the user of the\n\
+ terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+ the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+ indication of agreement by the user, the provisioning Technology will complete installation\n\
+ of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/feature.xml b/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/feature.xml
new file mode 100644
index 0000000..af7bd48
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/feature.xml
@@ -0,0 +1,62 @@
+
+
+
+
+ %description
+
+
+
+ %copyright
+
+
+
+ %license
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/license.html b/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.rcp.feature_1.1.0.v20121211-153934-785EoBqNKNZz-DW7sUc8hFwz00wd/license.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+Eclipse Foundation Software User Agreement
+
+
+
+
Eclipse Foundation Software User Agreement
+
February 1, 2011
+
+
Usage Of Content
+
+
THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+ (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+ CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+ OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+ NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+ CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.
+
+
Applicable Licenses
+
+
Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+ ("EPL"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.
+ For purposes of the EPL, "Program" will mean the Content.
+
+
Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+ repository ("Repository") in software modules ("Modules") and made available as downloadable archives ("Downloads").
+
+
+
Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features").
+
Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins".
+
A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins
+ and/or Fragments associated with that Feature.
+
Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features.
+
+
+
The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and
+Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:
+
+
+
The top-level (root) directory
+
Plug-in and Fragment directories
+
Inside Plug-ins and Fragments packaged as JARs
+
Sub-directories of the directory named "src" of certain Plug-ins
+
Feature directories
+
+
+
Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license ("Feature Update License") during the
+installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.
+
+
THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):
IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.
+
+
+
Use of Provisioning Technology
+
+
The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+ Update Manager ("Provisioning Technology") for the purpose of allowing users to install software, documentation, information and/or
+ other materials (collectively "Installable Software"). This capability is provided with the intent of allowing such users to
+ install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html
+ ("Specification").
+
+
You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+ applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+ in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+ Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:
+
+
+
A series of actions may occur ("Provisioning Process") in which a user may execute the Provisioning Technology
+ on a machine ("Target Machine") with the intent of installing, extending or updating the functionality of an Eclipse-based
+ product.
+
During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+ accessed and copied to the Target Machine.
+
Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+ Software ("Installable Software Agreement") and such Installable Software Agreement shall be accessed from the Target
+ Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+ the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+ indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.
+
+
+
Cryptography
+
+
Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+ another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+ possession, or use, and re-export of encryption software, to see if this is permitted.
+
+
Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.
+
+
1. DEFINITIONS
+
+
"Contribution" means:
+
+
a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and
+
b) in the case of each subsequent Contributor:
+
i) changes to the Program, and
+
ii) additions to the Program;
+
where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.
+
+
"Contributor" means any person or entity that distributes
+the Program.
+
+
"Licensed Patents" mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.
+
+
"Program" means the Contributions distributed in accordance
+with this Agreement.
+
+
"Recipient" means anyone who receives the Program under
+this Agreement, including all Contributors.
+
+
2. GRANT OF RIGHTS
+
+
a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.
+
+
b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.
+
+
c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.
+
+
d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.
+
+
3. REQUIREMENTS
+
+
A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:
+
+
a) it complies with the terms and conditions of this
+Agreement; and
+
+
b) its license agreement:
+
+
i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;
+
+
ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;
+
+
iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and
+
+
iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.
+
+
When the Program is made available in source code form:
+
+
a) it must be made available under this Agreement; and
+
+
b) a copy of this Agreement must be included with each
+copy of the Program.
+
+
Contributors may not remove or alter any copyright notices contained
+within the Program.
+
+
Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.
+
+
4. COMMERCIAL DISTRIBUTION
+
+
Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+("Commercial Contributor") hereby agrees to defend and
+indemnify every other Contributor ("Indemnified Contributor")
+against any losses, damages and costs (collectively "Losses")
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.
+
+
For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.
+
+
5. NO WARRANTY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.
+
+
6. DISCLAIMER OF LIABILITY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+
7. GENERAL
+
+
If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.
+
+
If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.
+
+
All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.
+
+
Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.
+
+
This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/feature.properties b/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/feature.properties
new file mode 100644
index 0000000..e346b87
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/feature.properties
@@ -0,0 +1,191 @@
+###############################################################################
+# Copyright (c) 2011 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# "featureName" property - name of the feature
+featureName=Equinox p2 Provisioning for IDEs.
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org - Equinox
+
+# "updateSiteName" property - label for the update site
+updateSiteName=The Eclipse Project Updates
+
+# "description" property - description of the feature
+description=Eclipse p2 Provisioning Platform for use in IDE related scenarios
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2008, 2010 IBM Corporation and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+ IBM Corporation - initial API and implementation\n
+################ end of copyright property ###################################################################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+ - Content may be structured and packaged into modules to facilitate delivering,\n\
+ extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+ plug-in fragments ("Fragments"), and features ("Features").\n\
+ - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+ in a directory named "plugins".\n\
+ - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+ Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+ Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+ numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+ - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+ named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+ - The top-level (root) directory\n\
+ - Plug-in and Fragment directories\n\
+ - Inside Plug-ins and Fragments packaged as JARs\n\
+ - Sub-directories of the directory named "src" of certain Plug-ins\n\
+ - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+ - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+ - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+ - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+ - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+ - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+ - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+ 1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+ the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+ extending or updating the functionality of an Eclipse-based product.\n\
+ 2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+ Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+ 3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+ govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+ Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+ with the Specification. Such Installable Software Agreement must inform the user of the\n\
+ terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+ the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+ indication of agreement by the user, the provisioning Technology will complete installation\n\
+ of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/feature.xml b/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/feature.xml
new file mode 100644
index 0000000..cde099c
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/feature.xml
@@ -0,0 +1,49 @@
+
+
+
+
+ %description
+
+
+
+ %copyright
+
+
+
+ %license
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/license.html b/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.equinox.p2.user.ui_2.2.0.v20121212-204731-62DG9JXTlTj-UXcQ2y3NLn6U4Z3H/license.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+Eclipse Foundation Software User Agreement
+
+
+
+
Eclipse Foundation Software User Agreement
+
February 1, 2011
+
+
Usage Of Content
+
+
THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+ (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+ CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+ OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+ NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+ CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.
+
+
Applicable Licenses
+
+
Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+ ("EPL"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.
+ For purposes of the EPL, "Program" will mean the Content.
+
+
Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+ repository ("Repository") in software modules ("Modules") and made available as downloadable archives ("Downloads").
+
+
+
Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features").
+
Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins".
+
A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins
+ and/or Fragments associated with that Feature.
+
Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features.
+
+
+
The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and
+Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:
+
+
+
The top-level (root) directory
+
Plug-in and Fragment directories
+
Inside Plug-ins and Fragments packaged as JARs
+
Sub-directories of the directory named "src" of certain Plug-ins
+
Feature directories
+
+
+
Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license ("Feature Update License") during the
+installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.
+
+
THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):
IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.
+
+
+
Use of Provisioning Technology
+
+
The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+ Update Manager ("Provisioning Technology") for the purpose of allowing users to install software, documentation, information and/or
+ other materials (collectively "Installable Software"). This capability is provided with the intent of allowing such users to
+ install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html
+ ("Specification").
+
+
You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+ applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+ in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+ Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:
+
+
+
A series of actions may occur ("Provisioning Process") in which a user may execute the Provisioning Technology
+ on a machine ("Target Machine") with the intent of installing, extending or updating the functionality of an Eclipse-based
+ product.
+
During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+ accessed and copied to the Target Machine.
+
Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+ Software ("Installable Software Agreement") and such Installable Software Agreement shall be accessed from the Target
+ Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+ the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+ indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.
+
+
+
Cryptography
+
+
Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+ another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+ possession, or use, and re-export of encryption software, to see if this is permitted.
+
+
Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.
+
+
1. DEFINITIONS
+
+
"Contribution" means:
+
+
a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and
+
b) in the case of each subsequent Contributor:
+
i) changes to the Program, and
+
ii) additions to the Program;
+
where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.
+
+
"Contributor" means any person or entity that distributes
+the Program.
+
+
"Licensed Patents" mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.
+
+
"Program" means the Contributions distributed in accordance
+with this Agreement.
+
+
"Recipient" means anyone who receives the Program under
+this Agreement, including all Contributors.
+
+
2. GRANT OF RIGHTS
+
+
a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.
+
+
b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.
+
+
c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.
+
+
d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.
+
+
3. REQUIREMENTS
+
+
A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:
+
+
a) it complies with the terms and conditions of this
+Agreement; and
+
+
b) its license agreement:
+
+
i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;
+
+
ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;
+
+
iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and
+
+
iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.
+
+
When the Program is made available in source code form:
+
+
a) it must be made available under this Agreement; and
+
+
b) a copy of this Agreement must be included with each
+copy of the Program.
+
+
Contributors may not remove or alter any copyright notices contained
+within the Program.
+
+
Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.
+
+
4. COMMERCIAL DISTRIBUTION
+
+
Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+("Commercial Contributor") hereby agrees to defend and
+indemnify every other Contributor ("Indemnified Contributor")
+against any losses, damages and costs (collectively "Losses")
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.
+
+
For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.
+
+
5. NO WARRANTY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.
+
+
6. DISCLAIMER OF LIABILITY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+
7. GENERAL
+
+
If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.
+
+
If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.
+
+
All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.
+
+
Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.
+
+
This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/feature.properties b/android/tools/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/feature.properties
new file mode 100644
index 0000000..b9291ae
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/feature.properties
@@ -0,0 +1,194 @@
+###############################################################################
+# Copyright (c) 2008, 2012 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Eclipse Help System
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org
+
+# "description" property - description of the feature
+description=Eclipse help system.
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2008, 2012 IBM Corporation and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+ IBM Corporation - initial API and implementation\n
+################ end of copyright property ###################################################################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+ - Content may be structured and packaged into modules to facilitate delivering,\n\
+ extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+ plug-in fragments ("Fragments"), and features ("Features").\n\
+ - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+ in a directory named "plugins".\n\
+ - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+ Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+ Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+ numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+ - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+ named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+ - The top-level (root) directory\n\
+ - Plug-in and Fragment directories\n\
+ - Inside Plug-ins and Fragments packaged as JARs\n\
+ - Sub-directories of the directory named "src" of certain Plug-ins\n\
+ - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+ - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+ - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+ - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+ - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+ - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+ - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+ 1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+ the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+ extending or updating the functionality of an Eclipse-based product.\n\
+ 2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+ Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+ 3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+ govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+ Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+ with the Specification. Such Installable Software Agreement must inform the user of the\n\
+ terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+ the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+ indication of agreement by the user, the provisioning Technology will complete installation\n\
+ of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/feature.xml b/android/tools/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/feature.xml
new file mode 100644
index 0000000..e5d7ccd
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/feature.xml
@@ -0,0 +1,192 @@
+
+
+
+
+ %description
+
+
+
+ %copyright
+
+
+
+ %license
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/license.html b/android/tools/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.help_1.4.1.v20120912-144938-8R7xFOXFLWUl7PpNBh_HIGkb4/license.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+Eclipse Foundation Software User Agreement
+
+
+
+
Eclipse Foundation Software User Agreement
+
February 1, 2011
+
+
Usage Of Content
+
+
THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+ (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+ CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+ OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+ NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+ CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.
+
+
Applicable Licenses
+
+
Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+ ("EPL"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.
+ For purposes of the EPL, "Program" will mean the Content.
+
+
Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+ repository ("Repository") in software modules ("Modules") and made available as downloadable archives ("Downloads").
+
+
+
Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features").
+
Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins".
+
A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins
+ and/or Fragments associated with that Feature.
+
Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features.
+
+
+
The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and
+Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:
+
+
+
The top-level (root) directory
+
Plug-in and Fragment directories
+
Inside Plug-ins and Fragments packaged as JARs
+
Sub-directories of the directory named "src" of certain Plug-ins
+
Feature directories
+
+
+
Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license ("Feature Update License") during the
+installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.
+
+
THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):
IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.
+
+
+
Use of Provisioning Technology
+
+
The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+ Update Manager ("Provisioning Technology") for the purpose of allowing users to install software, documentation, information and/or
+ other materials (collectively "Installable Software"). This capability is provided with the intent of allowing such users to
+ install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html
+ ("Specification").
+
+
You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+ applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+ in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+ Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:
+
+
+
A series of actions may occur ("Provisioning Process") in which a user may execute the Provisioning Technology
+ on a machine ("Target Machine") with the intent of installing, extending or updating the functionality of an Eclipse-based
+ product.
+
During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+ accessed and copied to the Target Machine.
+
Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+ Software ("Installable Software Agreement") and such Installable Software Agreement shall be accessed from the Target
+ Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+ the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+ indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.
+
+
+
Cryptography
+
+
Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+ another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+ possession, or use, and re-export of encryption software, to see if this is permitted.
+
+
Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.
+
+
1. DEFINITIONS
+
+
"Contribution" means:
+
+
a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and
+
b) in the case of each subsequent Contributor:
+
i) changes to the Program, and
+
ii) additions to the Program;
+
where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.
+
+
"Contributor" means any person or entity that distributes
+the Program.
+
+
"Licensed Patents" mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.
+
+
"Program" means the Contributions distributed in accordance
+with this Agreement.
+
+
"Recipient" means anyone who receives the Program under
+this Agreement, including all Contributors.
+
+
2. GRANT OF RIGHTS
+
+
a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.
+
+
b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.
+
+
c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.
+
+
d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.
+
+
3. REQUIREMENTS
+
+
A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:
+
+
a) it complies with the terms and conditions of this
+Agreement; and
+
+
b) its license agreement:
+
+
i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;
+
+
ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;
+
+
iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and
+
+
iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.
+
+
When the Program is made available in source code form:
+
+
a) it must be made available under this Agreement; and
+
+
b) a copy of this Agreement must be included with each
+copy of the Program.
+
+
Contributors may not remove or alter any copyright notices contained
+within the Program.
+
+
Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.
+
+
4. COMMERCIAL DISTRIBUTION
+
+
Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+("Commercial Contributor") hereby agrees to defend and
+indemnify every other Contributor ("Indemnified Contributor")
+against any losses, damages and costs (collectively "Losses")
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.
+
+
For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.
+
+
5. NO WARRANTY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.
+
+
6. DISCLAIMER OF LIABILITY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+
7. GENERAL
+
+
If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.
+
+
If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.
+
+
All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.
+
+
Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.
+
+
This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/feature.properties b/android/tools/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/feature.properties
new file mode 100644
index 0000000..eb50333
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/feature.properties
@@ -0,0 +1,191 @@
+###############################################################################
+# Copyright (c) 2000, 2011 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Eclipse Platform
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org
+
+# "description" property - description of the feature
+description=Common OS-independent base of the Eclipse platform. (Binary runtime and user documentation.)
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2000, 2011 IBM Corporation and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+################ end of copyright property ###################################################################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+ - Content may be structured and packaged into modules to facilitate delivering,\n\
+ extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+ plug-in fragments ("Fragments"), and features ("Features").\n\
+ - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+ in a directory named "plugins".\n\
+ - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+ Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+ Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+ numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+ - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+ named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+ - The top-level (root) directory\n\
+ - Plug-in and Fragment directories\n\
+ - Inside Plug-ins and Fragments packaged as JARs\n\
+ - Sub-directories of the directory named "src" of certain Plug-ins\n\
+ - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+ - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+ - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+ - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+ - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+ - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+ - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+ 1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+ the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+ extending or updating the functionality of an Eclipse-based product.\n\
+ 2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+ Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+ 3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+ govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+ Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+ with the Specification. Such Installable Software Agreement must inform the user of the\n\
+ terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+ the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+ indication of agreement by the user, the provisioning Technology will complete installation\n\
+ of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/feature.xml b/android/tools/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/feature.xml
new file mode 100644
index 0000000..d6fc539
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/feature.xml
@@ -0,0 +1,581 @@
+
+
+
+
+ %description
+
+
+
+ %copyright
+
+
+
+ %license
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/license.html b/android/tools/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.platform_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7/license.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+Eclipse Foundation Software User Agreement
+
+
+
+
Eclipse Foundation Software User Agreement
+
February 1, 2011
+
+
Usage Of Content
+
+
THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+ (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+ CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+ OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+ NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+ CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.
+
+
Applicable Licenses
+
+
Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+ ("EPL"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.
+ For purposes of the EPL, "Program" will mean the Content.
+
+
Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+ repository ("Repository") in software modules ("Modules") and made available as downloadable archives ("Downloads").
+
+
+
Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features").
+
Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins".
+
A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins
+ and/or Fragments associated with that Feature.
+
Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features.
+
+
+
The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and
+Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:
+
+
+
The top-level (root) directory
+
Plug-in and Fragment directories
+
Inside Plug-ins and Fragments packaged as JARs
+
Sub-directories of the directory named "src" of certain Plug-ins
+
Feature directories
+
+
+
Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license ("Feature Update License") during the
+installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.
+
+
THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):
IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.
+
+
+
Use of Provisioning Technology
+
+
The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+ Update Manager ("Provisioning Technology") for the purpose of allowing users to install software, documentation, information and/or
+ other materials (collectively "Installable Software"). This capability is provided with the intent of allowing such users to
+ install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html
+ ("Specification").
+
+
You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+ applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+ in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+ Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:
+
+
+
A series of actions may occur ("Provisioning Process") in which a user may execute the Provisioning Technology
+ on a machine ("Target Machine") with the intent of installing, extending or updating the functionality of an Eclipse-based
+ product.
+
During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+ accessed and copied to the Target Machine.
+
Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+ Software ("Installable Software Agreement") and such Installable Software Agreement shall be accessed from the Target
+ Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+ the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+ indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.
+
+
+
Cryptography
+
+
Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+ another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+ possession, or use, and re-export of encryption software, to see if this is permitted.
+
+
Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.
+
+
1. DEFINITIONS
+
+
"Contribution" means:
+
+
a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and
+
b) in the case of each subsequent Contributor:
+
i) changes to the Program, and
+
ii) additions to the Program;
+
where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.
+
+
"Contributor" means any person or entity that distributes
+the Program.
+
+
"Licensed Patents" mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.
+
+
"Program" means the Contributions distributed in accordance
+with this Agreement.
+
+
"Recipient" means anyone who receives the Program under
+this Agreement, including all Contributors.
+
+
2. GRANT OF RIGHTS
+
+
a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.
+
+
b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.
+
+
c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.
+
+
d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.
+
+
3. REQUIREMENTS
+
+
A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:
+
+
a) it complies with the terms and conditions of this
+Agreement; and
+
+
b) its license agreement:
+
+
i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;
+
+
ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;
+
+
iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and
+
+
iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.
+
+
When the Program is made available in source code form:
+
+
a) it must be made available under this Agreement; and
+
+
b) a copy of this Agreement must be included with each
+copy of the Program.
+
+
Contributors may not remove or alter any copyright notices contained
+within the Program.
+
+
Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.
+
+
4. COMMERCIAL DISTRIBUTION
+
+
Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+("Commercial Contributor") hereby agrees to defend and
+indemnify every other Contributor ("Indemnified Contributor")
+against any losses, damages and costs (collectively "Losses")
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.
+
+
For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.
+
+
5. NO WARRANTY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.
+
+
6. DISCLAIMER OF LIABILITY
+
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+
7. GENERAL
+
+
If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.
+
+
If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.
+
+
All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.
+
+
Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.
+
+
This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/feature.properties b/android/tools/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/feature.properties
new file mode 100644
index 0000000..f9a5f02
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/feature.properties
@@ -0,0 +1,197 @@
+###############################################################################
+# Copyright (c) 2000, 2013 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Eclipse RCP
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org
+
+# "updateSiteName" property - label for the update site
+updateSiteName=The Eclipse Project Updates
+
+# "description" property - description of the feature
+description=Rich Client Platform
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=\
+Copyright (c) 2000, 2013 Eclipse contributors and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http://www.eclipse.org/legal/epl-v10.html\n\
+\n\
+Contributors:\n\
+ IBM Corporation - initial API and implementation\n
+################ end of copyright property ###################################################################################################################
+# Copyright (c) 2000, 2010 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+
+# "providerName" property - name of the company that provides the feature
+
+# "updateSiteName" property - label for the update site
+
+# "description" property - description of the feature
+
+# "copyright" property - text of the "Feature Update Copyright"
+
+################ end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=\
+Eclipse Foundation Software User Agreement\n\
+February 1, 2011\n\
+\n\
+Usage Of Content\n\
+\n\
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\
+NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU\n\
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\
+OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE\n\
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\
+BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\
+\n\
+Applicable Licenses\n\
+\n\
+Unless otherwise indicated, all Content made available by the\n\
+Eclipse Foundation is provided to you under the terms and conditions of\n\
+the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\
+For purposes of the EPL, "Program" will mean the Content.\n\
+\n\
+Content includes, but is not limited to, source code, object code,\n\
+documentation and other files maintained in the Eclipse Foundation source code\n\
+repository ("Repository") in software modules ("Modules") and made available\n\
+as downloadable archives ("Downloads").\n\
+\n\
+ - Content may be structured and packaged into modules to facilitate delivering,\n\
+ extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\
+ plug-in fragments ("Fragments"), and features ("Features").\n\
+ - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\
+ in a directory named "plugins".\n\
+ - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\
+ Each Feature may be packaged as a sub-directory in a directory named "features".\n\
+ Within a Feature, files named "feature.xml" may contain a list of the names and version\n\
+ numbers of the Plug-ins and/or Fragments associated with that Feature.\n\
+ - Features may also include other Features ("Included Features"). Within a Feature, files\n\
+ named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\
+\n\
+The terms and conditions governing Plug-ins and Fragments should be\n\
+contained in files named "about.html" ("Abouts"). The terms and\n\
+conditions governing Features and Included Features should be contained\n\
+in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\
+Licenses may be located in any directory of a Download or Module\n\
+including, but not limited to the following locations:\n\
+\n\
+ - The top-level (root) directory\n\
+ - Plug-in and Fragment directories\n\
+ - Inside Plug-ins and Fragments packaged as JARs\n\
+ - Sub-directories of the directory named "src" of certain Plug-ins\n\
+ - Feature directories\n\
+\n\
+Note: if a Feature made available by the Eclipse Foundation is installed using the\n\
+Provisioning Technology (as defined below), you must agree to a license ("Feature \n\
+Update License") during the installation process. If the Feature contains\n\
+Included Features, the Feature Update License should either provide you\n\
+with the terms and conditions governing the Included Features or inform\n\
+you where you can locate them. Feature Update Licenses may be found in\n\
+the "license" property of files named "feature.properties" found within a Feature.\n\
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\
+terms and conditions (or references to such terms and conditions) that\n\
+govern your use of the associated Content in that directory.\n\
+\n\
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\
+\n\
+ - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\
+ - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\
+ - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\
+ - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\
+ - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\
+ - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\
+\n\
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\
+is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\
+govern that particular Content.\n\
+\n\
+\n\Use of Provisioning Technology\n\
+\n\
+The Eclipse Foundation makes available provisioning software, examples of which include,\n\
+but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\
+the purpose of allowing users to install software, documentation, information and/or\n\
+other materials (collectively "Installable Software"). This capability is provided with\n\
+the intent of allowing such users to install, extend and update Eclipse-based products.\n\
+Information about packaging Installable Software is available at\n\
+http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\
+\n\
+You may use Provisioning Technology to allow other parties to install Installable Software.\n\
+You shall be responsible for enabling the applicable license agreements relating to the\n\
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\
+in accordance with the Specification. By using Provisioning Technology in such a manner and\n\
+making it available in accordance with the Specification, you further acknowledge your\n\
+agreement to, and the acquisition of all necessary rights to permit the following:\n\
+\n\
+ 1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\
+ the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\
+ extending or updating the functionality of an Eclipse-based product.\n\
+ 2. During the Provisioning Process, the Provisioning Technology may cause third party\n\
+ Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\
+ 3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\
+ govern the use of the Installable Software ("Installable Software Agreement") and such\n\
+ Installable Software Agreement shall be accessed from the Target Machine in accordance\n\
+ with the Specification. Such Installable Software Agreement must inform the user of the\n\
+ terms and conditions that govern the Installable Software and must solicit acceptance by\n\
+ the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\
+ indication of agreement by the user, the provisioning Technology will complete installation\n\
+ of the Installable Software.\n\
+\n\
+Cryptography\n\
+\n\
+Content may contain encryption software. The country in which you are\n\
+currently may have restrictions on the import, possession, and use,\n\
+and/or re-export to another country, of encryption software. BEFORE\n\
+using any encryption software, please check the country's laws,\n\
+regulations and policies concerning the import, possession, or use, and\n\
+re-export of encryption software, to see if this is permitted.\n\
+\n\
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n
+########### end of license property ##########################################
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/feature.xml b/android/tools/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/feature.xml
new file mode 100644
index 0000000..f245b99
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/feature.xml
@@ -0,0 +1,63 @@
+
+
+
+
+ %description
+
+
+
+ %copyright
+
+
+
+ %license
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/license.html b/android/tools/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/license.html
new file mode 100644
index 0000000..f19c483
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/features/org.eclipse.rcp_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h/license.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+Eclipse Foundation Software User Agreement
+
+
+
+
Eclipse Foundation Software User Agreement
+
February 1, 2011
+
+
Usage Of Content
+
+
THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+ (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+ CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+ OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+ NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+ CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.
+
+
Applicable Licenses
+
+
Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+ ("EPL"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.
+ For purposes of the EPL, "Program" will mean the Content.
+
+
Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+ repository ("Repository") in software modules ("Modules") and made available as downloadable archives ("Downloads").
+
+
+
Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features").
+
Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins".
+
A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins
+ and/or Fragments associated with that Feature.
+
Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features.
+
+
+
The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and
+Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:
+
+
+
The top-level (root) directory
+
Plug-in and Fragment directories
+
Inside Plug-ins and Fragments packaged as JARs
+
Sub-directories of the directory named "src" of certain Plug-ins
+
Feature directories
+
+
+
Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license ("Feature Update License") during the
+installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.
+
+
THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):
IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.
+
+
+
Use of Provisioning Technology
+
+
The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+ Update Manager ("Provisioning Technology") for the purpose of allowing users to install software, documentation, information and/or
+ other materials (collectively "Installable Software"). This capability is provided with the intent of allowing such users to
+ install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html
+ ("Specification").
+
+
You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+ applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+ in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+ Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:
+
+
+
A series of actions may occur ("Provisioning Process") in which a user may execute the Provisioning Technology
+ on a machine ("Target Machine") with the intent of installing, extending or updating the functionality of an Eclipse-based
+ product.
+
During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+ accessed and copied to the Target Machine.
+
Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+ Software ("Installable Software Agreement") and such Installable Software Agreement shall be accessed from the Target
+ Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+ the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+ indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.
+
+
+
Cryptography
+
+
Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+ another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+ possession, or use, and re-export of encryption software, to see if this is permitted.
+
+
Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
+
+
diff --git a/android/tools/lib/monitor-x86_64/libcairo-swt.so.REMOVED.git-id b/android/tools/lib/monitor-x86_64/libcairo-swt.so.REMOVED.git-id
new file mode 100644
index 0000000..285bf8d
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/libcairo-swt.so.REMOVED.git-id
@@ -0,0 +1 @@
+5734427fb86fab04e77308bee29ad9ef6b013b7a
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/monitor.REMOVED.git-id b/android/tools/lib/monitor-x86_64/monitor.REMOVED.git-id
new file mode 100644
index 0000000..30a5331
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/monitor.REMOVED.git-id
@@ -0,0 +1 @@
+10e5e2776c83ba513a0c502220c1910a08f9e9ee
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/monitor.ini b/android/tools/lib/monitor-x86_64/monitor.ini
new file mode 100644
index 0000000..09a7839
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/monitor.ini
@@ -0,0 +1,10 @@
+-startup
+plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar
+--launcher.library
+plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807
+-data
+@noDefault
+-vmargs
+-XX:MaxPermSize=256m
+-Xms512m
+-Xmx1024m
diff --git a/android/tools/lib/monitor-x86_64/notice.html b/android/tools/lib/monitor-x86_64/notice.html
new file mode 100644
index 0000000..c184ca3
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/notice.html
@@ -0,0 +1,107 @@
+
+
+
+
+
+Eclipse Foundation Software User Agreement
+
+
+
+
Eclipse Foundation Software User Agreement
+
April 14, 2010
+
+
Usage Of Content
+
+
THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS
+ (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND
+ CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE
+ OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR
+ NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND
+ CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.
+
+
Applicable Licenses
+
+
Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 1.0
+ ("EPL"). A copy of the EPL is provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.
+ For purposes of the EPL, "Program" will mean the Content.
+
+
Content includes, but is not limited to, source code, object code, documentation and other files maintained in the Eclipse Foundation source code
+ repository ("Repository") in software modules ("Modules") and made available as downloadable archives ("Downloads").
+
+
+
Content may be structured and packaged into modules to facilitate delivering, extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"), plug-in fragments ("Fragments"), and features ("Features").
+
Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins".
+
A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material. Each Feature may be packaged as a sub-directory in a directory named "features". Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of the Plug-ins
+ and/or Fragments associated with that Feature.
+
Features may also include other Features ("Included Features"). Within a Feature, files named "feature.xml" may contain a list of the names and version numbers of Included Features.
+
+
+
The terms and conditions governing Plug-ins and Fragments should be contained in files named "about.html" ("Abouts"). The terms and conditions governing Features and
+Included Features should be contained in files named "license.html" ("Feature Licenses"). Abouts and Feature Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:
+
+
+
The top-level (root) directory
+
Plug-in and Fragment directories
+
Inside Plug-ins and Fragments packaged as JARs
+
Sub-directories of the directory named "src" of certain Plug-ins
+
Feature directories
+
+
+
Note: if a Feature made available by the Eclipse Foundation is installed using the Provisioning Technology (as defined below), you must agree to a license ("Feature Update License") during the
+installation process. If the Feature contains Included Features, the Feature Update License should either provide you with the terms and conditions governing the Included Features or
+inform you where you can locate them. Feature Update Licenses may be found in the "license" property of files named "feature.properties" found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the terms and conditions (or references to such terms and conditions) that govern your use of the associated Content in
+that directory.
+
+
THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. SOME OF THESE
+OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):
IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License is provided, please
+contact the Eclipse Foundation to determine what terms and conditions govern that particular Content.
+
+
+
Use of Provisioning Technology
+
+
The Eclipse Foundation makes available provisioning software, examples of which include, but are not limited to, p2 and the Eclipse
+ Update Manager ("Provisioning Technology") for the purpose of allowing users to install software, documentation, information and/or
+ other materials (collectively "Installable Software"). This capability is provided with the intent of allowing such users to
+ install, extend and update Eclipse-based products. Information about packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html
+ ("Specification").
+
+
You may use Provisioning Technology to allow other parties to install Installable Software. You shall be responsible for enabling the
+ applicable license agreements relating to the Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+ in accordance with the Specification. By using Provisioning Technology in such a manner and making it available in accordance with the
+ Specification, you further acknowledge your agreement to, and the acquisition of all necessary rights to permit the following:
+
+
+
A series of actions may occur ("Provisioning Process") in which a user may execute the Provisioning Technology
+ on a machine ("Target Machine") with the intent of installing, extending or updating the functionality of an Eclipse-based
+ product.
+
During the Provisioning Process, the Provisioning Technology may cause third party Installable Software or a portion thereof to be
+ accessed and copied to the Target Machine.
+
Pursuant to the Specification, you will provide to the user the terms and conditions that govern the use of the Installable
+ Software ("Installable Software Agreement") and such Installable Software Agreement shall be accessed from the Target
+ Machine in accordance with the Specification. Such Installable Software Agreement must inform the user of the terms and conditions that govern
+ the Installable Software and must solicit acceptance by the end user in the manner prescribed in such Installable Software Agreement. Upon such
+ indication of agreement by the user, the provisioning Technology will complete installation of the Installable Software.
+
+
+
Cryptography
+
+
Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to
+ another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import,
+ possession, or use, and re-export of encryption software, to see if this is permitted.
+
+
Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
+
+
diff --git a/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.core/cache/artifacts.xml b/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.core/cache/artifacts.xml
new file mode 100644
index 0000000..19e9dc4
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.core/cache/artifacts.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.core/cache/binary/monitorproduct.executable.gtk.linux.x86_64_25.2.2.4333796.REMOVED.git-id b/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.core/cache/binary/monitorproduct.executable.gtk.linux.x86_64_25.2.2.4333796.REMOVED.git-id
new file mode 100644
index 0000000..9cf95ab
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.core/cache/binary/monitorproduct.executable.gtk.linux.x86_64_25.2.2.4333796.REMOVED.git-id
@@ -0,0 +1 @@
+c8787948efaa0f84855d32c35ae2776e16392e7a
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.platform_root_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7 b/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.platform_root_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7
new file mode 100644
index 0000000..7840a17
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.platform_root_4.2.1.v20130118-173121-9MF7GHYdG0B5kx4E_SkfZV-1mNjVATf67ZAb7 differ
diff --git a/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.rcp_root_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h b/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.rcp_root_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h
new file mode 100644
index 0000000..3eeaca8
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.rcp_root_4.2.2.v20130129-152330-7IARAABrMQkGSvMgQnUlz-DQz00h differ
diff --git a/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.artifact.repository.prefs b/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.artifact.repository.prefs
new file mode 100644
index 0000000..722d99d
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.artifact.repository.prefs
@@ -0,0 +1,104 @@
+eclipse.preferences.version=1
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_sdk_eclipse_artifacts_bundles/description=Read-only repository adapter for org.eclipse.tycho.p2.target.TargetPlatformBundlePublisher$PublishedBundlesArtifactRepository@832ad104
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_sdk_eclipse_artifacts_bundles/enabled=true
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_sdk_eclipse_artifacts_bundles/isSystem=false
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_sdk_eclipse_artifacts_bundles/provider=
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_sdk_eclipse_artifacts_bundles/suffix=@memory
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_sdk_eclipse_artifacts_bundles/type=ProviderOnlyArtifactRepository
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_sdk_eclipse_artifacts_bundles/uri=file\:/resolution-context-artifacts@/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/sdk/eclipse/artifacts/bundles
+repositories/file\:_resolution-context-artifacts@_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_sdk_eclipse_artifacts_bundles/version=1.0
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/bundles-25.2.2-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor/isSystem=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor/name=Bundle pool
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/bundles-25.2.2-SNAPSHOT/products/monitorproduct/linux/gtk/x86_64/monitor/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor/version=1
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor_p2_org.eclipse.equinox.p2.core_cache/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor_p2_org.eclipse.equinox.p2.core_cache/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor_p2_org.eclipse.equinox.p2.core_cache/isSystem=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor_p2_org.eclipse.equinox.p2.core_cache/name=download cache
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor_p2_org.eclipse.equinox.p2.core_cache/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor_p2_org.eclipse.equinox.p2.core_cache/suffix=artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor_p2_org.eclipse.equinox.p2.core_cache/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor_p2_org.eclipse.equinox.p2.core_cache/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/bundles-25.2.2-SNAPSHOT/products/monitorproduct/linux/gtk/x86_64/monitor/p2/org.eclipse.equinox.p2.core/cache/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_products_monitorproduct_linux_gtk_x86_64_monitor_p2_org.eclipse.equinox.p2.core_cache/version=1.0.0
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.base-25.2.2-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.base-25.2.2-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.base-25.2.2-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.base-25.2.2-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.base-25.2.2-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.base-25.2.2-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/com.android.ide.eclipse.base-25.2.2-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.ddms-25.2.2-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.ddms-25.2.2-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.ddms-25.2.2-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.ddms-25.2.2-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.ddms-25.2.2-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.ddms-25.2.2-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/com.android.ide.eclipse.ddms-25.2.2-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.ddms.feature-25.2.2-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.ddms.feature-25.2.2-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.ddms.feature-25.2.2-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.ddms.feature-25.2.2-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.ddms.feature-25.2.2-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.ddms.feature-25.2.2-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/com.android.ide.eclipse.ddms.feature-25.2.2-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.gldebugger-25.2.2-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.gldebugger-25.2.2-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.gldebugger-25.2.2-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.gldebugger-25.2.2-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.gldebugger-25.2.2-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.gldebugger-25.2.2-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/com.android.ide.eclipse.gldebugger-25.2.2-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.gldebugger.feature-25.2.2-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.gldebugger.feature-25.2.2-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.gldebugger.feature-25.2.2-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.gldebugger.feature-25.2.2-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.gldebugger.feature-25.2.2-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.gldebugger.feature-25.2.2-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/com.android.ide.eclipse.gldebugger.feature-25.2.2-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer-25.4.0-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer-25.4.0-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer-25.4.0-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer-25.4.0-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer-25.4.0-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer-25.4.0-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/com.android.ide.eclipse.hierarchyviewer-25.4.0-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer.feature-25.4.0-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer.feature-25.4.0-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer.feature-25.4.0-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer.feature-25.4.0-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer.feature-25.4.0-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.hierarchyviewer.feature-25.4.0-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/com.android.ide.eclipse.hierarchyviewer.feature-25.4.0-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.monitor-25.2.2-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.monitor-25.2.2-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.monitor-25.2.2-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.monitor-25.2.2-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.monitor-25.2.2-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.monitor-25.2.2-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/com.android.ide.eclipse.monitor-25.2.2-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.monitor.feature-25.2.2-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.monitor.feature-25.2.2-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.monitor.feature-25.2.2-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.monitor.feature-25.2.2-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.monitor.feature-25.2.2-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.monitor.feature-25.2.2-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/com.android.ide.eclipse.monitor.feature-25.2.2-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.traceview-25.2.2-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.traceview-25.2.2-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.traceview-25.2.2-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.traceview-25.2.2-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.traceview-25.2.2-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.traceview-25.2.2-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/com.android.ide.eclipse.traceview-25.2.2-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.traceview.feature-25.2.2-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.traceview.feature-25.2.2-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.traceview.feature-25.2.2-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.traceview.feature-25.2.2-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.traceview.feature-25.2.2-SNAPSHOT/suffix=p2artifacts.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_com.android.ide.eclipse.traceview.feature-25.2.2-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/com.android.ide.eclipse.traceview.feature-25.2.2-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_sdk_eclipse_.._.._prebuilts_eclipse_mavenplugins_tycho_tycho-dependencies-m2repo/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_sdk_eclipse_.._.._prebuilts_eclipse_mavenplugins_tycho_tycho-dependencies-m2repo/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_sdk_eclipse_.._.._prebuilts_eclipse_mavenplugins_tycho_tycho-dependencies-m2repo/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_sdk_eclipse_.._.._prebuilts_eclipse_mavenplugins_tycho_tycho-dependencies-m2repo/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_sdk_eclipse_.._.._prebuilts_eclipse_mavenplugins_tycho_tycho-dependencies-m2repo/suffix=.meta/p2-artifacts.properties
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_sdk_eclipse_.._.._prebuilts_eclipse_mavenplugins_tycho_tycho-dependencies-m2repo/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/sdk/eclipse/../../prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/
diff --git a/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.metadata.repository.prefs b/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.metadata.repository.prefs
new file mode 100644
index 0000000..5267a23
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.metadata.repository.prefs
@@ -0,0 +1,17 @@
+eclipse.preferences.version=1
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/description=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/name=module-metadata-repository@/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/bundles-25.2.2-SNAPSHOT
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/provider=
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/suffix=p2content.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/type=org.eclipse.tycho.repository.module.ModuleMetadataRepository
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/bundles-25.2.2-SNAPSHOT/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT/version=1.0.0
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_targetPlatformRepository/enabled=true
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_targetPlatformRepository/isSystem=false
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_targetPlatformRepository/name=TychoTargetPlatform
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_targetPlatformRepository/suffix=content.xml
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_targetPlatformRepository/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_targetPlatformRepository/uri=file\:/usr/local/google/buildbot/src/googleplex-android/studio-sdk-release/out/host/maven/bundles-25.2.2-SNAPSHOT/targetPlatformRepository/
+repositories/file\:_usr_local_google_buildbot_src_googleplex-android_studio-sdk-release_out_host_maven_bundles-25.2.2-SNAPSHOT_targetPlatformRepository/version=0.0.1
diff --git a/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.data/org.eclipse.equinox.internal.p2.touchpoint.eclipse.actions/jvmargs b/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.data/org.eclipse.equinox.internal.p2.touchpoint.eclipse.actions/jvmargs
new file mode 100644
index 0000000..2ed1a2e
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.data/org.eclipse.equinox.internal.p2.touchpoint.eclipse.actions/jvmargs
@@ -0,0 +1,4 @@
+#Wed Sep 13 21:54:48 UTC 2017
+-Xms=512m
+-XX\:MaxPermSize\==256m
+-Xmx=1024m
diff --git a/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.lock b/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.lock
new file mode 100644
index 0000000..e69de29
diff --git a/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1505339688032.profile.gz b/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1505339688032.profile.gz
new file mode 100644
index 0000000..f7b8d0f
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1505339688032.profile.gz differ
diff --git a/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1505339688034.profile.gz b/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1505339688034.profile.gz
new file mode 100644
index 0000000..e060463
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1505339688034.profile.gz differ
diff --git a/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1505339688931.profile.gz.REMOVED.git-id b/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1505339688931.profile.gz.REMOVED.git-id
new file mode 100644
index 0000000..97c201f
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1505339688931.profile.gz.REMOVED.git-id
@@ -0,0 +1 @@
+5eb649db6f4857f7b6b4ac0aa4e7ed5a04483309
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1505339689154.profile.gz.REMOVED.git-id b/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1505339689154.profile.gz.REMOVED.git-id
new file mode 100644
index 0000000..9ebccf2
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1505339689154.profile.gz.REMOVED.git-id
@@ -0,0 +1 @@
+0c1f1e9a63e5882577d46e574b1bf3e73ea897aa
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/com.android.ide.eclipse.base_25.2.2.4333796.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/com.android.ide.eclipse.base_25.2.2.4333796.jar.REMOVED.git-id
new file mode 100644
index 0000000..d1696ce
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/com.android.ide.eclipse.base_25.2.2.4333796.jar.REMOVED.git-id
@@ -0,0 +1 @@
+c12dc00aeee56986d5228f41cb600c4c2d345b75
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/com.android.ide.eclipse.ddms_25.2.2.4333796.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/com.android.ide.eclipse.ddms_25.2.2.4333796.jar.REMOVED.git-id
new file mode 100644
index 0000000..a50d0cc
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/com.android.ide.eclipse.ddms_25.2.2.4333796.jar.REMOVED.git-id
@@ -0,0 +1 @@
+7e5c967a339b98040c82cae3d2cb150125217758
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/com.android.ide.eclipse.gldebugger_25.2.2.4333796.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/com.android.ide.eclipse.gldebugger_25.2.2.4333796.jar.REMOVED.git-id
new file mode 100644
index 0000000..57390c4
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/com.android.ide.eclipse.gldebugger_25.2.2.4333796.jar.REMOVED.git-id
@@ -0,0 +1 @@
+d16f080f43ba494ecdd19b5d0a39b964a811114e
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/com.android.ide.eclipse.hierarchyviewer_25.4.0.4333796.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/com.android.ide.eclipse.hierarchyviewer_25.4.0.4333796.jar.REMOVED.git-id
new file mode 100644
index 0000000..5f58151
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/com.android.ide.eclipse.hierarchyviewer_25.4.0.4333796.jar.REMOVED.git-id
@@ -0,0 +1 @@
+0e5c6ccba2f357a4236c8306a2d2f5514d7ff24a
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/com.android.ide.eclipse.monitor_25.2.2.4333796.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/com.android.ide.eclipse.monitor_25.2.2.4333796.jar.REMOVED.git-id
new file mode 100644
index 0000000..ef8d988
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/com.android.ide.eclipse.monitor_25.2.2.4333796.jar.REMOVED.git-id
@@ -0,0 +1 @@
+233df4d715f9c0a938b24cbdc10461eaa3b4c604
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/com.android.ide.eclipse.traceview_25.2.2.4333796.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/com.android.ide.eclipse.traceview_25.2.2.4333796.jar.REMOVED.git-id
new file mode 100644
index 0000000..8ef1a67
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/com.android.ide.eclipse.traceview_25.2.2.4333796.jar.REMOVED.git-id
@@ -0,0 +1 @@
+cb4b4ead19f325a9acd1ee49532c9d55eadc378e
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/com.ibm.icu_4.4.2.v20110823.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/com.ibm.icu_4.4.2.v20110823.jar.REMOVED.git-id
new file mode 100644
index 0000000..a9a6b67
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/com.ibm.icu_4.4.2.v20110823.jar.REMOVED.git-id
@@ -0,0 +1 @@
+18a293eb6b682ad19fa7a587e5d7ab6943136fae
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/com.jcraft.jsch_0.1.46.v201205102330.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/com.jcraft.jsch_0.1.46.v201205102330.jar.REMOVED.git-id
new file mode 100644
index 0000000..e6fe276
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/com.jcraft.jsch_0.1.46.v201205102330.jar.REMOVED.git-id
@@ -0,0 +1 @@
+880004888e493715520668588399fcc689758869
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/com.sun.el_2.2.0.v201108011116.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/com.sun.el_2.2.0.v201108011116.jar.REMOVED.git-id
new file mode 100644
index 0000000..7a98535
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/com.sun.el_2.2.0.v201108011116.jar.REMOVED.git-id
@@ -0,0 +1 @@
+29c050aa4c760edff7f0fcba64bcd65706ed79b6
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/javax.annotation_1.0.0.v20101115-0725.jar b/android/tools/lib/monitor-x86_64/plugins/javax.annotation_1.0.0.v20101115-0725.jar
new file mode 100644
index 0000000..fd9c2c1
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/javax.annotation_1.0.0.v20101115-0725.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/javax.el_2.2.0.v201108011116.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/javax.el_2.2.0.v201108011116.jar.REMOVED.git-id
new file mode 100644
index 0000000..83bdf40
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/javax.el_2.2.0.v201108011116.jar.REMOVED.git-id
@@ -0,0 +1 @@
+b777c09361b2c6ea3c4fe44b8c40939f639bd9bc
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/javax.inject_1.0.0.v20091030.jar b/android/tools/lib/monitor-x86_64/plugins/javax.inject_1.0.0.v20091030.jar
new file mode 100644
index 0000000..cb95087
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/javax.inject_1.0.0.v20091030.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/javax.servlet.jsp_2.2.0.v201112011158.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/javax.servlet.jsp_2.2.0.v201112011158.jar.REMOVED.git-id
new file mode 100644
index 0000000..7cc66bb
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/javax.servlet.jsp_2.2.0.v201112011158.jar.REMOVED.git-id
@@ -0,0 +1 @@
+b8ece88bc354fe3bccbe7ce4148a5379ce99ca57
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/javax.servlet_3.0.0.v201112011016.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/javax.servlet_3.0.0.v201112011016.jar.REMOVED.git-id
new file mode 100644
index 0000000..d49c7e0
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/javax.servlet_3.0.0.v201112011016.jar.REMOVED.git-id
@@ -0,0 +1 @@
+49043432460e5a520d1ae20580b2ea41f3b0677b
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/javax.xml_1.3.4.v201005080400.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/javax.xml_1.3.4.v201005080400.jar.REMOVED.git-id
new file mode 100644
index 0000000..dacf142
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/javax.xml_1.3.4.v201005080400.jar.REMOVED.git-id
@@ -0,0 +1 @@
+81a6ab8d67d4fd82adc421cc5b105367bf78c5ee
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.apache.batik.css_1.6.0.v201011041432.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.apache.batik.css_1.6.0.v201011041432.jar.REMOVED.git-id
new file mode 100644
index 0000000..d072f0f
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.apache.batik.css_1.6.0.v201011041432.jar.REMOVED.git-id
@@ -0,0 +1 @@
+6007ca065d13235e164694728dbb2c1b379a1a71
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.apache.batik.util.gui_1.6.0.v201011041432.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.apache.batik.util.gui_1.6.0.v201011041432.jar.REMOVED.git-id
new file mode 100644
index 0000000..771b986
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.apache.batik.util.gui_1.6.0.v201011041432.jar.REMOVED.git-id
@@ -0,0 +1 @@
+262b1d93c391ca0ff8a2a53ad80021a090b9ebcf
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.apache.batik.util_1.6.0.v201011041432.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.apache.batik.util_1.6.0.v201011041432.jar.REMOVED.git-id
new file mode 100644
index 0000000..072fefd
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.apache.batik.util_1.6.0.v201011041432.jar.REMOVED.git-id
@@ -0,0 +1 @@
+0715d843da5e608c5eeffea94fc75949887a3e71
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.apache.commons.codec_1.3.0.v201101211617.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.apache.commons.codec_1.3.0.v201101211617.jar.REMOVED.git-id
new file mode 100644
index 0000000..4d9a755
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.apache.commons.codec_1.3.0.v201101211617.jar.REMOVED.git-id
@@ -0,0 +1 @@
+7f80e75e6eaaa7ca30e5f580b2916870e4578e71
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.apache.commons.httpclient_3.1.0.v201012070820.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.apache.commons.httpclient_3.1.0.v201012070820.jar.REMOVED.git-id
new file mode 100644
index 0000000..bab46e5
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.apache.commons.httpclient_3.1.0.v201012070820.jar.REMOVED.git-id
@@ -0,0 +1 @@
+2ccaca50103e31130b29d30853b5ca4bb87b5bc0
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.apache.commons.logging_1.0.4.v201101211617.jar b/android/tools/lib/monitor-x86_64/plugins/org.apache.commons.logging_1.0.4.v201101211617.jar
new file mode 100644
index 0000000..5103619
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.apache.commons.logging_1.0.4.v201101211617.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.apache.felix.gogo.command_0.8.0.v201108120515.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.apache.felix.gogo.command_0.8.0.v201108120515.jar.REMOVED.git-id
new file mode 100644
index 0000000..2696966
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.apache.felix.gogo.command_0.8.0.v201108120515.jar.REMOVED.git-id
@@ -0,0 +1 @@
+19b11e52c3089c00d7fe60cfb639ae46cdd3399c
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.apache.felix.gogo.runtime_0.8.0.v201108120515.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.apache.felix.gogo.runtime_0.8.0.v201108120515.jar.REMOVED.git-id
new file mode 100644
index 0000000..d843d1f
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.apache.felix.gogo.runtime_0.8.0.v201108120515.jar.REMOVED.git-id
@@ -0,0 +1 @@
+5e5b5f0d4ae8be34cb72df1bed24a63390e645a3
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.apache.felix.gogo.shell_0.8.0.v201110170705.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.apache.felix.gogo.shell_0.8.0.v201110170705.jar.REMOVED.git-id
new file mode 100644
index 0000000..8909d69
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.apache.felix.gogo.shell_0.8.0.v201110170705.jar.REMOVED.git-id
@@ -0,0 +1 @@
+da6f33879cd7daa473b2bfc70070426b227b5f2f
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.apache.lucene.analysis_2.9.1.v201101211721.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.apache.lucene.analysis_2.9.1.v201101211721.jar.REMOVED.git-id
new file mode 100644
index 0000000..8cc8b9f
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.apache.lucene.analysis_2.9.1.v201101211721.jar.REMOVED.git-id
@@ -0,0 +1 @@
+3a2f4da26131f801b0824655b15598a5c6ca444a
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.apache.lucene_2.9.1.v201101211721.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.apache.lucene_2.9.1.v201101211721.jar.REMOVED.git-id
new file mode 100644
index 0000000..16b43de
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.apache.lucene_2.9.1.v201101211721.jar.REMOVED.git-id
@@ -0,0 +1 @@
+3558e7d8aba5696ad34edc246f18883690d45813
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ant.core_3.2.401.v20121204-162022.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ant.core_3.2.401.v20121204-162022.jar.REMOVED.git-id
new file mode 100644
index 0000000..082eb01
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ant.core_3.2.401.v20121204-162022.jar.REMOVED.git-id
@@ -0,0 +1 @@
+addb6d9ec5e06a2c3467178699d5c38ed4e62ae6
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.compare.core_3.5.200.v20120522-1148.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.compare.core_3.5.200.v20120522-1148.jar.REMOVED.git-id
new file mode 100644
index 0000000..c68a87d
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.compare.core_3.5.200.v20120522-1148.jar.REMOVED.git-id
@@ -0,0 +1 @@
+82c6651cd992f1fc95474027eb622ee57cdd717f
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.compare_3.5.301.v20130125-135424.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.compare_3.5.301.v20130125-135424.jar.REMOVED.git-id
new file mode 100644
index 0000000..406e01f
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.compare_3.5.301.v20130125-135424.jar.REMOVED.git-id
@@ -0,0 +1 @@
+479dda3df1502922f543d08ff1339a7195701dbf
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.commands_3.6.2.v20130123-162658.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.commands_3.6.2.v20130123-162658.jar.REMOVED.git-id
new file mode 100644
index 0000000..ec05d6e
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.commands_3.6.2.v20130123-162658.jar.REMOVED.git-id
@@ -0,0 +1 @@
+8cd85d4c2f94d185a99030e0c520ec5dc4527bc9
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.contenttype_3.4.200.v20120523-2004.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.contenttype_3.4.200.v20120523-2004.jar.REMOVED.git-id
new file mode 100644
index 0000000..3f1e22a
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.contenttype_3.4.200.v20120523-2004.jar.REMOVED.git-id
@@ -0,0 +1 @@
+a254949c1b4ef4869b129fb53de7b9532cafd30e
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.databinding.beans_1.2.200.v20120523-1955.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.databinding.beans_1.2.200.v20120523-1955.jar.REMOVED.git-id
new file mode 100644
index 0000000..73aa743
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.databinding.beans_1.2.200.v20120523-1955.jar.REMOVED.git-id
@@ -0,0 +1 @@
+345dbe8f43b703df56810b271bbc2be058280472
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.databinding.observable_1.4.1.v20120521-2329.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.databinding.observable_1.4.1.v20120521-2329.jar.REMOVED.git-id
new file mode 100644
index 0000000..c62458a
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.databinding.observable_1.4.1.v20120521-2329.jar.REMOVED.git-id
@@ -0,0 +1 @@
+93855ed4dfb14829db55864defe57f260c3253f7
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.databinding.property_1.4.100.v20120523-1955.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.databinding.property_1.4.100.v20120523-1955.jar.REMOVED.git-id
new file mode 100644
index 0000000..5f47463
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.databinding.property_1.4.100.v20120523-1955.jar.REMOVED.git-id
@@ -0,0 +1 @@
+caabe0d0c44704b78310d344ead08f7dc02d61fc
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.databinding_1.4.1.v20120912-132807.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.databinding_1.4.1.v20120912-132807.jar.REMOVED.git-id
new file mode 100644
index 0000000..77428c8
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.databinding_1.4.1.v20120912-132807.jar.REMOVED.git-id
@@ -0,0 +1 @@
+5e0ed13aa404b9c216cfe85a664fa1596fc10173
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.expressions_3.4.401.v20120912-155018.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.expressions_3.4.401.v20120912-155018.jar.REMOVED.git-id
new file mode 100644
index 0000000..b64df98
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.expressions_3.4.401.v20120912-155018.jar.REMOVED.git-id
@@ -0,0 +1 @@
+4cf5beafe063afd1f25fb2ddefa67e283a2dd736
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.externaltools_1.0.100.v20120521-2012.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.externaltools_1.0.100.v20120521-2012.jar
new file mode 100644
index 0000000..1990dc9
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.externaltools_1.0.100.v20120521-2012.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.filebuffers_3.5.200.v20120523-1310.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.filebuffers_3.5.200.v20120523-1310.jar.REMOVED.git-id
new file mode 100644
index 0000000..b831f7c
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.filebuffers_3.5.200.v20120523-1310.jar.REMOVED.git-id
@@ -0,0 +1 @@
+593e37c79f6d440dea9321a40b4521856e8ced2c
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.filesystem.linux.x86_64_1.2.0.v20120522-1137.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.filesystem.linux.x86_64_1.2.0.v20120522-1137.jar
new file mode 100644
index 0000000..f4d1878
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.filesystem.linux.x86_64_1.2.0.v20120522-1137.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.filesystem_1.3.200.v20130115-145044.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.filesystem_1.3.200.v20130115-145044.jar.REMOVED.git-id
new file mode 100644
index 0000000..3c8945f
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.filesystem_1.3.200.v20130115-145044.jar.REMOVED.git-id
@@ -0,0 +1 @@
+88cd37938c607e83525e68215fe9e95e1481da41
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.jobs_3.5.300.v20120912-155018.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.jobs_3.5.300.v20120912-155018.jar.REMOVED.git-id
new file mode 100644
index 0000000..45896d2
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.jobs_3.5.300.v20120912-155018.jar.REMOVED.git-id
@@ -0,0 +1 @@
+b9418014f54ba0d493adb07eeb09f999435e9420
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.net.linux.x86_64_1.1.0.v20120522-1148.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.net.linux.x86_64_1.1.0.v20120522-1148.jar
new file mode 100644
index 0000000..a9626ce
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.net.linux.x86_64_1.1.0.v20120522-1148.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.net_1.2.200.v20120914-093638.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.net_1.2.200.v20120914-093638.jar.REMOVED.git-id
new file mode 100644
index 0000000..2742622
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.net_1.2.200.v20120914-093638.jar.REMOVED.git-id
@@ -0,0 +1 @@
+ddb364fa92069ead2a515c05720fbdcb54f18d9a
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.resources_3.8.1.v20121114-124432.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.resources_3.8.1.v20121114-124432.jar.REMOVED.git-id
new file mode 100644
index 0000000..4e525e3
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.resources_3.8.1.v20121114-124432.jar.REMOVED.git-id
@@ -0,0 +1 @@
+be7f22b199f71d671ff6cab6769dd357538e1d94
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/.api_description b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/.api_description
new file mode 100644
index 0000000..bbffdc8
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/.api_description
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/ECLIPSE_.RSA b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..a08e8dc
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/ECLIPSE_.RSA differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/ECLIPSE_.SF b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..c9494f9
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/ECLIPSE_.SF
@@ -0,0 +1,20 @@
+Signature-Version: 1.0
+SHA1-Digest-Manifest: oV7fBC9t+XvU9FslXBvnCceZx54=
+Created-By: 1.6.0 (IBM Corporation)
+SHA1-Digest-Manifest-Main-Attributes: Vs9w/djYnis+NAZKtDc7eSwXfaM=
+
+Name: fragment.properties
+SHA1-Digest: Gi/SEQV8Vl9A/8928AtuhnVkrKQ=
+
+Name: runtime_registry_compatibility.jar
+SHA1-Digest: 4qgXVah1KyMBh8pfeG5jsjgbfDM=
+
+Name: META-INF/eclipse.inf
+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=
+
+Name: .api_description
+SHA1-Digest: rxDId4BLjpSH7RMzgU7yEspOo2Q=
+
+Name: about.html
+SHA1-Digest: M+fykt9heyWoEv1LNiIEeBhi/2Q=
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/MANIFEST.MF b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..7645a9d
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/MANIFEST.MF
@@ -0,0 +1,32 @@
+Manifest-Version: 1.0
+Bundle-Localization: fragment
+Bundle-RequiredExecutionEnvironment: CDC-1.0/Foundation-1.0,J2SE-1.3
+Fragment-Host: org.eclipse.equinox.registry;bundle-version="[3.5.0,3.6
+ .0)"
+Bundle-SymbolicName: org.eclipse.core.runtime.compatibility.registry
+Eclipse-SourceReferences: scm:git:git://git.eclipse.org/gitroot/platfo
+ rm/eclipse.platform.runtime.git;path="bundles/org.eclipse.core.runtim
+ e.compatibility.registry";tag=v20130108-163257
+Bundle-Version: 3.5.101.v20130108-163257
+Bundle-ClassPath: runtime_registry_compatibility.jar
+Eclipse-PatchFragment: true
+Bundle-Vendor: %providerName
+Bundle-Name: %fragmentName
+Eclipse-BundleShape: dir
+Bundle-ManifestVersion: 2
+
+Name: fragment.properties
+SHA1-Digest: 4yjHkU5Z/6ej6ZFYT+PE9sMOJPY=
+
+Name: runtime_registry_compatibility.jar
+SHA1-Digest: YHpfVseR3k1Wy424nVF5+04W0Lk=
+
+Name: META-INF/eclipse.inf
+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=
+
+Name: .api_description
+SHA1-Digest: LJ87Sy009gYMDOfP+FFkugiMkVM=
+
+Name: about.html
+SHA1-Digest: ejOZra0kypGLQQ2bJtGTX+LI8tU=
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/eclipse.inf b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/about.html b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/about.html
new file mode 100644
index 0000000..4602330
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/about.html
@@ -0,0 +1,28 @@
+
+
+
+
+About
+
+
+
About This Content
+
+
June 2, 2006
+
License
+
+
The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise
+indicated below, the Content is provided to you under the terms and conditions of the
+Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available
+at http://www.eclipse.org/legal/epl-v10.html.
+For purposes of the EPL, "Program" will mean the Content.
+
+
If you did not receive this Content directly from the Eclipse Foundation, the Content is
+being redistributed by another party ("Redistributor") and different terms and conditions may
+apply to your use of any object code in the Content. Check the Redistributor's license that was
+provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise
+indicated below, the terms and conditions of the EPL still apply to any source code in the Content
+and such source code may be obtained at http://www.eclipse.org.
+
+
+
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/fragment.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/fragment.properties
new file mode 100644
index 0000000..e60dbf5
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/fragment.properties
@@ -0,0 +1,12 @@
+###############################################################################
+# Copyright (c) 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+providerName=Eclipse.org
+fragmentName=Eclipse Registry Compatibility Fragment
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/runtime_registry_compatibility.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/runtime_registry_compatibility.jar
new file mode 100644
index 0000000..f489a32
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.101.v20130108-163257/runtime_registry_compatibility.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility_3.2.200.v20120521-2346.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility_3.2.200.v20120521-2346.jar.REMOVED.git-id
new file mode 100644
index 0000000..4dbb410
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime.compatibility_3.2.200.v20120521-2346.jar.REMOVED.git-id
@@ -0,0 +1 @@
+f044dbac5f38c1513ff2704bb11e2aec0491ee76
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime_3.8.0.v20120912-155025.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime_3.8.0.v20120912-155025.jar.REMOVED.git-id
new file mode 100644
index 0000000..a9e5f0f
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.runtime_3.8.0.v20120912-155025.jar.REMOVED.git-id
@@ -0,0 +1 @@
+8870f2741eb781404ebf5dac75ad74bf7e2a2e9f
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.variables_3.2.600.v20120521-2012.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.variables_3.2.600.v20120521-2012.jar
new file mode 100644
index 0000000..006d932
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.core.variables_3.2.600.v20120521-2012.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.debug.core_3.7.100.v20120521-2012.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.debug.core_3.7.100.v20120521-2012.jar.REMOVED.git-id
new file mode 100644
index 0000000..9e3415f
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.debug.core_3.7.100.v20120521-2012.jar.REMOVED.git-id
@@ -0,0 +1 @@
+f0d0212d40b33c107a67573bafc4a728061b69cf
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.debug.ui_3.8.2.v20130130-171415.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.debug.ui_3.8.2.v20130130-171415.jar.REMOVED.git-id
new file mode 100644
index 0000000..c618164
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.debug.ui_3.8.2.v20130130-171415.jar.REMOVED.git-id
@@ -0,0 +1 @@
+95f24ba4bc83d5a3ae764ad9585835368fe36e97
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.core.commands_0.10.1.v20120523-1955.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.core.commands_0.10.1.v20120523-1955.jar
new file mode 100644
index 0000000..2d9085a
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.core.commands_0.10.1.v20120523-1955.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.core.contexts_1.2.0.v20121221-192508.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.core.contexts_1.2.0.v20121221-192508.jar
new file mode 100644
index 0000000..d4a8dc6
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.core.contexts_1.2.0.v20121221-192508.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.core.di.extensions_0.11.100.v20121024-182359.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.core.di.extensions_0.11.100.v20121024-182359.jar
new file mode 100644
index 0000000..7febc89
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.core.di.extensions_0.11.100.v20121024-182359.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.core.di_1.2.0.v20121024-173149.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.core.di_1.2.0.v20121024-173149.jar.REMOVED.git-id
new file mode 100644
index 0000000..32d88da
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.core.di_1.2.0.v20121024-173149.jar.REMOVED.git-id
@@ -0,0 +1 @@
+ea467de8e1493a52acbc767340f8aaf9f41544cf
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.core.services_1.0.0.v20120521-2346.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.core.services_1.0.0.v20120521-2346.jar
new file mode 100644
index 0000000..ed81754
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.core.services_1.0.0.v20120521-2346.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.bindings_0.10.3.v20130123-162658.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.bindings_0.10.3.v20130123-162658.jar
new file mode 100644
index 0000000..ae60985
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.bindings_0.10.3.v20130123-162658.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.css.core_0.10.2.v20120912-132817.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.css.core_0.10.2.v20120912-132817.jar.REMOVED.git-id
new file mode 100644
index 0000000..8e84091
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.css.core_0.10.2.v20120912-132817.jar.REMOVED.git-id
@@ -0,0 +1 @@
+681306616f0dfad77e816b127f037b52fd04ea9a
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.css.swt.theme_0.9.4.v20130123-162658.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.css.swt.theme_0.9.4.v20130123-162658.jar
new file mode 100644
index 0000000..92c473e
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.css.swt.theme_0.9.4.v20130123-162658.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.css.swt_0.10.3.v20130123-162658.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.css.swt_0.10.3.v20130123-162658.jar.REMOVED.git-id
new file mode 100644
index 0000000..2863721
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.css.swt_0.10.3.v20130123-162658.jar.REMOVED.git-id
@@ -0,0 +1 @@
+e03ca93252f052990c8781244eb4540a7585e8fe
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.di_0.10.1.v20120523-1955.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.di_0.10.1.v20120523-1955.jar
new file mode 100644
index 0000000..36e32e3
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.di_0.10.1.v20120523-1955.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.model.workbench_0.10.1.v20120523-1955.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.model.workbench_0.10.1.v20120523-1955.jar.REMOVED.git-id
new file mode 100644
index 0000000..6dd1d82
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.model.workbench_0.10.1.v20120523-1955.jar.REMOVED.git-id
@@ -0,0 +1 @@
+b877493b560f995e0aa2581f1428fb2c81dde5a0
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.services_0.10.3.v20130123-162658.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.services_0.10.3.v20130123-162658.jar
new file mode 100644
index 0000000..b85d02f
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.services_0.10.3.v20130123-162658.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.widgets_0.12.3.v20130123-162658.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.widgets_0.12.3.v20130123-162658.jar
new file mode 100644
index 0000000..f6eb138
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.widgets_0.12.3.v20130123-162658.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench.addons.swt_0.10.3.v20130124-185622.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench.addons.swt_0.10.3.v20130124-185622.jar.REMOVED.git-id
new file mode 100644
index 0000000..507c978
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench.addons.swt_0.10.3.v20130124-185622.jar.REMOVED.git-id
@@ -0,0 +1 @@
+7c439b6919cfc63a048dacc3809d54c971c51e36
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench.renderers.swt_0.10.3.v20130124-170312.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench.renderers.swt_0.10.3.v20130124-170312.jar.REMOVED.git-id
new file mode 100644
index 0000000..7f32cfb
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench.renderers.swt_0.10.3.v20130124-170312.jar.REMOVED.git-id
@@ -0,0 +1 @@
+97a9c318769ae8ff49a138bf3fe0ac5423e577cd
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench.swt_0.10.3.v20130124-133900.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench.swt_0.10.3.v20130124-133900.jar.REMOVED.git-id
new file mode 100644
index 0000000..27c63d4
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench.swt_0.10.3.v20130124-133900.jar.REMOVED.git-id
@@ -0,0 +1 @@
+501eabe8be626dc76b067662293f79f1ae1ab594
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench3_0.12.0.v20120521-2329.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench3_0.12.0.v20120521-2329.jar
new file mode 100644
index 0000000..54ab414
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench3_0.12.0.v20120521-2329.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench_0.11.0.v20130125-100758.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench_0.11.0.v20130125-100758.jar.REMOVED.git-id
new file mode 100644
index 0000000..bb01031
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.e4.ui.workbench_0.11.0.v20130125-100758.jar.REMOVED.git-id
@@ -0,0 +1 @@
+8ef7a2d7671f52a976b0a1006050d8ff6bd0dd3d
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ecf.filetransfer_5.0.0.v20120610-1946.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ecf.filetransfer_5.0.0.v20120610-1946.jar.REMOVED.git-id
new file mode 100644
index 0000000..fd72033
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ecf.filetransfer_5.0.0.v20120610-1946.jar.REMOVED.git-id
@@ -0,0 +1 @@
+37e671c6bfee4b4955a64df81d9f03711e3c63eb
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ecf.identity_3.1.200.v20120610-1946.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ecf.identity_3.1.200.v20120610-1946.jar.REMOVED.git-id
new file mode 100644
index 0000000..0e71ed4
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ecf.identity_3.1.200.v20120610-1946.jar.REMOVED.git-id
@@ -0,0 +1 @@
+c4326c76317b34ebc80684af62d147bbb5ef9389
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ecf.provider.filetransfer.httpclient.ssl_1.0.0.v20120610-1946.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ecf.provider.filetransfer.httpclient.ssl_1.0.0.v20120610-1946.jar
new file mode 100644
index 0000000..322b505
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ecf.provider.filetransfer.httpclient.ssl_1.0.0.v20120610-1946.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ecf.provider.filetransfer.httpclient_4.0.200.v20120610-1946.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ecf.provider.filetransfer.httpclient_4.0.200.v20120610-1946.jar.REMOVED.git-id
new file mode 100644
index 0000000..147cf1c
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ecf.provider.filetransfer.httpclient_4.0.200.v20120610-1946.jar.REMOVED.git-id
@@ -0,0 +1 @@
+b693989c48e298d67bdc9082b51493257febfad9
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ecf.provider.filetransfer.ssl_1.0.0.v20120610-1946.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ecf.provider.filetransfer.ssl_1.0.0.v20120610-1946.jar
new file mode 100644
index 0000000..e7575bb
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ecf.provider.filetransfer.ssl_1.0.0.v20120610-1946.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ecf.provider.filetransfer_3.2.0.v20120610-1946.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ecf.provider.filetransfer_3.2.0.v20120610-1946.jar.REMOVED.git-id
new file mode 100644
index 0000000..6cb02c0
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ecf.provider.filetransfer_3.2.0.v20120610-1946.jar.REMOVED.git-id
@@ -0,0 +1 @@
+dc5ac529a29c2928fd3e6b1e3b8160599c5d3333
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ecf.ssl_1.0.100.v20120610-1946.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ecf.ssl_1.0.100.v20120610-1946.jar
new file mode 100644
index 0000000..38eceec
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ecf.ssl_1.0.100.v20120610-1946.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ecf_3.1.300.v20120610-1946.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ecf_3.1.300.v20120610-1946.jar.REMOVED.git-id
new file mode 100644
index 0000000..fc3e375
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ecf_3.1.300.v20120610-1946.jar.REMOVED.git-id
@@ -0,0 +1 @@
+727dffc73616418fc486758e6ccb1132ec6c79fe
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.emf.common_2.8.0.v20130125-0546.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.emf.common_2.8.0.v20130125-0546.jar.REMOVED.git-id
new file mode 100644
index 0000000..f50974a
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.emf.common_2.8.0.v20130125-0546.jar.REMOVED.git-id
@@ -0,0 +1 @@
+120bbc01ff67bf420892af089aadda641a77a8e1
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.emf.ecore.change_2.8.0.v20130125-0546.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.emf.ecore.change_2.8.0.v20130125-0546.jar.REMOVED.git-id
new file mode 100644
index 0000000..c0936ef
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.emf.ecore.change_2.8.0.v20130125-0546.jar.REMOVED.git-id
@@ -0,0 +1 @@
+9c9e641277818c454cba50225174ae17d6cdbf97
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.emf.ecore.xmi_2.8.1.v20130125-0546.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.emf.ecore.xmi_2.8.1.v20130125-0546.jar.REMOVED.git-id
new file mode 100644
index 0000000..28373bb
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.emf.ecore.xmi_2.8.1.v20130125-0546.jar.REMOVED.git-id
@@ -0,0 +1 @@
+84e2080d23e49899f9f8d95fec81515d8c7c4de5
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.emf.ecore_2.8.3.v20130125-0546.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.emf.ecore_2.8.3.v20130125-0546.jar.REMOVED.git-id
new file mode 100644
index 0000000..c2579e4
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.emf.ecore_2.8.3.v20130125-0546.jar.REMOVED.git-id
@@ -0,0 +1 @@
+3597d14abf9fc38a6934b5230e37f6dbea6fc27e
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.app_1.3.100.v20120522-1841.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.app_1.3.100.v20120522-1841.jar.REMOVED.git-id
new file mode 100644
index 0000000..4443208
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.app_1.3.100.v20120522-1841.jar.REMOVED.git-id
@@ -0,0 +1 @@
+e3cf1f1dfb88ab558b9878b3045813316b53fc89
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.bidi_0.9.100.v20121107-021609.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.bidi_0.9.100.v20121107-021609.jar
new file mode 100644
index 0000000..e08a821
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.bidi_0.9.100.v20121107-021609.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.common_3.6.100.v20120522-1841.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.common_3.6.100.v20120522-1841.jar.REMOVED.git-id
new file mode 100644
index 0000000..8b39c0d
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.common_3.6.100.v20120522-1841.jar.REMOVED.git-id
@@ -0,0 +1 @@
+672f68af5220d3da68599295e2a1727614647f91
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.console_1.0.0.v20120522-1841.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.console_1.0.0.v20120522-1841.jar.REMOVED.git-id
new file mode 100644
index 0000000..af679e3
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.console_1.0.0.v20120522-1841.jar.REMOVED.git-id
@@ -0,0 +1 @@
+ff1665b5088093a45735cf989e04190047f79296
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.ds_1.4.1.v20120926-201320.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.ds_1.4.1.v20120926-201320.jar.REMOVED.git-id
new file mode 100644
index 0000000..453e873
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.ds_1.4.1.v20120926-201320.jar.REMOVED.git-id
@@ -0,0 +1 @@
+94acfe1c15e33b02d5fc0eca754fa7c1639ccc44
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.event_1.2.200.v20120522-2049.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.event_1.2.200.v20120522-2049.jar
new file mode 100644
index 0000000..a423b3b
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.event_1.2.200.v20120522-2049.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.frameworkadmin.equinox_1.0.400.v20120913-155709.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.frameworkadmin.equinox_1.0.400.v20120913-155709.jar.REMOVED.git-id
new file mode 100644
index 0000000..8cd36b0
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.frameworkadmin.equinox_1.0.400.v20120913-155709.jar.REMOVED.git-id
@@ -0,0 +1 @@
+56be80c52e4fefa09a6e390dcace119f9b8488ce
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.frameworkadmin_2.0.100.v20120913-155515.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.frameworkadmin_2.0.100.v20120913-155515.jar
new file mode 100644
index 0000000..7947fc2
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.frameworkadmin_2.0.100.v20120913-155515.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.http.jetty_3.0.1.v20121109-203239.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.http.jetty_3.0.1.v20121109-203239.jar
new file mode 100644
index 0000000..79d899e
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.http.jetty_3.0.1.v20121109-203239.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.http.registry_1.1.200.v20120912-130548.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.http.registry_1.1.200.v20120912-130548.jar
new file mode 100644
index 0000000..680ad31
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.http.registry_1.1.200.v20120912-130548.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.http.servlet_1.1.300.v20120912-130548.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.http.servlet_1.1.300.v20120912-130548.jar
new file mode 100644
index 0000000..3ad9c89
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.http.servlet_1.1.300.v20120912-130548.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.jsp.jasper.registry_1.0.300.v20120912-130548.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.jsp.jasper.registry_1.0.300.v20120912-130548.jar
new file mode 100644
index 0000000..56dd370
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.jsp.jasper.registry_1.0.300.v20120912-130548.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.jsp.jasper_1.0.400.v20120912-130548.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.jsp.jasper_1.0.400.v20120912-130548.jar
new file mode 100644
index 0000000..a07c8a8
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.jsp.jasper_1.0.400.v20120912-130548.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/META-INF/ECLIPSE_.RSA b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..8eb8fc1
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/META-INF/ECLIPSE_.RSA differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/META-INF/ECLIPSE_.SF b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..58f61cf
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/META-INF/ECLIPSE_.SF
@@ -0,0 +1,17 @@
+Signature-Version: 1.0
+SHA1-Digest-Manifest: 52mOafYQZAjEBYR8rKVB6wWYCeo=
+Created-By: 1.6.0 (IBM Corporation)
+SHA1-Digest-Manifest-Main-Attributes: nfmegrTLYcYh787FCmORo8DHyJM=
+
+Name: launcher.gtk.linux.x86_64.properties
+SHA1-Digest: q+PkqUwzPiV78FKnqpp1D3EP3LA=
+
+Name: META-INF/eclipse.inf
+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=
+
+Name: about.html
+SHA1-Digest: xGcp/Hbq/ywyvVWkPzD/2vkIzdY=
+
+Name: eclipse_1502.so
+SHA1-Digest: lt0nWckoTEjbd1Qyekxzg4o6UtE=
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/META-INF/MANIFEST.MF b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..08ae778
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/META-INF/MANIFEST.MF
@@ -0,0 +1,29 @@
+Manifest-Version: 1.0
+Eclipse-PlatformFilter: (& (osgi.ws=gtk) (osgi.os=linux) (osgi.arch=x8
+ 6_64))
+Bundle-Vendor: %providerName
+Bundle-Localization: launcher.gtk.linux.x86_64
+Fragment-Host: org.eclipse.equinox.launcher;bundle-version="[1.0.0,1.4
+ .0)"
+Bundle-Name: %pluginName
+Bundle-SymbolicName: org.eclipse.equinox.launcher.gtk.linux.x86_64;sin
+ gleton:=true
+Eclipse-BundleShape: dir
+Eclipse-SourceReferences: scm:git:git://git.eclipse.org/gitroot/equino
+ x/rt.equinox.framework.git;path="bundles/org.eclipse.equinox.launcher
+ .gtk.linux.x86_64";tag=v20120913-144807
+Bundle-Version: 1.1.200.v20120913-144807
+Bundle-ManifestVersion: 2
+
+Name: launcher.gtk.linux.x86_64.properties
+SHA1-Digest: F3xLFi7jsuw2uIczSxG47RIa+IQ=
+
+Name: META-INF/eclipse.inf
+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=
+
+Name: eclipse_1502.so
+SHA1-Digest: 1Uh3oZpMlLDzJJSNsauCNrTslXE=
+
+Name: about.html
+SHA1-Digest: a9lDHrGuLPkvHBUhsqWU+V2mhPw=
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/META-INF/eclipse.inf b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/about.html b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/about.html
new file mode 100644
index 0000000..395df3b
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/about.html
@@ -0,0 +1,28 @@
+
+
+
+
+About
+
+
+
About This Content
+
+
June 5, 2006
+
License
+
+
The Eclipse Foundation makes available all content in this plug-in ("Content").
+Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the
+Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available
+at http://www.eclipse.org/legal/epl-v10.html.
+For purposes of the EPL, "Program" will mean the Content.
+
+
If you did not receive this Content directly from the Eclipse Foundation, the Content is
+being redistributed by another party ("Redistributor") and different terms and conditions may
+apply to your use of any object code in the Content. Check the Redistributor’s license
+that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise
+indicated below, the terms and conditions of the EPL still apply to any source code in the Content
+and such source code may be obtained at http://www.eclipse.org.
+
+
+
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/eclipse_1502.so.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/eclipse_1502.so.REMOVED.git-id
new file mode 100644
index 0000000..48acec0
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/eclipse_1502.so.REMOVED.git-id
@@ -0,0 +1 @@
+32cd3d7e9ee4c20443bd0bd85124659568b92882
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/launcher.gtk.linux.x86_64.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/launcher.gtk.linux.x86_64.properties
new file mode 100644
index 0000000..9b101ff
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20120913-144807/launcher.gtk.linux.x86_64.properties
@@ -0,0 +1,12 @@
+###############################################################################
+# Copyright (c) 2007, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+pluginName = Equinox Launcher Linux X86_64 Fragment
+providerName = Eclipse.org - Equinox
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar
new file mode 100644
index 0000000..710c3db
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.artifact.repository_1.1.200.v20120430-1959.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.artifact.repository_1.1.200.v20120430-1959.jar.REMOVED.git-id
new file mode 100644
index 0000000..5ad7a65
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.artifact.repository_1.1.200.v20120430-1959.jar.REMOVED.git-id
@@ -0,0 +1 @@
+0a59302916dcf8d537212081a6004817c87190c2
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.console_1.0.300.v20120429-0125.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.console_1.0.300.v20120429-0125.jar
new file mode 100644
index 0000000..35eaa3a
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.console_1.0.300.v20120429-0125.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.core_2.2.0.v20120430-0525.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.core_2.2.0.v20120430-0525.jar.REMOVED.git-id
new file mode 100644
index 0000000..11b7295
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.core_2.2.0.v20120430-0525.jar.REMOVED.git-id
@@ -0,0 +1 @@
+4fdada69c65baad77927ca28b190a62231af887b
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.director.app_1.0.300.v20120428-0517.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.director.app_1.0.300.v20120428-0517.jar
new file mode 100644
index 0000000..d2f419b
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.director.app_1.0.300.v20120428-0517.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.director_2.2.0.v20120524-0542.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.director_2.2.0.v20120524-0542.jar.REMOVED.git-id
new file mode 100644
index 0000000..d53277a
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.director_2.2.0.v20120524-0542.jar.REMOVED.git-id
@@ -0,0 +1 @@
+ce4323b20a2f03b4821eb9caace742cad2a64bb2
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.directorywatcher_1.0.300.v20110808-1657.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.directorywatcher_1.0.300.v20110808-1657.jar
new file mode 100644
index 0000000..fa9fcbe
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.directorywatcher_1.0.300.v20110808-1657.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.engine_2.2.0.v20130121-021919.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.engine_2.2.0.v20130121-021919.jar.REMOVED.git-id
new file mode 100644
index 0000000..db42f29
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.engine_2.2.0.v20130121-021919.jar.REMOVED.git-id
@@ -0,0 +1 @@
+6ca6879da153ab4fd24a12de15a080a048761e19
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.extensionlocation_1.2.100.v20110808-1657.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.extensionlocation_1.2.100.v20110808-1657.jar
new file mode 100644
index 0000000..92d07f3
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.extensionlocation_1.2.100.v20110808-1657.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.garbagecollector_1.0.200.v20110808-1657.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.garbagecollector_1.0.200.v20110808-1657.jar
new file mode 100644
index 0000000..726251e
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.garbagecollector_1.0.200.v20110808-1657.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.jarprocessor_1.0.200.v20110808-1657.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.jarprocessor_1.0.200.v20110808-1657.jar.REMOVED.git-id
new file mode 100644
index 0000000..8c146eb
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.jarprocessor_1.0.200.v20110808-1657.jar.REMOVED.git-id
@@ -0,0 +1 @@
+1a5f3a8e8581c37a823d8f7b0cbef3e1c8548766
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.metadata.repository_1.2.100.v20120524-1717.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.metadata.repository_1.2.100.v20120524-1717.jar.REMOVED.git-id
new file mode 100644
index 0000000..a3a20a5
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.metadata.repository_1.2.100.v20120524-1717.jar.REMOVED.git-id
@@ -0,0 +1 @@
+3c79de7d82fc9712aa4482493e6da12f41991e92
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.metadata_2.1.0.v20120430-2001.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.metadata_2.1.0.v20120430-2001.jar.REMOVED.git-id
new file mode 100644
index 0000000..aa1900a
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.metadata_2.1.0.v20120430-2001.jar.REMOVED.git-id
@@ -0,0 +1 @@
+7b035996a9c4f0c595e9047381527cdd67c45ec5
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.operations_2.2.0.v20130119-010614.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.operations_2.2.0.v20130119-010614.jar.REMOVED.git-id
new file mode 100644
index 0000000..99cce50
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.operations_2.2.0.v20130119-010614.jar.REMOVED.git-id
@@ -0,0 +1 @@
+0a6ca983f355b8249d0621338f3bf1c9978e6564
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.publisher.eclipse_1.1.0.v20120913-155635.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.publisher.eclipse_1.1.0.v20120913-155635.jar.REMOVED.git-id
new file mode 100644
index 0000000..bfdc769
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.publisher.eclipse_1.1.0.v20120913-155635.jar.REMOVED.git-id
@@ -0,0 +1 @@
+a4f52bdf87b1a9cc259beba95ad55fb4b702ee86
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.publisher_1.2.0.v20121002-080415.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.publisher_1.2.0.v20121002-080415.jar.REMOVED.git-id
new file mode 100644
index 0000000..51553d6
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.publisher_1.2.0.v20121002-080415.jar.REMOVED.git-id
@@ -0,0 +1 @@
+d7fe85372b79e120fbaa554ccc8853da60a7b445
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ql_2.0.100.v20110808-1657.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ql_2.0.100.v20110808-1657.jar
new file mode 100644
index 0000000..b8c2e22
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ql_2.0.100.v20110808-1657.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.reconciler.dropins_1.1.200.v20120301-2145.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.reconciler.dropins_1.1.200.v20120301-2145.jar
new file mode 100644
index 0000000..3eee98e
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.reconciler.dropins_1.1.200.v20120301-2145.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.repository.tools_2.0.100.v20120501-1314.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.repository.tools_2.0.100.v20120501-1314.jar.REMOVED.git-id
new file mode 100644
index 0000000..4a60963
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.repository.tools_2.0.100.v20120501-1314.jar.REMOVED.git-id
@@ -0,0 +1 @@
+aa6dae8a2a9e586a37f622f64daeb834f18c9763
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.repository_2.2.0.v20120524-1945.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.repository_2.2.0.v20120524-1945.jar.REMOVED.git-id
new file mode 100644
index 0000000..2d41f48
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.repository_2.2.0.v20120524-1945.jar.REMOVED.git-id
@@ -0,0 +1 @@
+9df9864d0d335eb4fb2dd8ef6c9f28e1730153e2
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.touchpoint.eclipse_2.1.100.v20120428-0117.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.touchpoint.eclipse_2.1.100.v20120428-0117.jar.REMOVED.git-id
new file mode 100644
index 0000000..a5df544
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.touchpoint.eclipse_2.1.100.v20120428-0117.jar.REMOVED.git-id
@@ -0,0 +1 @@
+9356ca54bfcfcf11d210b75d9d91cdd519b2236e
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.touchpoint.natives_1.1.0.v20130121-021919.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.touchpoint.natives_1.1.0.v20130121-021919.jar.REMOVED.git-id
new file mode 100644
index 0000000..119af51
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.touchpoint.natives_1.1.0.v20130121-021919.jar.REMOVED.git-id
@@ -0,0 +1 @@
+6f3dab21bbb226860ea22eaf9961b6268a8cd2ac
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.transport.ecf_1.0.100.v20120913-155635.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.transport.ecf_1.0.100.v20120913-155635.jar
new file mode 100644
index 0000000..2d6bd8a
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.transport.ecf_1.0.100.v20120913-155635.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ui.importexport_1.0.1.v20120913-155635.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ui.importexport_1.0.1.v20120913-155635.jar.REMOVED.git-id
new file mode 100644
index 0000000..7f5ba06
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ui.importexport_1.0.1.v20120913-155635.jar.REMOVED.git-id
@@ -0,0 +1 @@
+79468ebd06eeef67ec3d77c7f6217f42bd72fe9f
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ui.sdk.scheduler_1.1.0.v20110815-1744.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ui.sdk.scheduler_1.1.0.v20110815-1744.jar.REMOVED.git-id
new file mode 100644
index 0000000..fd8ba9a
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ui.sdk.scheduler_1.1.0.v20110815-1744.jar.REMOVED.git-id
@@ -0,0 +1 @@
+5dcabb2caa956b259d84cd1689cdcda90bb6106b
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ui.sdk_1.0.200.v20120515-1650.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ui.sdk_1.0.200.v20120515-1650.jar
new file mode 100644
index 0000000..29f4174
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ui.sdk_1.0.200.v20120515-1650.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ui_2.2.0.v20130119-010614.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ui_2.2.0.v20130119-010614.jar.REMOVED.git-id
new file mode 100644
index 0000000..8aff58f
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.ui_2.2.0.v20130119-010614.jar.REMOVED.git-id
@@ -0,0 +1 @@
+ab61b30378c12bf3335f02c72865baedc1295b1d
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.updatechecker_1.1.200.v20110808-1657.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.updatechecker_1.1.200.v20110808-1657.jar
new file mode 100644
index 0000000..2acbd64
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.updatechecker_1.1.200.v20110808-1657.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.updatesite_1.0.400.v20120412-1615.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.updatesite_1.0.400.v20120412-1615.jar.REMOVED.git-id
new file mode 100644
index 0000000..32e7e0f
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.p2.updatesite_1.0.400.v20120412-1615.jar.REMOVED.git-id
@@ -0,0 +1 @@
+187af2dc203d9f18e895a511375790f08ce424cb
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.preferences_3.5.1.v20121031-182809.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.preferences_3.5.1.v20121031-182809.jar.REMOVED.git-id
new file mode 100644
index 0000000..527ab7c
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.preferences_3.5.1.v20121031-182809.jar.REMOVED.git-id
@@ -0,0 +1 @@
+fd8362185b15c20e462b0c67b958393b3fc91a91
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.registry_3.5.200.v20120522-1841.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.registry_3.5.200.v20120522-1841.jar.REMOVED.git-id
new file mode 100644
index 0000000..76f4ef7
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.registry_3.5.200.v20120522-1841.jar.REMOVED.git-id
@@ -0,0 +1 @@
+755ba79a2e52ba7a06d1caba9ffdf2e58ba8543b
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.security.ui_1.1.100.v20120522-2049.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.security.ui_1.1.100.v20120522-2049.jar.REMOVED.git-id
new file mode 100644
index 0000000..bf439b5
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.security.ui_1.1.100.v20120522-2049.jar.REMOVED.git-id
@@ -0,0 +1 @@
+087e6eb2827f54a2f1e139f19cab42d11f34155a
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.security_1.1.100.v20120522-1841.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.security_1.1.100.v20120522-1841.jar.REMOVED.git-id
new file mode 100644
index 0000000..6a9f7dc
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.security_1.1.100.v20120522-1841.jar.REMOVED.git-id
@@ -0,0 +1 @@
+f09f20cc7f54ebc9c6fa84a027d52b46385b3f6a
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.simpleconfigurator.manipulator_2.0.0.v20110808-1657.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.simpleconfigurator.manipulator_2.0.0.v20110808-1657.jar
new file mode 100644
index 0000000..2b8465d
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.simpleconfigurator.manipulator_2.0.0.v20110808-1657.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.simpleconfigurator_1.0.301.v20120914-163612.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.simpleconfigurator_1.0.301.v20120914-163612.jar
new file mode 100644
index 0000000..ef63f9d
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.simpleconfigurator_1.0.301.v20120914-163612.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.util_1.0.400.v20120917-192807.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.util_1.0.400.v20120917-192807.jar.REMOVED.git-id
new file mode 100644
index 0000000..fc2c52b
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.equinox.util_1.0.400.v20120917-192807.jar.REMOVED.git-id
@@ -0,0 +1 @@
+e81bb6a6fe35a2e5cf33ffce4c41d31f181dd726
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.help_3.6.0.v20120912-134126.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.help_3.6.0.v20120912-134126.jar.REMOVED.git-id
new file mode 100644
index 0000000..ea9aea8
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.help_3.6.0.v20120912-134126.jar.REMOVED.git-id
@@ -0,0 +1 @@
+79c6dc32b5789bcc9ed6a8483d0083c665feefdf
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jetty.continuation_8.1.3.v20120522.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jetty.continuation_8.1.3.v20120522.jar
new file mode 100644
index 0000000..393dcf3
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jetty.continuation_8.1.3.v20120522.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jetty.http_8.1.3.v20120522.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jetty.http_8.1.3.v20120522.jar.REMOVED.git-id
new file mode 100644
index 0000000..7653e13
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jetty.http_8.1.3.v20120522.jar.REMOVED.git-id
@@ -0,0 +1 @@
+b57c753386f09abc0dd1fedc3be92c213cc75219
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jetty.io_8.1.3.v20120522.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jetty.io_8.1.3.v20120522.jar.REMOVED.git-id
new file mode 100644
index 0000000..8ec88ad
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jetty.io_8.1.3.v20120522.jar.REMOVED.git-id
@@ -0,0 +1 @@
+9081be5316138a2e354364d51280e00fccc1ae08
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jetty.security_8.1.3.v20120522.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jetty.security_8.1.3.v20120522.jar.REMOVED.git-id
new file mode 100644
index 0000000..57de9b2
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jetty.security_8.1.3.v20120522.jar.REMOVED.git-id
@@ -0,0 +1 @@
+0c592c8446da0bcf58e534276983496599870107
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jetty.servlet_8.1.3.v20120522.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jetty.servlet_8.1.3.v20120522.jar.REMOVED.git-id
new file mode 100644
index 0000000..689bd5b
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jetty.servlet_8.1.3.v20120522.jar.REMOVED.git-id
@@ -0,0 +1 @@
+63eefd4a116878e6b67916d9ce51bc498399f5f2
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jetty.util_8.1.3.v20120522.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jetty.util_8.1.3.v20120522.jar.REMOVED.git-id
new file mode 100644
index 0000000..cd78914
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jetty.util_8.1.3.v20120522.jar.REMOVED.git-id
@@ -0,0 +1 @@
+1bb38911246f50f6d20ed013879fc54dfd38a072
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jface.databinding_1.6.0.v20120912-132807.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jface.databinding_1.6.0.v20120912-132807.jar.REMOVED.git-id
new file mode 100644
index 0000000..548326e
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jface.databinding_1.6.0.v20120912-132807.jar.REMOVED.git-id
@@ -0,0 +1 @@
+7617f9efbed10e0023f939b714815e798205b4a1
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jface.text_3.8.2.v20121126-164145.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jface.text_3.8.2.v20121126-164145.jar.REMOVED.git-id
new file mode 100644
index 0000000..ad6f20a
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jface.text_3.8.2.v20121126-164145.jar.REMOVED.git-id
@@ -0,0 +1 @@
+ce660a7247b09a0084c455a7e0807b7c36e991f7
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jface_3.8.102.v20130123-162658.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jface_3.8.102.v20130123-162658.jar.REMOVED.git-id
new file mode 100644
index 0000000..a24171e
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jface_3.8.102.v20130123-162658.jar.REMOVED.git-id
@@ -0,0 +1 @@
+2181fe8753c400129ae06fc8dcced4f17821dafe
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jsch.core_1.1.400.v20120522-1148.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jsch.core_1.1.400.v20120522-1148.jar
new file mode 100644
index 0000000..e4b1890
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jsch.core_1.1.400.v20120522-1148.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jsch.ui_1.1.400.v20120522-1148.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jsch.ui_1.1.400.v20120522-1148.jar.REMOVED.git-id
new file mode 100644
index 0000000..54cb85c
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.jsch.ui_1.1.400.v20120522-1148.jar.REMOVED.git-id
@@ -0,0 +1 @@
+a874129d076e917de5eb4e4ed3ecf22139304e2f
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ltk.core.refactoring_3.6.0.v20120523-1543.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ltk.core.refactoring_3.6.0.v20120523-1543.jar.REMOVED.git-id
new file mode 100644
index 0000000..15a75a8
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ltk.core.refactoring_3.6.0.v20120523-1543.jar.REMOVED.git-id
@@ -0,0 +1 @@
+5065f89bd97fef0e2e039f9f1cc0e69302b70734
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ltk.ui.refactoring_3.7.0.v20120523-1543.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ltk.ui.refactoring_3.7.0.v20120523-1543.jar.REMOVED.git-id
new file mode 100644
index 0000000..66ca343
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ltk.ui.refactoring_3.7.0.v20120523-1543.jar.REMOVED.git-id
@@ -0,0 +1 @@
+f9531eb31cb72f43f92c37c5dc85ee01f1e2380c
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.osgi.services_3.3.100.v20120522-1822.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.osgi.services_3.3.100.v20120522-1822.jar.REMOVED.git-id
new file mode 100644
index 0000000..ac55423
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.osgi.services_3.3.100.v20120522-1822.jar.REMOVED.git-id
@@ -0,0 +1 @@
+1be0d15faadfea1f989eed8f87e3632402d7332c
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.osgi.util_3.2.300.v20120913-144807.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.osgi.util_3.2.300.v20120913-144807.jar
new file mode 100644
index 0000000..7ee59d1
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.osgi.util_3.2.300.v20120913-144807.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.osgi_3.8.2.v20130124-134944.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.osgi_3.8.2.v20130124-134944.jar.REMOVED.git-id
new file mode 100644
index 0000000..dad696b
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.osgi_3.8.2.v20130124-134944.jar.REMOVED.git-id
@@ -0,0 +1 @@
+47b36531cda5b1fb727c1e2343f49083a2a25f11
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/.api_description b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/.api_description
new file mode 100644
index 0000000..7825afa
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/.api_description
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/LegacyIDE.e4xmi b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/LegacyIDE.e4xmi
new file mode 100644
index 0000000..be4bfed
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/LegacyIDE.e4xmi
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/ECLIPSE_.RSA b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..4e0b9d1
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/ECLIPSE_.RSA differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/ECLIPSE_.SF b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..4243450
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/ECLIPSE_.SF
@@ -0,0 +1,263 @@
+Signature-Version: 1.0
+SHA1-Digest-Manifest: ERdR6aVOcbdOCCJp6PurPZkYvG8=
+Created-By: 1.6.0 (IBM Corporation)
+SHA1-Digest-Manifest-Main-Attributes: OHiruwURt2tkChZ88Ilkxg9N/n4=
+
+Name: images/topiclabel/wn_migrate48_hov.gif
+SHA1-Digest: PiwFgHazgc8SIGl/oti+P2zLKsc=
+
+Name: intro/css/whatsnew.properties
+SHA1-Digest: t99cjGj5mTzuUg2do0teAP6fzzA=
+
+Name: eclipse16.gif
+SHA1-Digest: H8kWdGDjph57Qo2qbu1tI7gP5/I=
+
+Name: images/gtkTSFrame.png
+SHA1-Digest: lNsagip705L28766XqzLBHTt+lc=
+
+Name: about.ini
+SHA1-Digest: 3tRVmcACc9ekdbjEuHD+KlN4gfU=
+
+Name: macosx_narrow_book.css
+SHA1-Digest: 8J/M6n+c7VFylsVAZdhTlZ+vXz0=
+
+Name: images/topiclabel/ov_wbbasics48.gif
+SHA1-Digest: oWojUiR1WBlGtZEsM7txIHQ3Q9E=
+
+Name: css/e4_default.css
+SHA1-Digest: I9HSkYjy353ggHaxaHM2NtQHQ0Q=
+
+Name: images/win7Handle.png
+SHA1-Digest: RBjnm1FGs3nmck1LG1k9mVapN8c=
+
+Name: images/win7TSFrame.png
+SHA1-Digest: EPju6HYRlpTQdn4ZWWaL2oQ/yrs=
+
+Name: LegacyIDE.e4xmi
+SHA1-Digest: YAF314wdYO4RZeSEVVOgzx2cFZM=
+
+Name: images/winXPOlive.png
+SHA1-Digest: /dFSDq/T8U9g4GaR09CL3lhEmsE=
+
+Name: intro/css/overview.properties
+SHA1-Digest: XTV3uTDwqp1dy5+XY/Q5I1HpnOY=
+
+Name: images/topiclabel/ov_wbbasics48_hov.gif
+SHA1-Digest: TQSe+zq4qkTGG/6fHCtrmcKnPK4=
+
+Name: platform.jar
+SHA1-Digest: D0IUtWfa5j2XMOXHMFGML/NEJAo=
+
+Name: eclipse32.png
+SHA1-Digest: AsaOXGbLLaVxPpq8N0hfgWwXxb0=
+
+Name: css/e4_default_winxp_olv.css
+SHA1-Digest: f/+LVk1MqEiaTlx16kbwn3PpS6Y=
+
+Name: intro-eclipse.png
+SHA1-Digest: CJvW3yEUeROOUEK4ZgBcmly0Z1k=
+
+Name: css/e4_default_mac.css
+SHA1-Digest: 4NINLFtDrzw/BQ/Gft++SuSM5Zw=
+
+Name: META-INF/eclipse.inf
+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=
+
+Name: images/topiclabel/ov_teamsup48.gif
+SHA1-Digest: OsElRFQSFh3jJgsmon2s9QCfwe4=
+
+Name: about.mappings
+SHA1-Digest: qVqsiW/AgEHaBq8l8H286/NjB80=
+
+Name: images/topiclabel/tu_merge48.gif
+SHA1-Digest: UP3+phgtp3bSprMVq4tSiRIL0JI=
+
+Name: images/topiclabel/arrow.gif
+SHA1-Digest: nJK4gPtQBJLJcQMLOFJXJvK4gLU=
+
+Name: images/dragHandle.png
+SHA1-Digest: lNfkT2YIht+8RAKWluO7N+bk+eY=
+
+Name: images/winXPBluHandle.png
+SHA1-Digest: 1CjJYAt22MCzjzPmBh+2rmLFKMI=
+
+Name: images/macTSFrame.png
+SHA1-Digest: cFsyUNxrLdj04Kx37kiGH3KSHd8=
+
+Name: images/winXPBlue.png
+SHA1-Digest: Tc7M/fv+4ApkXg0UnqPaZ2aZ5MU=
+
+Name: about.properties
+SHA1-Digest: B2e1IuBrBzWSbHRWjjHSxm5cjfA=
+
+Name: helpData.xml
+SHA1-Digest: TZXnzPn4n3gBwQF0ydaxhmY1w3g=
+
+Name: images/topiclabel/ov_teamsup48_hov.gif
+SHA1-Digest: ZKZr1E2Xyo7hieH3Fp+q5NQMPeo=
+
+Name: images/topiclabel/tu_merge48_hov.gif
+SHA1-Digest: xtxSXRHbti1PLVmVeRXavwMzvso=
+
+Name: css/e4_classic_winxp.css
+SHA1-Digest: 2V+wxs2TCKfmuI4wK/2npJq5eWc=
+
+Name: plugin_customization.properties
+SHA1-Digest: /BU7Z7eXbbgW16mEDonqO+Dx+SI=
+
+Name: cheatsheets/cvs_merge.xml
+SHA1-Digest: FaAOvipbrJKzOgrfFooFZ5NVVPQ=
+
+Name: intro/css/tutorials.properties
+SHA1-Digest: 2ipkwKeXHjNzNqDiKumBtEItgyw=
+
+Name: images/macHandle.png
+SHA1-Digest: 9ZpeCfJRwIwzfKtcxGCvXxA/XH4=
+
+Name: images/winClassicTSFrame.png
+SHA1-Digest: bYIjigeu8yZ+v0w6G7kuOI06Su0=
+
+Name: eclipse32.gif
+SHA1-Digest: m+XqY7Ow/523wZ3Mo5NeUYIUA3Q=
+
+Name: plugin_customization.ini
+SHA1-Digest: a/GckqeeBZ+Vm25Dv7v2lBKz7HU=
+
+Name: intro/overviewExtensionContent.xml
+SHA1-Digest: DjMSj7TcD5qaDnzaWjHU2caihuA=
+
+Name: css/e4_default_mru_on_win7.css
+SHA1-Digest: oFqXDb6sSa7XRDk20i69ZezXZlg=
+
+Name: images/winXPHandle.png
+SHA1-Digest: RvBcs+E7ua8p7R6WAeihITCo7w0=
+
+Name: css/e4_classic_win7.css
+SHA1-Digest: DlvxyhZwZatTZdT2efyl0YfcXPc=
+
+Name: images/gtkGrey.png
+SHA1-Digest: Wbj2CSLIIMvC+mpCz/C3ql7pMs4=
+
+Name: images/topiclabel/wn_eclplatform48.gif
+SHA1-Digest: AooAx3UMTLzrMC+eWiCtEgpeRS8=
+
+Name: eclipse48.png
+SHA1-Digest: r7vloezLEByQSRBAUWLnrcCIuSc=
+
+Name: eclipse_lg.gif
+SHA1-Digest: qswGt1E/1bq1Xts719EUvOPBo9U=
+
+Name: images/gtkHandle.png
+SHA1-Digest: UeK2OmJZi7iTP253re8iXj0xdY4=
+
+Name: images/winXPTSFrame.png
+SHA1-Digest: 6H+w4CglVzxPtT+FhyKozWTLmr8=
+
+Name: images/win7.png
+SHA1-Digest: cbJu6wjXexyan1oki8AXgU0rb+M=
+
+Name: plugin.properties
+SHA1-Digest: 0KnPcav4HXWfHUo22AO51I0Lfmc=
+
+Name: images/topiclabel/wn_updates48.gif
+SHA1-Digest: fLSuoNPvkl9STgSftMFToeLhbYo=
+
+Name: images/winClassicHandle.png
+SHA1-Digest: YaCMKtwN879oADa1Mcv7sAo9h6Y=
+
+Name: css/e4_basestyle.css
+SHA1-Digest: un/esnYq2tMNaIA7tbHvbItLTYw=
+
+Name: css/e4_default_winxp_blu.css
+SHA1-Digest: NBxt3jR41yT0mMRACspGWkVghsw=
+
+Name: images/topiclabel/wn_eclplatform48_hov.gif
+SHA1-Digest: DGUWlU5kU62JaCxSPgKE7I5vo9E=
+
+Name: plugin.xml
+SHA1-Digest: Wpm+mXP229iRqHcIi1SOr/3VF/w=
+
+Name: intro/css/overview.css
+SHA1-Digest: QIN/myt3F8vMVNj3t2B3MKZU8uU=
+
+Name: images/topiclabel/wn_updates48_hov.gif
+SHA1-Digest: 4szF/MVsbBym+cGCzZBVaJP/pgc=
+
+Name: introData.xml
+SHA1-Digest: rbdEVtdFXLVuOdrjxm51bMKNzFk=
+
+Name: eclipse48.gif
+SHA1-Digest: Ihjs4HZguOtOUMcamr+GT8QgTiA=
+
+Name: disabled_book.css
+SHA1-Digest: bLpqfhUiGbAbtfx3E0c42hwVP9s=
+
+Name: narrow_book.css
+SHA1-Digest: RwlCfnTG+XygntK3jqGLLuWg2Nc=
+
+Name: eclipse16.png
+SHA1-Digest: hSBGQPWTnl9Je2kVmqPLqOPP12g=
+
+Name: eclipse256.png
+SHA1-Digest: zLt88QkiRs+It2iT5DT83hSwY74=
+
+Name: .api_description
+SHA1-Digest: qAabKOtIRTFbe+lLU9D4LfX7ArE=
+
+Name: images/topiclabel/wn_eclcommunity48.gif
+SHA1-Digest: sWE9Am5FXw787JocFsDVPGGhgg8=
+
+Name: images/topiclabel/tu_checkout48.gif
+SHA1-Digest: 4Mpg1tzRFQZMWH4ZjCoFz80LLWg=
+
+Name: about.html
+SHA1-Digest: xr2qKGgMP52ylX6t87VPIBmazXM=
+
+Name: intro/whatsnewExtensionContent1.xml
+SHA1-Digest: /k6tWIGpGHIMQuX0sWk/97FtgNs=
+
+Name: intro/whatsnewExtensionContent2.xml
+SHA1-Digest: ss0gzaRydrOD9IJgkZjhK3d8wq8=
+
+Name: intro/whatsnewExtensionContent3.xml
+SHA1-Digest: ksAoihbQK4Wv8cQkJtVo7h+e/AY=
+
+Name: images/topiclabel/wn_migrate48.gif
+SHA1-Digest: QRZfRxz+DNtWqcgOeBJWEXCOWcI=
+
+Name: css/e4_default_gtk.css
+SHA1-Digest: 6wm/B7hL/q2vXFg0ZYObfLWPR34=
+
+Name: images/macGrey.png
+SHA1-Digest: twwtkeX4lPiGDAUgioXSTsir9j4=
+
+Name: css/e4_default_win7.css
+SHA1-Digest: RpdtcwxnWzRkCoA3SfHyfk4D9Xk=
+
+Name: intro/css/whatsnew.css
+SHA1-Digest: AdyiXWH4xll/guFkUn+P1Y9xG9M=
+
+Name: intro/tutorialsExtensionContent.xml
+SHA1-Digest: JrYfgCanVcsvNwwdR9WJx1U6Vl4=
+
+Name: cheatsheets/cvs_checkout.xml
+SHA1-Digest: VJonjDQOuxIN4zAmj9Mqd6TO0x0=
+
+Name: images/topiclabel/wn_eclcommunity48_hov.gif
+SHA1-Digest: TChv2jPWCYEyDG6brFi9QNci/zs=
+
+Name: images/topiclabel/tu_checkout48_hov.gif
+SHA1-Digest: L2sDh0tqvIaFQJqBDjV24VFWwgo=
+
+Name: images/winXPBluTSFrame.png
+SHA1-Digest: F8trtuSgW31q6HAV2alypNMXd5A=
+
+Name: intro/css/tutorials.css
+SHA1-Digest: M+MZ4vr9RJTOAUjIC3Qz3p0u6rs=
+
+Name: book.css
+SHA1-Digest: 60Ab1JD4rBjks4ZmsmwkUzsPPC8=
+
+Name: splash.bmp
+SHA1-Digest: XXhVk7MGRKr5MlIWvyNn/hg83ac=
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/MANIFEST.MF b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..b1a2243
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/MANIFEST.MF
@@ -0,0 +1,279 @@
+Manifest-Version: 1.0
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.4,CDC-1.0/Foundation-1.0,J
+ 2SE-1.3
+Bundle-SymbolicName: org.eclipse.platform; singleton:=true
+Eclipse-SourceReferences: scm:git:git://git.eclipse.org/gitroot/platfo
+ rm/eclipse.platform.git;path="platform/org.eclipse.platform";tag=v201
+ 30124-124715
+Require-Bundle: org.eclipse.ui.intro;bundle-version="[3.2.0,4.0.0)",or
+ g.eclipse.ui.cheatsheets;bundle-version="[3.2.0,4.0.0)";resolution:=o
+ ptional,org.eclipse.ui.forms;bundle-version="[3.2.0,4.0.0)";resolutio
+ n:=optional,org.eclipse.ui;bundle-version="[3.2.0,4.0.0)";resolution:
+ =optional,org.eclipse.core.runtime;bundle-version="[3.2.0,4.0.0)"
+Export-Package: org.eclipse.platform.internal;x-internal:=true
+Bundle-Version: 4.2.2.v201302041200
+Bundle-ClassPath: platform.jar
+Bundle-Vendor: %providerName
+Bundle-Name: %pluginName
+Eclipse-BundleShape: dir
+Bundle-ManifestVersion: 2
+
+Name: images/topiclabel/wn_migrate48_hov.gif
+SHA1-Digest: M6zsZ6hi30Dy8VsM/Og4IE9IOkg=
+
+Name: intro/css/whatsnew.properties
+SHA1-Digest: 4nCjPHm7iTBRX2cq5vxBGBYByYU=
+
+Name: eclipse16.gif
+SHA1-Digest: zwt4gz2o7PTRfQDHJimtmymBJo8=
+
+Name: images/gtkTSFrame.png
+SHA1-Digest: 8b0hzV65v6o9x0/8mWk3A8sl4Hg=
+
+Name: about.ini
+SHA1-Digest: ZK6m/9CAhsF/6xAiV7yYXjYLbng=
+
+Name: macosx_narrow_book.css
+SHA1-Digest: jjHm301H2huNyXiXwJbHzgWn0K4=
+
+Name: images/topiclabel/ov_wbbasics48.gif
+SHA1-Digest: 0r8/nIJipGbWXTLidf/qFRtxk88=
+
+Name: css/e4_default.css
+SHA1-Digest: jFe4vzCYprBhckemfwte8nc58cY=
+
+Name: images/win7Handle.png
+SHA1-Digest: twWubAeh9bn9246qAA8F3Ug/5z0=
+
+Name: images/win7TSFrame.png
+SHA1-Digest: UEePCXeNvCU/2TLEhqrkQptOWck=
+
+Name: LegacyIDE.e4xmi
+SHA1-Digest: U16iXOnake2/VYpb1p4HM8VSY5Q=
+
+Name: intro/css/overview.properties
+SHA1-Digest: sR7rB50tGOD19+fqvJ1jGbzo8oY=
+
+Name: images/winXPOlive.png
+SHA1-Digest: LeyuFJ3TC47+y4QpooD4iJNEtmM=
+
+Name: images/topiclabel/ov_wbbasics48_hov.gif
+SHA1-Digest: WHlKtV887rTHYMMuOGAHmtibK5Y=
+
+Name: platform.jar
+SHA1-Digest: ciEsicOarhmxcwox7f6cVEpeV8M=
+
+Name: intro-eclipse.png
+SHA1-Digest: IUrE9u5RnkRx7unbvyyosuGTAOE=
+
+Name: css/e4_default_winxp_olv.css
+SHA1-Digest: 8QGnsvZMMQ1hkioJ313cY3h6huc=
+
+Name: eclipse32.png
+SHA1-Digest: Tet+jRa8Gm9JsW/hWCgO9ayE664=
+
+Name: css/e4_default_mac.css
+SHA1-Digest: cqs3fT4H9kZKj0E8ytz7xlT0ruo=
+
+Name: META-INF/eclipse.inf
+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=
+
+Name: about.mappings
+SHA1-Digest: NtXd0AsBwOcPJVtBX8Pwo65gRa8=
+
+Name: images/topiclabel/ov_teamsup48.gif
+SHA1-Digest: /3k/anFwd5sId2ruDxxEdkjRMm8=
+
+Name: images/topiclabel/tu_merge48.gif
+SHA1-Digest: /3k/anFwd5sId2ruDxxEdkjRMm8=
+
+Name: images/topiclabel/arrow.gif
+SHA1-Digest: iyBS4QdZ6imHjGPw321lqh6SJSo=
+
+Name: images/dragHandle.png
+SHA1-Digest: eNrxIhwedUWxAcz/iz7UAvvgXg4=
+
+Name: images/winXPBluHandle.png
+SHA1-Digest: EP+zIEkA09le7+jTHTcJulbJQzM=
+
+Name: images/macTSFrame.png
+SHA1-Digest: PekW6CYAJ+Zq47ou84K82OV9YDs=
+
+Name: images/winXPBlue.png
+SHA1-Digest: I9bB1J5Q/n/U2CwPQ6H7ETCP9Fs=
+
+Name: about.properties
+SHA1-Digest: JGL216ww5dVm3sYp8EkidZMYe+8=
+
+Name: helpData.xml
+SHA1-Digest: ZR1pFHw9xoMSs25sZ0MO6v4/asI=
+
+Name: images/topiclabel/ov_teamsup48_hov.gif
+SHA1-Digest: tDulFBf6WoQNfzwEyv1Uck54hqk=
+
+Name: images/topiclabel/tu_merge48_hov.gif
+SHA1-Digest: tDulFBf6WoQNfzwEyv1Uck54hqk=
+
+Name: css/e4_classic_winxp.css
+SHA1-Digest: 4kF2VA+qcbkrcY0VGaqzXu42EjU=
+
+Name: plugin_customization.properties
+SHA1-Digest: YD7gZEVzYiOkYd7BfCANIgVRb/Q=
+
+Name: cheatsheets/cvs_merge.xml
+SHA1-Digest: avIFsf3vMC1U32F8qGLxSyq/lpo=
+
+Name: intro/css/tutorials.properties
+SHA1-Digest: EVPXsNdjFZM29pcX0MRbnH8+WOY=
+
+Name: images/macHandle.png
+SHA1-Digest: shGDU1oRr6BWrKxyzq5CV+g53Uw=
+
+Name: images/winClassicTSFrame.png
+SHA1-Digest: npohflUahSspMX9wVHErpcNoAQ0=
+
+Name: eclipse32.gif
+SHA1-Digest: ppkAcrq2pIoBxNI//Z3q3xJRdEY=
+
+Name: plugin_customization.ini
+SHA1-Digest: xmAx4ie434OtxymWwrIRmyqZ9ss=
+
+Name: intro/overviewExtensionContent.xml
+SHA1-Digest: SfOPkWtjJDCFigPMug4SwU76wTo=
+
+Name: css/e4_default_mru_on_win7.css
+SHA1-Digest: ytEGfJ3PX/o67RhwNtQK+O8x04k=
+
+Name: images/winXPHandle.png
+SHA1-Digest: aD5ihrxXxmvS/FbvEkaldGSNuQs=
+
+Name: css/e4_classic_win7.css
+SHA1-Digest: zp1sTNtRlNzZn7MiZ/25jwg+kcA=
+
+Name: images/gtkGrey.png
+SHA1-Digest: 4+t5VfjrQbDtwJA9FLyvnqsW5o0=
+
+Name: images/topiclabel/wn_eclplatform48.gif
+SHA1-Digest: 3nsWBOR6lpxjr+FXTIxLNviYbdQ=
+
+Name: eclipse48.png
+SHA1-Digest: wRYWPRIG/9RrNLHZh4GGFnUMGjQ=
+
+Name: eclipse_lg.gif
+SHA1-Digest: 69MjmTuX2tBydAPuHq7w4/h+T8c=
+
+Name: images/gtkHandle.png
+SHA1-Digest: 6/g5Ixb58lq+MqR+p6fgWS+LShs=
+
+Name: images/winXPTSFrame.png
+SHA1-Digest: Pcfi50OD4cRpF4EX5PwxhcM1h3c=
+
+Name: images/win7.png
+SHA1-Digest: dUay5kpUKKT/ZeY63XkHbLlxtz4=
+
+Name: plugin.properties
+SHA1-Digest: 8XsdsN//y4ahRKLpG+M6Kj/vOy4=
+
+Name: images/topiclabel/wn_updates48.gif
+SHA1-Digest: jZ7rwDl0qk2syJYLk6YYn58pmbk=
+
+Name: images/winClassicHandle.png
+SHA1-Digest: JFATcjcqyduiJVqeDeIbOoc3BY4=
+
+Name: css/e4_basestyle.css
+SHA1-Digest: GlLBw/csE2g2B5Y0p9L5p8MTfBA=
+
+Name: css/e4_default_winxp_blu.css
+SHA1-Digest: +DIieNp/xseF9tdeIVTyu/Rjf3c=
+
+Name: images/topiclabel/wn_eclplatform48_hov.gif
+SHA1-Digest: w7/OBSGFd6+YHONIDeq88ckqLJA=
+
+Name: plugin.xml
+SHA1-Digest: CSz/gQgASDI591MJJs1yMET8QKw=
+
+Name: intro/css/overview.css
+SHA1-Digest: 4vnDNPlsnseQQYHOifEYAOAU+28=
+
+Name: introData.xml
+SHA1-Digest: hRUHRieYHfLpbEmuEpkQGBDq/fU=
+
+Name: images/topiclabel/wn_updates48_hov.gif
+SHA1-Digest: aU4eMLVfJedCANwS4GLHdIfwcLg=
+
+Name: disabled_book.css
+SHA1-Digest: x3/plDo/tiH3FDASeesyGUCF4gM=
+
+Name: eclipse48.gif
+SHA1-Digest: joafzB2KmUajcypuNkoevLaG8oU=
+
+Name: narrow_book.css
+SHA1-Digest: /86jkfITUYJB4OWlA3NEx9IN6zo=
+
+Name: eclipse256.png
+SHA1-Digest: 7KiCNPEKzYy7sq8YFJSsXuQmf/s=
+
+Name: eclipse16.png
+SHA1-Digest: dMO+1jnMMGzYeRFxESUlSACxxEg=
+
+Name: .api_description
+SHA1-Digest: BvrPfAvqQY+G4Fp7iCOwIXfJZH0=
+
+Name: images/topiclabel/wn_eclcommunity48.gif
+SHA1-Digest: a7O8+deDP71UBanvoHQjCgObGqI=
+
+Name: images/topiclabel/tu_checkout48.gif
+SHA1-Digest: huJw6xHMsj2LT1Q3HgsQiEbzNFw=
+
+Name: intro/whatsnewExtensionContent1.xml
+SHA1-Digest: NUBZgy79C5bRW3u9ES+GFMtqi40=
+
+Name: about.html
+SHA1-Digest: +/ZbB4iOoCwiJmEdG+67tzzJKc4=
+
+Name: intro/whatsnewExtensionContent2.xml
+SHA1-Digest: YEikkKc+ZTBDkNSqaSvABYsmuXs=
+
+Name: intro/whatsnewExtensionContent3.xml
+SHA1-Digest: gkjZFF3rYl6EWVEwYZwk4i59j44=
+
+Name: images/topiclabel/wn_migrate48.gif
+SHA1-Digest: huJw6xHMsj2LT1Q3HgsQiEbzNFw=
+
+Name: css/e4_default_gtk.css
+SHA1-Digest: FGe3KCGdrcI+CRDuK0xrB76fTpI=
+
+Name: css/e4_default_win7.css
+SHA1-Digest: URChj9tw7IM/NWMDvZ4TdFjlxdg=
+
+Name: images/macGrey.png
+SHA1-Digest: xClAmpE1oYNRkEk8ktU5gey+jcU=
+
+Name: intro/tutorialsExtensionContent.xml
+SHA1-Digest: pzSSeJDAvRK9lDRPhRYMsfhAv9I=
+
+Name: intro/css/whatsnew.css
+SHA1-Digest: jmuWdg8Bxhr6CT2FH7xspqR8/RE=
+
+Name: cheatsheets/cvs_checkout.xml
+SHA1-Digest: pIAK2OoHSqtHD7eVdgBujxeGs2s=
+
+Name: images/topiclabel/wn_eclcommunity48_hov.gif
+SHA1-Digest: u1+mxDrTyo6yu/dvN/Bh90rSFpk=
+
+Name: intro/css/tutorials.css
+SHA1-Digest: pfL+vsuZVeqHonEoVb6FBRiugts=
+
+Name: images/winXPBluTSFrame.png
+SHA1-Digest: hEZhu5Zb6KTgLN9nmhcA/Mt4BCQ=
+
+Name: images/topiclabel/tu_checkout48_hov.gif
+SHA1-Digest: M6zsZ6hi30Dy8VsM/Og4IE9IOkg=
+
+Name: splash.bmp
+SHA1-Digest: mY5Vf2M7eh6fKVi75hvvTrNZX9s=
+
+Name: book.css
+SHA1-Digest: +jMjY3GD/AZ8AWyoyyzOCICTMJU=
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/eclipse.inf b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/about.html b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/about.html
new file mode 100644
index 0000000..3989f53
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/about.html
@@ -0,0 +1,28 @@
+
+
+
+
+About
+
+
+
About This Content
+
+
May 11, 2006
+
License
+
+
The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise
+indicated below, the Content is provided to you under the terms and conditions of the
+Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available
+at http://www.eclipse.org/legal/epl-v10.html.
+For purposes of the EPL, "Program" will mean the Content.
+
+
If you did not receive this Content directly from the Eclipse Foundation, the Content is
+being redistributed by another party ("Redistributor") and different terms and conditions may
+apply to your use of any object code in the Content. Check the Redistributor's license that was
+provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise
+indicated below, the terms and conditions of the EPL still apply to any source code in the Content
+and such source code may be obtained at http://www.eclipse.org.
+
+
+
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/about.ini b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/about.ini
new file mode 100644
index 0000000..167f506
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/about.ini
@@ -0,0 +1,25 @@
+# about.ini
+# contains information about a feature
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# "%key" are externalized strings defined in about.properties
+# This file does not need to be translated.
+
+# Property "aboutText" contains blurb for feature details in the "About"
+# dialog (translated). Maximum 15 lines and 75 characters per line.
+aboutText=%blurb
+
+# Property "featureImage" contains path to feature image (32x32)
+featureImage=eclipse32.png
+
+# Property "welcomePage" contains path to welcome page (special XML-based format)
+# ($nl$/ prefix to permit locale-specific translations of entire file)
+welcomePage=$nl$/welcome.xml
+
+# Property "welcomePerspective" contains the id of the perspective in which the
+# welcome page is to be opened.
+# optional
+
+# Property "tipsAndTricksHref" contains the Help topic href to a tips and tricks page
+# optional
+tipsAndTricksHref=/org.eclipse.platform.doc.user/tips/platform_tips.html
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/about.mappings b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/about.mappings
new file mode 100644
index 0000000..bfdb3d7
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/about.mappings
@@ -0,0 +1,6 @@
+# about.mappings
+# contains fill-ins for about.properties
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file does not need to be translated.
+
+0=M20130204-1200
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/about.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/about.properties
new file mode 100644
index 0000000..656b62c
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/about.properties
@@ -0,0 +1,28 @@
+###############################################################################
+# Copyright (c) 2000, 2013 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# about.properties
+# contains externalized strings for about.ini
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# fill-ins are supplied by about.mappings
+# This file should be translated.
+#
+# Do not translate any values surrounded by {}
+
+blurb=Eclipse Platform\n\
+\n\
+Version: {featureVersion}\n\
+Build id: {0}\n\
+\n\
+(c) Copyright Eclipse contributors and others 2000, 2013. All rights reserved.\n\
+Visit http://www.eclipse.org/platform\n\
+\n\
+This product includes software developed by the\n\
+Apache Software Foundation http://www.apache.org/
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/book.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/book.css
new file mode 100644
index 0000000..f9822b0
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/book.css
@@ -0,0 +1,108 @@
+P.Code {
+ display: block;
+ text-align: left;
+ text-indent: 0.00pt;
+ margin-top: 0.000000pt;
+ margin-bottom: 0.000000pt;
+ margin-right: 0.000000pt;
+ margin-left: 15pt;
+ font-weight: normal;
+ font-style: normal;
+ color: #4444CC;
+ text-decoration: none;
+ vertical-align: baseline;
+ text-transform: none;
+ font-family: "Courier New", Courier, monospace;
+}
+H6.CaptionFigColumn {
+ display: block;
+ text-align: left;
+ text-indent: 0.000000pt;
+ margin-top: 3.000000pt;
+ margin-bottom: 11.000000pt;
+ margin-right: 0.000000pt;
+ margin-left: 0.000000pt;
+ font-size: 75%;
+ font-weight: bold;
+ font-style: Italic;
+ color: #000000;
+ text-decoration: none;
+ vertical-align: baseline;
+ text-transform: none;
+}
+P.Note {
+ display: block;
+ text-align: left;
+ text-indent: 0pt;
+ margin-top: 19.500000pt;
+ margin-bottom: 19.500000pt;
+ margin-right: 0.000000pt;
+ margin-left: 30pt;
+ font-size: 110%;
+ font-weight: normal;
+ font-style: Italic;
+ color: #000000;
+ text-decoration: none;
+ vertical-align: baseline;
+ text-transform: none;
+}
+EM.UILabel {
+ font-weight: Bold;
+ font-style: normal;
+ text-decoration: none;
+ vertical-align: baseline;
+ text-transform: none;
+}
+EM.CodeName {
+ font-weight: Bold;
+ font-style: normal;
+ text-decoration: none;
+ vertical-align: baseline;
+ text-transform: none;
+ font-family: "Courier New", Courier, monospace;
+}
+UL.NavList {
+ margin-left: 1.5em;
+ padding-left: 0px;
+ list-style-type: none;
+}
+
+body, html { border: 0px }
+
+
+/* following font face declarations need to be removed for DBCS */
+
+body, h1, h2, h3, h4, h5, h6, p, table, td, caption, th, ul, ol, dl, li, dd, dt {font-family: Arial, Helvetica, sans-serif; color: #000000}
+pre, code { font-family: "Courier New", Courier, monospace;}
+
+/* end font face declarations */
+
+@media print {
+ html { font-size: 12pt }
+}
+
+body { font-size: 83%; background: #FFFFFF; margin-bottom: 1em }
+h1 { font-size: 180%; margin-top: 5px; margin-bottom: 1px }
+h2 { font-size: 140%; margin-top: 25px; margin-bottom: 3px }
+h3 { font-size: 110%; margin-top: 20px; margin-bottom: 3px }
+h4 { font-size: 100%; margin-top: 20px; margin-bottom: 3px; font-style: italic }
+p { margin-top: 10px; margin-bottom: 10px }
+pre { font-size: 93%; margin-left: 6; color: #4444CC }
+code { font-size: 93%; }
+table { font-size: 100% } /* needed for quirks mode */
+a:link { color: #0000FF }
+a:hover { color: #000080 }
+a:visited { text-decoration: underline }
+ul { margin-top: 10px; margin-bottom: 10px; }
+li { margin-top: 5px; margin-bottom: 5px; }
+li p { margin-top: 5px; margin-bottom: 5px; }
+ol { margin-top: 10px; margin-bottom: 10px; }
+dl { margin-top: 10px; margin-bottom: 10px; }
+dt { margin-top: 5px; margin-bottom: 5px; font-weight: bold; }
+dd { margin-top: 5px; margin-bottom: 5px; }
+strong { font-weight: bold}
+em { font-style: italic}
+var { font-style: italic}
+div.revision { border-left-style: solid; border-left-width: thin;
+ border-left-color: #7B68EE; padding-left:5 }
+th { font-weight: bold }
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/cheatsheets/cvs_checkout.xml b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/cheatsheets/cvs_checkout.xml
new file mode 100644
index 0000000..af369e4
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/cheatsheets/cvs_checkout.xml
@@ -0,0 +1,75 @@
+
+
+
+
+
+ This cheat sheet shows you how to explore a CVS repository and check out
+ a project. If you need help at any step, click on the (?) icon to the
+ right.
+
+
+
+
+
+ From the main menu, select Window > Open Perspective > Other...,
+ then select the CVS Repository Exploring perspective.
+
+
+
+
+
+
+
+ In the CVS Repositories view, click on the Add CVS Repository
+ toolbar button. Enter the location and authentication information for
+ the repository. For example, for the eclipse repository, enter the
+ following:
+
+ Host: dev.eclipse.org
+ Repository path: /cvsroot/eclipse
+ User: anonymous
+ Connection type: pserver
+
+ Use defaults for the rest, then click Finish.
+
+
+
+
+
+ Expand the HEAD node under the newly added repository, and locate
+ the project you wish to check out (e.g. to find the source code for the
+ cheat sheet view, this is in org.eclipse.ui.cheatsheets)
+
+
+
+
+
+ Right click on the project you wish to check out and select Check
+ Out. This will download the latest content from the repository into
+ your workspace.
+
+
+
+
+
+ To see the project in your workspace, switch to the Resource
+ perspective via Window > Open Perspective > Resource to see the
+ project in the Project Explorer view. You can now view and work with the
+ contents of the project.
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/cheatsheets/cvs_merge.xml b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/cheatsheets/cvs_merge.xml
new file mode 100644
index 0000000..a33f50b
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/cheatsheets/cvs_merge.xml
@@ -0,0 +1,76 @@
+
+
+
+
+
+ This cheat sheet shows you the steps to merge changes from one CVS branch
+ into another, or into HEAD. If you need help at any step, click on the (?)
+ icon to the right.
+
+
+
+
+
+ The first step is to decide which two branches will be merged, at
+ which version the content was branched, and what the
+ destination branch will be (where the result of the merge will go).
+ Once you have this information, you can move on to the next step.
+
+
+
+
+
+ Before merging, you must check out the project you wish to merge
+ and bring it into your workspace. You can do this either via the import
+ wizard or by adding your repository from the CVS Repository Exploring
+ perspective, or click the (?) button for help.
+
+
+
+
+
+ In the navigator, right-click on the project and select Replace With >
+ Another Branch or Version. Select the destination branch. This will load
+ the branch's latest content into your workspace.
+
+
+
+
+
+ Again in the navigator, right-click on the project and select Team
+ > Merge and complete the steps in the wizard. In this wizard you
+ specify the details of the merge.
+
+
+
+
+
+ In the Merge editor manually merge the changes. This step loads the
+ required changes into the workspace. Once you've merged all the changes
+ and are satisfied with the result, move on to the next step.
+
+
+
+
+
+ Right-click on the project and select Team > Synchronize with
+ Repository and then commit all the changes to the repository. This
+ step finalizes the transfer of the changes from the workspace to the CVS
+ repository, and finalizes the merge.
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_basestyle.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_basestyle.css
new file mode 100644
index 0000000..7beef61
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_basestyle.css
@@ -0,0 +1,42 @@
+
+.MTrimmedWindow.topLevel {
+ margin-top: 5px;
+ margin-bottom: 2px;
+ margin-left: 2px;
+ margin-right: 2px;
+}
+
+.MPartStack {
+ swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+ swt-unselected-tabs-color: #FFFFFF #FFFFFF #FFFFFF 100% 100%;
+ swt-outer-keyline-color: #FFFFFF;
+ swt-inner-keyline-color: #FFFFFF;
+ padding: 0px 9px 10px;
+ swt-tab-outline: #B6BCCC;
+ swt-shadow-visible: true;
+ swt-mru-visible: false;
+}
+
+.MPartStack.active {
+ swt-inner-keyline-color: #FFFFFF;
+ swt-tab-outline: #B6BCCC;
+ swt-shadow-visible: true;
+}
+
+#PerspectiveSwitcher {
+ eclipse-perspective-keyline-color: #AAB0BF #AAB0BF;
+}
+
+.MToolControl.TrimStack {
+ frame-image: url(./winXPTSFrame.png);
+ handle-image: url(./winXPHandle.png);
+ frame-cuts: 5px 1px 5px 16px;
+}
+
+.MToolBar.Draggable {
+ handle-image: url(./dragHandle.png);
+}
+
+.MToolControl.Draggable {
+ handle-image: url(./dragHandle.png);
+}
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_classic_win7.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_classic_win7.css
new file mode 100644
index 0000000..9b6ff24
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_classic_win7.css
@@ -0,0 +1,36 @@
+.MTrimmedWindow {
+ margin-top: 0px;
+ margin-bottom: 0px;
+ margin-left: 2px;
+ margin-right: 2px;
+}
+
+.MPartStack {
+ swt-tab-renderer: null;
+ swt-selected-tabs-background: #FFFFFF #F0F0F0 100%;
+ swt-simple: false;
+ swt-mru-visible: true;
+}
+
+
+.MPartStack.active {
+ swt-selected-tabs-background: #F2F5F9 #99B4D1 100%;
+}
+
+#PerspectiveSwitcher {
+ eclipse-perspective-keyline-color: #ECE9D8 #FFFFFF;
+}
+
+.MToolControl.TrimStack {
+ frame-image: url(./winClassicTSFrame.png);
+ handle-image: url(./winClassicHandle.png);
+ frame-cuts: 5px 1px 5px 16px;
+}
+
+.MToolBar.Draggable {
+ handle-image: url(./dragHandle.png);
+}
+
+.MToolControl.Draggable {
+ handle-image: url(./dragHandle.png);
+}
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_classic_winxp.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_classic_winxp.css
new file mode 100644
index 0000000..6d11bd3
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_classic_winxp.css
@@ -0,0 +1,36 @@
+.MTrimmedWindow {
+ margin-top: 0px;
+ margin-bottom: 0px;
+ margin-left: 2px;
+ margin-right: 2px;
+}
+
+.MPartStack {
+ swt-tab-renderer: null;
+ swt-selected-tabs-background: #FFFFFF #ECE9D8 100%;
+ swt-simple: false;
+ swt-mru-visible: true;
+}
+
+
+.MPartStack.active {
+ swt-selected-tabs-background: #E5EDFC #99BAF3 100%;
+}
+
+#PerspectiveSwitcher {
+ eclipse-perspective-keyline-color: #ECE9D8 #FFFFFF;
+}
+
+.MToolControl.TrimStack {
+ frame-image: url(./winClassicTSFrame.png);
+ handle-image: url(./winClassicHandle.png);
+ frame-cuts: 5px 1px 5px 16px;
+}
+
+.MToolBar.Draggable {
+ handle-image: url(./dragHandle.png);
+}
+
+.MToolControl.Draggable {
+ handle-image: url(./dragHandle.png);
+}
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default.css
new file mode 100644
index 0000000..2f44bcf
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default.css
@@ -0,0 +1,41 @@
+
+.MWindow {
+ background-color: #EEF2F7 #DEEBF3 100%;
+}
+
+.MTrimmedWindow {
+ margin-top: 2px;
+ margin-bottom: 2px;
+ margin-left: 2px;
+ margin-right: 2px;
+}
+
+.MTrimmedWindow.topLevel {
+ margin-top: 24px;
+ margin-bottom: 2px;
+ margin-left: 12px;
+ margin-right: 12px;
+}
+
+.MPartStack {
+ swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+ swt-unselected-tabs-color: #FFFFFF #FFFFFF #FFFFFF 100% 100%;
+ swt-outer-keyline-color: #FFFFFF;
+ swt-inner-keyline-color: #FFFFFF;
+ swt-mru-visible: false;
+}
+
+.MTrimBar {
+ background-color: #EEF2F7 #DEEBF3 100%;
+}
+
+
+.MTrimBar#org-eclipse-ui-main-toolbar {
+ background-image: url(./winXPBlue.png);
+}
+
+.MPartStack.active {
+ swt-unselected-tabs-color: #CEDEF4 #D2E2F9 #FFFFFF 100% 100%;
+ swt-outer-keyline-color: #C3D0E9;
+ swt-inner-keyline-color: #FFFFFF;
+}
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_gtk.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_gtk.css
new file mode 100644
index 0000000..785d0f9
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_gtk.css
@@ -0,0 +1,56 @@
+
+@import url("e4_basestyle.css");
+
+.MTrimmedWindow {
+ background-color: #E2E2E2;
+}
+
+.MPartStack {
+ font-size: 11;
+ swt-simple: false;
+ swt-mru-visible: false;
+}
+
+.MTrimBar {
+ background-color: #E2E2E2;
+}
+
+.MTrimBar#org-eclipse-ui-main-toolbar {
+ background-image: url(./gtkGrey.png);
+}
+
+.MToolControl.TrimStack {
+ frame-image: url(./gtkTSFrame.png);
+ handle-image: url(./gtkHandle.png);
+}
+
+.MPartStack.active {
+ swt-unselected-tabs-color: #DCDCDC #E1E1E1 #FFFFFF 100% 100%;
+ swt-outer-keyline-color: #B4B4B4;
+ swt-tab-outline: #B4B4B4;
+}
+
+#PerspectiveSwitcher {
+ background-color: #EBEBEB #E2E2E2 100%;
+ eclipse-perspective-keyline-color: #B4B4B4 #B4B4B4;
+}
+
+#org-eclipse-ui-editorss {
+ swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+ swt-unselected-tabs-color: #F0F0F0 #F0F0F0 #F0F0F0 100% 100%;
+ swt-outer-keyline-color: #B4B4B4;
+ swt-inner-keyline-color: #F0F0F0;
+ swt-tab-outline: #F0F0F0;
+ color: #F0F0F0;
+ swt-tab-height: 8px;
+ padding: 0px 5px 7px;
+}
+
+CTabFolder.MArea .MPartStack, CTabFolder.MArea .MPartStack.active {
+ swt-shadow-visible: false;
+}
+
+CTabFolder Canvas {
+ background-color: #F8F8F8;
+}
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_mac.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_mac.css
new file mode 100644
index 0000000..88d03e4
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_mac.css
@@ -0,0 +1,53 @@
+@import url("e4_basestyle.css");
+
+.MTrimmedWindow {
+ background-color: #E8E8E8;
+}
+
+.MPartStack {
+ font-size: 12;
+ swt-simple: false;
+ swt-mru-visible: false;
+}
+
+.MTrimBar {
+ background-color: #E8E8E8;
+}
+
+.MTrimBar#org-eclipse-ui-main-toolbar {
+ background-color: #CFCFCF #A8A8A8 100%;
+}
+
+.MToolControl.TrimStack {
+ frame-image: url(./macTSFrame.png);
+ handle-image: url(./macHandle.png);
+}
+
+.MPartStack.active {
+ swt-unselected-tabs-color: #F6F6F6 #D3D3D3 #D1D1D1 #D1D1D1 #D6D6D6 #D6D6D6 #FFFFFF 20% 45% 60% 70% 100% 100%;
+ swt-outer-keyline-color: #C4C5C1;
+}
+
+#PerspectiveSwitcher {
+ background-color: #F0F0F0 #E8E8E8 100%;
+ eclipse-perspective-keyline-color: #515151 #515151;
+}
+
+#org-eclipse-ui-editorss {
+ swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+ swt-unselected-tabs-color: #D6DDE5 #D6DDE5 #D6DDE5 100% 100%;
+ swt-outer-keyline-color: #D6DDE5;
+ swt-inner-keyline-color: #D6DDE5;
+ swt-tab-outline: #D6DDE5;
+ color: #D6DDE5;
+ swt-tab-height: 8px;
+ padding: 0px 5px 7px;
+}
+
+CTabFolder.MArea .MPartStack, CTabFolder.MArea .MPartStack.active {
+ swt-shadow-visible: false;
+}
+
+CTabFolder Canvas {
+ background-color: #F0F0F0;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_mru_on_win7.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_mru_on_win7.css
new file mode 100644
index 0000000..4a93668
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_mru_on_win7.css
@@ -0,0 +1,53 @@
+@import url("e4_basestyle.css");
+
+.MTrimmedWindow {
+ background-color: #E1E6F6;
+}
+
+.MPartStack {
+ font-size: 9;
+ font-family: 'Segoe UI';
+ swt-simple: true;
+ swt-mru-visible: true;
+}
+
+.MTrimBar {
+ background-color: #E1E6F6;
+}
+
+.MToolControl.TrimStack {
+ frame-image: url(./win7TSFrame.png);
+ handle-image: url(./win7Handle.png);
+}
+
+.MTrimBar#org-eclipse-ui-main-toolbar {
+ background-image: url(./win7.png);
+}
+
+.MPartStack.active {
+ swt-unselected-tabs-color: #F3F9FF #D0DFEE #CEDDED #CEDDED #D2E1F0 #D2E1F0 #FFFFFF 20% 45% 60% 70% 100% 100%;
+ swt-outer-keyline-color: #B6BCCC;
+}
+
+#PerspectiveSwitcher {
+ background-color: #F5F7FC #E1E6F6 100%;
+}
+
+#org-eclipse-ui-editorss {
+ swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+ swt-unselected-tabs-color: #F0F0F0 #F0F0F0 #F0F0F0 100% 100%;
+ swt-outer-keyline-color: #B4B4B4;
+ swt-inner-keyline-color: #F0F0F0;
+ swt-tab-outline: #F0F0F0;
+ color: #F0F0F0;
+ swt-tab-height: 8px;
+ padding: 0px 5px 7px;
+}
+
+CTabFolder.MArea .MPartStack, CTabFolder.MArea .MPartStack.active {
+ swt-shadow-visible: false;
+}
+
+CTabFolder Canvas {
+ background-color: #F8F8F8;
+}
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_win7.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_win7.css
new file mode 100644
index 0000000..1a4f110
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_win7.css
@@ -0,0 +1,53 @@
+@import url("e4_basestyle.css");
+
+.MTrimmedWindow {
+ background-color: #E1E6F6;
+}
+
+.MPartStack {
+ font-size: 9;
+ font-family: 'Segoe UI';
+ swt-simple: true;
+ swt-mru-visible: false;
+}
+
+.MTrimBar {
+ background-color: #E1E6F6;
+}
+
+.MTrimBar#org-eclipse-ui-main-toolbar {
+ background-image: url(./win7.png);
+}
+
+.MToolControl.TrimStack {
+ frame-image: url(./win7TSFrame.png);
+ handle-image: url(./win7Handle.png);
+}
+
+.MPartStack.active {
+ swt-unselected-tabs-color: #F3F9FF #D0DFEE #CEDDED #CEDDED #D2E1F0 #D2E1F0 #FFFFFF 20% 45% 60% 70% 100% 100%;
+ swt-outer-keyline-color: #B6BCCC;
+}
+
+#PerspectiveSwitcher {
+ background-color: #F5F7FC #E1E6F6 100%;
+}
+
+#org-eclipse-ui-editorss {
+ swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+ swt-unselected-tabs-color: #F0F0F0 #F0F0F0 #F0F0F0 100% 100%;
+ swt-outer-keyline-color: #B4B4B4;
+ swt-inner-keyline-color: #F0F0F0;
+ swt-tab-outline: #F0F0F0;
+ color: #F0F0F0;
+ swt-tab-height: 8px;
+ padding: 0px 5px 7px;
+}
+
+CTabFolder.MArea .MPartStack, CTabFolder.MArea .MPartStack.active {
+ swt-shadow-visible: false;
+}
+
+CTabFolder Canvas {
+ background-color: #F8F8F8;
+}
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_winxp_blu.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_winxp_blu.css
new file mode 100644
index 0000000..c026c44
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_winxp_blu.css
@@ -0,0 +1,55 @@
+@import url("e4_basestyle.css");
+
+.MTrimmedWindow {
+ background-color: #F0ECE0;
+}
+
+.MPartStack {
+ font-size: 9;
+ swt-simple: true;
+ swt-mru-visible: false;
+}
+
+.MTrimBar {
+ background-color: #F0ECE0;
+}
+
+
+.MTrimBar#org-eclipse-ui-main-toolbar {
+ background-image: url(./winXPBlue.png);
+}
+
+.MToolControl.TrimStack {
+ frame-image: url(./winXPBluTSFrame.png);
+ handle-image: url(./winXPBluHandle.png);
+}
+
+.MPartStack.active {
+ swt-unselected-tabs-color: #F1F4FD #C9DAF3 #BED4F1 #BED4F1 #C9D7F2 #C9D7F2 #FFFFFF 20% 45% 60% 70% 100% 100%;
+ swt-outer-keyline-color: #B8C7E5;
+}
+
+#PerspectiveSwitcher {
+ background-color: #F5F3ED #F0ECE0 100%;
+ eclipse-perspective-keyline-color: #7F91B5 #7F91B5;
+}
+
+#org-eclipse-ui-editorss {
+ swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+ swt-unselected-tabs-color: #F0F0F0 #F0F0F0 #F0F0F0 100% 100%;
+ swt-outer-keyline-color: #B4B4B4;
+ swt-inner-keyline-color: #F0F0F0;
+ swt-tab-outline: #F0F0F0;
+ color: #F0F0F0;
+ swt-tab-height: 8px;
+ padding: 0px 5px 7px;
+}
+
+CTabFolder.MArea .MPartStack, CTabFolder.MArea .MPartStack.active {
+ swt-shadow-visible: false;
+}
+
+CTabFolder Canvas {
+ background-color: #F8F8F8;
+}
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_winxp_olv.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_winxp_olv.css
new file mode 100644
index 0000000..6c62257
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_winxp_olv.css
@@ -0,0 +1,49 @@
+
+.MTrimmedWindow {
+ margin-top: 2px;
+ margin-bottom: 2px;
+ margin-left: 2px;
+ margin-right: 2px;
+}
+
+.MTrimmedWindow.topLevel {
+ margin-top: 24px;
+ margin-bottom: 2px;
+ margin-left: 12px;
+ margin-right: 12px;
+}
+
+.MPartStack {
+ swt-tab-renderer: url('bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
+ swt-unselected-tabs-color: #FFFFFF #FFFFFF #FFFFFF 100% 100%;
+ swt-outer-keyline-color: #FFFFFF;
+ swt-inner-keyline-color: #FFFFFF;
+ font-size: 9;
+ swt-simple: true;
+ padding: 0px 10px 11px;
+ swt-mru-visible: false;
+}
+
+.MTrimBar#org-eclipse-ui-main-toolbar {
+ background-image: url(./winXPOlive.png);
+}
+
+.MPartStack.active {
+ swt-unselected-tabs-color: #E6E3C3 #EDEACA #FFFFFF 100% 100%;
+ swt-outer-keyline-color: #BFCDA4;
+ swt-inner-keyline-color: #FFFFFF;
+ swt-tab-outline: #B6BCCC;
+}
+
+#PerspectiveSwitcher {
+ background-color: #F5F3ED #F0ECE0 100%;
+ eclipse-perspective-keyline-color: #A7B680 #A7B680;
+}
+
+.MToolBar.Draggable {
+ handle-image: url(./dragHandle.png);
+}
+
+.MToolControl.Draggable {
+ handle-image: url(./dragHandle.png);
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/disabled_book.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/disabled_book.css
new file mode 100644
index 0000000..5abd004
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/disabled_book.css
@@ -0,0 +1 @@
+/* This CSS is applied after all other CSSs for topics that
belong to the disabled capabilities. The DIV for the notice
injected at the top of the document is 'help-disabledTopic'. */
#help-disabledTopic {
color: Highlight;
font-weight: medium;
margin-top: 1.0em;
margin-bottom: 1.0em;
}
#help-disabledTopic hr {
color: #C0C0C0;
noshade;
}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse16.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse16.gif
new file mode 100644
index 0000000..abefafc
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse16.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse16.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse16.png
new file mode 100644
index 0000000..8bd31d1
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse16.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse256.png.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse256.png.REMOVED.git-id
new file mode 100644
index 0000000..61d3f9e
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse256.png.REMOVED.git-id
@@ -0,0 +1 @@
+941ab0b3e329888dab2b67e78812a9d03b582d3d
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse32.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse32.gif
new file mode 100644
index 0000000..29edaa0
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse32.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse32.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse32.png
new file mode 100644
index 0000000..71ea8f9
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse32.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse48.gif
new file mode 100644
index 0000000..ba596ce
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse48.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse48.png
new file mode 100644
index 0000000..6845e67
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse48.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse_lg.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse_lg.gif
new file mode 100644
index 0000000..c004bf2
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/eclipse_lg.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/helpData.xml b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/helpData.xml
new file mode 100644
index 0000000..0838605
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/helpData.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/dragHandle.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/dragHandle.png
new file mode 100644
index 0000000..bea1179
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/dragHandle.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkGrey.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkGrey.png
new file mode 100644
index 0000000..54d631d
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkGrey.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkHandle.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkHandle.png
new file mode 100644
index 0000000..b0288cf
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkHandle.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkTSFrame.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkTSFrame.png
new file mode 100644
index 0000000..dd08bba
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/gtkTSFrame.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macGrey.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macGrey.png
new file mode 100644
index 0000000..59075ad
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macGrey.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macHandle.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macHandle.png
new file mode 100644
index 0000000..98b2193
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macHandle.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macTSFrame.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macTSFrame.png
new file mode 100644
index 0000000..ee32cf5
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/macTSFrame.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/arrow.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/arrow.gif
new file mode 100644
index 0000000..7d4c3f1
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/arrow.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_teamsup48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_teamsup48.gif
new file mode 100644
index 0000000..ed93db0
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_teamsup48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_teamsup48_hov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_teamsup48_hov.gif
new file mode 100644
index 0000000..464e9af
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_teamsup48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_wbbasics48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_wbbasics48.gif
new file mode 100644
index 0000000..d0102c9
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_wbbasics48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_wbbasics48_hov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_wbbasics48_hov.gif
new file mode 100644
index 0000000..cc830b0
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/ov_wbbasics48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_checkout48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_checkout48.gif
new file mode 100644
index 0000000..f3de4d2
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_checkout48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_checkout48_hov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_checkout48_hov.gif
new file mode 100644
index 0000000..ffa86f9
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_checkout48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_merge48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_merge48.gif
new file mode 100644
index 0000000..ed93db0
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_merge48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_merge48_hov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_merge48_hov.gif
new file mode 100644
index 0000000..464e9af
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/tu_merge48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclcommunity48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclcommunity48.gif
new file mode 100644
index 0000000..075cfaa
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclcommunity48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclcommunity48_hov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclcommunity48_hov.gif
new file mode 100644
index 0000000..7ec2cce
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclcommunity48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclplatform48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclplatform48.gif
new file mode 100644
index 0000000..f6fa59f
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclplatform48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclplatform48_hov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclplatform48_hov.gif
new file mode 100644
index 0000000..8624fc1
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_eclplatform48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_migrate48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_migrate48.gif
new file mode 100644
index 0000000..f3de4d2
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_migrate48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_migrate48_hov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_migrate48_hov.gif
new file mode 100644
index 0000000..ffa86f9
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_migrate48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_updates48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_updates48.gif
new file mode 100644
index 0000000..f2f80d8
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_updates48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_updates48_hov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_updates48_hov.gif
new file mode 100644
index 0000000..08fbbed
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/topiclabel/wn_updates48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7.png
new file mode 100644
index 0000000..b9bf09d
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7Handle.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7Handle.png
new file mode 100644
index 0000000..b73a963
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7Handle.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7TSFrame.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7TSFrame.png
new file mode 100644
index 0000000..eec6be6
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/win7TSFrame.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winClassicHandle.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winClassicHandle.png
new file mode 100644
index 0000000..cfeb6dd
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winClassicHandle.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winClassicTSFrame.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winClassicTSFrame.png
new file mode 100644
index 0000000..0b9101c
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winClassicTSFrame.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBluHandle.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBluHandle.png
new file mode 100644
index 0000000..45441b3
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBluHandle.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBluTSFrame.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBluTSFrame.png
new file mode 100644
index 0000000..5880d78
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBluTSFrame.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBlue.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBlue.png
new file mode 100644
index 0000000..fc27964
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPBlue.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPHandle.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPHandle.png
new file mode 100644
index 0000000..17eb69a
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPHandle.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPOlive.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPOlive.png
new file mode 100644
index 0000000..c745ee1
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPOlive.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPTSFrame.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPTSFrame.png
new file mode 100644
index 0000000..baf45b9
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/images/winXPTSFrame.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro-eclipse.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro-eclipse.png
new file mode 100644
index 0000000..015e7fc
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro-eclipse.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/overview.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/overview.css
new file mode 100644
index 0000000..cc5d6ad
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/overview.css
@@ -0,0 +1,5 @@
+a#basics img { background-image : url('../../images/topiclabel/ov_wbbasics48.gif'); }
+a#basics:hover img { background-image : url('../../images/topiclabel/ov_wbbasics48_hov.gif'); }
+
+a#team img { background-image : url('../../images/topiclabel/ov_teamsup48.gif'); }
+a#team:hover img { background-image : url('../../images/topiclabel/ov_teamsup48_hov.gif'); }
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/overview.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/overview.properties
new file mode 100644
index 0000000..c7e33e7
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/overview.properties
@@ -0,0 +1,20 @@
+###############################################################################
+# Copyright (c) 2005, 2007 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+overview.page-content.overview-links.layout.vspacing = 35
+
+overview.basics.link-icon = images/topiclabel/ov_wbbasics48.gif
+overview.basics.hover-icon = images/topiclabel/ov_wbbasics48_hov.gif
+
+overview.team.link-icon = images/topiclabel/ov_teamsup48.gif
+overview.team.hover-icon = images/topiclabel/ov_teamsup48_hov.gif
+
+overview.subtitle-id = overview/page-content/page-title
+overview.description-id = overview/page-content/page-description
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/tutorials.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/tutorials.css
new file mode 100644
index 0000000..92770e2
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/tutorials.css
@@ -0,0 +1,5 @@
+a#cvs_checkout img { background-image : url('../../images/topiclabel/tu_checkout48.gif'); }
+a#cvs_checkout:hover img { background-image : url('../../images/topiclabel/tu_checkout48_hov.gif'); }
+
+a#cvs_merge img { background-image : url('../../images/topiclabel/tu_merge48.gif'); }
+a#cvs_merge:hover img { background-image : url('../../images/topiclabel/tu_merge48_hov.gif'); }
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/tutorials.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/tutorials.properties
new file mode 100644
index 0000000..d065463
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/tutorials.properties
@@ -0,0 +1,19 @@
+###############################################################################
+# Copyright (c) 2006, 2008 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+tutorials.cvs_checkout.link-icon = images/topiclabel/tu_checkout48.gif
+tutorials.cvs_checkout.hover-icon = images/topiclabel/tu_checkout48_hov.gif
+
+tutorials.cvs_merge.link-icon = images/topiclabel/tu_merge48.gif
+tutorials.cvs_merge.hover-icon = images/topiclabel/tu_merge48_hov.gif
+
+tutorials.subtitle-id = tutorials/page-content/page-title
+tutorials.description-id = tutorials/page-content/page-description
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/whatsnew.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/whatsnew.css
new file mode 100644
index 0000000..5515caa
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/whatsnew.css
@@ -0,0 +1,50 @@
+
+a#platform-noteworthy img { background-image : url(../../images/topiclabel/wn_eclplatform48.gif); }
+a#platform-noteworthy:hover img { background-image : url(../../images/topiclabel/wn_eclplatform48_hov.gif); }
+
+a#updates img { background-image : url(../../images/topiclabel/wn_updates48.gif); }
+a#updates:hover img { background-image : url(../../images/topiclabel/wn_updates48_hov.gif); }
+
+a#eclipse img { background-image : url(../../images/topiclabel/wn_eclcommunity48.gif); }
+a#eclipse:hover img { background-image : url(../../images/topiclabel/wn_eclcommunity48_hov.gif); }
+
+a#migration img { background-image : url(../../images/topiclabel/wn_migrate48.gif); }
+a#migration:hover img { background-image : url(../../images/topiclabel/wn_migrate48_hov.gif); }
+
+div#rss-news {
+ position: relative;
+ top: -25px;
+ margin-bottom: -25px;
+ margin-left: 52px;
+}
+
+#rss-news .div-label {
+ font-size: 9pt;
+}
+
+#rss-news .provided-content {
+}
+
+#rss-news .status-text {
+ font-weight: normal;
+ color: #909090;
+ font-size: 8pt;
+}
+
+ul#eclipse-news {
+ list-style-type: none;
+ list-style-image: url("../../images/topiclabel/arrow.gif");
+ margin-left: 10px;
+ margin-top: 5px;
+}
+
+ul#eclipse-news li {
+}
+
+ul#eclipse-news a {
+ font-weight: normal;
+}
+
+ul#eclipse-news a:hover {
+ text-decoration: underline;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/whatsnew.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/whatsnew.properties
new file mode 100644
index 0000000..34b0f1c
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/css/whatsnew.properties
@@ -0,0 +1,26 @@
+###############################################################################
+# Copyright (c) 2005, 2007 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+whatsnew.platform-noteworthy.link-icon = images/topiclabel/wn_eclplatform48.gif
+whatsnew.platform-noteworthy.hover-icon = images/topiclabel/wn_eclplatform48_hov.gif
+
+whatsnew.updates.link-icon = images/topiclabel/wn_updates48.gif
+whatsnew.updates.hover-icon = images/topiclabel/wn_updates48_hov.gif
+
+whatsnew.eclipse.link-icon = images/topiclabel/wn_eclcommunity48.gif
+whatsnew.eclipse.hover-icon = images/topiclabel/wn_eclcommunity48_hov.gif
+
+whatsnew.migration.link-icon = images/topiclabel/wn_migrate48.gif
+whatsnew.migration.hover-icon = images/topiclabel/wn_migrate48_hov.gif
+
+whatsnew.page-content.layout.vspacing = 40
+
+whatsnew.subtitle-id = news/page-content/page-title
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/overviewExtensionContent.xml b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/overviewExtensionContent.xml
new file mode 100644
index 0000000..3f6bd32
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/overviewExtensionContent.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+ Learn about basic Eclipse workbench concepts
+
+
+ Find out how to collaborate with other developers
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/tutorialsExtensionContent.xml b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/tutorialsExtensionContent.xml
new file mode 100644
index 0000000..28c6145
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/tutorialsExtensionContent.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+ Learn how to connect to a CVS repository and check out a project.
+
+
+ Follow the steps for merging changes from one CVS branch into another.
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent1.xml b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent1.xml
new file mode 100644
index 0000000..c600269
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent1.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ Find out about the major new features in this release
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent2.xml b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent2.xml
new file mode 100644
index 0000000..490435d
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent2.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+ Get the latest updates from Eclipse.org
+
+
+ Join the community, read articles and news on Eclipse.org
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent3.xml b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent3.xml
new file mode 100644
index 0000000..28668e1
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/intro/whatsnewExtensionContent3.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ Learn what you need to do to make your old code work in Eclipse 4.2
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/introData.xml b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/introData.xml
new file mode 100644
index 0000000..2b1c002
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/introData.xml
@@ -0,0 +1,57 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/macosx_narrow_book.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/macosx_narrow_book.css
new file mode 100644
index 0000000..344e5e4
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/macosx_narrow_book.css
@@ -0,0 +1 @@
+h1,h2 { color: Black }
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/narrow_book.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/narrow_book.css
new file mode 100644
index 0000000..09a9aa1
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/narrow_book.css
@@ -0,0 +1 @@
+P.Code {
display: block;
text-align: left;
text-indent: 0.00pt;
margin-top: 0.000000pt;
margin-bottom: 0.000000pt;
margin-right: 0.000000pt;
margin-left: 1.5em;
font-size: 100%;
font-weight: medium;
font-style: Regular;
color: #4444CC;
text-decoration: none;
vertical-align: baseline;
text-transform: none;
font-family: "Courier New";
}
H6.CaptionFigColumn {
display: block;
text-align: left;
text-indent: 0.000000pt;
margin-top: 0.3em;
margin-bottom: 1.1em;
margin-right: 0.000000pt;
margin-left: 0.000000pt;
font-size: 90%;
font-weight: medium;
font-style: Italic;
color: #000000;
text-decoration: none;
vertical-align: baseline;
text-transform: none;
font-family: "Arial";
}
P.Note {
display: block;
text-align: left;
text-indent: 0pt;
margin-top: 1.95em;
margin-bottom: 1.95em;
margin-right: 0.000000pt;
margin-left: 3.0em;
font-size: 110%;
font-weight: medium;
font-style: Italic;
color: #000000;
text-decoration: none;
vertical-align: baseline;
text-transform: none;
font-family: "Arial";
}
EM.UILabel {
font-weight: Bold;
font-style: Regular;
text-decoration: none;
vertical-align: baseline;
text-transform: none;
}
EM.CodeName {
font-weight: Bold;
font-style: Regular;
text-decoration: none;
vertical-align: baseline;
text-transform: none;
font-family:"Courier New";
}
body, html { border: 0px }
/* following font face declarations need to be removed for DBCS */
body, h1, h2, h3, h4, h5, h6, p, table, td, caption, th, ul, ol, dl, li, dd, dt {font: message-box; color: #000000}
pre { font-family: Courier, monospace}
/* end font face declarations */
/* following font size declarations should be OK for DBCS */
body, h1, h2, h3, h4, h5, h6, p, table, td, caption, th, ul, ol, dl, li, dd, dt {font: message-box; }
pre { font-size: 100% }
code,samp { font-size: 100%; }
/* end font size declarations */
body { background: #FFFFFF}
h1 { font-size: 180%; font-weight: medium; margin-top: 0.28em; margin-bottom: 0.05em; color: Highlight }
h2 { font-size: 140%; font-weight: bold; margin-top: 0.22em; margin-bottom: 3; color: Highlight }
h3 { font-size: 110%; font-weight: bold; margin-top: 0.18em; margin-bottom: 3 }
h4 { font-size: 100%; font-weight: bold; margin-top: 0.2em; margin-bottom: 3; font-style: italic }
p { margin-top: 1.0em; margin-bottom: 1.0em }
pre { margin-left: 6; font-size: 90% }
a:link { color: #0000FF }
a:hover { color: #000080 }
a:visited { text-decoration: underline }
ul { margin-top: 0;
margin-bottom: 1.0em;
margin-left : 1.0em;
padding-left: 0;
}
li { margin-top: 0;
margin-bottom: 0;
padding-left: 0;
margin-left: 0;
}
li p { margin-top: 0; margin-bottom: 0 }
ol { margin-top: 0;
margin-bottom: 10;
padding-left: 0;
margin-left: 1.4em }
dl { margin-top: 0; margin-bottom: 10 }
dt { margin-top: 0; margin-bottom: 0; font-weight: bold }
dd { margin-top: 0; margin-bottom: 0 }
strong { font-weight: bold}
em { font-style: italic}
var { font-style: italic}
div.revision { border-left-style: solid; border-left-width: thin;
border-left-color: #7B68EE; padding-left:5 }
th { font-weight: bold }
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/platform.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/platform.jar
new file mode 100644
index 0000000..5cc0f75
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/platform.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin.properties
new file mode 100644
index 0000000..97c51e6
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin.properties
@@ -0,0 +1,64 @@
+###############################################################################
+# Copyright (c) 2000, 2013 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+pluginName=Eclipse Platform
+providerName=Eclipse.org
+
+productName=Eclipse Platform
+productBlurb=Eclipse Platform\n\
+\n\
+Version: 4.2.2\n\
+Build id: {0}\n\
+\n\
+(c) Copyright Eclipse contributors and others 2000, 2013. All rights reserved.\n\
+Visit http://www.eclipse.org/platform\n\
+\n\
+This product includes software developed by the\n\
+Apache Software Foundation http://www.apache.org/
+
+cheatsheet.actionset = Cheat Sheets
+cheatsheet.item = &Cheat Sheets...
+cheatsheet.category.team = Team/CVS
+cheatsheet.cvs.checkout.name= Check out a CVS project
+cheatsheet.cvs.checkout.desc= Learn how to connect to a CVS repository and check out a project.
+cheatsheet.cvs.merge.name= Merge CVS branches
+cheatsheet.cvs.merge.desc= Follow the steps for merging changes from one CVS branch into another.
+shortcut.overview.tooltip = Overview
+shortcut.tutorials.tooltip = Tutorials
+shortcut.samples.tooltip = Samples
+shortcut.whatsnew.tooltip = What's New
+
+productIntroTitle = Welcome to Eclipse
+productIntroBrandingText = Eclipse Project
+introDescription-overview = The Eclipse Platform is a kind of universal tool platform - an open extensible IDE for anything and nothing in particular.
+introDescription-tutorials = Learn how to be productive using Eclipse by completing end-to-end tutorials that will guide you along the way.
+introDescription-samples = Explore Eclipse by installing prefabricated samples (may require Internet connection).
+
+theme.default = Default Theme
+theme.classic = Classic
+theme.gtk = GTK
+theme.mac = Mac
+theme.win7 = Windows 7
+theme.winxpBlue = Windows XP Blue
+theme.winxpOlive = Windows XP Olive
+theme.win7Classic = Windows 7 Classic
+theme.solaris = Solaris
+theme.aix = AIX
+theme.hpux = HPUX
+
+trimmedwindow.label.eclipseSDK = Eclipse SDK
+command.name.exit = Exit
+command.name.showView = Show View
+command.name.save = Save
+command.name.saveAll = Save All
+bindingcontext.name.dialogAndWindows = In Dialog and Windows
+bindingcontext.name.windows = In Windows
+bindingcontext.name.bindingView = In Binding View
+bindingcontext.name.dialogs = In Dialogs
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin.xml b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin.xml
new file mode 100644
index 0000000..c90fb84
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin.xml
@@ -0,0 +1,198 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ %cheatsheet.cvs.checkout.desc
+
+
+
+
+ %cheatsheet.cvs.merge.desc
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin_customization.ini b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin_customization.ini
new file mode 100644
index 0000000..de51636
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin_customization.ini
@@ -0,0 +1,37 @@
+# plugin_customization.ini
+# sets default values for plug-in-specific preferences
+# keys are qualified by plug-in id
+# e.g., com.example.acmeplugin/myproperty=myvalue
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# "%key" are externalized strings defined in plugin_customization.properties
+# This file does not need to be translated.
+
+# WARNING: This file defines the preference overrides for the Platform build
+# (the one with no JDT or PDE), not the SDK build (aka the IDE).
+# For the SDK build, use the plugin_customization.ini file in the
+# org.eclipse.sdk plug-in instead.
+
+# Property "org.eclipse.ui/defaultPerspectiveId" controls the
+# perspective that the workbench opens initially
+org.eclipse.ui/defaultPerspectiveId=org.eclipse.ui.resourcePerspective
+
+# new-style tabs by default
+org.eclipse.ui/SHOW_TRADITIONAL_STYLE_TABS=false
+
+# put the perspective switcher on the top right
+org.eclipse.ui/DOCK_PERSPECTIVE_BAR=topRight
+
+# show progress on startup
+org.eclipse.ui/SHOW_PROGRESS_ON_STARTUP=true
+
+# Welcome theme to use
+org.eclipse.ui.intro/INTRO_THEME = org.eclipse.ui.intro.universal.slate
+
+# Root page links to show in the Universal Welcome
+org.eclipse.ui.intro.universal/INTRO_ROOT_PAGES = overview,tutorials,samples,whatsnew
+
+# Initial page layout of the Universal Welcome
+org.eclipse.ui.intro.universal/INTRO_DATA = product:introData.xml
+
+# Order help books in table of contents
+org.eclipse.help/HELP_DATA = helpData.xml
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin_customization.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin_customization.properties
new file mode 100644
index 0000000..f2f3517
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/plugin_customization.properties
@@ -0,0 +1,14 @@
+###############################################################################
+# Copyright (c) 2000, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# plugin_customization.properties
+# contains externalized strings for plugin_customization.ini
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/splash.bmp.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/splash.bmp.REMOVED.git-id
new file mode 100644
index 0000000..5308cac
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.platform_4.2.2.v201302041200/splash.bmp.REMOVED.git-id
@@ -0,0 +1 @@
+a2d01017281a9e48a2d68beab69fd2e7806ecffd
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.rcp_4.2.1.v201302041200.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.rcp_4.2.1.v201302041200.jar
new file mode 100644
index 0000000..4f4b6e5
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.rcp_4.2.1.v201302041200.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.search_3.8.0.v20120523-1540.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.search_3.8.0.v20120523-1540.jar.REMOVED.git-id
new file mode 100644
index 0000000..444e45d
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.search_3.8.0.v20120523-1540.jar.REMOVED.git-id
@@ -0,0 +1 @@
+7a2fc823a4ae25319020ed52024a881eeb38643a
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.swt.gtk.linux.x86_64_3.100.1.v4236b.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.swt.gtk.linux.x86_64_3.100.1.v4236b.jar.REMOVED.git-id
new file mode 100644
index 0000000..656e1a1
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.swt.gtk.linux.x86_64_3.100.1.v4236b.jar.REMOVED.git-id
@@ -0,0 +1 @@
+7ac92bf25987f41f3aba8b272b69160de215f204
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.swt_3.100.1.v4236b.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.swt_3.100.1.v4236b.jar
new file mode 100644
index 0000000..9e784d4
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.swt_3.100.1.v4236b.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.text_3.5.200.v20120523-1310.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.text_3.5.200.v20120523-1310.jar.REMOVED.git-id
new file mode 100644
index 0000000..c3c3c13
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.text_3.5.200.v20120523-1310.jar.REMOVED.git-id
@@ -0,0 +1 @@
+9d77e5059d7dfa0e3a06771fa53366887b91c351
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.browser_3.4.2.v20130123-162658.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.browser_3.4.2.v20130123-162658.jar.REMOVED.git-id
new file mode 100644
index 0000000..e56c560
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.browser_3.4.2.v20130123-162658.jar.REMOVED.git-id
@@ -0,0 +1 @@
+91c7c13a530621165738ba90c0c221ac27917ed6
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.console_3.5.100.v20120521-2012.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.console_3.5.100.v20120521-2012.jar.REMOVED.git-id
new file mode 100644
index 0000000..f98803e
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.console_3.5.100.v20120521-2012.jar.REMOVED.git-id
@@ -0,0 +1 @@
+1415db6b4f271711ee3ac204a284aa82dddeb690
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.editors_3.8.0.v20120523-1540.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.editors_3.8.0.v20120523-1540.jar.REMOVED.git-id
new file mode 100644
index 0000000..30d581c
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.editors_3.8.0.v20120523-1540.jar.REMOVED.git-id
@@ -0,0 +1 @@
+5d584f5ea6eba52c6494f4c1df9e89c8979b488a
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.externaltools_3.2.100.v20120530-1753.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.externaltools_3.2.100.v20120530-1753.jar.REMOVED.git-id
new file mode 100644
index 0000000..b9445e2
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.externaltools_3.2.100.v20120530-1753.jar.REMOVED.git-id
@@ -0,0 +1 @@
+f2d23cb1f3ee798bcd37a67b150161c5149fb567
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.forms_3.5.200.v20120705-114351.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.forms_3.5.200.v20120705-114351.jar.REMOVED.git-id
new file mode 100644
index 0000000..1ad1cd2
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.forms_3.5.200.v20120705-114351.jar.REMOVED.git-id
@@ -0,0 +1 @@
+5fda331d1c1d76163f175408e9ef51e55f6fec52
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.ide.application_1.0.400.v20120523-1955.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.ide.application_1.0.400.v20120523-1955.jar.REMOVED.git-id
new file mode 100644
index 0000000..c02e60c
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.ide.application_1.0.400.v20120523-1955.jar.REMOVED.git-id
@@ -0,0 +1 @@
+ceff0bf5ae9a85823b3c4bf5aa7fa29c5751fa1e
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.ide_3.8.2.v20121106-165923.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.ide_3.8.2.v20121106-165923.jar.REMOVED.git-id
new file mode 100644
index 0000000..d642107
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.ide_3.8.2.v20121106-165923.jar.REMOVED.git-id
@@ -0,0 +1 @@
+0d02879d39c428b068ea65f0346c2b9488a6dadc
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/.api_description b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/.api_description
new file mode 100644
index 0000000..8eec52a
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/.api_description
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/.options b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/.options
new file mode 100644
index 0000000..8de8a48
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/.options
@@ -0,0 +1,24 @@
+# Debugging options for the org.eclipse.ui.intro.universal.
+
+# Master flag for all org.eclipse.ui.intro.universal plugin debug options.
+org.eclipse.ui.intro.universal/debug = true
+
+# Enable logging of information messages in the plugin. By default, info
+# messages are not logged. Setting this option to true will enable logging
+# trace information messages.
+org.eclipse.ui.intro.universal/trace/logInfo = true
+
+# Enable logging of performance messages in the plugin. By default, performance
+# messages are not logged. Setting this option to true will enable logging
+# trace information messages. (note: enabling info logging does not enable
+# this flag.)
+org.eclipse.ui.intro.universal/trace/logPerformance = false
+
+# Performance flags used by the Performance framework to report failures
+# of specific thresholds.
+
+# Time to create and display the full Intro view.
+# org.eclipse.ui.intro/perf/createView = 1000
+
+# Time needed to switch between Intro standby states.
+# org.eclipse.ui.intro/perf/setStandbyState = 300
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/ECLIPSE_.RSA b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/ECLIPSE_.RSA
new file mode 100644
index 0000000..aea8620
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/ECLIPSE_.RSA differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/ECLIPSE_.SF b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/ECLIPSE_.SF
new file mode 100644
index 0000000..80f070b
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/ECLIPSE_.SF
@@ -0,0 +1,1208 @@
+Signature-Version: 1.0
+SHA1-Digest-Manifest: +seXZ4xz3pYvyr3JMkhA8hkZJGU=
+Created-By: 1.6.0 (IBM Corporation)
+SHA1-Digest-Manifest-Main-Attributes: 6kzl62q3Ft2eEp9b7AjFWAB9PcY=
+
+Name: themes/shared/graphics/contentpage/wn-fs_med.gif
+SHA1-Digest: g4D4b7wuqTNzRVube5QmKC37bZQ=
+
+Name: themes/slate/graphics/icons/ctool/webresources-select.png
+SHA1-Digest: os+7sc8e6OnYZcVvnz/yAMw64tU=
+
+Name: icons/full/obj16/inew_obj.gif
+SHA1-Digest: eRsScWLx85QUBzF7yK5EkT770CE=
+
+Name: themes/circles/swt/migrate.properties
+SHA1-Digest: RnBLNqobyqHJFvY+WbfB7MeeODU=
+
+Name: themes/circles/graphics/launchbar/migrate16.png
+SHA1-Digest: qOwRgNR0NJh2gKIrVlxWfH7Wi3w=
+
+Name: themes/circles/graphics/icons/ctool/wb_nav_32.gif
+SHA1-Digest: E0ITtJWnQdOwBI7A63vmBKYmKJk=
+
+Name: themes/circles/html/font-relative.css
+SHA1-Digest: tUx0kOFdiFK+vgId6wNuZ2ILYZ8=
+
+Name: themes/purpleMesh/swt/webresources.properties
+SHA1-Digest: QfLszx7vRd8waUr7+oxtskHNArY=
+
+Name: themes/slate/graphics/launchbar/migrate16.png
+SHA1-Digest: ayPNPwCVStgADMkH9M8u10dEbOg=
+
+Name: icons/full/obj16/icallout_obj.gif
+SHA1-Digest: Kv6Ia9Pr7KqdvrrCJXgYdMCga6A=
+
+Name: themes/circles/graphics/icons/ctool/tutorials_tophov.gif
+SHA1-Digest: KaCk6TkrNhd2OS1m32y6SFvUQjs=
+
+Name: themes/circles/swt/overview.properties
+SHA1-Digest: dxfnqH/LIpGVO5/H48/Co1vooSQ=
+
+Name: themes/circles/html/whatsnew.css
+SHA1-Digest: Pacc+BuJXkSeS/6P6vUy+/mVp0A=
+
+Name: themes/shared/html/shared.css
+SHA1-Digest: crEguiJWE7d2fyBBNVkLMurs7u0=
+
+Name: themes/purpleMesh/graphics/icons/etool/firsteps48.gif
+SHA1-Digest: pyhExq17Rqus88SE1gSeerjIk84=
+
+Name: themes/slate/graphics/icons/ctool/tu_nav_32.gif
+SHA1-Digest: XZjEi83SrkVDPJmkH0eHwBltxf8=
+
+Name: themes/slate/graphics/rootpage/samples48_hov.gif
+SHA1-Digest: 634EWkbAYNP7qS102sQltfOzxD8=
+
+Name: themes/shared/graphics/icons/ctool/widget_closed_rtl.gif
+SHA1-Digest: yKDpX4nR40C26tvbU0QUyfpTIe0=
+
+Name: themes/circles/graphics/contentpage/tu_banner.jpg
+SHA1-Digest: 9LU6Z+jPPzhwonByip7zOjz+Wew=
+
+Name: themes/circles/graphics/icons/ctool/wb_nav.png
+SHA1-Digest: Hz8erAP6PxWl6mdmALgFQZ6rHNA=
+
+Name: themes/circles/graphics/icons/ctool/fs_nav.png
+SHA1-Digest: 9ZyDPJBbgq3Qm+eAGh1zdhi9ysk=
+
+Name: icons/welcome16.gif
+SHA1-Digest: V1+WjELc7OwG7ZnrhEYLlXvbpWE=
+
+Name: themes/circles/graphics/icons/ctool/migrate.png
+SHA1-Digest: bjbqV9RpASAtwhOz7+8PcXA0NSw=
+
+Name: themes/circles/html/rtl.css
+SHA1-Digest: 8wVt0d9GAUKHlCBSi/vG90jXQUE=
+
+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew48sel.gif
+SHA1-Digest: c7bdT4i6cjAm6zcUNypiOr2OS5k=
+
+Name: themes/shared/graphics/icons/ctool/widget_closed_hov_rtl.gif
+SHA1-Digest: EuXcHObzV2612U2DjQyZlefkskQ=
+
+Name: themes/purpleMesh/graphics/icons/etool/webrsrc48sel.gif
+SHA1-Digest: x6crnl2+ZiZNMdBFeb4C94S/pow=
+
+Name: themes/circles/graphics/icons/ctool/wn_nav.png
+SHA1-Digest: rrR5bDLi89KX/xOPqmWhq3koD1U=
+
+Name: themes/circles/graphics/launchbar/tutorials16.png
+SHA1-Digest: VoPt5dok7nFgh7IHW6eK9dV7L24=
+
+Name: themes/slate/graphics/icons/ctool/migrate.png
+SHA1-Digest: zZNgvgCCkRxzER4saBd3xBWkfU0=
+
+Name: themes/slate/graphics/standby/wn_standbyhov.gif
+SHA1-Digest: qRYU61gSmQPjlS5wCfZvMhAPEp0=
+
+Name: themes/purpleMesh/graphics/icons/ctool/firsteps72.gif
+SHA1-Digest: ARVlQEp9GeLrHjDN4cZ7V/IWrd8=
+
+Name: themes/slate/graphics/icons/ctool/firststeps-select.gif
+SHA1-Digest: o1HHpOXZp6uT1nBu963GSFujPH8=
+
+Name: themes/circles/graphics/icons/ctool/wr_nav.png
+SHA1-Digest: fRVPpOb8tisIfM9YROkSBCvJ5pI=
+
+Name: themes/circles/graphics/standby/wb_standbyhov.gif
+SHA1-Digest: lobGsW2DF34dXuu4VFfcrz+dg3c=
+
+Name: themes/circles/graphics/icons/obj48/newhov_obj.gif
+SHA1-Digest: cwQdX22yDfLP5bVJE9eJF86EFF0=
+
+Name: themes/purpleMesh/graphics/icons/etool/tutorials72.gif
+SHA1-Digest: kIhjXr2y3uh6QnIxtq9XMRxDn8k=
+
+Name: themes/slate/graphics/standby/wn_standby.gif
+SHA1-Digest: e+qTVlL1+aHCcJWhh19xWZmzu5s=
+
+Name: themes/purpleMesh/graphics/contentpage/migrate_wtr.jpg
+SHA1-Digest: a/QcFu26oZ/i3g7k+yAEWo7k5hY=
+
+Name: themes/circles/graphics/icons/ctool/ov_nav_64.gif
+SHA1-Digest: xrr7IJCqmX2C5xvCQW28vhfuOcg=
+
+Name: themes/purpleMesh/graphics/contentpage/section3.gif
+SHA1-Digest: 3sus86ccku05aAqMn9VCPndrPBw=
+
+Name: themes/circles/graphics/icons/ctool/mi_nav_hover.gif
+SHA1-Digest: q/96M0kKrJeOPkrWAT2N+tGGk3s=
+
+Name: themes/purpleMesh/swt/whatsnew.properties
+SHA1-Digest: vUxMvUZmCL3YN89p33Ez9X8ICO4=
+
+Name: themes/slate/graphics/rootpage/firststeps48_hov.gif
+SHA1-Digest: P86nXECjpze8PbI3FM3eFHkm+Lk=
+
+Name: themes/circles/swt/firststeps.properties
+SHA1-Digest: 5tqsudk/R/1lCEbhDUX0rnhOkCQ=
+
+Name: themes/purpleMesh/graphics/icons/etool/overview48.gif
+SHA1-Digest: 89LuwEnmFVFcrYwOdGX+bEA7/KM=
+
+Name: themes/purpleMesh/graphics/icons/ctool/tutorials48.gif
+SHA1-Digest: cwmzAw4TBv+PQgs4YrD9gDw2Ps4=
+
+Name: themes/purpleMesh/html/font-absolute.css
+SHA1-Digest: 0wDpvhSsczlKTj9djfxQ5ENjEHw=
+
+Name: themes/purpleMesh/graphics/icons/dtool/back.gif
+SHA1-Digest: XlK7L7TiiONgpcL9uktiiGmofl8=
+
+Name: themes/slate/graphics/launchbar/whatsnew16.png
+SHA1-Digest: mQVW9+8NecwhNWgzJgNlDBcxaKs=
+
+Name: themes/purpleMesh/graphics/icons/ctool/migrate48sel.gif
+SHA1-Digest: DlIcxxNoIEYuDve+LFuFNw0KGG8=
+
+Name: themes/circles/html/migrate.css
+SHA1-Digest: Io/nl2lGQsSNtmShvxFj1sBzgMk=
+
+Name: themes/circles/html/standby.css
+SHA1-Digest: BB5vT8i6rIB580zgFNu9DHUox54=
+
+Name: themes/shared/graphics/contentpage/ov_med.gif
+SHA1-Digest: iiTKJ+/qWUGjQ6zU2+3qkI2UrKg=
+
+Name: themes/purpleMesh/graphics/icons/ctool/wb48.gif
+SHA1-Digest: rWX2aVi7U3PQ9oyJFekVUzKsQWc=
+
+Name: themes/circles/graphics/icons/ctool/tu_nav_hover.gif
+SHA1-Digest: uYgUnW0vffa7AXJDv2xR+VSo9Pg=
+
+Name: themes/purpleMesh/graphics/icons/ctool/overview72.gif
+SHA1-Digest: 60dEowqMgf4SCZMOqG/JpzLj7DY=
+
+Name: themes/slate/html/migrate.css
+SHA1-Digest: hcVhm6EOYoE4iCqs8i9Z4t3VWsI=
+
+Name: themes/slate/html/standby.css
+SHA1-Digest: mwzfJyl+pkrSjRtKQID7YBAjuB4=
+
+Name: themes/circles/graphics/icons/ctool/wn_nav_32.gif
+SHA1-Digest: lQhyX2A/+T1vu7AHgHmAdMPJL34=
+
+Name: themes/slate/graphics/rootpage/overview48_hov.png
+SHA1-Digest: Lyw9EfbA+ECmHubXo+hmlO/xDEI=
+
+Name: themes/circles/graphics/icons/ctool/migrate_tophov.gif
+SHA1-Digest: BIFpZUBo5LTGxAgwA2DjUErl7aw=
+
+Name: themes/circles/html/overview.css
+SHA1-Digest: OSQR/YVuPk6nCfCSCUftKIZJ5Es=
+
+Name: themes/slate/preview.png
+SHA1-Digest: uOalswP/Dl7ufM1Ko50b3osY7S4=
+
+Name: themes/circles/graphics/icons/ctool/firststeps.gif
+SHA1-Digest: u8hBUKje68m15K9HmhRViDGyL0Y=
+
+Name: themes/slate/graphics/rootpage/samples48.gif
+SHA1-Digest: qpzjgzvyd5KZAIeAD0+PUzJ5NEE=
+
+Name: themes/purpleMesh/html/firststeps.css
+SHA1-Digest: 9FdW5j9hkbSjH3aZXwrmWZdym2E=
+
+Name: themes/slate/swt/migrate.properties
+SHA1-Digest: hoTfgZ/Y41RoUz4y6LXKz6Yvmqw=
+
+Name: themes/slate/graphics/icons/ctool/tu_nav.png
+SHA1-Digest: QptMtQOmQDoDZ9Vq/dfKdj0pvSs=
+
+Name: themes/slate/html/font-relative.css
+SHA1-Digest: UT05tvIk2jCid+LM7t3bm4zOuIY=
+
+Name: themes/circles/graphics/icons/ctool/mi_nav_32.gif
+SHA1-Digest: IIKBdBw4ER43nMCbg2TYs9jLfM8=
+
+Name: themes/circles/graphics/icons/ctool/workbench_midhov.gif
+SHA1-Digest: KdO2URBysFpSJrlhVnUkPcqMzhs=
+
+Name: themes/purpleMesh/graphics/swt/form_banner.gif
+SHA1-Digest: agcOlycIYp6+B2Y7O27ZvGcKQwE=
+
+Name: themes/circles/graphics/icons/ctool/root_midhov.gif
+SHA1-Digest: qnMDaiSby1RH5YBolr3KVTRzWQo=
+
+Name: themes/circles/graphics/standby/ov_standby.gif
+SHA1-Digest: jeihbsxKFQ3iDSdZMTIWdrJI48M=
+
+Name: themes/slate/swt/tutorials.properties
+SHA1-Digest: siLo70LYVmiYzVqDN/k1RLWzbIs=
+
+Name: themes/circles/graphics/icons/ctool/sa_nav_32.gif
+SHA1-Digest: BcKEHJvATs4/BqfEsPgA0joJd9Y=
+
+Name: themes/slate/graphics/icons/ctool/migrate-select.gif
+SHA1-Digest: GqyboPzStqkM3UYpUv4SJqMhnmk=
+
+Name: themes/purpleMesh/graphics/icons/ctool/firsteps48sel.gif
+SHA1-Digest: ugzJxuex3RlJ7Q+UNJLbp8LNuFs=
+
+Name: themes/purpleMesh/graphics/contentpage/samples_wtr.jpg
+SHA1-Digest: PSVDSrd6C0WDUM0JbfBVw49oKuQ=
+
+Name: themes/circles/graphics/icons/ctool/sa_nav.png
+SHA1-Digest: QTuUi+brurlbvAHYvtukeo4hezY=
+
+Name: themes/slate/graphics/launchbar/webresources16.png
+SHA1-Digest: xufhpZXbOY7O2FJ0EOZKo6stdLc=
+
+Name: themes/slate/graphics/icons/ctool/mi_nav.png
+SHA1-Digest: aFmb0IpPLm9SymHNvBldaj20tQg=
+
+Name: themes/slate/graphics/rootpage/migrate48.gif
+SHA1-Digest: GyLi9+cBSQCQJ6UgLyN9rGmgxlk=
+
+Name: themes/circles/graphics/icons/ctool/cpt_midhov.gif
+SHA1-Digest: TV/CndDQVZeLlDyd+7ha5a2/YtA=
+
+Name: themes/circles/graphics/icons/obj48/new_obj.gif
+SHA1-Digest: /V7T2k6XUN4Uxwg7PFAjvoEBoas=
+
+Name: themes/purpleMesh/graphics/launchbar/whatsnew.gif
+SHA1-Digest: HZrHWXJqmb/u9EGrYxBo5mKrzvs=
+
+Name: themes/slate/graphics/icons/ctool/whatsnew.png
+SHA1-Digest: 6ggZSh719rsO/D0JhDMz9OEXFYU=
+
+Name: themes/slate/swt/root.properties
+SHA1-Digest: 6iCmd1CDStKtdo94zx1EmFAqJmA=
+
+Name: themes/slate/graphics/rootpage/firststeps48.gif
+SHA1-Digest: /Mmg9op/++UvV/A+As2xGD/8CLI=
+
+Name: themes/purpleMesh/graphics/icons/ctool/overview48sel.gif
+SHA1-Digest: uP0uCKdGXLI48c0KK3abD7YY8oo=
+
+Name: themes/circles/graphics/icons/ctool/fs_nav_32.gif
+SHA1-Digest: 03HVCDXBVZPjli1tHI8e6EpWLlU=
+
+Name: themes/slate/graphics/rootpage/root_banner.jpg
+SHA1-Digest: n7ZfrJ3GwQOyVL4MOoI/G07IC8g=
+
+Name: themes/purpleMesh/graphics/contentpage/section2.gif
+SHA1-Digest: cZ+01ZA+CK3U8UgsAGDlu5Nl/1Y=
+
+Name: themes/slate/swt/overview.properties
+SHA1-Digest: Uv1u/8X0S5qqPMJxSyZv8oUtZao=
+
+Name: themes/slate/graphics/contentpage/banner_extension.jpg
+SHA1-Digest: NekY7d51JRcroYcLP4X4RaCIQKc=
+
+Name: themes/circles/graphics/standby/mi_standby.gif
+SHA1-Digest: GZRVo3rq3uXADZMIRao9+j3abu0=
+
+Name: themes/purpleMesh/graphics/icons/etool/webrsrc48.gif
+SHA1-Digest: NxD5ybp1J3PX2YpNJHv/xAZZolo=
+
+Name: themes/slate/graphics/icons/ctool/whatsnew-select.gif
+SHA1-Digest: TW7PjuzcAS8hIMHkc00LSrIUnos=
+
+Name: themes/purpleMesh/html/ltr.css
+SHA1-Digest: nnxeF8h2Cb5AWdVJnx07Natd8ME=
+
+Name: themes/slate/html/tutorials.css
+SHA1-Digest: vWx1UG9xEdUNOlKbOcW0NKkKwQw=
+
+Name: themes/slate/html/shared.css
+SHA1-Digest: 4tqToow/qbtVb2mG3tyVpvgo1dw=
+
+Name: themes/purpleMesh/graphics/icons/ctool/firsteps16.png
+SHA1-Digest: a/0HK4wfeeh5TahwmW/DsCIg3oQ=
+
+Name: themes/circles/html/root.css
+SHA1-Digest: UAjfuJsBvCzCeoc1mbFowYSldQc=
+
+Name: themes/circles/graphics/icons/ctool/workbench_tophov.gif
+SHA1-Digest: hNK2dMZHycA5wImaVQaLg5JbbB0=
+
+Name: themes/slate/graphics/standby/tu_standby.gif
+SHA1-Digest: UOeWghDGiam8u8+KldYhPFxoXuo=
+
+Name: themes/purpleMesh/graphics/icons/etool/firsteps72.gif
+SHA1-Digest: wiQ2V1uB6QBg2/U0V6cQYlhdZTo=
+
+Name: themes/purpleMesh/swt/standby.properties
+SHA1-Digest: kz2Je1Q9V4GRIscHe/+VsoFAfC4=
+
+Name: themes/slate/graphics/icons/ctool/ov_nav_32.gif
+SHA1-Digest: R2JbRey2ODfsEZMFSiutiFvmWhk=
+
+Name: themes/purpleMesh/html/shared.css
+SHA1-Digest: wKu4ekuBsZJSLOe9WyIvV3fGhmo=
+
+Name: themes/circles/graphics/contentpage/ov_banner.jpg
+SHA1-Digest: hJ7QZAKi3i5MDSK1ATTtSJaNaVA=
+
+Name: themes/circles/graphics/icons/ctool/nav_rightedgehov.gif
+SHA1-Digest: GF04sgXI3l6A73ZJWWjek3ajBmw=
+
+Name: themes/purpleMesh/graphics/icons/etool/samples48sel.gif
+SHA1-Digest: 69k3defxrYpGh4PhEyRMO5Vi5UA=
+
+Name: themes/purpleMesh/graphics/contentpage/backgroundcurve.gif
+SHA1-Digest: nOgIqKO1hwHstcMcsM+LzixlOZg=
+
+Name: themes/circles/swt/root.properties
+SHA1-Digest: E5IAZgK2NJUP1F46LWki+enJfLk=
+
+Name: themes/purpleMesh/graphics/icons/ctool/forward.gif
+SHA1-Digest: cquFAtRx0Txit4Vm2loEoHJ+cIg=
+
+Name: themes/slate/html/webresources.css
+SHA1-Digest: TJcQVS4A6XYddwU+NQ2Zad0MtC0=
+
+Name: themes/purpleMesh/graphics/icons/etool/forward.gif
+SHA1-Digest: +q/20TWhTzDUahnEbne7nK6+OxU=
+
+Name: themes/slate/graphics/contentpage/wr_banner.jpg
+SHA1-Digest: PVmx1PDj4UgUTU0wp1GWqGtdwsE=
+
+Name: themes/purpleMesh/graphics/icons/etool/samples48.gif
+SHA1-Digest: 78H0vGlpPUIjody88fklr90khF8=
+
+Name: themes/slate/html/root.css
+SHA1-Digest: 1AONs66wkTgdw6JBcWdOAe4RtHw=
+
+Name: themes/slate/graphics/rootpage/whatsnew48.gif
+SHA1-Digest: ujvbc8lcJx3ejw+leIWtws06+cI=
+
+Name: themes/slate/graphics/icons/ctool/tutorials-select.png
+SHA1-Digest: 0idtv+CNku7484JebhoXHAiAMj0=
+
+Name: themes/purpleMesh/graphics/launchbar/overview.gif
+SHA1-Digest: VFV2qgY3AyttX3JDb78JZ3+K8dY=
+
+Name: themes/circles/graphics/icons/ctool/webresources_tophov.gif
+SHA1-Digest: 4/Ztv8w0TUF7HULsf1OUMUsI788=
+
+Name: themes/circles/graphics/icons/ctool/whatsnew.gif
+SHA1-Digest: sx0cpRs5vjaMIYssTVlTSyvQtUo=
+
+Name: themes/circles/graphics/icons/ctool/samples.gif
+SHA1-Digest: id/tsFIrrpkCbPQCPQN825ioMvc=
+
+Name: themes/purpleMesh/graphics/contentpage/webrsrc_wtr.jpg
+SHA1-Digest: Wq6LSlmt5gYzI6AXkIa6ldIIc4w=
+
+Name: themes/purpleMesh/graphics/icons/ctool/overview16.png
+SHA1-Digest: Ao5Abg5BSbKk4X0BbfQEc+OMvkM=
+
+Name: themes/slate/graphics/icons/ctool/overview.png
+SHA1-Digest: JWs02I/WMHjDq99DCVJvtyCkERQ=
+
+Name: themes/purpleMesh/graphics/contentpage/background.jpg
+SHA1-Digest: wLQFnis+GVZLMyszW3V+N/9DNdg=
+
+Name: themes/purpleMesh/graphics/icons/etool/overview72.gif
+SHA1-Digest: lUMx0uGLh63QRQwVTupF10T8Kog=
+
+Name: themes/slate/html/rtl.css
+SHA1-Digest: r3aNJ0edoWPwbwFP2upWgj93y9U=
+
+Name: themes/circles/html/font-absolute.css
+SHA1-Digest: 4eZcqJkoMPph/5ZVsn2zuo9N+EY=
+
+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew48.gif
+SHA1-Digest: F1cvqHdNJc3uAuxuDAVQ8o7sSCw=
+
+Name: themes/purpleMesh/graphics/icons/ctool/tutorials72.gif
+SHA1-Digest: kp6Keiy+ANG5Okz6MDJzeoXCMqM=
+
+Name: themes/purpleMesh/graphics/icons/etool/migrate48.gif
+SHA1-Digest: qQpYW/r5zXrgvqvwz6HONWBlBM8=
+
+Name: themes/slate/graphics/standby/fs_standby.gif
+SHA1-Digest: ysua65EOe/pPgVmtZ3NYcuboxB8=
+
+Name: themes/circles/graphics/icons/ctool/firststeps_tophov.gif
+SHA1-Digest: JohW0yL7JpgatFwbwOPeF4SHRgs=
+
+Name: themes/slate/graphics/standby/sa_standby.gif
+SHA1-Digest: QTDS8wQ5HwUz3dquK5n6a/kekOg=
+
+Name: themes/circles/graphics/icons/ctool/workbench.png
+SHA1-Digest: 1Ba08N6ckjKrE5s+K1N5OrnbNTs=
+
+Name: themes/circles/graphics/icons/ctool/root_midhov2.gif
+SHA1-Digest: bzi8X0J1ve2JhIgD9M9yGIXyLxA=
+
+Name: themes/circles/swt/webresources.properties
+SHA1-Digest: gLqZuchBV+fHESZbT9pc2c8IbK0=
+
+Name: themes/purpleMesh/graphics/launchbar/webresources16.png
+SHA1-Digest: j+oOC+m+7ezObQPYOZGBMzCo/u4=
+
+Name: themes/slate/graphics/rootpage/webresources48.png
+SHA1-Digest: tFozmyLRaLaao3q/NV1cvbch/7k=
+
+Name: themes/circles/graphics/standby/mi_standbyhov.gif
+SHA1-Digest: AFU0cRERBIat/N4jnXTr40CJCUQ=
+
+Name: themes/shared/graphics/contentpage/grey_callout.gif
+SHA1-Digest: EF+apqbjiVvAa7m2qEXKIzYUTKs=
+
+Name: themes/purpleMesh/graphics/contentpage/section1.gif
+SHA1-Digest: etN4AI95gu487mkd9aB2K6Ps3r8=
+
+Name: themes/slate/html/whatsnew.css
+SHA1-Digest: M6tNal+JVhQ/BhqmpbXnvgQYxfc=
+
+Name: themes/circles/graphics/icons/ctool/tutorials.png
+SHA1-Digest: P4Kgnz0iQ31Xj0oobcA3qUxh0ws=
+
+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc48.gif
+SHA1-Digest: zWJBswCVbgPVObJ4a12xgGt0TwE=
+
+Name: themes/slate/graphics/icons/ctool/arrow_rtl.gif
+SHA1-Digest: 7exnuqC65TE4uX8cgxlDOInIKqU=
+
+Name: themes/circles/graphics/icons/ctool/ov_nav_hover.gif
+SHA1-Digest: YzV+tZ4YSI0OBHwjdcjDK0kA+z0=
+
+Name: themes/circles/graphics/icons/ctool/wn_nav_64.gif
+SHA1-Digest: CuWl/H+lKwNLJTgQ5rx2mdwRpQ8=
+
+Name: themes/circles/graphics/icons/ctool/workbench_bottomhov.gif
+SHA1-Digest: N33Xx/CMHVLwrWGGlW6ljQoq1xo=
+
+Name: themes/slate/graphics/rootpage/workbench48.png
+SHA1-Digest: dqz3JXh1PvgGut3E9SftNpvGImY=
+
+Name: about.html
+SHA1-Digest: M+fykt9heyWoEv1LNiIEeBhi/2Q=
+
+Name: themes/slate/graphics/rootpage/webresources48_hov.gif
+SHA1-Digest: Lz/gwjqz1EiK4fEU49FwH9JmTrI=
+
+Name: themes/slate/html/firststeps.css
+SHA1-Digest: Z753GjoOP2BLMCjgq9otwGAV8q4=
+
+Name: themes/circles/graphics/icons/ctool/mi_nav_64.gif
+SHA1-Digest: /6E3GSTWkn1rSSv8nRu7ZGDI5Do=
+
+Name: themes/circles/swt/whatsnew.properties
+SHA1-Digest: CatjHspqGSpTJKIp9StlbBo5m0E=
+
+Name: themes/circles/graphics/icons/ctool/sa_nav_hover.gif
+SHA1-Digest: eo3QB+njI7IlfkmZmBXYmR5GAEY=
+
+Name: themes/purpleMesh/graphics/icons/ctool/tutorials48sel.gif
+SHA1-Digest: s//j4/vjCRXn0DDxxqa52B3pyGU=
+
+Name: themes/circles/graphics/icons/ctool/sa_nav_64.gif
+SHA1-Digest: tmmMbGmvroC4N/u4rlAcIfMkGDM=
+
+Name: themes/circles/graphics/icons/ctool/overview.gif
+SHA1-Digest: qIrkbkoNDW1ToZ7vvs0Na/s8JFk=
+
+Name: themes/slate/graphics/rootpage/tutorials48_hov.png
+SHA1-Digest: pK/hba/b+vQtcBY1i4d3kYUtDv0=
+
+Name: themes/circles/graphics/icons/ctool/overview_bottomhov.gif
+SHA1-Digest: wX9dXHV2FYWJWl6LQ63qLaHvVtI=
+
+Name: themes/circles/graphics/standby/wn_standby.gif
+SHA1-Digest: lzoFOcQTxRavIf7LR7okgyTh1MA=
+
+Name: themes/slate/graphics/icons/ctool/wb_nav_32.gif
+SHA1-Digest: Yvn/MQ+naKlAbP3IS9CBowI86cs=
+
+Name: themes/purpleMesh/graphics/icons/ctool/samples48.gif
+SHA1-Digest: lHdsyvz00Jan6waGscAzqAYwC3A=
+
+Name: themes/slate/graphics/rootpage/tutorials48.gif
+SHA1-Digest: M+4dqfI2bpZp6uDJ4BUFwLPW/yA=
+
+Name: themes/circles/graphics/launchbar/overview16.png
+SHA1-Digest: Droy5JKc8rSInbFfC0/Gq098fDQ=
+
+Name: themes/circles/graphics/standby/ov_standbyhov.gif
+SHA1-Digest: qIxHOTOCOUloOKsA/wgpkUy3dFc=
+
+Name: themes/slate/graphics/icons/ctool/webresources-select.gif
+SHA1-Digest: 8Cv1H3fsZklsZxg5TTsSQo+WlG4=
+
+Name: themes/purpleMesh/preview.png
+SHA1-Digest: Kn3AvPfDEMTopfc9ip8ySBKf5RQ=
+
+Name: themes/slate/graphics/rootpage/migrate48_hov.png
+SHA1-Digest: vOQlu+RpFEaOqQJbiZoYlY3nsCU=
+
+Name: themes/circles/graphics/icons/ctool/fs_nav_64.gif
+SHA1-Digest: s2pB28B2OgQjTQFl61uJ3kSR4js=
+
+Name: themes/circles/graphics/icons/ctool/overview_midhov.gif
+SHA1-Digest: hfeH61+W0mY1vrxZpPWOCgd2VAw=
+
+Name: themes/purpleMesh/html/webresources.css
+SHA1-Digest: OUHwKpqTA4TzUmTjt3pXG+u0Y+M=
+
+Name: themes/purpleMesh/graphics/root/background.jpg
+SHA1-Digest: uGAyBMFAulKTW35Y1on8wDqO9QU=
+
+Name: themes/purpleMesh/graphics/icons/etool/migrate48sel.gif
+SHA1-Digest: du/TWd2fH3emHpxGjKGLM5q8OAc=
+
+Name: themes/circles/html/ltr.css
+SHA1-Digest: mNUmBOD3D/E4HlyWdDs2dE91vkI=
+
+Name: themes/slate/graphics/contentpage/tu_banner.jpg
+SHA1-Digest: G0czeYWa72mjuj4WNuMoORG+XSE=
+
+Name: themes/purpleMesh/graphics/icons/etool/webrsrc72.gif
+SHA1-Digest: tmmt3wg9gaRNOsCY9/bw9IdiJUw=
+
+Name: themes/slate/html/overview.css
+SHA1-Digest: 1uUtcoJFgCnpf9PfHEQDxZna9oA=
+
+Name: icons/full/obj16/ilow_obj.gif
+SHA1-Digest: AeAIhECiTxTSrP5Fiqt5FyJBpM0=
+
+Name: themes/purpleMesh/graphics/icons/ctool/migrate48.gif
+SHA1-Digest: xDBQf0i2IB1ffnSorwgZRHw+9l4=
+
+Name: themes/slate/graphics/launchbar/tutorials16.png
+SHA1-Digest: SqseXs9r49EveUOjeNuWZz+FqRk=
+
+Name: themes/circles/html/firststeps.css
+SHA1-Digest: oYGGaUJXE0ywRATRWknRI7eDN9s=
+
+Name: themes/circles/graphics/icons/ctool/fs_nav_hover.gif
+SHA1-Digest: cF9yXz/k2USPI4wntdVH5lFplJQ=
+
+Name: themes/slate/graphics/standby/wb_standbyhov.gif
+SHA1-Digest: lND1CpaBKCbGvCmcIk1Jxr7qxI4=
+
+Name: themes/circles/graphics/standby/tu_standbyhov.gif
+SHA1-Digest: OHB7oy52x8oEaY4AU/z8PqYQotg=
+
+Name: themes/slate/html/font-absolute.css
+SHA1-Digest: 8KhGPSwQk728Jh5+mNPe9VKyEqQ=
+
+Name: themes/circles/swt/standby.properties
+SHA1-Digest: jhwOyyIkPm83m3M2smp4w68VWU0=
+
+Name: themes/circles/graphics/icons/ctool/migrate.gif
+SHA1-Digest: ojGLDLfkhAjjald8nSXaI1lnVgg=
+
+Name: themes/circles/graphics/icons/ctool/webresources.png
+SHA1-Digest: XmoXn4Ilf55ncgYDrbiEEq3O2Ts=
+
+Name: icons/full/obj16/image_obj.gif
+SHA1-Digest: lMIn95+1c+iB2gk+iiS9xyfOEFk=
+
+Name: themes/purpleMesh/swt/tutorials.properties
+SHA1-Digest: WlAQ/8/P1Fv8eW2YRvKvJPBaHZI=
+
+Name: themes/slate/graphics/icons/ctool/overview-select.png
+SHA1-Digest: JuSWTtVCUj7cezEdMC+F/tFdI7c=
+
+Name: themes/shared/graphics/contentpage/wn-fs_high.gif
+SHA1-Digest: nwj9eRAksHaGuy+NFhL4LebnK3c=
+
+Name: themes/circles/graphics/icons/ctool/tu_nav.png
+SHA1-Digest: NJg5QlgKxs60ES6wnUGWsSA5h3g=
+
+Name: themes/purpleMesh/graphics/root/brandmark.gif
+SHA1-Digest: bhWOEJCCFG3PKn2AnUITjnNDjcM=
+
+Name: themes/purpleMesh/graphics/icons/ctool/tutorials16.png
+SHA1-Digest: aYfYYzleZ+ZAE4q6zQ83rW7VQ/0=
+
+Name: themes/slate/graphics/icons/ctool/samples-select.png
+SHA1-Digest: pfUR4LuPuwkaVxgBRrlBnc+h02Q=
+
+Name: themes/slate/graphics/rootpage/overview48.png
+SHA1-Digest: ebNKFer6BfGOPcJHHBVGGqDMhsE=
+
+Name: themes/purpleMesh/graphics/icons/etool/samples72.gif
+SHA1-Digest: r2pWetW8OjMuplKYLQXw0X4yzuE=
+
+Name: themes/circles/graphics/standby/fs_standbyhov.gif
+SHA1-Digest: gaXt2pI8mmo0rEo01S51DCuKjOc=
+
+Name: themes/purpleMesh/graphics/icons/etool/whatsnew48.gif
+SHA1-Digest: lWfbzmNx6i35j8ORUDvCto1uAZc=
+
+Name: themes/purpleMesh/graphics/icons/ctool/wb16.png
+SHA1-Digest: up+uMe3sVZCJMnvxhNkgjVT2abY=
+
+Name: themes/circles/graphics/icons/ctool/mi_nav.png
+SHA1-Digest: MXII8Bz8VCao4+zS2hwe7eDh7Sk=
+
+Name: themes/slate/graphics/icons/ctool/ov_nav.png
+SHA1-Digest: kgbCTAH8WaovM3EcUI9T3rsJV+4=
+
+Name: themes/circles/graphics/icons/ctool/wr_nav_32.gif
+SHA1-Digest: ULVD9wG/rtOg/UcSUO7FEvJehO8=
+
+Name: themes/slate/graphics/rootpage/workbench48_hov.png
+SHA1-Digest: JthFEUB98W5dcI0/mU5hawyK4c8=
+
+Name: themes/circles/graphics/icons/ctool/overview_tophov.gif
+SHA1-Digest: xVRhaCgSky6qLi9BrY7DsaE2bvY=
+
+Name: icons/full/obj16/ihigh_obj.gif
+SHA1-Digest: V0EQPr7+pD7tB8JKSV3MKkrYx98=
+
+Name: themes/purpleMesh/graphics/icons/etool/home.gif
+SHA1-Digest: 6WqOV8XouOUvTUGiatZZD4sW8oE=
+
+Name: themes/purpleMesh/graphics/contentpage/whatsnew_wtr.jpg
+SHA1-Digest: dI/3dz9hXc5nHtjbBYmXqYjJyQk=
+
+Name: themes/purpleMesh/graphics/icons/etool/back.gif
+SHA1-Digest: UWSZDd5u+LAE+Q9vWxFdmsJoiGA=
+
+Name: themes/slate/graphics/icons/ctool/wn_nav_32.gif
+SHA1-Digest: a2l0lo+rs2anYZpgA7qXL9B+t+Y=
+
+Name: themes/circles/graphics/contentpage/wn_banner.jpg
+SHA1-Digest: I2SUS0kfBjo1JvwQsZMamIiAkOE=
+
+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew72.gif
+SHA1-Digest: NKAkgxq0wkJVIjKYL1CnVBTwqaM=
+
+Name: themes/purpleMesh/graphics/icons/etool/migrate72.gif
+SHA1-Digest: WRlWNj7lMDFi6IkfE68j8JgaPoE=
+
+Name: themes/shared/graphics/icons/ctool/widget_open.gif
+SHA1-Digest: OP0AXWaRapQtTZx7JNXoy0H3afM=
+
+Name: themes/circles/graphics/icons/ctool/ov_nav_midhov.gif
+SHA1-Digest: jrFgMrYLF0883/Z2o+dq418gsMc=
+
+Name: themes/slate/graphics/rootpage/whatsnew48_hov.png
+SHA1-Digest: 733NHPc1A2l7QkzNGWANyLipD+w=
+
+Name: themes/purpleMesh/swt/samples.properties
+SHA1-Digest: Maoo2vIbozk0abIdI4/9z2mv2ig=
+
+Name: themes/slate/graphics/rootpage/overview48_hov.gif
+SHA1-Digest: t8nxd/Kgl03Fb8Xpz/UBUncgCsk=
+
+Name: themes/purpleMesh/graphics/launchbar/tutorials.gif
+SHA1-Digest: V5Iq0LtZVEol+ENl+76Tv+6yMdM=
+
+Name: themes/slate/graphics/icons/ctool/mi_nav_32.gif
+SHA1-Digest: U/js7L/cMMMdBmMBMxsmSZbPqog=
+
+Name: themes/shared/graphics/contentpage/tu-sa_high.gif
+SHA1-Digest: nWP+1XPA+005Nh2oq9KqYimcNxo=
+
+Name: themes/circles/graphics/standby/wr_standbyhov.gif
+SHA1-Digest: 38woeVnp5WrwKXAvQlG3gP4BOvA=
+
+Name: themes/circles/graphics/contentpage/mi_banner.jpg
+SHA1-Digest: M8PQV2LF1OrUXGwmIq2JohVbPrU=
+
+Name: themes/purpleMesh/graphics/root/dots.gif
+SHA1-Digest: qBBkDO/9SlLM7TvUQ0N4Lj7cF08=
+
+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc72.gif
+SHA1-Digest: 0TT/v0VcJy1YJgeMUIurFP8SabA=
+
+Name: themes/circles/html/shared.css
+SHA1-Digest: 77jbLGKwQArf7QoPDL/thrxTpeE=
+
+Name: themes/slate/graphics/icons/ctool/sa_nav_32.gif
+SHA1-Digest: L/7IP5sDVKLEn2Fv3dne/Eq7XEg=
+
+Name: themes/slate/swt/whatsnew.properties
+SHA1-Digest: 6mtMGtowlTnhOai9pVDrJgB/wak=
+
+Name: themes/circles/graphics/contentpage/sa_banner.jpg
+SHA1-Digest: 8fxkt+0g07/GO8c0MwW45Zu4Cjs=
+
+Name: themes/circles/graphics/standby/tu_standby.gif
+SHA1-Digest: cwp8Xw0OLbnrlfgyDT2rdFgEkoY=
+
+Name: themes/slate/graphics/standby/wb_standby.gif
+SHA1-Digest: 0Fi8mfmP3Q49EkRt5Fs1lCWsdCo=
+
+Name: themes/circles/graphics/icons/ctool/cpt_bottomhov.gif
+SHA1-Digest: ToSku0QPBKph5ncOXI2I4UsyJfo=
+
+Name: themes/circles/graphics/icons/ctool/wn_nav_hover.gif
+SHA1-Digest: NueBDE2T3TidYfVvX0R0OOJQ/Rg=
+
+Name: themes/slate/graphics/standby/wr_standby.gif
+SHA1-Digest: zXUyjgcDhtRkpVIx51PQQ+5T3Ls=
+
+Name: themes/circles/graphics/icons/ctool/content_nav_bar.gif
+SHA1-Digest: keTbxe8+mUli7KKT7VHfw/lWKR4=
+
+Name: themes/slate/swt/standby.properties
+SHA1-Digest: LVxlOn5Dm8yNnQYiUjuyUz0t2bI=
+
+Name: themes/slate/graphics/icons/ctool/fs_nav_32.gif
+SHA1-Digest: ThcSGP5JN6xuQdfgxdRKP8HEClw=
+
+Name: themes/circles/graphics/standby/sa_standbyhov.gif
+SHA1-Digest: nW22Gdy3ikCbJD4vK2ris39MbeM=
+
+Name: themes/circles/graphics/contentpage/fs_banner.jpg
+SHA1-Digest: FpP3YQsWc0TjrDuhAPCV6en00mU=
+
+Name: themes/shared/graphics/icons/ctool/arrow_rtl.gif
+SHA1-Digest: tbSkD5AC62KAiweJ66It9WaS5UI=
+
+Name: themes/purpleMesh/graphics/launchbar/firststeps16.png
+SHA1-Digest: PLDP82s27kAjpMHYCqyuCn4qfbA=
+
+Name: themes/purpleMesh/graphics/contentpage/firsteps_wtr.jpg
+SHA1-Digest: Cvp+baekZhLBnTbnZs610VqriU0=
+
+Name: themes/purpleMesh/graphics/contentpage/overview_wtr.jpg
+SHA1-Digest: kZahFe3kXY11lo0q3qnaTqMI9So=
+
+Name: icons/full/elcl16/configure.gif
+SHA1-Digest: THfvNG6K7cQT9jhbbVHE87vHFe4=
+
+Name: themes/purpleMesh/graphics/icons/ctool/samples72.gif
+SHA1-Digest: KUqdqV64czls4uOSlRNvtr9hOg0=
+
+Name: themes/circles/graphics/launchbar/webresources16.png
+SHA1-Digest: NmF2slgfepjNh+ShDr5bVEvGlUg=
+
+Name: themes/slate/graphics/rootpage/samples48_hov.png
+SHA1-Digest: 18TB/LAyPlqBZYadL7X5+A4MqrU=
+
+Name: themes/circles/graphics/standby/fs_standby.gif
+SHA1-Digest: 5Aua6Y36U3DXOP2qyXNij+CtX9s=
+
+Name: themes/circles/graphics/standby/sa_standby.gif
+SHA1-Digest: RBhTbXp/E6+mF2sHPGNcD4W48N0=
+
+Name: themes/purpleMesh/html/tutorials.css
+SHA1-Digest: RpAVjpFqMkC0hLPq7124qIhs1Yo=
+
+Name: themes/slate/graphics/contentpage/ov_banner.jpg
+SHA1-Digest: l44eO1KYxcGeGZRz2KX+U/5YmOA=
+
+Name: themes/purpleMesh/graphics/icons/ctool/migrate72.gif
+SHA1-Digest: mlt8QusjLk7KHMZf/06EkzhoH/U=
+
+Name: themes/circles/graphics/icons/ctool/tu_nav_32.gif
+SHA1-Digest: F926c6JRQE1pg5PHJgw2jf49OME=
+
+Name: themes/slate/graphics/rootpage/background.jpg
+SHA1-Digest: h0CYLdLBJNRn4GWBy/rxgEyHL50=
+
+Name: themes/shared/graphics/contentpage/tu-sa_med.gif
+SHA1-Digest: ghx5Pe/N01SftTJBQMfAoyULWM8=
+
+Name: themes/slate/graphics/icons/ctool/firststeps-select.png
+SHA1-Digest: SpDrkbO1LEh8joakTeAcSMehUsI=
+
+Name: themes/circles/swt/tutorials.properties
+SHA1-Digest: Y+NaoEsGbgs6aI9AVhku09xvRlk=
+
+Name: META-INF/eclipse.inf
+SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk=
+
+Name: themes/slate/graphics/icons/ctool/firststeps.png
+SHA1-Digest: o0dCb6AWcfpxTmz3pTYrr7vKMpU=
+
+Name: themes/circles/graphics/standby/wn_standbyhov.gif
+SHA1-Digest: JJnXUeuX2kqSxZ7H3EYW8nTbF2w=
+
+Name: .options
+SHA1-Digest: 7PEGPbnAeaUlhDarJXUCGyuoNjA=
+
+Name: themes/purpleMesh/graphics/icons/etool/whatsnew48sel.gif
+SHA1-Digest: Xf006mRq9AaBH9Q4fMWGUO342HQ=
+
+Name: themes/slate/html/ltr.css
+SHA1-Digest: Nx5KSB+LbNl5ySJ/emAnX+Ydz0g=
+
+Name: themes/shared/graphics/icons/ctool/arrow.gif
+SHA1-Digest: FRdS/kCA4AYt83tpyUt8G0olu68=
+
+Name: themes/slate/graphics/rootpage/firststeps48_hov.png
+SHA1-Digest: v5FRnmZV4N+t69U9GKyUFOFCMYM=
+
+Name: themes/slate/graphics/icons/ctool/tutorials-select.gif
+SHA1-Digest: vGo/EvDVxt2gWjUI8r9wXb7XHqY=
+
+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew16.png
+SHA1-Digest: EtpxHFs833fG1/S7avpbPkpCcRs=
+
+Name: themes/purpleMesh/graphics/icons/ctool/home.gif
+SHA1-Digest: JOoY9pC0dHgTQhAUL9/HfY7vBmo=
+
+Name: themes/slate/graphics/icons/ctool/workbench.png
+SHA1-Digest: DpvcWcrIZ+JpGcQjubdeFu7Mskg=
+
+Name: themes/purpleMesh/graphics/icons/ctool/back.gif
+SHA1-Digest: z+OtZDnlsMdDmcm+viMBpc9tz2k=
+
+Name: themes/purpleMesh/graphics/icons/etool/whatsnew72.gif
+SHA1-Digest: b5paP8zhysvEhuedZidjQL9HEus=
+
+Name: themes/purpleMesh/graphics/launchbar/samples.gif
+SHA1-Digest: eO6+weStxxVdFdbSR7oXUpgr7SU=
+
+Name: plugin.properties
+SHA1-Digest: FVgcQepw2LdjjA9jaP6rkbZ3cNk=
+
+Name: themes/slate/graphics/standby/mi_standbyhov.gif
+SHA1-Digest: EKMu6lK27pq/aBg/9f2YFExIt5s=
+
+Name: themes/slate/graphics/launchbar/overview16.png
+SHA1-Digest: CQKX46RHuZFbOrT3JiKPUK1/mMw=
+
+Name: themes/circles/preview.png
+SHA1-Digest: sEqN3SavR9InMcm4Np9tsFTZi38=
+
+Name: themes/circles/graphics/icons/ctool/wr_nav_64.gif
+SHA1-Digest: HWgi5cePr8R/laS2cHA1pRJFzqM=
+
+Name: themes/circles/html/webresources.css
+SHA1-Digest: xE+K3s3qfPmZWptlBouT4WUKYlw=
+
+Name: themes/circles/graphics/icons/ctool/workbench.gif
+SHA1-Digest: M9+7ZJ8Td5Vz4SgFfI1Ow9WsJGU=
+
+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc16.png
+SHA1-Digest: tg0HIeAi2M876bRApOwKnRSGcD8=
+
+Name: plugin.xml
+SHA1-Digest: AGntXfGyavfewes8K46DbzHl3PM=
+
+Name: themes/slate/graphics/icons/ctool/wb_nav.png
+SHA1-Digest: eOOC/dmxPSefDxPWFsxQy7E2b8I=
+
+Name: themes/slate/graphics/icons/ctool/fs_nav.png
+SHA1-Digest: ZHHwwi/pL6wyqvnxKLrIs1xSIv8=
+
+Name: themes/slate/graphics/icons/ctool/tutorials.png
+SHA1-Digest: Zx41VhOUb0qOWIpS3T11xSGhNZE=
+
+Name: themes/slate/graphics/rootpage/webresources48.gif
+SHA1-Digest: U3VJRQ912H+F2LovRbKXXJ96jtU=
+
+Name: themes/circles/swt/samples.properties
+SHA1-Digest: b72s5ZpdufL+u+iHt7s2M3fRKR0=
+
+Name: themes/purpleMesh/swt/overview.properties
+SHA1-Digest: mvuul3+a9PKCQbnMxeoDVo6pYSw=
+
+Name: themes/slate/graphics/icons/ctool/wn_nav.png
+SHA1-Digest: Otvz1srG7KEBziy19XaNx1QlL+Y=
+
+Name: themes/purpleMesh/html/whatsnew.css
+SHA1-Digest: fRC+M1elXUGhdy5bFG1XlaE+WUk=
+
+Name: themes/slate/graphics/icons/ctool/wr_nav.png
+SHA1-Digest: X/t10DmFigUi7SWQWKb6TlVLWUo=
+
+Name: themes/circles/graphics/icons/ctool/firststeps.png
+SHA1-Digest: RadtV1OpnwwU8YTjkRVswQ6gkrM=
+
+Name: themes/circles/graphics/icons/ctool/tutorials.gif
+SHA1-Digest: octY2R6o9h3crdH3YxcRu5HinAE=
+
+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc48sel.gif
+SHA1-Digest: Y+bL1SYCHZFL3CnkKVeUUdbqhpA=
+
+Name: themes/slate/graphics/rootpage/samples48.png
+SHA1-Digest: o91S2IouhohWh784056j+CwIPbI=
+
+Name: themes/slate/swt/webresources.properties
+SHA1-Digest: woLrtH3B00iBUZkDmqHU5XH6KPM=
+
+Name: themes/purpleMesh/html/samples.css
+SHA1-Digest: 3ZtdRRozIzL+tYNU9FhPPekIVRI=
+
+Name: themes/slate/graphics/rootpage/workbench48.gif
+SHA1-Digest: pzIWQg7A2tk7ISYqiM52y5+QHXE=
+
+Name: themes/purpleMesh/graphics/icons/obj48/newhov_obj.gif
+SHA1-Digest: pyTbLR1DRUpyozcBnlZOStz7yIA=
+
+Name: themes/slate/graphics/icons/ctool/migrate-select.png
+SHA1-Digest: dJhpMAzfZ3gXyS/WvZAhAGjvHqo=
+
+Name: themes/purpleMesh/graphics/icons/dtool/forward.gif
+SHA1-Digest: aCtO1cY0PcLRL6ryFaULIxWFIRQ=
+
+Name: themes/slate/graphics/rootpage/migrate48.png
+SHA1-Digest: 23aWLw+rpVmgwjJP0FsdVjl2snk=
+
+Name: introContent.xml
+SHA1-Digest: p86gbX8qFQho2c9eTwFxLUM2jbY=
+
+Name: themes/purpleMesh/graphics/icons/ctool/samples16.png
+SHA1-Digest: N/RpSt5Kg9cllB8ZVItf9UX+Gi4=
+
+Name: themes/shared/graphics/icons/ctool/widget_open_hov.gif
+SHA1-Digest: q6+gnr1MvGjjGrmKrs7jlSk9G3E=
+
+Name: themes/slate/graphics/standby/ov_standbyhov.gif
+SHA1-Digest: W7euvutqkpXqaZ28T0tIBgfqWBY=
+
+Name: themes/slate/graphics/rootpage/root_banner_logo.jpg
+SHA1-Digest: abI9SllIW+3XhsY6pzv4qmpCG8Q=
+
+Name: themes/purpleMesh/graphics/icons/etool/firsteps48sel.gif
+SHA1-Digest: vq4JP2YEL3U67r160BMe4c0SSMM=
+
+Name: themes/purpleMesh/swt/firststeps.properties
+SHA1-Digest: EInPG8WIRgJVAjGiy8XWr64xU2o=
+
+Name: themes/slate/graphics/rootpage/tutorials48_hov.gif
+SHA1-Digest: UNZLeDg3VnZSaoOSb/1cB4YjZRA=
+
+Name: themes/slate/graphics/rootpage/firststeps48.png
+SHA1-Digest: AZf3rs765AMlL0crSZ1ACx1ITbw=
+
+Name: themes/circles/graphics/launchbar/whatsnew16.png
+SHA1-Digest: IzjfRJtgZO/1pF6e+qNU1tsRInk=
+
+Name: themes/purpleMesh/swt/migrate.properties
+SHA1-Digest: PXl9YyFN/w2mIaeHRLdH+0+d0Iw=
+
+Name: themes/circles/graphics/icons/ctool/root_bottomhov.gif
+SHA1-Digest: Z8bzjCb+groZ7Mudi3sPT0KHduM=
+
+Name: themes/purpleMesh/graphics/launchbar/migrate16.png
+SHA1-Digest: 9dXlttKYwv7e5tKagvSXjya58VA=
+
+Name: themes/purpleMesh/html/font-relative.css
+SHA1-Digest: uztoLwYdMIMBC3VZXmPl2Qpbe7U=
+
+Name: themes/circles/graphics/icons/ctool/wb_nav_hover.gif
+SHA1-Digest: JGea0KimDZnwwiCcQ8qHPqylM+0=
+
+Name: themes/purpleMesh/graphics/icons/ctool/migrate16.png
+SHA1-Digest: Puh69rUopnG/IU/JThhHdbLh1lo=
+
+Name: themes/slate/graphics/rootpage/migrate48_hov.gif
+SHA1-Digest: 3Y6mFYmavunlKwredaGwnwXCNiE=
+
+Name: themes/purpleMesh/graphics/icons/etool/tutorials48sel.gif
+SHA1-Digest: lk2qg8u2u6oUcxFjIFCXgvGBueA=
+
+Name: themes/slate/graphics/icons/ctool/whatsnew-select.png
+SHA1-Digest: Qv9/KgDiu/UwPNMYHaBZQH6i0gI=
+
+Name: themes/circles/graphics/icons/ctool/ov_nav.png
+SHA1-Digest: YeG6eWWkQN+xSr4Zg9oqEL865ks=
+
+Name: themes/purpleMesh/graphics/icons/etool/overview48sel.gif
+SHA1-Digest: m9kn5H05+QgSBOxLlx2dxaWTGmo=
+
+Name: themes/shared/graphics/contentpage/wr-mi_med.gif
+SHA1-Digest: OIQZ/hOeBpbC0WMHReEsbFJVJLc=
+
+Name: themes/slate/graphics/standby/tu_standbyhov.gif
+SHA1-Digest: tnWwgoBPMHeWYfysLndY1HFWUPM=
+
+Name: themes/circles/graphics/icons/ctool/wr_nav_hover.gif
+SHA1-Digest: XdpoqgAH+p1EVxL9GyMzE/Hfv/c=
+
+Name: themes/slate/graphics/launchbar/firststeps16.png
+SHA1-Digest: 9hsrMpO8mZJzpwABMmAgSWU3MQc=
+
+Name: themes/purpleMesh/html/overview.css
+SHA1-Digest: ewtO0S8LN4bgkv7PzeVxcz4wzj0=
+
+Name: themes/slate/graphics/standby/ov_standby.gif
+SHA1-Digest: tQgasT5T5uccRV34rNN/eFA/j1I=
+
+Name: themes/circles/html/tutorials.css
+SHA1-Digest: xa3e4ZW7ls+gOKV7vf3sJ/bKCn4=
+
+Name: themes/circles/graphics/rootpage/welcomebckgrd.jpg
+SHA1-Digest: 1CYoWHrrrQBODT6u1XiiYAc8Ua8=
+
+Name: themes/purpleMesh/html/rtl.css
+SHA1-Digest: 6emyVT06jVF1IpGc+y1ND2z5AgE=
+
+Name: themes/purpleMesh/graphics/icons/ctool/firsteps48.gif
+SHA1-Digest: mBsb4wgGSyU8bNKCIcKAAzHfBdc=
+
+Name: themes/slate/graphics/icons/ctool/sa_nav.png
+SHA1-Digest: +fvKMIGlRhLKb75Ge8kDFcNIlig=
+
+Name: themes/circles/graphics/icons/ctool/samples_tophov.gif
+SHA1-Digest: KB0g/q6q9M8Vej0+uXtDX/4V4gQ=
+
+Name: themes/circles/graphics/icons/ctool/whatsnew_tophov.gif
+SHA1-Digest: l0/AVYCJX3mHyeIM7AVVpjrHRAE=
+
+Name: themes/circles/graphics/icons/ctool/webresources.gif
+SHA1-Digest: PzeqTnB2FYvrmgO3g1mKmko1DF0=
+
+Name: themes/circles/graphics/icons/ctool/ov_nav_rightedgehov.gif
+SHA1-Digest: f0w1YUKKxjFzxukKAiz/X7+SoEQ=
+
+Name: themes/purpleMesh/graphics/icons/etool/tutorials48.gif
+SHA1-Digest: rpkhEx725uQSS4BO8Cu6AYX/1qs=
+
+Name: .api_description
+SHA1-Digest: zVgZ4KXcjfSLvrVOAZybRVyuyD4=
+
+Name: themes/shared/graphics/contentpage/ov_high.gif
+SHA1-Digest: bPF5JPTBYJSjUtUp7l/Q+jYOtX0=
+
+Name: themes/circles/graphics/icons/ctool/ov_nav_32.gif
+SHA1-Digest: zdyV1x+iXWd1D+qvrkSFfVni9Wc=
+
+Name: themes/slate/swt/samples.properties
+SHA1-Digest: U5PKzlW/IGZhPlnupiL0t6JQkeU=
+
+Name: themes/circles/graphics/icons/ctool/tu_nav_64.gif
+SHA1-Digest: QfZiqnjcg8JgKOiaHqQcRAkU68M=
+
+Name: themes/slate/graphics/icons/ctool/overview-select.gif
+SHA1-Digest: C/thmi6ygH/DObJgLK2R6FUFKmo=
+
+Name: themes/shared/graphics/icons/ctool/widget_closed.gif
+SHA1-Digest: UCVQqypGt54bp4bPvYvnBBf3S6s=
+
+Name: themes/slate/graphics/standby/fs_standbyhov.gif
+SHA1-Digest: IFrAPRH50aUnf4lzGXBnp63KBvg=
+
+Name: themes/slate/graphics/icons/ctool/wr_nav_32.gif
+SHA1-Digest: N9FnodopAmjKrlNb/C6xGS7+ATI=
+
+Name: themes/circles/graphics/standby/wb_standby.gif
+SHA1-Digest: VSLzZLxKKBrSxMH+QlFyD/mSYUk=
+
+Name: themes/shared/graphics/icons/ctool/widget_closed_hov.gif
+SHA1-Digest: yBhmvxNDT4l1CwkG8lR3CuEZnpY=
+
+Name: themes/slate/graphics/rootpage/whatsnew48.png
+SHA1-Digest: pizLyNLkBhqTFPW4z0yhKyGxTyU=
+
+Name: themes/circles/graphics/icons/ctool/samples.png
+SHA1-Digest: vkVn8EAwdSUkAjDkBYBk3aVmaJA=
+
+Name: themes/circles/graphics/icons/ctool/whatsnew.png
+SHA1-Digest: fmc+D8Cozv2x21iUal8OcSJ2RCA=
+
+Name: themes/slate/graphics/icons/ctool/samples-select.gif
+SHA1-Digest: MMUTVQz0hk+wFo7QgkgLJIljLdo=
+
+Name: themes/slate/graphics/rootpage/overview48.gif
+SHA1-Digest: 9fQKnwYMYCxPi3Dbf7Iw+P3GCYM=
+
+Name: themes/circles/graphics/contentpage/wr_banner.jpg
+SHA1-Digest: DOJtvC1OhmR/2gE5/nMvZRA5Tzk=
+
+Name: themes/slate/graphics/standby/mi_standby.gif
+SHA1-Digest: zpzqikD2wBf/PIPCZXeEV9gwu8Q=
+
+Name: themes/slate/swt/firststeps.properties
+SHA1-Digest: 3WAuEq0g1VcYEY19Cse2R0eDoyc=
+
+Name: themes/slate/graphics/icons/ctool/samples.png
+SHA1-Digest: JbJjoAzJoy70GkKO9qIdq2Rj6KU=
+
+Name: themes/circles/graphics/standby/wr_standby.gif
+SHA1-Digest: aJpFuRco/12bQ9bNy92cX/A5UPk=
+
+Name: themes/slate/graphics/rootpage/workbench48_hov.gif
+SHA1-Digest: yhz0kRxqnoPZXoFD3TjF9Pz14ik=
+
+Name: themes/slate/graphics/contentpage/wn_banner.jpg
+SHA1-Digest: zB2XWrRELYgqRzvpOE+AQJbwc6E=
+
+Name: themes/circles/graphics/launchbar/firststeps16.png
+SHA1-Digest: fCXz9yJa0b82QZ9rhBE67nJc2E4=
+
+Name: themes/purpleMesh/html/migrate.css
+SHA1-Digest: 1+NqZ1pYXSS2bFk1Fb+6jVSPEqU=
+
+Name: themes/purpleMesh/graphics/icons/ctool/overview48.gif
+SHA1-Digest: +JxWS50R28tHzsqUgQDLpoKxJdk=
+
+Name: themes/purpleMesh/html/standby.css
+SHA1-Digest: NkRX4mALA79ZCAH8rMkPXHjx90s=
+
+Name: icons/full/obj16/extension_obj.gif
+SHA1-Digest: bMeGZKr5c16LVNWBd9bt98uUYXc=
+
+Name: themes/purpleMesh/graphics/icons/etool/wb48.gif
+SHA1-Digest: gWXkEZ45v3k7g90kCWYvfRGydNg=
+
+Name: themes/slate/graphics/rootpage/whatsnew48_hov.gif
+SHA1-Digest: vSO/nScy1F2pIu0bdtjFxGpFg2o=
+
+Name: themes/slate/graphics/standby/wr_standbyhov.gif
+SHA1-Digest: jHQHecCjhxGdDtte6xzQGzOGu3c=
+
+Name: themes/slate/graphics/contentpage/mi_banner.jpg
+SHA1-Digest: dphGVKeWcMuI8dlZDYVT0jNP+Hk=
+
+Name: themes/circles/graphics/icons/ctool/nav_midhov.gif
+SHA1-Digest: Wi2MCADeHhtdwi4Sh0W7uBznlOA=
+
+Name: themes/circles/graphics/icons/ctool/sa_onesample48.gif
+SHA1-Digest: HqfVF+3gBlrx6nGLg5v5MFaaIgc=
+
+Name: themes/purpleMesh/html/root.css
+SHA1-Digest: F8e99wJzj5JSXslAStEW8UVbHnE=
+
+Name: themes/slate/graphics/contentpage/sa_banner.jpg
+SHA1-Digest: UYbMyIlkwRCH/+2xH0qy7SYO9jc=
+
+Name: themes/circles/html/samples.css
+SHA1-Digest: Aa/3mSKEQ/bjtj9HIXMJGgm8YrY=
+
+Name: themes/circles/graphics/icons/ctool/arrow_rtl.gif
+SHA1-Digest: DCAy3+kKDhzBjcBUtFfriO0XZ/Y=
+
+Name: themes/purpleMesh/graphics/contentpage/section4.gif
+SHA1-Digest: 5uQoTC0PIVQXXzoh4GS8uljeT7Q=
+
+Name: themes/purpleMesh/graphics/icons/ctool/samples48sel.gif
+SHA1-Digest: s0SJlUspZ+VpUK59YFpSVdSF4/8=
+
+Name: themes/slate/html/samples.css
+SHA1-Digest: jJB+8DDa8HMq/Howur8Lf6FKxXU=
+
+Name: themes/slate/graphics/rootpage/webresources48_hov.png
+SHA1-Digest: lc1/FiH8g8N5XQpp8VKb84BHcw0=
+
+Name: themes/slate/graphics/standby/sa_standbyhov.gif
+SHA1-Digest: Q4Gml852TuRFm97prfvm+YUFxQQ=
+
+Name: themes/purpleMesh/swt/root.properties
+SHA1-Digest: 13ibm2LcOyuKL4exgCW1FL8omGQ=
+
+Name: themes/slate/graphics/contentpage/fs_banner.jpg
+SHA1-Digest: e1ynwkado6TTdJD+CScC/nSV23w=
+
+Name: themes/purpleMesh/graphics/icons/obj48/new_obj.gif
+SHA1-Digest: m3blOl9A6/k/zOqWSEjVwi7OsX0=
+
+Name: themes/circles/graphics/launchbar/samples16.png
+SHA1-Digest: EJy0O+e7Wn2LQKacpG+ztOKD+xU=
+
+Name: themes/shared/graphics/contentpage/wr-mi_high.gif
+SHA1-Digest: 4Y7Eni6WwPD1XF5qOlZvX7FBicQ=
+
+Name: themes/circles/graphics/icons/ctool/overview.png
+SHA1-Digest: 6Vc2O8P0tc2mBLAtqN6XRg4m6bA=
+
+Name: themes/slate/graphics/launchbar/samples16.png
+SHA1-Digest: OkSBPD+k9fPKmTLDt+KLk67bD+M=
+
+Name: themes/purpleMesh/graphics/contentpage/tutorials_wtr.jpg
+SHA1-Digest: 1DK/EYeYoAy/ecmdrcLVwCp05fs=
+
+Name: universal.jar
+SHA1-Digest: tU+brr9bmP8rYwCJCbs+x9/cUoc=
+
+Name: themes/slate/graphics/icons/ctool/webresources.png
+SHA1-Digest: dMLVSP4HDxxSfiRFrbCaOeFNbVU=
+
+Name: themes/slate/graphics/rootpage/tutorials48.png
+SHA1-Digest: YocgTR+jGu0RLtYAlrHOx5DMmrM=
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/MANIFEST.MF b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..8cad9cb
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/MANIFEST.MF
@@ -0,0 +1,1232 @@
+Manifest-Version: 1.0
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.4
+Bundle-SymbolicName: org.eclipse.ui.intro.universal;singleton:=true
+Eclipse-LazyStart: true; exceptions="org.eclipse.ui.internal.intro.uni
+ versal.contentdetect"
+Eclipse-SourceReferences: scm:git:git://git.eclipse.org/gitroot/platfo
+ rm/eclipse.platform.ua.git;path="org.eclipse.ui.intro.universal";tag=
+ v20120912-155524
+Bundle-Activator: org.eclipse.ui.internal.intro.universal.UniversalInt
+ roPlugin
+Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.6.0,4.0.0)
+ ",org.eclipse.help;bundle-version="[3.5.0,4.0.0)",org.eclipse.ui;bund
+ le-version="[3.6.0,4.0.0)",org.eclipse.ui.intro;bundle-version="[3.4.
+ 0,4.0.0)"
+Bundle-Version: 3.2.600.v20120912-155524
+Export-Package: org.eclipse.ui.internal.intro.universal;x-friends:="or
+ g.eclipse.ua.tests",org.eclipse.ui.internal.intro.universal.contentde
+ tect;x-friends:="org.eclipse.ua.tests",org.eclipse.ui.internal.intro.
+ universal.util;x-internal:=true,org.eclipse.ui.intro.universal
+Bundle-ClassPath: universal.jar
+Bundle-ActivationPolicy: lazy;exclude:="org.eclipse.ui.internal.intro.
+ universal.contentdetect"
+Bundle-Vendor: %provider_name
+Bundle-Name: %plugin_name
+Eclipse-BundleShape: dir
+Import-Package: javax.xml.parsers,org.w3c.dom,org.xml.sax
+Bundle-ManifestVersion: 2
+
+Name: themes/shared/graphics/contentpage/wn-fs_med.gif
+SHA1-Digest: YObD0h+yD3AoEJKcbHpgl7nSg6w=
+
+Name: themes/slate/graphics/icons/ctool/webresources-select.png
+SHA1-Digest: ttFY6mc+rmyD+wi74Uh9u2VOsEA=
+
+Name: icons/full/obj16/inew_obj.gif
+SHA1-Digest: nNCYIZNT6cAnS1piXmICuWj214k=
+
+Name: themes/circles/swt/migrate.properties
+SHA1-Digest: 5AATILQmeOE6lgPTFd7rRWmZfFE=
+
+Name: themes/circles/graphics/icons/ctool/wb_nav_32.gif
+SHA1-Digest: Cn/9w2OEDB5HruOhhsLBFFUwdTA=
+
+Name: themes/circles/graphics/launchbar/migrate16.png
+SHA1-Digest: cdjjFVkozz0y9ji+FpASYhOALwk=
+
+Name: themes/circles/html/font-relative.css
+SHA1-Digest: YNdUuhYcoSgMNnDs8zLlOICeBPg=
+
+Name: themes/purpleMesh/swt/webresources.properties
+SHA1-Digest: CF3gMwhkWGQXjfED1zPxx1nNfWs=
+
+Name: icons/full/obj16/icallout_obj.gif
+SHA1-Digest: BtNHLBdOBOrkuqR5QGDMR1yYOPU=
+
+Name: themes/slate/graphics/launchbar/migrate16.png
+SHA1-Digest: cdjjFVkozz0y9ji+FpASYhOALwk=
+
+Name: themes/circles/graphics/icons/ctool/tutorials_tophov.gif
+SHA1-Digest: l4xpK0NEVv+6HAPqe6Boky17Drs=
+
+Name: themes/circles/swt/overview.properties
+SHA1-Digest: cWbc0RdZ2YXec98Rg1kTqJpT5NY=
+
+Name: themes/circles/html/whatsnew.css
+SHA1-Digest: f/xiSK+pn47wv97YC1T89H3Yggc=
+
+Name: themes/shared/html/shared.css
+SHA1-Digest: OTh/aPQYNhJNbCRlHp4uwANCo6I=
+
+Name: themes/purpleMesh/graphics/icons/etool/firsteps48.gif
+SHA1-Digest: hvcLfSf/ImoeCex6h0I4mKJDYaM=
+
+Name: themes/slate/graphics/icons/ctool/tu_nav_32.gif
+SHA1-Digest: ERMabqNtihbmhosEh+AMC9m6SgQ=
+
+Name: themes/slate/graphics/rootpage/samples48_hov.gif
+SHA1-Digest: 2GZqEq/9FzCx8WiEgECMZDe8Bbg=
+
+Name: themes/shared/graphics/icons/ctool/widget_closed_rtl.gif
+SHA1-Digest: Hls40cTfd5UjRBwAqdmvGB4Qj5A=
+
+Name: themes/circles/graphics/contentpage/tu_banner.jpg
+SHA1-Digest: QS8UTOekR3eu1goLA3IGZbz2ACU=
+
+Name: themes/circles/graphics/icons/ctool/wb_nav.png
+SHA1-Digest: FH8HqOCtz5sLOSGSXLTuXtscYdw=
+
+Name: themes/circles/graphics/icons/ctool/fs_nav.png
+SHA1-Digest: 3F+Z798k2zAOQHXppBvRobdsVgY=
+
+Name: icons/welcome16.gif
+SHA1-Digest: lCVsqUKwrazRDOWbtiyQR6PzEio=
+
+Name: themes/circles/graphics/icons/ctool/migrate.png
+SHA1-Digest: VkjCEMXUNNjo4asomIvGP5KZteA=
+
+Name: themes/circles/html/rtl.css
+SHA1-Digest: cGk5uIu4MDkHeAx2Fx84/hsq1Nw=
+
+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew48sel.gif
+SHA1-Digest: V7JtQrx+Kgg5ssosc9X8gdGTyVs=
+
+Name: themes/purpleMesh/graphics/icons/etool/webrsrc48sel.gif
+SHA1-Digest: ViPbhh1j2zwRpZdBTVLjwaRXvWU=
+
+Name: themes/shared/graphics/icons/ctool/widget_closed_hov_rtl.gif
+SHA1-Digest: lLNX/Q+6E9ygF+QaNhAMMknKE0Q=
+
+Name: themes/circles/graphics/icons/ctool/wn_nav.png
+SHA1-Digest: d7McdCEtfxPQ+F5vlR38rVTvgXo=
+
+Name: themes/circles/graphics/launchbar/tutorials16.png
+SHA1-Digest: i2tAwI/AV2AL9+0LBrkT2facrps=
+
+Name: themes/slate/graphics/icons/ctool/migrate.png
+SHA1-Digest: VkjCEMXUNNjo4asomIvGP5KZteA=
+
+Name: themes/purpleMesh/graphics/icons/ctool/firsteps72.gif
+SHA1-Digest: SBxtT8iB/ApY0HjP6hKYkJuKUok=
+
+Name: themes/slate/graphics/standby/wn_standbyhov.gif
+SHA1-Digest: NbMYb8Ka2D8DlnjzdS2qA6E8j9I=
+
+Name: themes/circles/graphics/icons/ctool/wr_nav.png
+SHA1-Digest: RiRbJ01jNoAefHKxAe7htjgxNc8=
+
+Name: themes/slate/graphics/icons/ctool/firststeps-select.gif
+SHA1-Digest: 2omoFavbjq9B7GnstjVqw0FdtMg=
+
+Name: themes/circles/graphics/standby/wb_standbyhov.gif
+SHA1-Digest: M93nY3cEdQ0Ot7ymKz9lcr/vVgQ=
+
+Name: themes/circles/graphics/icons/obj48/newhov_obj.gif
+SHA1-Digest: bYXzhCgIi1p/aDvaAoOBGIrBuKA=
+
+Name: themes/purpleMesh/graphics/icons/etool/tutorials72.gif
+SHA1-Digest: bgSW0+TBHE6b5pybPnVxwKCeb8o=
+
+Name: themes/slate/graphics/standby/wn_standby.gif
+SHA1-Digest: 88JPC5OW2W/A8nK+jURGNllSjXc=
+
+Name: themes/purpleMesh/graphics/contentpage/migrate_wtr.jpg
+SHA1-Digest: aEzxRxDEcOgBZUkFLh+l3yrPKkc=
+
+Name: themes/circles/graphics/icons/ctool/ov_nav_64.gif
+SHA1-Digest: MiM5uNLCvrkx/ykdKqZM97Y9ZZU=
+
+Name: themes/purpleMesh/graphics/contentpage/section3.gif
+SHA1-Digest: Dti98fXWKSzLZcwWhy0ZH/xv/LQ=
+
+Name: themes/circles/graphics/icons/ctool/mi_nav_hover.gif
+SHA1-Digest: ctUOJTLxQ0tbU8MWdzTinkFSNJY=
+
+Name: themes/purpleMesh/swt/whatsnew.properties
+SHA1-Digest: oMwOlBxzxsbYGpYIiB6r5WvnCOg=
+
+Name: themes/slate/graphics/rootpage/firststeps48_hov.gif
+SHA1-Digest: V1SxrQz5nuodvxHET/Uj/DVfZnU=
+
+Name: themes/circles/swt/firststeps.properties
+SHA1-Digest: sBCpA22sGt4sMuv+F9m/qnMxVSM=
+
+Name: themes/purpleMesh/graphics/icons/etool/overview48.gif
+SHA1-Digest: iCWMhwI9UGBgr2VfDvUWRcFUkvQ=
+
+Name: themes/purpleMesh/graphics/icons/ctool/tutorials48.gif
+SHA1-Digest: g1DLV9w6145WJgolBFoQXPSHED0=
+
+Name: themes/purpleMesh/html/font-absolute.css
+SHA1-Digest: Dp/J3iJgRBHHdbUImvOo/dqS9qQ=
+
+Name: themes/purpleMesh/graphics/icons/dtool/back.gif
+SHA1-Digest: ySnsDpMG5nwH+1FeV2r27mUrMkU=
+
+Name: themes/slate/graphics/launchbar/whatsnew16.png
+SHA1-Digest: h+KhHUY6Dp0Q8Jm2f2zIe/6WTlQ=
+
+Name: themes/purpleMesh/graphics/icons/ctool/migrate48sel.gif
+SHA1-Digest: keNlqQN4S22HPmK1Di1nJy96tpE=
+
+Name: themes/circles/html/migrate.css
+SHA1-Digest: iqCK+hELmQGaI0kDAerL4zBIsH8=
+
+Name: themes/circles/html/standby.css
+SHA1-Digest: 2z23RG44ueQjzJxag9TUR5ipMg8=
+
+Name: themes/shared/graphics/contentpage/ov_med.gif
+SHA1-Digest: BLkJAi4b6F3mxZCsx/D4hbWbUO8=
+
+Name: themes/purpleMesh/graphics/icons/ctool/wb48.gif
+SHA1-Digest: TRanQY4RKQhrmQMzvoEtx9VCEuE=
+
+Name: themes/circles/graphics/icons/ctool/tu_nav_hover.gif
+SHA1-Digest: gnwxFOZ1hWJ15kAtVY9JjWHr8y0=
+
+Name: themes/purpleMesh/graphics/icons/ctool/overview72.gif
+SHA1-Digest: j8YqPAh5zhsG871Xa1oEABhvpwU=
+
+Name: themes/slate/html/migrate.css
+SHA1-Digest: o9xAwZ7xa/HM/hdVTb3tk8uOHw0=
+
+Name: themes/slate/html/standby.css
+SHA1-Digest: dcsodycy9r1Mc13iPMtPm6VaX44=
+
+Name: themes/circles/graphics/icons/ctool/wn_nav_32.gif
+SHA1-Digest: 2MmKSbuOyZVL2zJF4G8nB5PD40E=
+
+Name: themes/slate/graphics/rootpage/overview48_hov.png
+SHA1-Digest: yEu4cL82lrHSfFHqv3eoyrW9YSg=
+
+Name: themes/circles/graphics/icons/ctool/migrate_tophov.gif
+SHA1-Digest: H8SgRLyEnOi1cDZJW0fzb3lAvCo=
+
+Name: themes/circles/html/overview.css
+SHA1-Digest: G+A4n9PJ6fA3WLTPxxbOfcojjXE=
+
+Name: themes/slate/preview.png
+SHA1-Digest: whTvlmnBWZTV8IG0krm8yHohkCI=
+
+Name: themes/circles/graphics/icons/ctool/firststeps.gif
+SHA1-Digest: aw0foujzvfJwyNlhaeXJ9h+811s=
+
+Name: themes/slate/graphics/rootpage/samples48.gif
+SHA1-Digest: a7heSjTUOSoRTKVM3l7UofW0BgY=
+
+Name: themes/purpleMesh/html/firststeps.css
+SHA1-Digest: nACM/CMdpnPS98VKxacu0uWKtn4=
+
+Name: themes/slate/swt/migrate.properties
+SHA1-Digest: 2F6o5tkNwYATwSeIxAhJ4Fawrag=
+
+Name: themes/slate/graphics/icons/ctool/tu_nav.png
+SHA1-Digest: dNoyc7XQ0/y0TYmDYpA3RH2BDu8=
+
+Name: themes/slate/html/font-relative.css
+SHA1-Digest: yc7PqZE0wKy+879beIvCdX5i2As=
+
+Name: themes/circles/graphics/icons/ctool/mi_nav_32.gif
+SHA1-Digest: mATXWuXqCWzSKixiSQs+YOGKGco=
+
+Name: themes/circles/graphics/icons/ctool/workbench_midhov.gif
+SHA1-Digest: 8IcR48lhiM2cA6fVthKbkSUPpuQ=
+
+Name: themes/purpleMesh/graphics/swt/form_banner.gif
+SHA1-Digest: PQhF1iaxN2d2Pjr4NFsLS6syeIU=
+
+Name: themes/circles/graphics/icons/ctool/root_midhov.gif
+SHA1-Digest: 0wGbIZFEsbFYpUJc7aXvM2hdu9s=
+
+Name: themes/circles/graphics/standby/ov_standby.gif
+SHA1-Digest: HunoPS0cid3oVEr1sZr/zorOhSo=
+
+Name: themes/slate/swt/tutorials.properties
+SHA1-Digest: vAquZcTxRXIrBqJjPzS1CivM1DU=
+
+Name: themes/circles/graphics/icons/ctool/sa_nav_32.gif
+SHA1-Digest: zWmN8ic58PiJmRsQN6M8kkO112Y=
+
+Name: themes/slate/graphics/icons/ctool/migrate-select.gif
+SHA1-Digest: rbcMvR3DTWAZ6y8pRLJ1Aj3AR0Y=
+
+Name: themes/purpleMesh/graphics/icons/ctool/firsteps48sel.gif
+SHA1-Digest: opve/Gi8rcg8PqsApScb3gwbsjM=
+
+Name: themes/purpleMesh/graphics/contentpage/samples_wtr.jpg
+SHA1-Digest: g2JddJllH2GnARk4Nou/2R4PymU=
+
+Name: themes/circles/graphics/icons/ctool/sa_nav.png
+SHA1-Digest: uXMdf9iE7j6nm8Kb+4XilPOc3KQ=
+
+Name: themes/slate/graphics/launchbar/webresources16.png
+SHA1-Digest: MKgOo3PUit3DrNfS3CNMBEiz7j0=
+
+Name: themes/slate/graphics/icons/ctool/mi_nav.png
+SHA1-Digest: DugGCwIqDGwAjbE6lxcgfs0Wcv4=
+
+Name: themes/slate/graphics/rootpage/migrate48.gif
+SHA1-Digest: joxhUVMJ4gjNCLOVxveKazhqRQg=
+
+Name: themes/circles/graphics/icons/ctool/cpt_midhov.gif
+SHA1-Digest: RrizlkO8kDokhCsq1RS7MeMZ/8E=
+
+Name: themes/circles/graphics/icons/obj48/new_obj.gif
+SHA1-Digest: Y/Bwx578bV6kzFqO2dx3H9gJtTo=
+
+Name: themes/purpleMesh/graphics/launchbar/whatsnew.gif
+SHA1-Digest: OfLsLlxVJqmHGeWbr+FpZ7WbR5o=
+
+Name: themes/slate/graphics/icons/ctool/whatsnew.png
+SHA1-Digest: 7yax9xdOrPlNoCNBqEo0D2Wn98A=
+
+Name: themes/slate/swt/root.properties
+SHA1-Digest: trht5nL/OVGbn1M9jAAQgsEUxew=
+
+Name: themes/slate/graphics/rootpage/firststeps48.gif
+SHA1-Digest: 728dp/iHajdA6QbwpXrDcWhyr9I=
+
+Name: themes/purpleMesh/graphics/icons/ctool/overview48sel.gif
+SHA1-Digest: QvbOlzxtGauTmRVipO4/FC2ZJ2U=
+
+Name: themes/circles/graphics/icons/ctool/fs_nav_32.gif
+SHA1-Digest: BSKmmm0UjJhF46bslzBFgsMhk28=
+
+Name: themes/slate/graphics/rootpage/root_banner.jpg
+SHA1-Digest: CVENAzN0sGVJ550D3j/tRK/bGUo=
+
+Name: themes/purpleMesh/graphics/contentpage/section2.gif
+SHA1-Digest: jNYinCnDLjHR0d9YHNjblUc/OuA=
+
+Name: themes/slate/swt/overview.properties
+SHA1-Digest: 7OIn4C0e4D6ndcSGGB2rOpSg9OA=
+
+Name: themes/slate/graphics/contentpage/banner_extension.jpg
+SHA1-Digest: hduQzj5oNnCVgoASvulQULdbwPM=
+
+Name: themes/circles/graphics/standby/mi_standby.gif
+SHA1-Digest: 5hYhaXir5S3NKycOObVKVsAr09E=
+
+Name: themes/purpleMesh/graphics/icons/etool/webrsrc48.gif
+SHA1-Digest: eT48bn2xNpwaArD3Ukfr9X5Z3c0=
+
+Name: themes/purpleMesh/html/ltr.css
+SHA1-Digest: Yyu5meBpG9xZ0u7nPC5AeoUW/zw=
+
+Name: themes/slate/graphics/icons/ctool/whatsnew-select.gif
+SHA1-Digest: /Qq4XXE3i1mUaXyx9iRhQ8V/W5c=
+
+Name: themes/slate/html/tutorials.css
+SHA1-Digest: 4Odp/Gvx+GfsR1ECUTI/mKtmUTE=
+
+Name: themes/slate/html/shared.css
+SHA1-Digest: qMIxx3YJ8vHdurH/wNG2IojaQiI=
+
+Name: themes/purpleMesh/graphics/icons/ctool/firsteps16.png
+SHA1-Digest: Xi6gTgcM86DWgA6hyPn8mRMRwE0=
+
+Name: themes/circles/html/root.css
+SHA1-Digest: YX1L9+DDBz6WfuLKH+3xJrz4uN4=
+
+Name: themes/circles/graphics/icons/ctool/workbench_tophov.gif
+SHA1-Digest: +Bd0or2l4puBTP5oSz9gGyqxboc=
+
+Name: themes/slate/graphics/standby/tu_standby.gif
+SHA1-Digest: 76LqWV6eBwFimzZFB6T2Buh40Jw=
+
+Name: themes/purpleMesh/graphics/icons/etool/firsteps72.gif
+SHA1-Digest: 8bFXxASI73oOdjUe/CbahEIuja0=
+
+Name: themes/purpleMesh/swt/standby.properties
+SHA1-Digest: Et13VGQD/DUcY0mXK2+CwdtfEHM=
+
+Name: themes/slate/graphics/icons/ctool/ov_nav_32.gif
+SHA1-Digest: mK2utAnQW2MhbJurFHYi5qKZ1vE=
+
+Name: themes/circles/graphics/contentpage/ov_banner.jpg
+SHA1-Digest: 10sZ9H16pEffvVYkE+oqY7PFVXo=
+
+Name: themes/purpleMesh/html/shared.css
+SHA1-Digest: KPSVwoWza9iUjjzBkJdr5wPP1YM=
+
+Name: themes/circles/graphics/icons/ctool/nav_rightedgehov.gif
+SHA1-Digest: 5LCcU2on4MwQTTw2MBdcyieAAEM=
+
+Name: themes/purpleMesh/graphics/contentpage/backgroundcurve.gif
+SHA1-Digest: SU4SmeQDMdIE/JG9PcJmA8g/ato=
+
+Name: themes/purpleMesh/graphics/icons/etool/samples48sel.gif
+SHA1-Digest: SOwlUuN/dNPbbRGy97y2JyBenP4=
+
+Name: themes/slate/html/webresources.css
+SHA1-Digest: 1bIsUHigc64MRBrTzXlMzGZRX/Q=
+
+Name: themes/purpleMesh/graphics/icons/ctool/forward.gif
+SHA1-Digest: XmaOiMd1jEsrDB6NdyQqw+d1aAY=
+
+Name: themes/circles/swt/root.properties
+SHA1-Digest: tKcoqTuS/A6XBkZrPU/Tp2zE3W0=
+
+Name: themes/purpleMesh/graphics/icons/etool/forward.gif
+SHA1-Digest: /hIcNo6w11v+EpgTXgFX9a1bYwY=
+
+Name: themes/slate/graphics/contentpage/wr_banner.jpg
+SHA1-Digest: wINF//ANvlaP4bKX40ICJ1h4J2Y=
+
+Name: themes/purpleMesh/graphics/icons/etool/samples48.gif
+SHA1-Digest: tVSl1SZ/C1vzumYiVhIg3neCICQ=
+
+Name: themes/slate/graphics/rootpage/whatsnew48.gif
+SHA1-Digest: UvfhrKZoLquL9Mi9ZmLCo09V0Ho=
+
+Name: themes/slate/html/root.css
+SHA1-Digest: AfeYIjFUtTzAXgOxyLSaYF525yA=
+
+Name: themes/purpleMesh/graphics/launchbar/overview.gif
+SHA1-Digest: pfIpf2IyPaP9OPweaGpcIYG+TFs=
+
+Name: themes/slate/graphics/icons/ctool/tutorials-select.png
+SHA1-Digest: cCY5VvZg9hbvygMCXlNA9jbzDZs=
+
+Name: themes/circles/graphics/icons/ctool/webresources_tophov.gif
+SHA1-Digest: VaZ+AWC7rmAsl7EfAf4RMGe7Ajw=
+
+Name: themes/circles/graphics/icons/ctool/samples.gif
+SHA1-Digest: c9b5vr12KuTDgSh4XxVc3A/Yb5o=
+
+Name: themes/circles/graphics/icons/ctool/whatsnew.gif
+SHA1-Digest: R3qLK0sHbAW98RHHMq7zWy1IO5o=
+
+Name: themes/purpleMesh/graphics/icons/ctool/overview16.png
+SHA1-Digest: F9E6l5MA7FwcZoftgNIyKpPuHIs=
+
+Name: themes/purpleMesh/graphics/contentpage/webrsrc_wtr.jpg
+SHA1-Digest: Ido2Czdqp9qBtLXVuqLFKehNnG0=
+
+Name: themes/slate/graphics/icons/ctool/overview.png
+SHA1-Digest: eXxwilTaGiognsDmKoSJ3ZwT7FU=
+
+Name: themes/purpleMesh/graphics/contentpage/background.jpg
+SHA1-Digest: E2oMRaBMnHtodkZ+6dnqpMVtjYw=
+
+Name: themes/purpleMesh/graphics/icons/etool/overview72.gif
+SHA1-Digest: n74Umhh+1Csw/icpzX8BNun9DPY=
+
+Name: themes/slate/html/rtl.css
+SHA1-Digest: ka03w0wDvzu6rYhWR5cBQWwA6BA=
+
+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew48.gif
+SHA1-Digest: KNlMP7MYOWlZW4S9qu3HLv6oCX0=
+
+Name: themes/circles/html/font-absolute.css
+SHA1-Digest: UPrVP11/+ZJNI7V+e7usdgYpotU=
+
+Name: themes/purpleMesh/graphics/icons/ctool/tutorials72.gif
+SHA1-Digest: 4khSgiovoX4YtZ6eJRPyyBG1tVA=
+
+Name: themes/purpleMesh/graphics/icons/etool/migrate48.gif
+SHA1-Digest: fViGJTGmPbKdrj9R9DEEnQadiCQ=
+
+Name: themes/circles/graphics/icons/ctool/firststeps_tophov.gif
+SHA1-Digest: Oh8ahqB46KYlZOW1WUEdG8UzLeE=
+
+Name: themes/slate/graphics/standby/fs_standby.gif
+SHA1-Digest: 5yXOjWYGu9taQwSM6JmLf07j0fI=
+
+Name: themes/slate/graphics/standby/sa_standby.gif
+SHA1-Digest: MzhZk7rGOmDthzPVK6Ss5ZHDWfc=
+
+Name: themes/circles/graphics/icons/ctool/workbench.png
+SHA1-Digest: NvsOkAqCPAe7ectLZ6VMCYoWlAg=
+
+Name: themes/circles/swt/webresources.properties
+SHA1-Digest: d08aTkBCcpnmmJzT8Jsz4fmFFP8=
+
+Name: themes/circles/graphics/icons/ctool/root_midhov2.gif
+SHA1-Digest: MUXRnbm2U/5T/WKg2Fze3zGWip8=
+
+Name: themes/purpleMesh/graphics/launchbar/webresources16.png
+SHA1-Digest: MKgOo3PUit3DrNfS3CNMBEiz7j0=
+
+Name: themes/slate/graphics/rootpage/webresources48.png
+SHA1-Digest: kxjGlQiN/a/+HyqLGGpjOwltaHc=
+
+Name: themes/circles/graphics/standby/mi_standbyhov.gif
+SHA1-Digest: HnHqLAS7Dn7UNF9Lvj7vq9+KBUc=
+
+Name: themes/purpleMesh/graphics/contentpage/section1.gif
+SHA1-Digest: m5w0U3ih9X9y22rCCdBFryaLvAc=
+
+Name: themes/shared/graphics/contentpage/grey_callout.gif
+SHA1-Digest: yi4BN/3biRiO8mkotR+kIwxTG+M=
+
+Name: themes/slate/html/whatsnew.css
+SHA1-Digest: HKoqKVzXRanzKOmmOTkRgxdCtEY=
+
+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc48.gif
+SHA1-Digest: GmnkTgyukr5A180zab5zZYJ1D0g=
+
+Name: themes/circles/graphics/icons/ctool/tutorials.png
+SHA1-Digest: smC+kYLb5F/BlUJxXGb3OIkzMyA=
+
+Name: themes/slate/graphics/icons/ctool/arrow_rtl.gif
+SHA1-Digest: lbqBjzMYJPrTr2480naQFU3Ctkw=
+
+Name: themes/circles/graphics/icons/ctool/ov_nav_hover.gif
+SHA1-Digest: sX+VnILCJbj/P5cRPP65JpGvZWA=
+
+Name: themes/circles/graphics/icons/ctool/wn_nav_64.gif
+SHA1-Digest: 8dnsIP2CGs5jbXtQSdbqUTOU8Ro=
+
+Name: themes/circles/graphics/icons/ctool/workbench_bottomhov.gif
+SHA1-Digest: 6akkwg9PLd5IbNPUtt/6oTD0Fmc=
+
+Name: themes/slate/graphics/rootpage/workbench48.png
+SHA1-Digest: FgczOQ4VpSiYNbMdQ/83/dGtAvQ=
+
+Name: about.html
+SHA1-Digest: ejOZra0kypGLQQ2bJtGTX+LI8tU=
+
+Name: themes/slate/graphics/rootpage/webresources48_hov.gif
+SHA1-Digest: fLFNLYyPZO7VGdv7Y0pW8cFcGX4=
+
+Name: themes/slate/html/firststeps.css
+SHA1-Digest: 44JdqtdGfVaGtE71FyUy2GsR/rs=
+
+Name: themes/circles/graphics/icons/ctool/mi_nav_64.gif
+SHA1-Digest: Q9shp5C6uwXuvLYysv0huYQDB7g=
+
+Name: themes/circles/swt/whatsnew.properties
+SHA1-Digest: 6OFfokUGKPEnPFqOK5mnQZi4YVQ=
+
+Name: themes/circles/graphics/icons/ctool/sa_nav_hover.gif
+SHA1-Digest: 0T/hb/lLM6+4vlYmaQfabpdGLjQ=
+
+Name: themes/purpleMesh/graphics/icons/ctool/tutorials48sel.gif
+SHA1-Digest: tATI5YuOIrBfjWCFp5WnjlycjL0=
+
+Name: themes/circles/graphics/icons/ctool/sa_nav_64.gif
+SHA1-Digest: Dx4v4tsaMKt29b4G9qaOF5QCrOY=
+
+Name: themes/circles/graphics/icons/ctool/overview.gif
+SHA1-Digest: +uFvLkyNf1o3XI+/Ucf9I3zQCPs=
+
+Name: themes/slate/graphics/rootpage/tutorials48_hov.png
+SHA1-Digest: aTlhURRHXXspu8uUZRhYEbDAojc=
+
+Name: themes/circles/graphics/standby/wn_standby.gif
+SHA1-Digest: 88JPC5OW2W/A8nK+jURGNllSjXc=
+
+Name: themes/circles/graphics/icons/ctool/overview_bottomhov.gif
+SHA1-Digest: YL2P91DIXFlIEdG9NrrY+AhPRsw=
+
+Name: themes/slate/graphics/icons/ctool/wb_nav_32.gif
+SHA1-Digest: GpdTBfJKFFJkVfefZF3oVDI+k1o=
+
+Name: themes/purpleMesh/graphics/icons/ctool/samples48.gif
+SHA1-Digest: u0pYTzvBAB63GQT5RCCUbYqIR/8=
+
+Name: themes/slate/graphics/rootpage/tutorials48.gif
+SHA1-Digest: EOb2R8xvUX5bbijE1zT7PW3yi0k=
+
+Name: themes/circles/graphics/standby/ov_standbyhov.gif
+SHA1-Digest: S4jMdmDN03X8/YD+TgHYLJTrQ1k=
+
+Name: themes/circles/graphics/launchbar/overview16.png
+SHA1-Digest: F9E6l5MA7FwcZoftgNIyKpPuHIs=
+
+Name: themes/slate/graphics/icons/ctool/webresources-select.gif
+SHA1-Digest: jEHkJCqvz90c5NrTt50AG6y8R5g=
+
+Name: themes/purpleMesh/preview.png
+SHA1-Digest: CoxC3E6lWpb5CIhBsZIy51kuLSg=
+
+Name: themes/slate/graphics/rootpage/migrate48_hov.png
+SHA1-Digest: 3jv6dZo2sWUoSzG9+fUC8BNHp2A=
+
+Name: themes/circles/graphics/icons/ctool/fs_nav_64.gif
+SHA1-Digest: IZQIQMgx8FkRqKHONIJUlUwq3rk=
+
+Name: themes/circles/graphics/icons/ctool/overview_midhov.gif
+SHA1-Digest: nnLAEvfmeOC+rzaWxpv6yCe7xeQ=
+
+Name: themes/purpleMesh/html/webresources.css
+SHA1-Digest: sWnYR2Hr4y3AO3Okf8oAO2Ijb0o=
+
+Name: themes/purpleMesh/graphics/icons/etool/migrate48sel.gif
+SHA1-Digest: h+GOvx5olDLCqX/Cby35wMDDXuc=
+
+Name: themes/purpleMesh/graphics/root/background.jpg
+SHA1-Digest: 55fuk1Jgqmsw0nmR/NmsLZU/B/E=
+
+Name: themes/circles/html/ltr.css
+SHA1-Digest: Yyu5meBpG9xZ0u7nPC5AeoUW/zw=
+
+Name: themes/purpleMesh/graphics/icons/etool/webrsrc72.gif
+SHA1-Digest: BXvwP9AN31Xn2K8qtsd1gjhWIcc=
+
+Name: themes/slate/graphics/contentpage/tu_banner.jpg
+SHA1-Digest: 4Hiac9ZLmKM1nD5e+1n/PNz2zZg=
+
+Name: icons/full/obj16/ilow_obj.gif
+SHA1-Digest: wAtRYKFnL5qoURQIXumOywvQmIk=
+
+Name: themes/slate/html/overview.css
+SHA1-Digest: 1a0QMXZcM8a6o/ctVWIeWIcYsXk=
+
+Name: themes/purpleMesh/graphics/icons/ctool/migrate48.gif
+SHA1-Digest: 13w8+9/+TWNT9hGKV+Haz8Qiw6o=
+
+Name: themes/slate/graphics/launchbar/tutorials16.png
+SHA1-Digest: i2tAwI/AV2AL9+0LBrkT2facrps=
+
+Name: themes/circles/html/firststeps.css
+SHA1-Digest: EV55fIWanWb1kPj8xH09DQH48HI=
+
+Name: themes/circles/graphics/icons/ctool/fs_nav_hover.gif
+SHA1-Digest: MTOxVXUpblDdX5KvJiaJPR1tU3c=
+
+Name: themes/circles/graphics/standby/tu_standbyhov.gif
+SHA1-Digest: sWxT9jjy1CbwVqXWKiMSMRgDs8I=
+
+Name: themes/slate/graphics/standby/wb_standbyhov.gif
+SHA1-Digest: M93nY3cEdQ0Ot7ymKz9lcr/vVgQ=
+
+Name: themes/slate/html/font-absolute.css
+SHA1-Digest: xS0MRrwTLXqa5OQd1iW6iHIy3Bc=
+
+Name: themes/circles/swt/standby.properties
+SHA1-Digest: hIrIt7g/8ze49RvoZt8oujUIY3U=
+
+Name: themes/circles/graphics/icons/ctool/migrate.gif
+SHA1-Digest: kSYjWyWIS8iBRq1xaFM4xHb3Bdk=
+
+Name: themes/circles/graphics/icons/ctool/webresources.png
+SHA1-Digest: 0sKVVhl4zyGuSQxxs1pyupEqEro=
+
+Name: icons/full/obj16/image_obj.gif
+SHA1-Digest: DT00AOgk+LSxwyBDkotC5FiPYRI=
+
+Name: themes/purpleMesh/swt/tutorials.properties
+SHA1-Digest: I2RxA1+OY6LYltetui8ofyH59eo=
+
+Name: themes/slate/graphics/icons/ctool/overview-select.png
+SHA1-Digest: hVN47i7yjwEaoeO/EczGzvS0h2Q=
+
+Name: themes/shared/graphics/contentpage/wn-fs_high.gif
+SHA1-Digest: oiMP7gOeLwfgSvXA0kWFlpITY7U=
+
+Name: themes/circles/graphics/icons/ctool/tu_nav.png
+SHA1-Digest: dNoyc7XQ0/y0TYmDYpA3RH2BDu8=
+
+Name: themes/purpleMesh/graphics/root/brandmark.gif
+SHA1-Digest: PgN5Rj0TJwB5pNIjtFRXU8ztH0A=
+
+Name: themes/purpleMesh/graphics/icons/ctool/tutorials16.png
+SHA1-Digest: i2tAwI/AV2AL9+0LBrkT2facrps=
+
+Name: themes/slate/graphics/icons/ctool/samples-select.png
+SHA1-Digest: vq/g/Lw1FwHfkm6p/FOlemij/5I=
+
+Name: themes/slate/graphics/rootpage/overview48.png
+SHA1-Digest: 99XyAwX7m5mYQ4AOgObbGzd5RDw=
+
+Name: themes/purpleMesh/graphics/icons/etool/samples72.gif
+SHA1-Digest: yaI/A4O3sg62jftxAs4A5ovsDIE=
+
+Name: themes/circles/graphics/standby/fs_standbyhov.gif
+SHA1-Digest: j3OetXMY7tyEtqQChTtohOIDzgk=
+
+Name: themes/purpleMesh/graphics/icons/etool/whatsnew48.gif
+SHA1-Digest: mPoULJKT+XF9OOr07H7Zm7jItL4=
+
+Name: themes/purpleMesh/graphics/icons/ctool/wb16.png
+SHA1-Digest: rtGpm0vAJROmvKqNhIA86Oii2QU=
+
+Name: themes/circles/graphics/icons/ctool/mi_nav.png
+SHA1-Digest: DugGCwIqDGwAjbE6lxcgfs0Wcv4=
+
+Name: themes/slate/graphics/icons/ctool/ov_nav.png
+SHA1-Digest: KtxMxu+ASHojP1pS3ir3RurjNk8=
+
+Name: themes/circles/graphics/icons/ctool/wr_nav_32.gif
+SHA1-Digest: TdYmSHa2YYmdttUqBg/bnvUwPFU=
+
+Name: themes/slate/graphics/rootpage/workbench48_hov.png
+SHA1-Digest: zEzcCes6vflGY6bOsv24Rl5Gjds=
+
+Name: themes/circles/graphics/icons/ctool/overview_tophov.gif
+SHA1-Digest: wV+i4eDKNxlIgXGRM+u+vAgyE3w=
+
+Name: icons/full/obj16/ihigh_obj.gif
+SHA1-Digest: vI+PIICL5niI3cp3BIHFmKNezJM=
+
+Name: themes/purpleMesh/graphics/icons/etool/home.gif
+SHA1-Digest: /or5ve5EMGFdF2Y0L2g5nyUuIIw=
+
+Name: themes/purpleMesh/graphics/contentpage/whatsnew_wtr.jpg
+SHA1-Digest: XRef3brftgagwayG3XY716228lA=
+
+Name: themes/purpleMesh/graphics/icons/etool/back.gif
+SHA1-Digest: ySnsDpMG5nwH+1FeV2r27mUrMkU=
+
+Name: themes/slate/graphics/icons/ctool/wn_nav_32.gif
+SHA1-Digest: 2MmKSbuOyZVL2zJF4G8nB5PD40E=
+
+Name: themes/circles/graphics/contentpage/wn_banner.jpg
+SHA1-Digest: YUKNXzoHrliZGSKkB1xULdQM1pM=
+
+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew72.gif
+SHA1-Digest: 5291YmuJ2qb7ZUbxqgabvlAUXZw=
+
+Name: themes/purpleMesh/graphics/icons/etool/migrate72.gif
+SHA1-Digest: cixlyOEhHbqYFBRvcfJB++/1zA0=
+
+Name: themes/shared/graphics/icons/ctool/widget_open.gif
+SHA1-Digest: Apgb6HcsxsXMS+sHuk/qeY8n4Hg=
+
+Name: themes/circles/graphics/icons/ctool/ov_nav_midhov.gif
+SHA1-Digest: ww8UaEmFh8Ua/BIxSr1+x4ZGgjs=
+
+Name: themes/slate/graphics/rootpage/whatsnew48_hov.png
+SHA1-Digest: AtJW/I5jeOgeNN8s/05OYoPbiNI=
+
+Name: themes/purpleMesh/swt/samples.properties
+SHA1-Digest: zHgXqSHAR+13ShPdQ+v5A7zVxQ0=
+
+Name: themes/slate/graphics/rootpage/overview48_hov.gif
+SHA1-Digest: lMx3CV4GH+dLQSIaRIcoHkky8Wk=
+
+Name: themes/purpleMesh/graphics/launchbar/tutorials.gif
+SHA1-Digest: p/9KyKfeLBTEfkIq5VoXuUzv+CI=
+
+Name: themes/slate/graphics/icons/ctool/mi_nav_32.gif
+SHA1-Digest: mATXWuXqCWzSKixiSQs+YOGKGco=
+
+Name: themes/shared/graphics/contentpage/tu-sa_high.gif
+SHA1-Digest: yiKi7S7vBveH4hyEQdwg4/A2XPo=
+
+Name: themes/circles/graphics/standby/wr_standbyhov.gif
+SHA1-Digest: 1rq4e0czEMOde7HG8ZUK1yqzD88=
+
+Name: themes/circles/graphics/contentpage/mi_banner.jpg
+SHA1-Digest: 1sw4BuKCsz60H2Os3tfy525HyLo=
+
+Name: themes/purpleMesh/graphics/root/dots.gif
+SHA1-Digest: J8KQRqbJZhxVIt9FA8p0AcCnowc=
+
+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc72.gif
+SHA1-Digest: DD9I/BC6qA7bx2G7VKVRdAIpEYM=
+
+Name: themes/circles/html/shared.css
+SHA1-Digest: NJbZ3ZOvYbHm3hSIEHPQBig4eDA=
+
+Name: themes/slate/graphics/icons/ctool/sa_nav_32.gif
+SHA1-Digest: zWmN8ic58PiJmRsQN6M8kkO112Y=
+
+Name: themes/slate/swt/whatsnew.properties
+SHA1-Digest: +6rLRTIyqqFhxw9OwYjFyI9LYHU=
+
+Name: themes/circles/graphics/contentpage/sa_banner.jpg
+SHA1-Digest: 7WoYSLMwBhmg1/b/vzgmc4EEEYU=
+
+Name: themes/circles/graphics/standby/tu_standby.gif
+SHA1-Digest: 76LqWV6eBwFimzZFB6T2Buh40Jw=
+
+Name: themes/slate/graphics/standby/wb_standby.gif
+SHA1-Digest: iYWACoN3sIlFFpx6p5DfMjT8yp4=
+
+Name: themes/circles/graphics/icons/ctool/cpt_bottomhov.gif
+SHA1-Digest: kK+FVIIHjU6Om4Pa8Mf1Cb9qZ3k=
+
+Name: themes/circles/graphics/icons/ctool/wn_nav_hover.gif
+SHA1-Digest: Dhv+82YCN/981G9RTNEIB18Lpdc=
+
+Name: themes/slate/graphics/standby/wr_standby.gif
+SHA1-Digest: xduVT3RSYRMM5sYjyQAjf+Jf17I=
+
+Name: themes/circles/graphics/icons/ctool/content_nav_bar.gif
+SHA1-Digest: kr9yIeTjSkVaXNPuVOWWopYNvho=
+
+Name: themes/slate/swt/standby.properties
+SHA1-Digest: bV7foFtJyLQF3lqerXPZKET+4ew=
+
+Name: themes/slate/graphics/icons/ctool/fs_nav_32.gif
+SHA1-Digest: BSKmmm0UjJhF46bslzBFgsMhk28=
+
+Name: themes/circles/graphics/standby/sa_standbyhov.gif
+SHA1-Digest: R1KR8mlM3qFlzVMir6EJcoAJ6lE=
+
+Name: themes/circles/graphics/contentpage/fs_banner.jpg
+SHA1-Digest: vUx+zrIjtCFpyr9f3ERQ6/HpSzw=
+
+Name: themes/shared/graphics/icons/ctool/arrow_rtl.gif
+SHA1-Digest: lbqBjzMYJPrTr2480naQFU3Ctkw=
+
+Name: themes/purpleMesh/graphics/launchbar/firststeps16.png
+SHA1-Digest: Xi6gTgcM86DWgA6hyPn8mRMRwE0=
+
+Name: themes/purpleMesh/graphics/contentpage/firsteps_wtr.jpg
+SHA1-Digest: SLogcCehi5NObA2KuLZ7nA738ds=
+
+Name: themes/purpleMesh/graphics/contentpage/overview_wtr.jpg
+SHA1-Digest: koZJeO/5SBXUv2ah5lALiklDKnY=
+
+Name: icons/full/elcl16/configure.gif
+SHA1-Digest: lO5chUjiq4EA093CHoujkIE+2ro=
+
+Name: themes/purpleMesh/graphics/icons/ctool/samples72.gif
+SHA1-Digest: 8tJ5D2Qt3JGFuK3tVzR2zDvw1UA=
+
+Name: themes/circles/graphics/launchbar/webresources16.png
+SHA1-Digest: MKgOo3PUit3DrNfS3CNMBEiz7j0=
+
+Name: themes/slate/graphics/rootpage/samples48_hov.png
+SHA1-Digest: 2YRNbbxotyUjDVT/r3kFEq6poLo=
+
+Name: themes/circles/graphics/standby/fs_standby.gif
+SHA1-Digest: 5yXOjWYGu9taQwSM6JmLf07j0fI=
+
+Name: themes/circles/graphics/standby/sa_standby.gif
+SHA1-Digest: MzhZk7rGOmDthzPVK6Ss5ZHDWfc=
+
+Name: themes/purpleMesh/html/tutorials.css
+SHA1-Digest: ei1JflrAWiaDdaAr3H0KmumaF98=
+
+Name: themes/slate/graphics/contentpage/ov_banner.jpg
+SHA1-Digest: 2Wu7/rm22OIorJVynaU7zk/G8cg=
+
+Name: themes/purpleMesh/graphics/icons/ctool/migrate72.gif
+SHA1-Digest: QpVdHFygYIEYpSnJi/P3L9MHuqE=
+
+Name: themes/circles/graphics/icons/ctool/tu_nav_32.gif
+SHA1-Digest: ERMabqNtihbmhosEh+AMC9m6SgQ=
+
+Name: themes/slate/graphics/rootpage/background.jpg
+SHA1-Digest: clqgSqmczSLuMgglgV10PWWPA9g=
+
+Name: themes/shared/graphics/contentpage/tu-sa_med.gif
+SHA1-Digest: h/hEsdE7RIYhwsmZzkQG1XWxsys=
+
+Name: themes/slate/graphics/icons/ctool/firststeps-select.png
+SHA1-Digest: fe9h2ATKSpO/CQpV0CiE3Ja0Mo0=
+
+Name: themes/circles/swt/tutorials.properties
+SHA1-Digest: KzD9PkAEIUKHMB95H+XTKCwE0yQ=
+
+Name: META-INF/eclipse.inf
+SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw=
+
+Name: themes/slate/graphics/icons/ctool/firststeps.png
+SHA1-Digest: Slw4nKX4xZvu6mCCFHsDWMjdIMw=
+
+Name: themes/circles/graphics/standby/wn_standbyhov.gif
+SHA1-Digest: NbMYb8Ka2D8DlnjzdS2qA6E8j9I=
+
+Name: .options
+SHA1-Digest: C+1XlDx3q4e5awMudzzcXc0+HR8=
+
+Name: themes/purpleMesh/graphics/icons/etool/whatsnew48sel.gif
+SHA1-Digest: 6aRXuEW+469og8tyzagdemjWMtU=
+
+Name: themes/slate/html/ltr.css
+SHA1-Digest: Yyu5meBpG9xZ0u7nPC5AeoUW/zw=
+
+Name: themes/shared/graphics/icons/ctool/arrow.gif
+SHA1-Digest: iyBS4QdZ6imHjGPw321lqh6SJSo=
+
+Name: themes/slate/graphics/rootpage/firststeps48_hov.png
+SHA1-Digest: u8839OydWVij9f/XScZyzGhsI+E=
+
+Name: themes/slate/graphics/icons/ctool/tutorials-select.gif
+SHA1-Digest: RyAwY/Ne3m1SyA/5nJImuJ3fKNg=
+
+Name: themes/purpleMesh/graphics/icons/ctool/whatsnew16.png
+SHA1-Digest: h+KhHUY6Dp0Q8Jm2f2zIe/6WTlQ=
+
+Name: themes/purpleMesh/graphics/icons/ctool/home.gif
+SHA1-Digest: +dfHtXYrxLHjjn8I1hvSsiolVec=
+
+Name: themes/slate/graphics/icons/ctool/workbench.png
+SHA1-Digest: NvsOkAqCPAe7ectLZ6VMCYoWlAg=
+
+Name: themes/purpleMesh/graphics/icons/ctool/back.gif
+SHA1-Digest: /ee1AJtypM5HojkNnK17U+1toxw=
+
+Name: themes/purpleMesh/graphics/icons/etool/whatsnew72.gif
+SHA1-Digest: VVjmCJZSVuW19ir4QGPMhB7Npwk=
+
+Name: themes/purpleMesh/graphics/launchbar/samples.gif
+SHA1-Digest: f+tsB+8P19AEujlqYKaF47r+bRo=
+
+Name: plugin.properties
+SHA1-Digest: j9b4Qc2R4fauSPFwVkCuw/97RmY=
+
+Name: themes/slate/graphics/standby/mi_standbyhov.gif
+SHA1-Digest: HnHqLAS7Dn7UNF9Lvj7vq9+KBUc=
+
+Name: themes/slate/graphics/launchbar/overview16.png
+SHA1-Digest: F9E6l5MA7FwcZoftgNIyKpPuHIs=
+
+Name: themes/circles/preview.png
+SHA1-Digest: p2GDfi7EuI8iZYsSRdPhU6yn/tA=
+
+Name: themes/circles/graphics/icons/ctool/wr_nav_64.gif
+SHA1-Digest: yKH5q0AkPnPz33CwUnAawnSB37Y=
+
+Name: themes/circles/html/webresources.css
+SHA1-Digest: oJ2uN/Df/fQ9VVcHmmjDUenv7AM=
+
+Name: themes/circles/graphics/icons/ctool/workbench.gif
+SHA1-Digest: fXSnXQQliUHXuHkVtPEd48wAmU0=
+
+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc16.png
+SHA1-Digest: MKgOo3PUit3DrNfS3CNMBEiz7j0=
+
+Name: plugin.xml
+SHA1-Digest: HTH+0R6u0txmcBdMgUYHHxi5NA0=
+
+Name: themes/slate/graphics/icons/ctool/wb_nav.png
+SHA1-Digest: FH8HqOCtz5sLOSGSXLTuXtscYdw=
+
+Name: themes/slate/graphics/icons/ctool/fs_nav.png
+SHA1-Digest: 3F+Z798k2zAOQHXppBvRobdsVgY=
+
+Name: themes/slate/graphics/icons/ctool/tutorials.png
+SHA1-Digest: smC+kYLb5F/BlUJxXGb3OIkzMyA=
+
+Name: themes/slate/graphics/rootpage/webresources48.gif
+SHA1-Digest: Wkwu0trR5o4j216/eKGrLUXQgVQ=
+
+Name: themes/circles/swt/samples.properties
+SHA1-Digest: Ncf3sOn+P9/86/XoIn4hcq9icD4=
+
+Name: themes/purpleMesh/swt/overview.properties
+SHA1-Digest: 4XuXPT9lJyYZUd15XLQ2S2NY0Rs=
+
+Name: themes/slate/graphics/icons/ctool/wn_nav.png
+SHA1-Digest: d7McdCEtfxPQ+F5vlR38rVTvgXo=
+
+Name: themes/purpleMesh/html/whatsnew.css
+SHA1-Digest: a2kvguq57VvzsFpUWd3lNE8NhXk=
+
+Name: themes/slate/graphics/icons/ctool/wr_nav.png
+SHA1-Digest: RiRbJ01jNoAefHKxAe7htjgxNc8=
+
+Name: themes/circles/graphics/icons/ctool/firststeps.png
+SHA1-Digest: Slw4nKX4xZvu6mCCFHsDWMjdIMw=
+
+Name: themes/circles/graphics/icons/ctool/tutorials.gif
+SHA1-Digest: B3mR2l7PuKW4ohGN2+6MgQ0N4+E=
+
+Name: themes/purpleMesh/graphics/icons/ctool/webrsrc48sel.gif
+SHA1-Digest: xolbR3GLHkwY40HpoCR7l2cvo8E=
+
+Name: themes/slate/graphics/rootpage/samples48.png
+SHA1-Digest: 0aBwYaDsSfDY9wFfyZYhgWauOts=
+
+Name: themes/slate/swt/webresources.properties
+SHA1-Digest: t5J8E7LadPCb0Nado0og3neqeP4=
+
+Name: themes/purpleMesh/html/samples.css
+SHA1-Digest: aV9FCYH/Y99OxfBo3a89dBVVb2w=
+
+Name: themes/slate/graphics/rootpage/workbench48.gif
+SHA1-Digest: bCEuWQrXaxDHRsdbV32vhZTaTAw=
+
+Name: themes/purpleMesh/graphics/icons/obj48/newhov_obj.gif
+SHA1-Digest: bYXzhCgIi1p/aDvaAoOBGIrBuKA=
+
+Name: themes/slate/graphics/icons/ctool/migrate-select.png
+SHA1-Digest: 4FsIwltnwRBT6zUU9ZhfqWqeCMg=
+
+Name: themes/purpleMesh/graphics/icons/dtool/forward.gif
+SHA1-Digest: /hIcNo6w11v+EpgTXgFX9a1bYwY=
+
+Name: themes/slate/graphics/rootpage/migrate48.png
+SHA1-Digest: fYUHrau4PFFvcGeeVKUmDXXFlzM=
+
+Name: introContent.xml
+SHA1-Digest: oBGOdDNVJDRhzWJduBCcMgybxlg=
+
+Name: themes/purpleMesh/graphics/icons/ctool/samples16.png
+SHA1-Digest: +A2GGC4SIIC5T7Tlg4U4Z0UqIVQ=
+
+Name: themes/shared/graphics/icons/ctool/widget_open_hov.gif
+SHA1-Digest: MmG5r1m7Bt3SovQedHnqx/yef6c=
+
+Name: themes/slate/graphics/standby/ov_standbyhov.gif
+SHA1-Digest: S4jMdmDN03X8/YD+TgHYLJTrQ1k=
+
+Name: themes/slate/graphics/rootpage/root_banner_logo.jpg
+SHA1-Digest: /CP6QAhd0edNjnbONqlngQnllMA=
+
+Name: themes/purpleMesh/graphics/icons/etool/firsteps48sel.gif
+SHA1-Digest: uOZ5e0VrbpuNNVW7lRzqZfCtTW4=
+
+Name: themes/purpleMesh/swt/firststeps.properties
+SHA1-Digest: aASynB9pAU45n6Ybk1G/NcO1fdI=
+
+Name: themes/slate/graphics/rootpage/tutorials48_hov.gif
+SHA1-Digest: 4SvJnMqRTwJ+zIoB8cQR38SSd24=
+
+Name: themes/slate/graphics/rootpage/firststeps48.png
+SHA1-Digest: 5Mnj5NHzv8W/LV+9YDC5mHVlj9A=
+
+Name: themes/circles/graphics/launchbar/whatsnew16.png
+SHA1-Digest: h+KhHUY6Dp0Q8Jm2f2zIe/6WTlQ=
+
+Name: themes/purpleMesh/swt/migrate.properties
+SHA1-Digest: cE6O/0BBstAtfvzhz8YejE5SX8Q=
+
+Name: themes/circles/graphics/icons/ctool/root_bottomhov.gif
+SHA1-Digest: iwXyduiJRV5Bdtz/1NQf51QxyqU=
+
+Name: themes/purpleMesh/graphics/launchbar/migrate16.png
+SHA1-Digest: cdjjFVkozz0y9ji+FpASYhOALwk=
+
+Name: themes/purpleMesh/html/font-relative.css
+SHA1-Digest: PqZAKDAg+G3+bdo7roEyD1vX+6Y=
+
+Name: themes/circles/graphics/icons/ctool/wb_nav_hover.gif
+SHA1-Digest: D42boB3rk+XDSbYZH5AZmnsKB4A=
+
+Name: themes/purpleMesh/graphics/icons/ctool/migrate16.png
+SHA1-Digest: cdjjFVkozz0y9ji+FpASYhOALwk=
+
+Name: themes/slate/graphics/rootpage/migrate48_hov.gif
+SHA1-Digest: cLdOTCmvcsdeG2+P5GWUtX33mwc=
+
+Name: themes/purpleMesh/graphics/icons/etool/tutorials48sel.gif
+SHA1-Digest: jc00LK6MGDAAaGfP4M5RyJXGuQE=
+
+Name: themes/slate/graphics/icons/ctool/whatsnew-select.png
+SHA1-Digest: h1ALltqSjS2PyFiadyhunaVj0Rc=
+
+Name: themes/circles/graphics/icons/ctool/ov_nav.png
+SHA1-Digest: KtxMxu+ASHojP1pS3ir3RurjNk8=
+
+Name: themes/purpleMesh/graphics/icons/etool/overview48sel.gif
+SHA1-Digest: OKGFb61YvHR3BUEWxZMRoOrDc0U=
+
+Name: themes/shared/graphics/contentpage/wr-mi_med.gif
+SHA1-Digest: sMBntAOuQRZ4SVT9n0EUumCXqio=
+
+Name: themes/slate/graphics/standby/tu_standbyhov.gif
+SHA1-Digest: sWxT9jjy1CbwVqXWKiMSMRgDs8I=
+
+Name: themes/circles/graphics/icons/ctool/wr_nav_hover.gif
+SHA1-Digest: PqoCgMnPYQAZ5Sh//KRwq3GiElY=
+
+Name: themes/slate/graphics/launchbar/firststeps16.png
+SHA1-Digest: Xi6gTgcM86DWgA6hyPn8mRMRwE0=
+
+Name: themes/purpleMesh/html/overview.css
+SHA1-Digest: y0DWH504MPKylYGmOgVS5qb3pB0=
+
+Name: themes/slate/graphics/standby/ov_standby.gif
+SHA1-Digest: HunoPS0cid3oVEr1sZr/zorOhSo=
+
+Name: themes/circles/html/tutorials.css
+SHA1-Digest: w/Jtk6Bi+30x/49Z8c/2RbISOTk=
+
+Name: themes/circles/graphics/rootpage/welcomebckgrd.jpg
+SHA1-Digest: RsjLJW93PHvXmiEpV1h7Z7/PmG0=
+
+Name: themes/purpleMesh/html/rtl.css
+SHA1-Digest: 2B29TxTe/FduV6aD5p0J9bAq9Vw=
+
+Name: themes/purpleMesh/graphics/icons/ctool/firsteps48.gif
+SHA1-Digest: +i2ExoEMVgv5OsKcPs/8ZqldrV4=
+
+Name: themes/slate/graphics/icons/ctool/sa_nav.png
+SHA1-Digest: uXMdf9iE7j6nm8Kb+4XilPOc3KQ=
+
+Name: themes/circles/graphics/icons/ctool/samples_tophov.gif
+SHA1-Digest: 9fSubIMcSGRm6kHstxpp/hWR2MY=
+
+Name: themes/circles/graphics/icons/ctool/whatsnew_tophov.gif
+SHA1-Digest: Dz4B6J4zj82LLZHLRDUGJ5zhaa8=
+
+Name: themes/circles/graphics/icons/ctool/webresources.gif
+SHA1-Digest: XXqmYcqNJAe+O7jDcR2IF01wCvI=
+
+Name: themes/circles/graphics/icons/ctool/ov_nav_rightedgehov.gif
+SHA1-Digest: +ldcPGuLxaDCtgM9cCVBp834H6w=
+
+Name: themes/purpleMesh/graphics/icons/etool/tutorials48.gif
+SHA1-Digest: fxo+8hPJ1SxRJQpke2wKEXdASIA=
+
+Name: .api_description
+SHA1-Digest: aEjIyLX/qavVSW+KUVFCWyFNqno=
+
+Name: themes/shared/graphics/contentpage/ov_high.gif
+SHA1-Digest: IKGW38eYO7vaBoKhdiw7GpIAKBk=
+
+Name: themes/circles/graphics/icons/ctool/ov_nav_32.gif
+SHA1-Digest: mK2utAnQW2MhbJurFHYi5qKZ1vE=
+
+Name: themes/slate/swt/samples.properties
+SHA1-Digest: Lk9VkvX9y75vbaIYZjTwpe3vlc8=
+
+Name: themes/circles/graphics/icons/ctool/tu_nav_64.gif
+SHA1-Digest: L64ZAN2mr8wKAPAY0pRqPrEZgp0=
+
+Name: themes/slate/graphics/icons/ctool/overview-select.gif
+SHA1-Digest: rDatrh5+RWGgBQOsdxqZlA4w2Zc=
+
+Name: themes/shared/graphics/icons/ctool/widget_closed.gif
+SHA1-Digest: Ce25KultCG+5fRN3Er6QposVUqQ=
+
+Name: themes/slate/graphics/standby/fs_standbyhov.gif
+SHA1-Digest: j3OetXMY7tyEtqQChTtohOIDzgk=
+
+Name: themes/slate/graphics/icons/ctool/wr_nav_32.gif
+SHA1-Digest: TdYmSHa2YYmdttUqBg/bnvUwPFU=
+
+Name: themes/circles/graphics/standby/wb_standby.gif
+SHA1-Digest: iYWACoN3sIlFFpx6p5DfMjT8yp4=
+
+Name: themes/shared/graphics/icons/ctool/widget_closed_hov.gif
+SHA1-Digest: RdXAhCz407pCYDiqC38P0Uup5Lk=
+
+Name: themes/slate/graphics/rootpage/whatsnew48.png
+SHA1-Digest: XqPtN6ePY9fMqiYf413JSqumPYM=
+
+Name: themes/circles/graphics/icons/ctool/samples.png
+SHA1-Digest: mUEIQ9eqMWNIQEiNPyGfsplQZTY=
+
+Name: themes/circles/graphics/icons/ctool/whatsnew.png
+SHA1-Digest: 7yax9xdOrPlNoCNBqEo0D2Wn98A=
+
+Name: themes/slate/graphics/icons/ctool/samples-select.gif
+SHA1-Digest: 2jcUxYNETQZSndqWOTWNrNjZr3M=
+
+Name: themes/slate/graphics/rootpage/overview48.gif
+SHA1-Digest: HJKThR/+8xlKkV/iwAnJoKIBEjc=
+
+Name: themes/circles/graphics/contentpage/wr_banner.jpg
+SHA1-Digest: lMNC8ZRpqVeAjGGom/2FCfIla0I=
+
+Name: themes/slate/graphics/standby/mi_standby.gif
+SHA1-Digest: 5hYhaXir5S3NKycOObVKVsAr09E=
+
+Name: themes/slate/swt/firststeps.properties
+SHA1-Digest: XEd5LUGfrXm+Fi2Pm2Sxabb+o2Q=
+
+Name: themes/slate/graphics/icons/ctool/samples.png
+SHA1-Digest: mUEIQ9eqMWNIQEiNPyGfsplQZTY=
+
+Name: themes/circles/graphics/standby/wr_standby.gif
+SHA1-Digest: xduVT3RSYRMM5sYjyQAjf+Jf17I=
+
+Name: themes/slate/graphics/rootpage/workbench48_hov.gif
+SHA1-Digest: Y2ot6r+86mWEmot6dSbW7qBXxrA=
+
+Name: themes/slate/graphics/contentpage/wn_banner.jpg
+SHA1-Digest: B7PqiMv+1kh2aQSblUfgzqJY+vc=
+
+Name: themes/circles/graphics/launchbar/firststeps16.png
+SHA1-Digest: Xi6gTgcM86DWgA6hyPn8mRMRwE0=
+
+Name: themes/purpleMesh/html/migrate.css
+SHA1-Digest: QWGn8isbJ0z51DThM2DY0vmiUQY=
+
+Name: themes/purpleMesh/graphics/icons/ctool/overview48.gif
+SHA1-Digest: p166YKsHvy7lDhFvTVC+MWHEPNI=
+
+Name: themes/purpleMesh/html/standby.css
+SHA1-Digest: YImivxRli186nUOikfJNfRQ9heg=
+
+Name: icons/full/obj16/extension_obj.gif
+SHA1-Digest: Z2OZk1zGHkMoKUiUg4yQs9yLbG0=
+
+Name: themes/purpleMesh/graphics/icons/etool/wb48.gif
+SHA1-Digest: hUPACtH5KYkHcJaBMckWNa6Rp0Y=
+
+Name: themes/slate/graphics/rootpage/whatsnew48_hov.gif
+SHA1-Digest: 2irx38fThjn95Bc5TeX4Nz2l1eM=
+
+Name: themes/slate/graphics/standby/wr_standbyhov.gif
+SHA1-Digest: 1rq4e0czEMOde7HG8ZUK1yqzD88=
+
+Name: themes/slate/graphics/contentpage/mi_banner.jpg
+SHA1-Digest: BmFPKdVlhpqtGVVuiBAEfsWiDJc=
+
+Name: themes/circles/graphics/icons/ctool/nav_midhov.gif
+SHA1-Digest: UzxXgA/8cTju4cty8vMKKxHvc4k=
+
+Name: themes/circles/graphics/icons/ctool/sa_onesample48.gif
+SHA1-Digest: SgTfSJwJOJRFZ/IcEX2QPiygsNc=
+
+Name: themes/purpleMesh/html/root.css
+SHA1-Digest: L5Tx+BMdeBiODngBKJUu+AAVctw=
+
+Name: themes/slate/graphics/contentpage/sa_banner.jpg
+SHA1-Digest: Ug2BpLsYYBUgSQ7NunyprrBNUl0=
+
+Name: themes/circles/html/samples.css
+SHA1-Digest: i1NavsbJM5qrz/TuG8KCHYInrGw=
+
+Name: themes/circles/graphics/icons/ctool/arrow_rtl.gif
+SHA1-Digest: lbqBjzMYJPrTr2480naQFU3Ctkw=
+
+Name: themes/purpleMesh/graphics/icons/ctool/samples48sel.gif
+SHA1-Digest: oN1vH4wGhKWwoMcHmyoj58c+wv4=
+
+Name: themes/purpleMesh/graphics/contentpage/section4.gif
+SHA1-Digest: G6k7Z/zfXfLy9LtPLbb9QOw8ocE=
+
+Name: themes/slate/graphics/rootpage/webresources48_hov.png
+SHA1-Digest: uQSI5dNR5WKXZqCPYNBXOwlAero=
+
+Name: themes/slate/html/samples.css
+SHA1-Digest: MQjp+/7X99His50rasEJD96/e7k=
+
+Name: themes/slate/graphics/standby/sa_standbyhov.gif
+SHA1-Digest: R1KR8mlM3qFlzVMir6EJcoAJ6lE=
+
+Name: themes/purpleMesh/swt/root.properties
+SHA1-Digest: kzz0orYVHgZJ1gxM+EZQxlbiK6k=
+
+Name: themes/slate/graphics/contentpage/fs_banner.jpg
+SHA1-Digest: pKMXP4ayqEGlW6vkG4+uUzK8KOY=
+
+Name: themes/purpleMesh/graphics/icons/obj48/new_obj.gif
+SHA1-Digest: Y/Bwx578bV6kzFqO2dx3H9gJtTo=
+
+Name: themes/circles/graphics/launchbar/samples16.png
+SHA1-Digest: +A2GGC4SIIC5T7Tlg4U4Z0UqIVQ=
+
+Name: themes/shared/graphics/contentpage/wr-mi_high.gif
+SHA1-Digest: 2RQtHiwrJLvAsbE+LgDUgDBAREk=
+
+Name: themes/circles/graphics/icons/ctool/overview.png
+SHA1-Digest: eXxwilTaGiognsDmKoSJ3ZwT7FU=
+
+Name: themes/slate/graphics/launchbar/samples16.png
+SHA1-Digest: +A2GGC4SIIC5T7Tlg4U4Z0UqIVQ=
+
+Name: themes/purpleMesh/graphics/contentpage/tutorials_wtr.jpg
+SHA1-Digest: crA+sbMxuv6QOQml9WDHmcSYGcE=
+
+Name: universal.jar
+SHA1-Digest: jr+MZWA89AGisRFIF165u4g8kbE=
+
+Name: themes/slate/graphics/icons/ctool/webresources.png
+SHA1-Digest: 0sKVVhl4zyGuSQxxs1pyupEqEro=
+
+Name: themes/slate/graphics/rootpage/tutorials48.png
+SHA1-Digest: yKtB0uZVtrJ+JoR2z0YAYQ5W3sA=
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/eclipse.inf b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/eclipse.inf
new file mode 100644
index 0000000..7864d3c
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/META-INF/eclipse.inf
@@ -0,0 +1,3 @@
+#Processed using Jarprocessor
+pack200.args = -E4
+pack200.conditioned = true
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/about.html b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/about.html
new file mode 100644
index 0000000..4602330
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/about.html
@@ -0,0 +1,28 @@
+
+
+
+
+About
+
+
+
About This Content
+
+
June 2, 2006
+
License
+
+
The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise
+indicated below, the Content is provided to you under the terms and conditions of the
+Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available
+at http://www.eclipse.org/legal/epl-v10.html.
+For purposes of the EPL, "Program" will mean the Content.
+
+
If you did not receive this Content directly from the Eclipse Foundation, the Content is
+being redistributed by another party ("Redistributor") and different terms and conditions may
+apply to your use of any object code in the Content. Check the Redistributor's license that was
+provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise
+indicated below, the terms and conditions of the EPL still apply to any source code in the Content
+and such source code may be obtained at http://www.eclipse.org.
+
+
+
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/elcl16/configure.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/elcl16/configure.gif
new file mode 100644
index 0000000..13102f6
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/elcl16/configure.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/extension_obj.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/extension_obj.gif
new file mode 100644
index 0000000..7f3f595
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/extension_obj.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/icallout_obj.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/icallout_obj.gif
new file mode 100644
index 0000000..f52d86a
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/icallout_obj.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/ihigh_obj.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/ihigh_obj.gif
new file mode 100644
index 0000000..f99bdc3
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/ihigh_obj.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/ilow_obj.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/ilow_obj.gif
new file mode 100644
index 0000000..a6815bc
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/ilow_obj.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/image_obj.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/image_obj.gif
new file mode 100644
index 0000000..830be0e
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/image_obj.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/inew_obj.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/inew_obj.gif
new file mode 100644
index 0000000..b1526e9
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/full/obj16/inew_obj.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/welcome16.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/welcome16.gif
new file mode 100644
index 0000000..b20cc78
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/icons/welcome16.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/introContent.xml b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/introContent.xml
new file mode 100644
index 0000000..77066b7
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/introContent.xml
@@ -0,0 +1,270 @@
+
+
+
+
+
+
+
+
+ $introTitle$
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $introTitle$
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $introTitle$
+
+
+
+
+
+
+
+ Go to the workbench
+
+
+
+
+
+
+
+ Overview
+ $introDescription-overview$
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $introTitle$
+
+
+
+
+
+
+ Go to the workbench
+
+
+
+
+
+
+ Tutorials
+ $introDescription-tutorials$
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $introTitle$
+
+
+
+
+
+
+ Go to the workbench
+
+
+
+
+
+
+ Samples
+ $introDescription-samples$
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $introTitle$
+
+
+
+
+
+
+ Go to the workbench
+
+
+
+
+
+
+ What's New
+ $introDescription-whatsnew$
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $introTitle$
+
+
+
+
+
+
+ Go to the workbench
+
+
+
+
+
+
+ First Steps
+ $introDescription-firststeps$
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $introTitle$
+
+
+
+
+
+
+ Go to the workbench
+
+
+
+
+
+
+ Web Resources
+ $introDescription-webresources$
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $introTitle$
+
+
+
+
+
+
+ Go to the workbench
+
+
+
+
+
+
+ Migrate
+ $introDescription-migrate$
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/plugin.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/plugin.properties
new file mode 100644
index 0000000..c4efcb7
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/plugin.properties
@@ -0,0 +1,21 @@
+###############################################################################
+# Copyright (c) 2000, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+# ==============================================
+# Universal Welcome plugin.xml properties file
+# ==============================================
+
+plugin_name = Universal Welcome
+provider_name = Eclipse.org
+
+theme.name.circles = Circles
+theme.name.purpleMesh = Purple Mesh (Classic Eclipse)
+theme.name.slate = Slate
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/plugin.xml b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/plugin.xml
new file mode 100644
index 0000000..e9f8e1d
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/plugin.xml
@@ -0,0 +1,247 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/fs_banner.jpg b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/fs_banner.jpg
new file mode 100644
index 0000000..5b6c738
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/fs_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/mi_banner.jpg b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/mi_banner.jpg
new file mode 100644
index 0000000..5fb63c5
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/mi_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/ov_banner.jpg b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/ov_banner.jpg
new file mode 100644
index 0000000..9b963cb
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/ov_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/sa_banner.jpg b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/sa_banner.jpg
new file mode 100644
index 0000000..3eff0a5
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/sa_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/tu_banner.jpg b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/tu_banner.jpg
new file mode 100644
index 0000000..cc6bae7
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/tu_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/wn_banner.jpg b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/wn_banner.jpg
new file mode 100644
index 0000000..ab13b22
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/wn_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/wr_banner.jpg b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/wr_banner.jpg
new file mode 100644
index 0000000..de17898
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/contentpage/wr_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/arrow_rtl.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/arrow_rtl.gif
new file mode 100644
index 0000000..d7bb424
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/arrow_rtl.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/content_nav_bar.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/content_nav_bar.gif
new file mode 100644
index 0000000..86ebb16
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/content_nav_bar.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/cpt_bottomhov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/cpt_bottomhov.gif
new file mode 100644
index 0000000..13df2dc
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/cpt_bottomhov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/cpt_midhov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/cpt_midhov.gif
new file mode 100644
index 0000000..1467458
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/cpt_midhov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps.gif
new file mode 100644
index 0000000..f6dd773
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps.png
new file mode 100644
index 0000000..eccc757
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps_tophov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps_tophov.gif
new file mode 100644
index 0000000..9745892
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/firststeps_tophov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav.png
new file mode 100644
index 0000000..99eb592
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_32.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_32.gif
new file mode 100644
index 0000000..84885b5
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_64.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_64.gif
new file mode 100644
index 0000000..c410b0d
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_64.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_hover.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_hover.gif
new file mode 100644
index 0000000..182ed76
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/fs_nav_hover.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav.png
new file mode 100644
index 0000000..5434708
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_32.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_32.gif
new file mode 100644
index 0000000..d49d950
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_64.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_64.gif
new file mode 100644
index 0000000..9bf4493
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_64.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_hover.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_hover.gif
new file mode 100644
index 0000000..257fd4b
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/mi_nav_hover.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate.gif
new file mode 100644
index 0000000..f082b35
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate.png
new file mode 100644
index 0000000..07fea1d
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate_tophov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate_tophov.gif
new file mode 100644
index 0000000..5c95055
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/migrate_tophov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/nav_midhov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/nav_midhov.gif
new file mode 100644
index 0000000..d2a082f
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/nav_midhov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/nav_rightedgehov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/nav_rightedgehov.gif
new file mode 100644
index 0000000..2f53c5c
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/nav_rightedgehov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav.png
new file mode 100644
index 0000000..709f69a
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_32.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_32.gif
new file mode 100644
index 0000000..2ff3933
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_64.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_64.gif
new file mode 100644
index 0000000..7198903
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_64.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_hover.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_hover.gif
new file mode 100644
index 0000000..72dc200
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_hover.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_midhov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_midhov.gif
new file mode 100644
index 0000000..85e8183
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_midhov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_rightedgehov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_rightedgehov.gif
new file mode 100644
index 0000000..5d75a71
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/ov_nav_rightedgehov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview.gif
new file mode 100644
index 0000000..daed6c0
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview.png
new file mode 100644
index 0000000..a60034c
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_bottomhov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_bottomhov.gif
new file mode 100644
index 0000000..255e924
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_bottomhov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_midhov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_midhov.gif
new file mode 100644
index 0000000..710d015
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_midhov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_tophov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_tophov.gif
new file mode 100644
index 0000000..af9144a
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/overview_tophov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_bottomhov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_bottomhov.gif
new file mode 100644
index 0000000..cea4511
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_bottomhov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_midhov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_midhov.gif
new file mode 100644
index 0000000..30288f9
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_midhov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_midhov2.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_midhov2.gif
new file mode 100644
index 0000000..83f17fc
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/root_midhov2.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav.png
new file mode 100644
index 0000000..9871b72
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_32.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_32.gif
new file mode 100644
index 0000000..ffbe90e
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_64.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_64.gif
new file mode 100644
index 0000000..db4ffac
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_64.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_hover.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_hover.gif
new file mode 100644
index 0000000..6922f96
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_nav_hover.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_onesample48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_onesample48.gif
new file mode 100644
index 0000000..e65c123
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/sa_onesample48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples.gif
new file mode 100644
index 0000000..622983c
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples.png
new file mode 100644
index 0000000..cb3db1d
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples_tophov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples_tophov.gif
new file mode 100644
index 0000000..ede103c
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/samples_tophov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav.png
new file mode 100644
index 0000000..ce589ab
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_32.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_32.gif
new file mode 100644
index 0000000..77a3421
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_64.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_64.gif
new file mode 100644
index 0000000..45d2ff1
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_64.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_hover.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_hover.gif
new file mode 100644
index 0000000..c3e79ab
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tu_nav_hover.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials.gif
new file mode 100644
index 0000000..aae93e5
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials.png
new file mode 100644
index 0000000..e40a823
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials_tophov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials_tophov.gif
new file mode 100644
index 0000000..dcb76e5
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/tutorials_tophov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav.png
new file mode 100644
index 0000000..0621c3c
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav_32.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav_32.gif
new file mode 100644
index 0000000..8161cfc
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav_hover.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav_hover.gif
new file mode 100644
index 0000000..96afba7
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wb_nav_hover.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources.gif
new file mode 100644
index 0000000..230a502
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources.png
new file mode 100644
index 0000000..1a876dc
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources_tophov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources_tophov.gif
new file mode 100644
index 0000000..ea8713c
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/webresources_tophov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew.gif
new file mode 100644
index 0000000..29dfe28
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew.png
new file mode 100644
index 0000000..a10dd3d
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew_tophov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew_tophov.gif
new file mode 100644
index 0000000..bfd58dc
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/whatsnew_tophov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav.png
new file mode 100644
index 0000000..47ecb7c
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_32.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_32.gif
new file mode 100644
index 0000000..ce9c743
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_64.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_64.gif
new file mode 100644
index 0000000..6a545cc
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_64.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_hover.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_hover.gif
new file mode 100644
index 0000000..a2eb9a2
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wn_nav_hover.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench.gif
new file mode 100644
index 0000000..ea3d603
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench.png
new file mode 100644
index 0000000..868f3ab
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_bottomhov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_bottomhov.gif
new file mode 100644
index 0000000..d347a1d
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_bottomhov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_midhov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_midhov.gif
new file mode 100644
index 0000000..ee5d6af
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_midhov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_tophov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_tophov.gif
new file mode 100644
index 0000000..443a433
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/workbench_tophov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav.png
new file mode 100644
index 0000000..00d3056
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_32.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_32.gif
new file mode 100644
index 0000000..a741e2f
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_64.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_64.gif
new file mode 100644
index 0000000..fab4a28
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_64.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_hover.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_hover.gif
new file mode 100644
index 0000000..7908508
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/ctool/wr_nav_hover.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/obj48/new_obj.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/obj48/new_obj.gif
new file mode 100644
index 0000000..f46b81b
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/obj48/new_obj.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/obj48/newhov_obj.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/obj48/newhov_obj.gif
new file mode 100644
index 0000000..593e63b
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/icons/obj48/newhov_obj.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/firststeps16.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/firststeps16.png
new file mode 100644
index 0000000..4c15c82
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/firststeps16.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/migrate16.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/migrate16.png
new file mode 100644
index 0000000..3fc8414
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/migrate16.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/overview16.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/overview16.png
new file mode 100644
index 0000000..b2e977f
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/overview16.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/samples16.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/samples16.png
new file mode 100644
index 0000000..fdff5dd
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/samples16.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/tutorials16.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/tutorials16.png
new file mode 100644
index 0000000..f2d688f
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/tutorials16.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/webresources16.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/webresources16.png
new file mode 100644
index 0000000..b847caa
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/webresources16.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/whatsnew16.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/whatsnew16.png
new file mode 100644
index 0000000..5294b17
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/launchbar/whatsnew16.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/rootpage/welcomebckgrd.jpg.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/rootpage/welcomebckgrd.jpg.REMOVED.git-id
new file mode 100644
index 0000000..980c2d2
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/rootpage/welcomebckgrd.jpg.REMOVED.git-id
@@ -0,0 +1 @@
+12a3c9400fe9ed6230527ce3f7e6ff6f441fadd8
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/fs_standby.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/fs_standby.gif
new file mode 100644
index 0000000..aac6d6b
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/fs_standby.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/fs_standbyhov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/fs_standbyhov.gif
new file mode 100644
index 0000000..eded4ff
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/fs_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/mi_standby.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/mi_standby.gif
new file mode 100644
index 0000000..34b8963
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/mi_standby.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/mi_standbyhov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/mi_standbyhov.gif
new file mode 100644
index 0000000..08c4479
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/mi_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/ov_standby.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/ov_standby.gif
new file mode 100644
index 0000000..bfcf7b2
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/ov_standby.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/ov_standbyhov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/ov_standbyhov.gif
new file mode 100644
index 0000000..11e7892
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/ov_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/sa_standby.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/sa_standby.gif
new file mode 100644
index 0000000..a18a047
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/sa_standby.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/sa_standbyhov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/sa_standbyhov.gif
new file mode 100644
index 0000000..2063d8a
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/sa_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/tu_standby.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/tu_standby.gif
new file mode 100644
index 0000000..75baabf
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/tu_standby.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/tu_standbyhov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/tu_standbyhov.gif
new file mode 100644
index 0000000..82b758f
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/tu_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wb_standby.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wb_standby.gif
new file mode 100644
index 0000000..5037784
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wb_standby.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wb_standbyhov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wb_standbyhov.gif
new file mode 100644
index 0000000..d3be575
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wb_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wn_standby.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wn_standby.gif
new file mode 100644
index 0000000..77c7912
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wn_standby.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wn_standbyhov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wn_standbyhov.gif
new file mode 100644
index 0000000..2867f15
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wn_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wr_standby.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wr_standby.gif
new file mode 100644
index 0000000..cb4fa47
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wr_standby.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wr_standbyhov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wr_standbyhov.gif
new file mode 100644
index 0000000..00b4231
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/graphics/standby/wr_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/firststeps.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/firststeps.css
new file mode 100644
index 0000000..15f2dfc
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/firststeps.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* show the "selected" image for this page */
+#navigation-links a#firststeps img,
+#navigation-links a#firststeps:hover img,
+#navigation-links a#firststeps:focus img,
+#navigation-links a#firststeps:active img {
+ background-image : url(../graphics/icons/ctool/fs_nav_64.gif);
+ top : 2px;
+ left : -3px;
+}
+
+#navigation-links {
+ background-image: url(../graphics/contentpage/fs_banner.jpg);
+}
+
+#navigation-links a:hover#firststeps .link-label,
+#navigation-links a:focus#firststeps .link-label,
+#navigation-links a:active#firststeps .link-label {
+ display : none;
+}
+
+#navigation-links a:hover#firststeps,
+#navigation-links a:focus#firststeps,
+#navigation-links a:active#firststeps {
+ background-image : none;
+}
+
+#navigation-links a:hover#firststeps .link-extra-div,
+#navigation-links a:focus#firststeps .link-extra-div,
+#navigation-links a:active#firststeps .link-extra-div {
+ display: none;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/font-absolute.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/font-absolute.css
new file mode 100644
index 0000000..e610e26
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/font-absolute.css
@@ -0,0 +1,118 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+ font-size : 10pt;
+}
+
+/*
+ * We are not using titles in this theme.
+ */
+.intro-header {
+ display : none;
+}
+
+h2 {
+ font-size : 13pt;
+}
+
+/* For regular div labels */
+H4 .div-label {
+ font-size: 10pt;
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+ font-size: 23pt;
+}
+
+
+/* Page description if the page has it. */
+.page-description {
+ font-size: 10pt;
+}
+
+/* General link labels */
+a .link-label {
+ font-size : 10pt;
+}
+
+/* Floating link labels for navigation links */
+#navigation-links a .link-label {
+ font-size : 8pt;
+}
+
+/* Text in links. */
+a .text {
+ font-size : 8pt;
+}
+
+p .group-description {
+ font-size : 10pt;
+}
+
+.content-link .link-label {
+ font-size: 11pt;
+}
+
+.content-link .text {
+ font-size: 10pt;
+}
+
+.categoryContentnav {
+ font-size:10pt;
+}
+
+.contentpgNavhover {
+ font-size: 8pt;
+}
+
+.topicList {
+ font-size:8pt;
+}
+
+/*
+ * Root page settings
+ */
+#root .intro-header H1 {
+ font-size : 18pt;
+}
+
+/* Link label properties */
+#root #page-links a .link-label {
+ font-size : 12.5pt;
+}
+
+/* Link description properties */
+#root #page-links a p .text {
+ font-size : 11pt;
+}
+
+#root #page-links a:hover .link-extra-div {
+ font-size : 13pt;
+}
+
+/*
+ * Standby page settings
+ */
+
+#standby .intro-header H1 {
+ font-size : 15pt;
+}
+
+#standby #page-links a .link-label, #action-links a .link-label {
+ font-size : 10pt;
+}
+
+#standby #page-links a p .text, #action-links a p .text {
+ font-size : 10pt;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/font-relative.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/font-relative.css
new file mode 100644
index 0000000..af2383e
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/font-relative.css
@@ -0,0 +1,126 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * Font sizes for the circles theme
+ */
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+ font-size : 100%;
+}
+
+h2 {
+ font-size : 120%;
+}
+
+/* For regular div labels */
+H4 .div-label {
+ font-size: 120%;
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+ font-size: 240%;
+}
+
+
+/* Page description if the page has it. */
+.page-description {
+ font-size: 100%;
+}
+
+/* General link labels */
+a .link-label {
+ //font-size : 10pt;
+}
+
+/* Floating link labels for navigation links */
+#navigation-links a .link-label {
+ font-size : 8pt;
+}
+
+/* Text in links. */
+a .text {
+ font-size : 90%;
+}
+
+p .group-description {
+ font-size : 100%;
+}
+
+.content-link .link-label {
+ font-size: 120%;
+}
+
+.content-link .text {
+ font-size: 100%;
+}
+
+.categoryContentnav {
+ //font-size:10pt;
+}
+
+.contentpgNavhover {
+ font-size: 8pt;
+}
+
+.topicList, .rss-feed-link {
+ font-size:90%;
+}
+
+/* Link label properties */
+#root #page-links a .link-label {
+ font-size : 110%;
+}
+
+#root #page-links a:active .link-label,
+#root #page-links a:focus .link-label,
+#root #page-links a:hover .link-label {
+ font-size : 12.5pt;
+}
+
+/* Link description properties */
+#root #page-links a p .text {
+ font-size : 11pt;
+}
+
+#root #page-links a:hover .link-extra-div {
+ font-size : 13pt;
+}
+
+#root .intro-header {
+ display : inline;
+}
+
+#root .intro-header h1 {
+ color : white;
+ //padding-top : 10px;
+ margin-top : 10px;
+ margin-left : 20px;
+ font-size : 150%;
+}
+
+/*
+ * Standby page settings
+ */
+
+#standby .intro-header H1 {
+ font-size : 150%;
+}
+
+#standby #page-links a .link-label, #standby #action-links a .link-label {
+ font-size : 100%;
+}
+
+#standby #page-links a p .text, #standby #action-links a p .text {
+ font-size : 100%;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/ltr.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/ltr.css
new file mode 100644
index 0000000..57586c8
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/ltr.css
@@ -0,0 +1,19 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * This file contains styles that are specific to left to right display
+ */
+
+body {
+ direction: ltr;
+}
+
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/migrate.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/migrate.css
new file mode 100644
index 0000000..cd34954
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/migrate.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* show the "selected" image for this page */
+#navigation-links a#migrate img,
+#navigation-links a#migrate:hover img,
+#navigation-links a#migrate:focus img,
+#navigation-links a#migrate:active img {
+ background-image : url(../graphics/icons/ctool/mi_nav_64.gif);
+ top : 2px;
+ left : -3px;
+}
+
+#navigation-links {
+ background-image: url(../graphics/contentpage/mi_banner.jpg);
+}
+
+#navigation-links a:hover#migrate .link-label,
+#navigation-links a:focus#migrate .link-label,
+#navigation-links a:active#migrate .link-label {
+ display : none;
+}
+
+#navigation-links a:hover#migrate,
+#navigation-links a:focus#migrate,
+#navigation-links a:active#migrate {
+ background-image : none;
+}
+
+#navigation-links a:hover#migrate .link-extra-div,
+#navigation-links a:focus#migrate .link-extra-div,
+#navigation-links a:active#migrate .link-extra-div {
+ background-image : none;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/overview.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/overview.css
new file mode 100644
index 0000000..7bc18ce
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/overview.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* show the "selected" image for this page */
+#navigation-links a#overview img,
+#navigation-links a#overview:hover img,
+#navigation-links a#overview:focus img,
+#navigation-links a#overview:active img {
+ background-image : url(../graphics/icons/ctool/ov_nav_64.gif);
+ top : 2px;
+ left : -3px;
+}
+
+#navigation-links {
+ background-image: url(../graphics/contentpage/ov_banner.jpg);
+}
+
+#navigation-links a:hover#overview .link-label,
+#navigation-links a:focus#overview .link-label,
+#navigation-links a:active#overview .link-label {
+ display : none;
+}
+
+#navigation-links a:hover#overview,
+#navigation-links a:focus#overview,
+#navigation-links a:active#overview {
+ background-image : none;
+}
+
+#navigation-links a:hover#overview .link-extra-div,
+#navigation-links a:focus#overview .link-extra-div,
+#navigation-links a:active#overview .link-extra-div {
+ display: none;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/root.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/root.css
new file mode 100644
index 0000000..8697080
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/root.css
@@ -0,0 +1,382 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* Hide the extra div for links in the normal state. */
+a .link-extra-div {
+ display: none;
+}
+
+/* Link label properties */
+#page-links a .link-label {
+ margin-left: 7px;
+ position: relative;
+ top: -1.2em;
font-weight : 600;
+ margin-left : 13px;
+ padding-left: 10px;
+ padding-right: 10px;
+ margin-bottom: -1.2pm;
+ color : white;
+}
+
+#page-links a:active .link-label,
+#page-links a:focus .link-label,
+#page-links a:hover .link-label {
+ background-image: url("../graphics/icons/ctool/root_midhov2.gif");
+ background-repeat: repeat-y;
+ color : black;
+}
+
+#page-links a#overview .link-label {
+ margin-left: 15px;
+ margin-top: -50px;
+ padding-left: 20px;
+}
+
+#page-links a:active#overview .link-label,
+#page-links a:focus#overview .link-label,
+#page-links a:hover#overview .link-label {
+ padding-left: 10px;
+ margin-top: 0px;
+}
+
+#page-links a#workbench .link-label {
+ padding-left: 10px;
+ margin-left: 0px;
+}
+
+/* Necessary for hover text to align in rtl mode */
+#page-links a {
+ direction: ltr;
+}
+
+/* Link description properties */
+#page-links a p .text {
+ margin-left: 3px;
+ position: relative;
+ top: -1.6em;
+ padding-top: 5px;
+ padding-left: 9px;
+ padding-right: 10px;
+ margin-bottom: -1.6em;
font-weight : 500;
+ padding-bottom: 5px;
+ background-image: url("../graphics/icons/ctool/root_midhov2.gif");
+ background-repeat: repeat-y;
+}
+
+#page-links a#overview p .text {
+ margin-left: 5px;
+}
+
+#page-links a#workbench p .text {
+ margin-left: -10px;
+}
+
+/* Some differences between Mozilla and IE here */
+
+#page-links a#workbench > p .text {
+ margin-left: -10px;
+}
+
+
+/*
+ * Set up the content for the root page.
+ */
+html, body {
+
+
+ background-image : url("../graphics/rootpage/welcomebckgrd.jpg");
background-repeat : no-repeat;
background-position : center center;
+ background-attachment : fixed;
+ overflow : auto;
+ overflow-clip: rect(0, auto, auto, 0);
+ background-color : #345365;
+}
+#root {
+ min-height : 450px;
+ height : expression(document.body.clientHeight < 450? "450px": "100%" );
+
+ min-width : 940px;
+ width:expression(document.body.clientWidth < 940? "940px": "auto" );
+
+ overflow: hidden;
+}
+
+#branding {
+ position: absolute;
+ bottom : 20px;
+ left : 20px;
+}
+
+/*
+ * Set up the navigation bar. It should be centered in the middle
+ * of the page
+ */
+#links-background {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ text-align : center;
+}
+
+#page-links {
+ position : relative;
+ left : 0px;
+ top : 0x;
+}
+
+#page-links a {
+ position : absolute;
+ text-align : left;
+ padding-bottom: 2px;
+}
+
+/* Position root links using absolute coordinates */
+#page-links a img {
+ height : 84px;
+ width : 103px;
+}
+
+#page-links a:active img,
+#page-links a:focus img,
+#page-links a:hover img
+{
+ width : 215px;
+}
+
+#page-links a#overview {
+ left: -444px;
+ top: -188px;
+}
+
+#page-links a#overview:hover {
+ left: -444px;
+}
+
+#page-links a#overview img {
+ width : 217px;
+ height : 149px;
+}
+
+#page-links a#overview:active img,
+#page-links a#overview:focus img,
+#page-links a#overview:hover img {
+ width : 217px;
+ height : 99px;
+}
+
+#page-links a#workbench img {
+ width : 202px;
+ background-position : right top;
+ margin-left : 0px;
+}
+
+/* Absolute positions of root links */
+
+#page-links a#whatsnew {
+ left: -292px;
+ top: -82px;
+}
+
+#page-links a#tutorials {
+ left: -11px;
+ top: 104px;
+}
+
+#page-links a#samples {
+ left: -199px;
+ top: 104px;
+}
+
+#page-links a#firststeps {
+ left: -105px;
+ top: -82px;
+}
+
+#page-links a#webresources {
+ left: 82px;
+ top: 11px;
+}
+
+#page-links a#migrate {
+ left: 269px;
+ top: 104px;
+}
+
+#page-links a#workbench {
+ left: 271px;
+ top: -82px;
+}
+
+/* Paint bottom edge of the text box as a background image */
+
+#page-links a:hover,
+#page-links a:focus,
+#page-links a:active {
+ background-image: url("../graphics/icons/ctool/root_bottomhov.gif");
+ background-repeat: no-repeat;
+ background-position: bottom left;
+ z-index: 20;
+}
+
+#page-links a#overview:hover,
+#page-links a#overview:focus,
+#page-links a#overview:active {
+ background-image: url("../graphics/icons/ctool/overview_bottomhov.gif");
+}
+
+#page-links a#workbench:hover,
+#page-links a#workbench:focus,
+#page-links a#workbench:active {
+ background-image: url("../graphics/icons/ctool/workbench_bottomhov.gif");
+ background-position: bottom left;
+}
+
+#page-links > a#workbench:hover,
+#page-links > a#workbench:focus,
+#page-links > a#workbench:active {
+ background-position: bottom 2px;
+}
+
+/* Hide the text in the normal state */
+#page-links a .text {
+ display : none;
+}
+
+/* Hide the links in the normal state */
+#page-links a .link-label {
+ display : none;
+}
+
+/* Note that the links can be made to show by including the following lines for example in the css for an extension.
+#page-links a span.link-label {
+ display : block;
+}
+*/
+
+/* Show the link label and link text as block on hover */
+
+#page-links a:hover .link-label,
+#page-links a:focus .link-label,
+#page-links a:active .link-label {
+ display : block;
+}
+
+#page-links a:hover p .text,
+#page-links a:hover p .text,
+#page-links a:focus p .text,
+#page-links a:active p .text {
+ display : block;
+ z-index: 35;
+}
+
+#page-links .link-label,
+#page-links a:hover .link-label,
+#page-links a:focus .link-label,
+#page-links a:active .link-label {
+ width: 202px;
+}
+
+#page-links a:hover p .text,
+#page-links a:focus p .text,
+#page-links a:active p .text {
+ width: 202px;
+}
+
+#page-links a:hover > .link-label,
+#page-links a:focus > .link-label,
+#page-links a:active > .link-label {
+ width: 192px;
+}
+
+#page-links a:hover > p .text,
+#page-links a:focus > p .text,
+#page-links a:active > p .text {
+ width: 192px;
+}
+
+#page-links a#workbench:hover .link-label,
+#page-links a#workbench:focus .link-label,
+#page-links a#workbench:active .link-label {
+ width: 202px;
+}
+
+#page-links a#workbench:hover p .text,
+#page-links a#workbench:focus p .text,
+#page-links a#workbench:active p .text {
+ width: 202px;
+}
+
+#page-links a#workbench:hover > .link-label,
+#page-links a#workbench:focus > .link-label,
+#page-links a#workbench:active > .link-label {
+ width: 182px;
+}
+
+#page-links a#workbench:hover p > .text,
+#page-links a#workbench:focus p > .text,
+#page-links a#workbench:active p > .text {
+ width: 193px;
+}
+
+#page-links a .background-image {
+ display: none;
+}
+
+#page-links a .link-extra-div {
+ display :none;
+}
+
+/* Link images */
+#page-links a#overview .content-img { background-image : url("../graphics/icons/ctool/overview.gif"); }
+#page-links a:active#overview .content-img,
+#page-links a:focus#overview .content-img ,
+#page-links a:hover#overview .content-img { background-image : url("../graphics/icons/ctool/overview_tophov.gif"); }
+
+#page-links a#tutorials .content-img { background-image : url("../graphics/icons/ctool/tutorials.gif"); }
+#page-links a:active#tutorials .content-img,
+#page-links a:focus#tutorials .content-img ,
+#page-links a:hover#tutorials .content-img { background-image : url("../graphics/icons/ctool/tutorials_tophov.gif"); }
+
+#page-links a#samples .content-img { background-image : url("../graphics/icons/ctool/samples.gif"); }
+#page-links a:active#samples .content-img,
+#page-links a:focus#samples .content-img ,
+#page-links a:hover#samples .content-img { background-image : url("../graphics/icons/ctool/samples_tophov.gif"); }
+
+#page-links a#whatsnew .content-img { background-image : url("../graphics/icons/ctool/whatsnew.gif"); }
+#page-links a:active#whatsnew .content-img,
+#page-links a:focus#whatsnew .content-img,
+#page-links a:hover#whatsnew .content-img { background-image : url("../graphics/icons/ctool/whatsnew_tophov.gif"); }
+
+#page-links a#firststeps .content-img { background-image : url("../graphics/icons/ctool/firststeps.gif"); }
+#page-links a:active#firststeps .content-img,
+#page-links a:focus#firststeps .content-img ,
+#page-links a:hover#firststeps .content-img { background-image : url("../graphics/icons/ctool/firststeps_tophov.gif"); }
+
+#page-links a#migrate .content-img { background-image : url("../graphics/icons/ctool/migrate.gif"); }
+#page-links a:active#migrate .content-img,
+#page-links a:focus#migrate .content-img ,
+#page-links a:hover#migrate .content-img { background-image : url("../graphics/icons/ctool/migrate_tophov.gif"); }
+
+#page-links a#webresources .content-img { background-image : url("../graphics/icons/ctool/webresources.gif"); }
+#page-links a:active#webresources .content-img,
+#page-links a:focus#webresources .content-img ,
+#page-links a:hover#webresources .content-img { background-image : url("../graphics/icons/ctool/webresources_tophov.gif"); }
+
+#page-links a#workbench .content-img { background-image : url("../graphics/icons/ctool/workbench.gif"); }
+#page-links a:hover#workbench .content-img { background-image : url("../graphics/icons/ctool/workbench_tophov.gif"); }
+#page-links a:active#workbench .content-img { background-image : url("../graphics/icons/ctool/workbench_tophov.gif"); }
+#page-links a:focus#workbench .content-img { background-image : url("../graphics/icons/ctool/workbench_tophov.gif"); }
+
+/*
+ * Not using action links.
+ */
+#action-links {
+ display: none;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/rtl.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/rtl.css
new file mode 100644
index 0000000..b444c37
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/rtl.css
@@ -0,0 +1,83 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * This file contains styles that are specific to right to left display
+ */
+
+
+table {
+ direction: rtl;
+}
+
+#page-content p {
+ text-align : right;
+}
+
+#page-content #content-header H4, .page-description {
+ text-align : right;
+}
+
+#page-content table tr td a > .link-label {
+ left:0px;
+}
+
+#page-content * td a .link-label {
+ display:block;
+ left:0px;
+ margin-right:0px;
+ position:static;
+ top:0px;
+}
+
+#page-content * td a .text {
+ display:block;
+ left:0px;
+ margin-right:0px;
+ position:static;
+ top:0px;
+}
+
+.content-group {
+ text-align: right;
+}
+
+.intro-header span {
+ margin-right : 45px;
+ padding-right : 45px;
+}
+
+div div#rss-news {
+ position:static;
+ margin-left:0px;
+ margin-bottom: 0px;
+ margin-top: 10px;
+ top : 0px;
+ margin-right : 30px;
+}
+
+div ul.news-list {
+ list-style-image: url("../graphics/icons/ctool/arrow_rtl.gif");
+ margin-left: 0px;
+ padding-right: 10px;
+ margin-right: 10px;
+}
+
+/* The 'closed' toggle image part of the folding section. */
+#page-content .section-title-link .section-toggle-image-closed {
+ background-image : url(../graphics/icons/ctool/widget_closed_rtl.gif);
+}
+
+#page-content .section-title-link:hover .section-toggle-image-closed,
+#page-content .section-title-link:active .section-toggle-image-closed {
+ background-image : url(../graphics/icons/ctool/widget_closed_hov_rtl.gif);
+}
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/samples.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/samples.css
new file mode 100644
index 0000000..5437466
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/samples.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* show the "selected" image for this page */
+#navigation-links a#samples img,
+#navigation-links a#samples:hover img,
+#navigation-links a#samples:focus img,
+#navigation-links a#samples:active img {
+ background-image : url(../graphics/icons/ctool/sa_nav_64.gif);
+ top : 2px;
+ left : -3px;
+}
+
+#navigation-links {
+ background-image: url(../graphics/contentpage/sa_banner.jpg);
+}
+
+#navigation-links a:hover#samples .link-label,
+#navigation-links a:focus#samples .link-label,
+#navigation-links a:active#samples .link-label {
+ display : none;
+}
+
+#navigation-links a:hover#samples,
+#navigation-links a:focus#samples,
+#navigation-links a:active#samples {
+ background-image : none;
+}
+
+#navigation-links a:hover#samples .link-extra-div,
+#navigation-links a:focus#samples .link-extra-div,
+#navigation-links a:active#samples .link-extra-div {
+ background-image : none;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/shared.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/shared.css
new file mode 100644
index 0000000..fbaf550
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/shared.css
@@ -0,0 +1,647 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * Set up general fonts, sizes and colors
+ */
+body { font-family : Arial, sans-serif; }
+
+H1, H2, H3, H4, p, a { color : #4D4D4D; }
+
+/*
+ * We are not using titles in this theme.
+ */
+.intro-header {
+ display : none;
+}
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+ display : inline;
+}
+
+h2 {
+ font-weight : normal;
+ color : #7B8694;
+}
+
+/* For regular div labels */
+H4 .div-label {
+ font-family: Verdana, Arial, Helvetica;
+ font-weight: bold;
+ color: #4A4D4A;
+ line-height:1.3;
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+ font-family: Verdana, Arial, Helvetica;
+ color:#333333;
+ font-weight: normal;
+ letter-spacing:-0.03em;
+ margin-left: 68px;
+ float : none;
+ clear : both;
+}
+
+/* For separators */
+HR {
+ width: 90%;
+ align: left;
+ height : 1px;
+ color : #dfdfe4;
+}
+
+/* Page description if the page has it. */
+.page-description {
+ display: block;
+ font-family: Verdana, Arial, Helvetica;
+ line-height:1.3;
+ float : none;
+ clear : both;
+ margin-left: 70px;
+}
+
+a {
+ font-weight : bold;
+ text-decoration : none;
+ color : #4D4D4D;
+}
+
+/* General link labels */
+a .link-label {
+ font-weight : normal;
+}
+
+/* Floating link labels for navigation links */
+#navigation-links a .link-label {
+ font-weight : bold;
+}
+
+#navigation-links a.high-contrast .link-label {
+ display : none !important;
+}
+
+/* Text in links. */
+a .text {
+ font-weight : normal;
+}
+
+p .group-description {
+ font-family: Verdana, Arial, Helvetica;
+ font-weight : normal;
+}
+
+/* Hide the extra div in links by default. */
+.link-extra-div {
+ display : none;
+}
+
+/*
+ * Set up other general properties like padding/margins
+ */
+html, body { width : 100%; height : 100%; }
+
+html, body, div, h1, h4, p, a { margin : 0px; padding : 0px; }
+
+/*
+ * Page header - adding extra padding at the bottom to compensate
+ * for navigation background/header overlap.
+ */
+#page-content #content-header {
+ padding-bottom : 22px;
+}
+
+/* For regular div labels */
+#page-content div H4 {
+ padding : 10px;
+ padding-bottom : 0px;
+}
+
+/* For the main page content's div label */
+#page-content #content-header H4 {
+ padding-bottom : 10px;
+ padding-top : 0px;
+}
+
+/* special case for Mozilla's main content-header label.
+ Mozilla 1.4 needs more room at the top */
+#page-content > #content-header H4 { padding-top : 10px; }
+
+/* Needed in IE to get shift+tab to show the active image properly */
+a:active {
+ border : solid 0px;
+}
+
+a img {
+ border-width : 0;
+ background-repeat : no-repeat;
+}
+
+/*
+ * to get scrollbars working in both IE and Mozilla
+ */
+
+/*
+ * to get scrollbars working in both IE and Mozilla
+ */
+html,body { overflow: auto; }
+html>body { overflow: visible; }
+
+/*
+ * Set up the body, decorative background, and navigation for the content
+ * pages.
+ * Note: the root page handles its own background and navigation; these
+ * settings primarily apply to the content pages
+ */
+body {
+ background-color : #FFFFFF;
+ background-repeat : no-repeat;
+ background-position : bottom right;
+}
+
+/*
+ * Hide the general-purpose groups - not using them in this theme.
+ */
+#extra-group1,
+#extra-group2,
+#extra-group3,
+#extra-group4,
+#extra-group5 {
+ display : none;
+}
+
+/*
+ * Dimensions.
+ */
+body, .page {
+ /* since IE doesn't support min-width, try expression */
+ height : 100%;
+}
+
+.page {
+ background-image : url(../graphics/contentpage/background.jpg);
+ background-repeat : repeat-x;
+ background-position : top left;
+
+ min-width : 770px;
+ width:expression(document.body.clientWidth < 770? "770px": "auto" );
+ min-height : 425px;
+ height : expression(document.body.clientHeight < 425? "425px": "100%" );
+}
+
+#page-content {
+ background-repeat : no-repeat;
+ background-position : bottom right;
+ height : 65%;
+}
+
+/*
+ * Lay out the navigation links
+ * (Root page does something similar for its navigation)
+ */
+#navigation-links {
+ position : relative;
+ left : 0px;
+ top : 0px;
+ padding-left: 12px;
+ height : 118px;
+ width : 100%;
+}
+
+.page > #navigation-links {
+ width: 98.1%;
+}
+
+#navigation-links a {
+ text-align : left;
+ width : auto;
+ height : 64px;
+}
+
+/*
+ * Navigation links have a mixin style 'nav_link' where goes from
+ * 1 to N. This allows us to position these fixed link slots while
+ * not hand-coding the actual link IDs because they can be turned off
+ * by users or products via preferences.
+ */
+
+#navigation-links a.nav_link1 {
+ position: absolute;
+ left : 12px;
+}
+
+#navigation-links a.nav_link2 {
+ position : absolute;
+ left : 76px;
+}
+
+#navigation-links a.nav_link3 {
+ position : absolute;
+ left : 140px;
+}
+
+#navigation-links a.nav_link4 {
+ position : absolute;
+ left : 204px;
+}
+
+#navigation-links a.nav_link5 {
+ position : absolute;
+ left : 268px;
+}
+
+#navigation-links a.nav_link6 {
+ position : absolute;
+ left : 332px;
+}
+
+#navigation-links a.nav_link7 {
+ position: absolute;
+ left : 396px;
+}
+
+#navigation-links a img {
+ position : relative;
+ height : 64px;
+ width : 64px;
+ vertical-align : center;
+ horizontal-align : center;
+ top : 10px;
+ left : 9px;
+}
+
+#navigation-links a.high-contrast img {
+ height: 32px;
+ width: 32px;
+ top: 5px !important;
+ left: 0px !important;
+}
+
+/*
+ * Adjust image position for hover version.
+ */
+
+#navigation-links a:hover img,
+#navigation-links a:focus img,
+#navigation-links a:active img {
+ top : 2px;
+ left : 0px;
+}
+
+/*
+ * Navigation link label text is normally hidden. Workaround to produce the
+ * same effect as display: none while still allowing screenreaders to
+ * speak it.
+ */
+#navigation-links a .link-label {
+ display : none;
+}
+
+/*
+ * Not showing description for navigation links.
+ */
+#navigation-links a .text { display : none; }
+
+#navigation-links a:hover,
+#navigation-links a:focus,
+#navigation-links a:active {
+ border-right : 0px;
+ background-image: url(../graphics/icons/ctool/nav_midhov.gif);
+ background-repeat: repeat-x;
+ background-position: 0px 2px;
+ z-index: 20;
+}
+
+#navigation-links a:hover .link-label,
+#navigation-links a:focus .link-label,
+#navigation-links a:active .link-label {
+ display : inline;
+ clear : both;
+ float : left;
+ text-align: right;
+ position : relative;
+ padding-left: 7px;
+ padding-top: 7px;
+ padding-right: 7px;
+ margin-right: auto;
+ top : -35px;
+ white-space: nowrap;
+ height : 32px;
+ left: auto;
+ width: auto;
+}
+
+/*
+ * Add the right edge by using the extra div generated for links
+ * and set the right edge image as the background.
+ */
+
+#navigation-links a:hover .link-extra-div,
+#navigation-links a:focus .link-extra-div,
+#navigation-links a:active .link-extra-div {
+ display: block;
+ position: absolute;
+ right : -2px;
+ top : 2px;
+ width : 2px;
+ height : 64px;
+ background-image: url(../graphics/icons/ctool/nav_rightedgehov.gif);
+ background-repeat: no-repeat;
+}
+
+/* properties for each of the navigation-links */
+#navigation-links a#overview img {
+ background-image : url(../graphics/icons/ctool/ov_nav_32.gif);
+}
+#navigation-links a#overview:hover img,
+#navigation-links a#overview:focus img,
+#navigation-links a#overview:active img {
+ background-image : url(../graphics/icons/ctool/ov_nav_hover.gif);
+}
+
+#navigation-links a#firststeps img {
+ background-image : url(../graphics/icons/ctool/fs_nav_32.gif);
+}
+#navigation-links a#firststeps:hover img,
+#navigation-links a#firststeps:focus img,
+#navigation-links a#firststeps:active img {
+ background-image : url(../graphics/icons/ctool/fs_nav_hover.gif); }
+
+#navigation-links a#tutorials img {
+ background-image : url(../graphics/icons/ctool/tu_nav_32.gif);
+}
+#navigation-links a#tutorials:hover img,
+#navigation-links a#tutorials:active img,
+#navigation-links a#tutorials:focus img {
+ background-image : url(../graphics/icons/ctool/tu_nav_hover.gif);
+}
+
+#navigation-links a#samples img {
+ background-image : url(../graphics/icons/ctool/sa_nav_32.gif);
+}
+#navigation-links a#samples:hover img,
+#navigation-links a#samples:active img,
+#navigation-links a#samples:focus img {
+ background-image : url(../graphics/icons/ctool/sa_nav_hover.gif);
+ left: -1px;
+}
+
+#navigation-links a#whatsnew img {
+ background-image : url(../graphics/icons/ctool/wn_nav_32.gif);
+}
+#navigation-links a#whatsnew:hover img,
+#navigation-links a#whatsnew:focus img,
+#navigation-links a#whatsnew:active img {
+ background-image : url(../graphics/icons/ctool/wn_nav_hover.gif);
+ left: -1px;
+}
+
+#navigation-links a#migrate img {
+ background-image : url(../graphics/icons/ctool/mi_nav_32.gif);
+}
+#navigation-links a#migrate:hover img,
+#navigation-links a#migrate:focus img,
+#navigation-links a#migrate:active img {
+ background-image : url(../graphics/icons/ctool/mi_nav_hover.gif);
+ left: -1px;
+}
+
+#navigation-links a#webresources img {
+ background-image : url(../graphics/icons/ctool/wr_nav_32.gif);
+}
+#navigation-links a#webresources:hover img,
+#navigation-links a#webresources:focus img,
+#navigation-links a#webresources:active img {
+ background-image : url(../graphics/icons/ctool/wr_nav_hover.gif);
+ left: -1px;
+}
+
+#navigation-links a#workbench {
+ position : absolute;
+ left : 494px;
+ text-align : left;
+}
+#navigation-links a#workbench .text { display : none; }
+
+#navigation-links a.high-contrast#workbench:hover img,
+#navigation-links a.high-contrast#workbench:focus img,
+#navigation-links a.high-contrast#workbench:active img,
+#navigation-links a#workbench img {
+ background-image : url(../graphics/icons/ctool/wb_nav_32.gif);
+ width : 32px;
+ height : 32px;
+}
+
+#navigation-links a#workbench:hover img,
+#navigation-links a#workbench:focus img,
+#navigation-links a#workbench:active img {
+ background-image : url(../graphics/icons/ctool/wb_nav_hover.gif);
+ width : 51px;
+ height : 64px;
+ left: -1px;
+}
+
+#action-links a.high-contrast img,
+#action-links a.high-contrast:hover img,
+#action-links a.high-contrast:focus img,
+#action-links a.high-contrast:active img {
+ display: none !important;
+}
+
+#action-links a.high-contrast .link-label {
+ display: none;
+}
+
+#page-links a.high-contrast:focus .link-label,
+#page-links a.high-contrast:active .link-label {
+ display: block !important;
+ text-decoration: underline;
+ top : 5px;
+}
+
+/*
+ * Lay out the page title and description
+ */
+h1, p { margin-left : 10px; } /* required in mozilla so the page description is properly indented */
+
+/* position the page content so that the page title overlays the bottom
+ * of the background image, but make sure the content is always on top
+ * (using z-index) */
+
+#page-content {
+ float : none;
+ clear : both;
+ text-align : center;
+ position : relative;
+ top : -50px;
+ margin-bottom: -50px;
+ z-index : 10;
+}
+
+#page-content p {
+ padding-bottom : 15px;
+ text-align : left;
+ float : none;
+ clear : both;
+}
+
+/* Page content quadrants. Page content is placed in four quadrants.
+ * Upper pair is separated from the bottom pair with a divider
+ * to ensure bottom pair is aligned even with the uneven content
+ * in the upper pair.
+ */
+
+#page-content #top-left {
+ border: none; float: left; margin: 0px; padding: 0px; width: 49%;
+ clear: left;
+}
+#page-content #top-right {
+ border: none; float: right; margin: 0px; padding: 0px; width: 49%;
+ clear: right;
+}
+/* top-bottom divider - runs the entire width to ensure
+ * bottom boxes start at the same y
+ */
+#page-content #content-divider {
+ border: none; float: none; margin: 0; padding: 0px; width: 100%;
+ clear: both;
+}
+
+#page-content #bottom-left {
+ border: none; float: left; margin: 0px; padding: 0px; width: 49%;
+ clear: left;
+}
+#page-content #bottom-right {
+ border: none; float: right; margin: 0px; padding: 0px; width: 49%;
+ clear: right;
+}
+
+#page-content #content-header H4, .page-description {
+ text-align : left;
+ margin-right : 10px;
+ float : none;
+ clear : both;
+}
+
+#page-content * > a {
+ vertical-align : middle;
+}
+
+#page-content * a img {
+ height : 57px;
+ width : 57px;
+ vertical-align : middle;
+}
+
+#page-content * a .link-label {
+ display : block;
+ position : relative;
+ top : -50px;
+ left : 60px;
+ margin-right: 60px;
+}
+
+#page-content * a > .link-label { left: 65px; }
+
+#page-content * a p .text {
+ display : block;
+ position : relative;
+ top : -45px;
+ margin-bottom: -25px;
+ left : 53px;
+ margin-right: 53px;
+}
+
+#page-content * a p > .text { left: 58px; }
+
+#page-content * a:hover { border-right : 5px; }
+
+/* The following rules are for extensions in all pages. Extensions should be placed in
+ * groups with the style 'content-group' and contain links with the style 'content-link'.
+ * Group is important so that importance mixin style can be applied to the group that
+ * uses block display. We need to see a solid rectangle around the extension, not
+ * a tight polygon around the link perimeter.
+ */
+
+.content-group {
+ margin-left: 10px;
+ margin-right: 10px;
+ padding-left: 10px;
+ padding-right: 10px;
+ float : none;
+ clear : both;
+ text-align: left;
+}
+
+.content-link .link-label {
+ font-family: Verdana, Arial, Helvetica;
+ font-weight: bold;
+ line-height:1.5;
+ color: #00507C;
+}
+
+.content-link:hover .link-label {
+ color: #69c;
+ text-decoration : underline;
+}
+
+.content-link .text {
+ font-family: Verdana, Arial, Helvetica;
+ line-height: 1.3;
+}
+
+.categoryContentnav {
+ font-family: Verdana, Arial, Helvetica;
+ font-weight: bold;
+ color: #4A4D4A;
+ line-height:1.3;
+}
+
+.contentpgNavhover {
+ font-family: Verdana, Arial, Helvetica;
+ font-weight: bold;
+ color: #000;
+}
+
+.topicList {
+ font-family: Verdana, Arial, Helvetica;
+ line-height:1.75;
+ color: #00507C;
+}
+
+.topicList:hover {
+ color: #69c;
+}
+
+.rss-feed-link a {
+ font-family: Verdana, Arial, Helvetica;
+ color: #00507C;
+}
+
+/*
+ * This part is for hosting embedded document inside
+ * the content area.
+ */
+
+iframe {
+ position:relative;
+ top:16px;
+ width:100%;
+ height:100%;
+ padding-left:10px;
+}
+
+/* mozilla scrollbar appearing off page fix */
+#page-content > iframe {
+ width: 98%;
+ padding-left: 2%;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/standby.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/standby.css
new file mode 100644
index 0000000..8a7735e
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/standby.css
@@ -0,0 +1,159 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+
+/*
+ * We will not use the general-purpose group1 used in
+ * other pages for a curve image.
+ */
+
+#extra-group1 {
+ display : none;
+}
+
+
+#page-links a .link-label, #action-links a .link-label {
+ font-weight : 600;
+ color : #E5E5E5;
+}
+
+#page-links a p .text, #action-links a p .text {
+ font-weight : 500;
+ color : #E5E5E5;
+}
+
+/*
+ * Set up the content for the standby page.
+ */
+body {
+ min-width : 230px;
+ /* since IE doesn't support min-width, use expression */
+ width:expression(document.body.clientWidth < 230? "230px": "auto" );
+ background-repeat : no-repeat;
+ background-position : top left;
+ background-color : #6d7e85;
+}
+
+.page {
+ background-repeat : no-repeat;
+ background-position : bottom left;
+ min-width : 230px;
+ /* since IE doesn't support min-width, use expression */
+ width:expression(document.body.clientWidth < 230? "230px": "auto" );
+ min-height : 610px;
+ height : 100%;
+ height : expression(document.body.clientHeight < 450? "450px": "100%" );
+}
+
+/*
+ * Set up the navigation bar. It should be centered in the middle
+ * of the page
+ */
+
+#links-background {
+ width : 100%;
+ margin-top : 10%;
+ margin-bottom : auto;
+ text-align : center;
+}
+
+#page-links a {
+ display : block;
+ width : 220px;
+ text-align : left;
+ margin-left : auto;
+ margin-right : auto;
+ margin-top : 0px;
+ vertical-align : top;
+}
+
+#page-links a span, #page-links a p {
+ display : block;
+ width : 160px;
+ margin : 0px;
+ padding : 0px;
+}
+
+#page-links a .link-label {
+ position : relative;
+ left : 60px;
+ top : -50px;
+}
+
+#page-links a p .text {
+ position : relative;
+ left : 60px;
+ top : -50px;
+}
+
+#page-links a img {
+ height : 52px;
+ width : 52px;
+ vertical-align : middle;
+}
+
+#page-links a:hover,
+#page-links a:focus,
+#page-links a:active { border : 0px; }
+
+#page-links a:hover p,
+#page-links a:focus p,
+#page-links a:active p { margin : 0px; padding : 0px; }
+
+/* properties for each of the page-links */
+
+#page-links a .background-image {
+ display: none;
+}
+
+#page-links a .link-extra-div {
+ display :none;
+}
+
+a#overview img { background-image : url(../graphics/standby/ov_standby.gif); }
+a#overview:hover img,
+a#overview:focus img,
+a#overview:active img { background-image : url(../graphics/standby/ov_standbyhov.gif); }
+
+a#firststeps img { background-image : url(../graphics/standby/fs_standby.gif); }
+a#firststeps:hover img,
+a#firststeps:focus img,
+a#firststeps:active img { background-image : url(../graphics/standby/fs_standbyhov.gif); }
+
+a#tutorials img { background-image : url(../graphics/standby/tu_standby.gif); }
+a#tutorials:hover img,
+a#tutorials:focus img,
+a#tutorials:active img { background-image : url(../graphics/standby/tu_standbyhov.gif); }
+
+a#samples img { background-image : url(../graphics/standby/sa_standby.gif); }
+a#samples:hover img,
+a#samples:focus img,
+a#samples:active img { background-image : url(../graphics/standby/sa_standbyhov.gif); }
+
+a#whatsnew img { background-image : url(../graphics/standby/wn_standby.gif); }
+a#whatsnew:hover img,
+a#whatsnew:focus img,
+a#whatsnew:active img { background-image : url(../graphics/standby/wn_standbyhov.gif); }
+
+a#webresources img { background-image : url(../graphics/standby/wr_standby.gif); }
+a#webresources:hover img,
+a#webresources:focus img,
+a#webresources:active img { background-image : url(../graphics/standby/wr_standbyhov.gif); }
+
+a#migrate img { background-image : url(../graphics/standby/mi_standby.gif); }
+a#migrate:hover img,
+a#migrate:focus img,
+a#migrate:active img { background-image : url(../graphics/standby/mi_standbyhov.gif); }
+
+a#workbench img { background-image : url(../graphics/standby/wb_standby.gif); }
+a#workbench:hover img,
+a#workbench:focus img,
+a#workbench:active img { background-image : url(../graphics/standby/wb_standbyhov.gif); }
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/tutorials.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/tutorials.css
new file mode 100644
index 0000000..ab12e64
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/tutorials.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* show the "selected" image for this page */
+#navigation-links a#tutorials img,
+#navigation-links a#tutorials:hover img,
+#navigation-links a#tutorials:focus img,
+#navigation-links a#tutorials:active img {
+ background-image : url(../graphics/icons/ctool/tu_nav_64.gif);
+ top : 2px;
+ left : -3px;
+}
+
+#navigation-links {
+ background-image: url(../graphics/contentpage/tu_banner.jpg);
+}
+
+#navigation-links a:hover#tutorials .link-label,
+#navigation-links a:focus#tutorials .link-label,
+#navigation-links a:active#tutorials .link-label {
+ display : none;
+}
+
+#navigation-links a:hover#tutorials,
+#navigation-links a:focus#tutorials,
+#navigation-links a:active#tutorials {
+ background-image : none;
+}
+
+#navigation-links a:hover#tutorials .link-extra-div,
+#navigation-links a:focus#tutorials .link-extra-div,
+#navigation-links a:active#tutorials .link-extra-div {
+ background-image : none;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/webresources.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/webresources.css
new file mode 100644
index 0000000..e785d0d
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/webresources.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* show the "selected" image for this page */
+#navigation-links a#webresources img,
+#navigation-links a#webresources:hover img,
+#navigation-links a#webresources:focus img,
+#navigation-links a#webresources:active img {
+ background-image : url(../graphics/icons/ctool/wr_nav_64.gif);
+ top : 2px;
+ left : -3px;
+}
+
+#navigation-links {
+ background-image: url(../graphics/contentpage/wr_banner.jpg);
+}
+
+#navigation-links a:hover#webresources .link-label,
+#navigation-links a:focus#webresources .link-label,
+#navigation-links a:active#webresources .link-label {
+ display : none;
+}
+
+#navigation-links a:hover#webresources,
+#navigation-links a:focus#webresources,
+#navigation-links a:active#webresources {
+ background-image : none;
+}
+
+#navigation-links a:hover#webresources .link-extra-div,
+#navigation-links a:focus#webresources .link-extra-div,
+#navigation-links a:active#webresources .link-extra-div {
+ background-image : none;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/whatsnew.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/whatsnew.css
new file mode 100644
index 0000000..b317c0a
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/html/whatsnew.css
@@ -0,0 +1,47 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* show the "selected" image for this page */
+#navigation-links a#whatsnew img,
+#navigation-links a#whatsnew:hover img,
+#navigation-links a#whatsnew:focus img,
+#navigation-links a#whatsnew:active img {
+ background-image : url(../graphics/icons/ctool/wn_nav_64.gif);
+ top : 2px;
+ left : -3px;
+}
+
+#navigation-links {
+ background-image: url(../graphics/contentpage/wn_banner.jpg);
+}
+
+#navigation-links a:hover#whatsnew .link-label,
+#navigation-links a:focus#whatsnew .link-label,
+#navigation-links a:active#whatsnew .link-label {
+ display : none;
+}
+
+#navigation-links a:hover#whatsnew,
+#navigation-links a:focus#whatsnew,
+#navigation-links a:active#whatsnew {
+ background-image : none;
+}
+
+#navigation-links a:hover#whatsnew .link-extra-div,
+#navigation-links a:focus#whatsnew .link-extra-div,
+#navigation-links a:active#whatsnew .link-extra-div {
+ background-image : none;
+}
+/*
+ * Default images for content links in this page.
+ */
+.content-link img { background-image : url(../graphics/icons/obj48/new_obj.gif); }
+.content-link:hover img { background-image : url(../graphics/icons/obj48/newhov_obj.gif); }
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/preview.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/preview.png
new file mode 100644
index 0000000..0e81aea
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/preview.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/firststeps.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/firststeps.properties
new file mode 100644
index 0000000..48b1b5c
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/firststeps.properties
@@ -0,0 +1,18 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+firststeps.page-content.layout.vspacing = 40
+firststeps.page-content.layout.ncolumns = 2
+firststeps.page-content.page-title.layout.colspan = 2
+firststeps.page-content.page-description.layout.colspan = 2
+firststeps.page-content.content-divider.layout.colspan = 2
+firststeps.subtitle-id = firststeps/page-content/page-title
+firststeps.description-id = firststeps/page-content/page-description
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/migrate.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/migrate.properties
new file mode 100644
index 0000000..eaaa815
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/migrate.properties
@@ -0,0 +1,18 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+migrate.page-content.layout.vspacing = 40
+migrate.page-content.layout.ncolumns = 2
+migrate.page-content.page-title.layout.colspan = 2
+migrate.page-content.page-description.layout.colspan = 2
+migrate.page-content.content-divider.layout.colspan = 2
+
+migrate.subtitle-id = migrate/page-content/page-title
+migrate.description-id = migrate/page-content/page-description
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/overview.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/overview.properties
new file mode 100644
index 0000000..78c262f
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/overview.properties
@@ -0,0 +1,18 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+overview.page-content.layout.ncolumns = 2
+overview.page-content.page-title.layout.colspan = 2
+overview.page-content.page-description.layout.colspan = 2
+overview.page-content.content-divider.layout.colspan = 2
+
+overview.subtitle-id = overview/page-content/page-title
+overview.description-id = overview/page-content/page-description
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/root.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/root.properties
new file mode 100644
index 0000000..05ec22b
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/root.properties
@@ -0,0 +1,51 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+theme=true
+root.links-background.page-links.overview.link-icon = ../graphics/icons/ctool/overview.png
+root.links-background.page-links.tutorials.link-icon = ../graphics/icons/ctool/tutorials.png
+root.links-background.page-links.samples.link-icon= ../graphics/icons/ctool/samples.png
+root.links-background.page-links.whatsnew.link-icon = ../graphics/icons/ctool/whatsnew.png
+root.links-background.page-links.firststeps.link-icon = ../graphics/icons/ctool/firststeps.png
+root.links-background.page-links.migrate.link-icon = ../graphics/icons/ctool/migrate.png
+root.links-background.page-links.webresources.link-icon = ../graphics/icons/ctool/webresources.png
+root.action-links.workbench.link-icon = ../graphics/icons/ctool/workbench.png
+
+root.links-background.page-links.overview.hover-icon = ../graphics/icons/ctool/overview.png
+root.links-background.page-links.tutorials.hover-icon = ../graphics/icons/ctool/tutorials.png
+root.links-background.page-links.samples.hover-icon = ../graphics/icons/ctool/samples.png
+root.links-background.page-links.whatsnew.hover-icon = ../graphics/icons/ctool/whatsnew.png
+root.links-background.page-links.firststeps.hover-icon = ../graphics/icons/ctool/firststeps.png
+root.links-background.page-links.migrate.hover-icon = ../graphics/icons/ctool/migrate.png
+root.links-background.page-links.webresources.hover-icon = ../graphics/icons/ctool/webresources.png
+root.action-links.workbench.hover-icon = ../graphics/icons/ctool/workbench.png
+
+root.links-background.page-links.overview.small-link-icon = ../graphics/icons/ctool/ov_nav.png
+root.links-background.page-links.tutorials.small-link-icon = ../graphics/icons/ctool/tu_nav.png
+root.links-background.page-links.samples.small-link-icon = ../graphics/icons/ctool/sa_nav.png
+root.links-background.page-links.whatsnew.small-link-icon = ../graphics/icons/ctool/wn_nav.png
+root.links-background.page-links.firststeps.small-link-icon = ../graphics/icons/ctool/fs_nav.png
+root.links-background.page-links.migrate.small-link-icon = ../graphics/icons/ctool/mi_nav.png
+root.links-background.page-links.webresources.small-link-icon = ../graphics/icons/ctool/wr_nav.png
+root.action-links.workbench.small-link-icon = ../graphics/icons/ctool/wb_nav.png
+
+root.links-background.page-links.overview.small-hover-icon = ../graphics/icons/ctool/ov_nav.png
+root.links-background.page-links.tutorials.small-hover-icon = ../graphics/icons/ctool/tu_nav.png
+root.links-background.page-links.samples.small-hover-icon = ../graphics/icons/ctool/sa_nav.png
+root.links-background.page-links.whatsnew.small-hover-icon = ../graphics/icons/ctool/wn_nav.png
+root.links-background.page-links.firststeps.small-hover-icon = ../graphics/icons/ctool/fs_nav.png
+root.links-background.page-links.migrate.small-hover-icon = ../graphics/icons/ctool/mi_nav.png
+root.links-background.page-links.webresources.small-hover-icon = ../graphics/icons/ctool/wr_nav.png
+root.action-links.workbench.small-hover-icon = ../graphics/icons/ctool/wb_nav.png
+
+
+root.layout.ncolumns = 1
+root.links-background.page-links.layout.hspacing = 40
+root.layout.vspacing = 35
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/samples.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/samples.properties
new file mode 100644
index 0000000..c4551f8
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/samples.properties
@@ -0,0 +1,21 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+samples.page-content.layout.vspacing = 40
+samples.page-content.layout.ncolumns = 2
+samples.page-content.layout.equalWidth = true
+samples.page-content.page-title.layout.colspan = 2
+samples.page-content.page-description.layout.colspan = 2
+samples.page-content.content-divider.layout.colspan = 2
+
+description-style-id = group-description
+samples.subtitle-id = samples/page-content/page-title
+samples.description-id = samples/page-content/page-description
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/standby.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/standby.properties
new file mode 100644
index 0000000..25f6d6d
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/standby.properties
@@ -0,0 +1,24 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+theme = true
+standby.links-background.page-links.overview.link-icon = ../graphics/icons/ctool/ov_nav.png
+standby.links-background.page-links.firststeps.link-icon = ../graphics/icons/ctool/fs_nav.png
+standby.links-background.page-links.tutorials.link-icon = ../graphics/icons/ctool/tu_nav.png
+standby.links-background.page-links.samples.link-icon = ../graphics/icons/ctool/sa_nav.png
+standby.links-background.page-links.whatsnew.link-icon = ../graphics/icons/ctool/wn_nav.png
+standby.links-background.page-links.migrate.link-icon = ../graphics/icons/ctool/mi_nav.png
+standby.links-background.page-links.webresources.link-icon = ../graphics/icons/ctool/wr_nav.png
+standby.links-background.page-links.workbench.link-icon = ../graphics/icons/ctool/wb_nav.png
+
+standby.links-background.page-links.layout.vspacing = 30
+standby.layout.vspacing = 35
+standby.show-link-description = false
+standby.show-home-page-navigation = false
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/tutorials.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/tutorials.properties
new file mode 100644
index 0000000..2f7eb0d
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/tutorials.properties
@@ -0,0 +1,19 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+tutorials.page-content.layout.vspacing = 40
+tutorials.page-content.layout.ncolumns = 2
+tutorials.page-content.layout.equalWidth = true
+tutorials.page-content.page-title.layout.colspan = 2
+tutorials.page-content.page-description.layout.colspan = 2
+tutorials.page-content.content-divider.layout.colspan = 2
+tutorials.subtitle-id = tutorials/page-content/page-title
+tutorials.description-id = tutorials/page-content/page-description
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/webresources.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/webresources.properties
new file mode 100644
index 0000000..db164a9
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/webresources.properties
@@ -0,0 +1,19 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+webresources.page-content.layout.vspacing = 40
+webresources.page-content.layout.ncolumns = 2
+webresources.page-content.page-title.layout.colspan = 2
+webresources.page-content.page-description.layout.colspan = 2
+webresources.page-content.content-divider.layout.colspan = 2
+
+webresources.subtitle-id = webresources/page-content/page-title
+webresources.description-id = webresources/page-content/page-description
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/whatsnew.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/whatsnew.properties
new file mode 100644
index 0000000..3d57994
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/circles/swt/whatsnew.properties
@@ -0,0 +1,24 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+theme = true
+whatsnew.page-content.layout.vspacing = 40
+whatsnew.page-content.layout.ncolumns = 2
+whatsnew.page-content.layout.equalWidth = true
+whatsnew.page-content.page-title.layout.colspan = 2
+whatsnew.page-content.page-description.layout.colspan = 2
+whatsnew.page-content.content-divider.layout.colspan = 2
+
+whatsnew.separator.fg = #dfdfe4
+
+whatsnew.link-icon = ../graphics/icons/obj48/new_obj.gif
+whatsnew.hover-icon = ../graphics/icons/obj48/newhov_obj.gif
+
+whatsnew.subtitle-id = whatsnew/page-content/page-title
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/background.jpg.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/background.jpg.REMOVED.git-id
new file mode 100644
index 0000000..b12cabf
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/background.jpg.REMOVED.git-id
@@ -0,0 +1 @@
+ce1cada2093a9ded1e3686e3f33e07aea8c2f94f
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/backgroundcurve.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/backgroundcurve.gif
new file mode 100644
index 0000000..8c5ec1d
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/backgroundcurve.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/firsteps_wtr.jpg b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/firsteps_wtr.jpg
new file mode 100644
index 0000000..11e7725
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/firsteps_wtr.jpg differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/migrate_wtr.jpg b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/migrate_wtr.jpg
new file mode 100644
index 0000000..c45dc6f
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/migrate_wtr.jpg differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/overview_wtr.jpg b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/overview_wtr.jpg
new file mode 100644
index 0000000..733e48c
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/overview_wtr.jpg differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/samples_wtr.jpg b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/samples_wtr.jpg
new file mode 100644
index 0000000..9e0fa8a
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/samples_wtr.jpg differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section1.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section1.gif
new file mode 100644
index 0000000..6147513
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section1.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section2.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section2.gif
new file mode 100644
index 0000000..0ee148b
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section2.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section3.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section3.gif
new file mode 100644
index 0000000..b5d24e6
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section3.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section4.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section4.gif
new file mode 100644
index 0000000..258d4a8
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/section4.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/tutorials_wtr.jpg b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/tutorials_wtr.jpg
new file mode 100644
index 0000000..2cf26b2
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/tutorials_wtr.jpg differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/webrsrc_wtr.jpg b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/webrsrc_wtr.jpg
new file mode 100644
index 0000000..c002f2d
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/webrsrc_wtr.jpg differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/whatsnew_wtr.jpg b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/whatsnew_wtr.jpg
new file mode 100644
index 0000000..c2a42da
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/contentpage/whatsnew_wtr.jpg differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/back.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/back.gif
new file mode 100644
index 0000000..1c81cb6
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/back.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps16.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps16.png
new file mode 100644
index 0000000..4c15c82
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps16.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps48.gif
new file mode 100644
index 0000000..5140ad8
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps48sel.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps48sel.gif
new file mode 100644
index 0000000..954955d
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps48sel.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps72.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps72.gif
new file mode 100644
index 0000000..ff92f6e
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/firsteps72.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/forward.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/forward.gif
new file mode 100644
index 0000000..3e4a4f4
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/forward.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/home.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/home.gif
new file mode 100644
index 0000000..0160f8f
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/home.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate16.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate16.png
new file mode 100644
index 0000000..3fc8414
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate16.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate48.gif
new file mode 100644
index 0000000..dc48b18
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate48sel.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate48sel.gif
new file mode 100644
index 0000000..a9d6d07
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate48sel.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate72.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate72.gif
new file mode 100644
index 0000000..25fc317
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/migrate72.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview16.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview16.png
new file mode 100644
index 0000000..b2e977f
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview16.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview48.gif
new file mode 100644
index 0000000..3843412
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview48sel.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview48sel.gif
new file mode 100644
index 0000000..fafc1a6
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview48sel.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview72.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview72.gif
new file mode 100644
index 0000000..39d089a
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/overview72.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples16.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples16.png
new file mode 100644
index 0000000..fdff5dd
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples16.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples48.gif
new file mode 100644
index 0000000..e71836e
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples48sel.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples48sel.gif
new file mode 100644
index 0000000..daaa044
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples48sel.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples72.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples72.gif
new file mode 100644
index 0000000..1515906
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/samples72.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials16.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials16.png
new file mode 100644
index 0000000..f2d688f
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials16.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials48.gif
new file mode 100644
index 0000000..f527297
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials48sel.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials48sel.gif
new file mode 100644
index 0000000..9d41c08
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials48sel.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials72.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials72.gif
new file mode 100644
index 0000000..8fd4816
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/tutorials72.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/wb16.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/wb16.png
new file mode 100644
index 0000000..e73ca61
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/wb16.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/wb48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/wb48.gif
new file mode 100644
index 0000000..c2fd06a
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/wb48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc16.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc16.png
new file mode 100644
index 0000000..b847caa
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc16.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc48.gif
new file mode 100644
index 0000000..b54d518
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc48sel.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc48sel.gif
new file mode 100644
index 0000000..798f415
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc48sel.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc72.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc72.gif
new file mode 100644
index 0000000..c4df0ad
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/webrsrc72.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew16.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew16.png
new file mode 100644
index 0000000..5294b17
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew16.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew48.gif
new file mode 100644
index 0000000..4eeb56a
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew48sel.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew48sel.gif
new file mode 100644
index 0000000..d5ba746
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew48sel.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew72.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew72.gif
new file mode 100644
index 0000000..df3bd99
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/ctool/whatsnew72.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/dtool/back.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/dtool/back.gif
new file mode 100644
index 0000000..f0d0929
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/dtool/back.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/dtool/forward.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/dtool/forward.gif
new file mode 100644
index 0000000..dbe58b2
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/dtool/forward.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/back.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/back.gif
new file mode 100644
index 0000000..f0d0929
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/back.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps48.gif
new file mode 100644
index 0000000..b277a7f
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps48sel.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps48sel.gif
new file mode 100644
index 0000000..9679b5f
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps48sel.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps72.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps72.gif
new file mode 100644
index 0000000..a68e0aa
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/firsteps72.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/forward.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/forward.gif
new file mode 100644
index 0000000..dbe58b2
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/forward.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/home.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/home.gif
new file mode 100644
index 0000000..b101d12
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/home.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate48.gif
new file mode 100644
index 0000000..313c983
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate48sel.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate48sel.gif
new file mode 100644
index 0000000..6a12231
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate48sel.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate72.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate72.gif
new file mode 100644
index 0000000..2a3fe17
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/migrate72.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview48.gif
new file mode 100644
index 0000000..6ac4cf7
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview48sel.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview48sel.gif
new file mode 100644
index 0000000..5588700
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview48sel.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview72.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview72.gif
new file mode 100644
index 0000000..1e612b5
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/overview72.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples48.gif
new file mode 100644
index 0000000..eeace58
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples48sel.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples48sel.gif
new file mode 100644
index 0000000..38b965d
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples48sel.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples72.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples72.gif
new file mode 100644
index 0000000..504fea0
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/samples72.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials48.gif
new file mode 100644
index 0000000..dfe572b
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials48sel.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials48sel.gif
new file mode 100644
index 0000000..e8a8d93
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials48sel.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials72.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials72.gif
new file mode 100644
index 0000000..12698f6
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/tutorials72.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/wb48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/wb48.gif
new file mode 100644
index 0000000..50ca287
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/wb48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc48.gif
new file mode 100644
index 0000000..41fef5f
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc48sel.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc48sel.gif
new file mode 100644
index 0000000..5f7b9c7
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc48sel.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc72.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc72.gif
new file mode 100644
index 0000000..cdf21e4
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/webrsrc72.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew48.gif
new file mode 100644
index 0000000..d73db3e
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew48sel.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew48sel.gif
new file mode 100644
index 0000000..8c9aaa2
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew48sel.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew72.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew72.gif
new file mode 100644
index 0000000..63844fd
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/etool/whatsnew72.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/obj48/new_obj.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/obj48/new_obj.gif
new file mode 100644
index 0000000..f46b81b
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/obj48/new_obj.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/obj48/newhov_obj.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/obj48/newhov_obj.gif
new file mode 100644
index 0000000..593e63b
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/icons/obj48/newhov_obj.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/firststeps16.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/firststeps16.png
new file mode 100644
index 0000000..4c15c82
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/firststeps16.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/migrate16.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/migrate16.png
new file mode 100644
index 0000000..3fc8414
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/migrate16.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/overview.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/overview.gif
new file mode 100644
index 0000000..3fe629a
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/overview.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/samples.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/samples.gif
new file mode 100644
index 0000000..c695884
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/samples.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/tutorials.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/tutorials.gif
new file mode 100644
index 0000000..a18d7dd
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/tutorials.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/webresources16.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/webresources16.png
new file mode 100644
index 0000000..b847caa
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/webresources16.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/whatsnew.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/whatsnew.gif
new file mode 100644
index 0000000..f022324
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/launchbar/whatsnew.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/background.jpg.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/background.jpg.REMOVED.git-id
new file mode 100644
index 0000000..ea27a4e
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/background.jpg.REMOVED.git-id
@@ -0,0 +1 @@
+969fcf3364fa68d76f88893a295845d310e05f79
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/brandmark.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/brandmark.gif
new file mode 100644
index 0000000..93f25f7
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/brandmark.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/dots.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/dots.gif
new file mode 100644
index 0000000..6621b7c
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/root/dots.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/swt/form_banner.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/swt/form_banner.gif
new file mode 100644
index 0000000..aebc0b2
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/graphics/swt/form_banner.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/firststeps.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/firststeps.css
new file mode 100644
index 0000000..0904e2b
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/firststeps.css
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+body {
+ background-image : url(../graphics/contentpage/firsteps_wtr.jpg);
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#firststeps img,
+#navigation-links a#firststeps:hover img,
+#navigation-links a#firststeps:focus img,
+#navigation-links a#firststeps:active img {
+ background-image : url(../graphics/icons/ctool/firsteps48sel.gif);
+}
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/font-absolute.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/font-absolute.css
new file mode 100644
index 0000000..a8b42e2
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/font-absolute.css
@@ -0,0 +1,88 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+.intro-header H1 {
+ font-size : 16pt;
+}
+
+h2 {
+ font-size : 13pt;
+}
+
+/* For regular div labels */
+H4 .div-label {
+ font-size : 10pt;
+}
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+ font-size : 10pt;
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+ font-size : 14pt;
+}
+
+.page-description {
+ font-size : 10pt;
+}
+
+a .link-label {
+ font-size : 10pt;
+}
+
+#navigation-links a .link-label {
+ font-size : 9pt;
+}
+
+a .text {
+ font-size : 8pt;
+}
+
+p .group-description {
+ font-size : 10pt;
+}
+
+.categoryContentnav {
+ font-size: 9pt;
+}
+
+.topicList {
+ font-size: 8pt;
+}
+
+/*
+ * Set up general font colours, sizes, etc. Some of these will override
+ * settings from the shared CSS
+ */
+#root .intro-header H1 {
+ font-size : 18pt;
+}
+#root #page-links a .link-label, #action-links a .link-label {
+ font-size : 13pt;
+}
+
+#root #page-links a p .text, #action-links a p .text {
+ font-size : 13pt;
+}
+
+#standby .intro-header H1 {
+ font-size : 15pt;
+}
+
+#standby #page-links a .link-label, #standby #action-links a .link-label {
+ font-size : 10pt;
+}
+
+#standby #page-links a p .text, #standby #action-links a p .text {
+ font-size : 10pt;
+}
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/font-relative.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/font-relative.css
new file mode 100644
index 0000000..f3ed239
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/font-relative.css
@@ -0,0 +1,88 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+.intro-header H1 {
+ font-size : 16pt
+}
+
+h2 {
+ font-size : 120%;
+}
+
+/* For regular div labels */
+H4 .div-label {
+ font-size : 100%;
+}
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+ font-size : 100%;
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+ font-size : 160%;
+}
+
+.page-description {
+ font-size : 100%;
+}
+
+a .link-label {
+ font-size : 100%;
+}
+
+#navigation-links a .link-label {
+ font-size : 90%;
+}
+
+a .text {
+ font-size : 90%;
+}
+
+p .group-description {
+ font-size : 100%;
+}
+
+.categoryContentnav {
+ //font-size: 9pt;
+}
+
+.topicList {
+ font-size: 90%;
+}
+
+/*
+ * Set up general font colours, sizes, etc. Some of these will override
+ * settings from the shared CSS
+ */
+#root .intro-header H1 {
+ font-size : 200%;
+}
+#root #page-links a .link-label, #root #action-links a .link-label {
+ font-size : 13pt;
+}
+
+#root #page-links a p .text, #root #action-links a p .text {
+ font-size : 13pt;
+}
+
+#standby .intro-header H1 {
+ font-size : 150%;
+}
+
+#standby #page-links a .link-label, #standby #action-links a .link-label {
+ font-size : 100%;
+}
+
+#standby #page-links a p .text, #standby #action-links a p .text {
+ font-size : 100%;
+}
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/ltr.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/ltr.css
new file mode 100644
index 0000000..57586c8
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/ltr.css
@@ -0,0 +1,19 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * This file contains styles that are specific to left to right display
+ */
+
+body {
+ direction: ltr;
+}
+
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/migrate.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/migrate.css
new file mode 100644
index 0000000..8d23eb9
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/migrate.css
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+body {
+ background-image : url(../graphics/contentpage/migrate_wtr.jpg);
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#migrate img,
+#navigation-links a#migrate:hover img,
+#navigation-links a#migrate:focus img,
+#navigation-links a#migrate:active img {
+ background-image : url(../graphics/icons/ctool/migrate48sel.gif);
+}
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/overview.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/overview.css
new file mode 100644
index 0000000..113c21c
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/overview.css
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+body {
+ background-image : url(../graphics/contentpage/overview_wtr.jpg);
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#overview img,
+#navigation-links a#overview:hover img,
+#navigation-links a#overview:focus img,
+#navigation-links a#overview:active img {
+ background-image : url(../graphics/icons/ctool/overview48sel.gif);
+}
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/root.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/root.css
new file mode 100644
index 0000000..4a998d9
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/root.css
@@ -0,0 +1,219 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+#page-links a .link-label, #action-links a .link-label {
font-weight : 600;
color : #E5E5E5;
+}
+#page-links a p .text, #action-links a p .text {
font-weight : 500;
color : #E5E5E5;
+}
+
+/*
+ * Turn off shared backround image.
+ */
+
+.page {
+ background-image: none;
+}
+
+/*
+ * Set up the content for the root page.
+ */
+body {
+ min-width : 770px;
/* since IE doesn't support min-width, use expression */
+ width:expression(document.body.clientWidth < 770? "770px": "auto" );
background-image : url(../graphics/root/background.jpg);
background-repeat : no-repeat;
background-position : top left;
background-color : #7169D1;
+}
+#root {
+/*
+ background-image : url(../graphics/root/brandmark.gif);
+*/
+ background-repeat : no-repeat;
background-position : bottom left;
+ min-height : 450px;
height : 100%;
height : expression(document.body.clientHeight < 450? "450px": "100%" );
+}
+
+#branding {
+ position: absolute;
+ bottom : 20px;
+ left : 20px;
+}
+
+/*
+ * We will not use the general-purpose group1 used in
+ * other pages for a curve image.
+ */
+
+#extra-group1 {
+ display : none;
+}
+/*
+ * Set up the navigation bar. It should be centered in the middle
+ * of the page
+ */
+#links-background {
+ background-image : url(../graphics/root/dots.gif);
background-repeat : repeat-x;
width : 100%;
height : 177px;
margin-top : 18%;
margin-bottom : auto;
text-align : center;
+}
+/* specify a width for Moz so we can center.
+ * **Important** If additional links are added, we will have to increase this width
+ * to accomodate them, otherwise they will wrap to a new line
+ */
+
+#links-background > #page-links {
+ width: 33em;
+ margin: 0 auto;
+}
+
+#page-links {
+ position : relative;
top : 50px;
+ text-align: center;
+}
+#page-links a {
+ position : relative;
width : 86px;
margin-left : 1em;
margin-right : 1em;
text-align : center;
vertical-align : top;
+}
+/* float left for Moz so the items all appear inline */
+#page-links > a {
+ float : left;
position : relative;
+}
+#page-links a img {
+ height : 82px;
width : 82px;
vertical-align : middle;
+}
+/* remove the hover image from the flow of the document,
+ so it doesn't take up space and change the position
+ of the link label and descriptions */
+#page-links a .background-image {
+ position : absolute;
+}
+/* properly align the link label and text based on class (left vs. right) */
+#page-links a:hover {
+ /* This is needed for IE to force the hover pseudo selectors below to work.*/
padding : 0 em;
+}
+/* Hide both the label and the description of the link and remove them from static HTML flow, until user hovers over link */
+/* First, set the width of both the label and the description to a max of 15 em. */
+/* This can be changed when translated to different country locals. */
+#page-links a span {
+ width : 16em;
}
+/* Set up left links orientation first. */
+#page-links a.left:link .link-label,
+#page-links a.left:visited .link-label {
+ display: none;
+}
+#page-links a.left:hover .link-label,
+#page-links a.left:focus .link-label,
+#page-links a.left:active .link-label {
+ text-align: left;
display: block;
position: absolute;
top : 120 %;
left : 0;
+}
+/* hide description and remove it from static HTML flow, until user hovers over link */
+#page-links a.left:link .text,
+#page-links a.left:visited .text {
+ display: none;
+}
+#page-links a.left:hover .text,
+#page-links a.left:focus .text,
+#page-links a.left:active .text {
+ text-align: left;
display: block;
position: absolute;
left : 0;
top: 145%;
+}
+/* Set up right links orientation now. */
+#page-links a.right:link .link-label,
+#page-links a.right:visited .link-label {
+ display: none;
+}
+#page-links a.right:hover .link-label,
+#page-links a.right:focus .link-label,
+#page-links a.right:active .link-label {
+ text-align: right;
display: block;
position: absolute;
top : 120 %;
right : 0;
+}
+/* hide description and remove it from static HTML flow, until user hovers over link */
+#page-links a.right:link .text,
+#page-links a.right:visited .text {
+ display: none;
+}
+#page-links a.right:hover .text,
+#page-links a.right:focus .text,
+#page-links a.right:active .text {
+ text-align: right;
display: block;
position: absolute;
right : 0;
top: 145%;
+}
+/* properties for each of the page-links */
+#page-links a#overview img { background-image : url(../graphics/icons/etool/overview72.gif); }
+#page-links a:hover#overview img { background-image : url(../graphics/icons/ctool/overview72.gif); }
+
+#page-links a#tutorials img { background-image : url(../graphics/icons/etool/tutorials72.gif); }
+#page-links a:hover#tutorials img { background-image : url(../graphics/icons/ctool/tutorials72.gif); }
+
+#page-links a#samples img { background-image : url(../graphics/icons/etool/samples72.gif); }
+#page-links a:hover#samples img { background-image : url(../graphics/icons/ctool/samples72.gif); }
+
+#page-links a#whatsnew img { background-image : url(../graphics/icons/etool/whatsnew72.gif); }
+#page-links a:hover#whatsnew img { background-image : url(../graphics/icons/ctool/whatsnew72.gif); }
+
+#page-links a#firststeps img { background-image : url(../graphics/icons/etool/firsteps72.gif); }
+#page-links a:hover#firststeps img { background-image : url(../graphics/icons/ctool/firsteps72.gif); }
+
+#page-links a#webresources img { background-image : url(../graphics/icons/etool/webrsrc72.gif); }
+#page-links a:hover#webresources img { background-image : url(../graphics/icons/ctool/webrsrc72.gif); }
+
+#page-links a#migrate img { background-image : url(../graphics/icons/etool/migrate72.gif); }
+#page-links a:hover#migrate img { background-image : url(../graphics/icons/ctool/migrate72.gif); }
+
+/*
+ * Set up the action links
+ */
+#action-links {
+ width : 98%;
position : absolute;
left : 0px;
top : 20px;
+}
+#action-links a#workbench {
+ position : absolute;
top : -16px;
right : -8px;
text-align : right;
+}
+#action-links a .background-image,
+#action-links a #workbench_img {
+ height : 53px;
width : 53px;
text-align : center;
vertical-align : top;
+}
+/* special case for mozilla */
+#action-links a > .background-image,
+#action-links a > #workbench_img {
+ vertical-align : middle;
+}
+/* remove the hover image from the flow of the document,
+ so it doesn't take up space and change the position
+ of the main image */
+#action-links a .background-image {
+ position : absolute;
+}
+
+#action-links a#workbench .background-image {
+ background-image : url(../graphics/icons/etool/wb48.gif);
+}
+
+#action-links a#workbench:hover .background-image,
+#action-links a#workbench:focus .background-image,
+#action-links a#workbench:active .background-image {
+ background-image : url(../graphics/icons/ctool/wb48.gif);
+ visibility : visible;
+ position: absolute;
+ top: 0px;
+ right: 0px;
+}
+/* hide the link and description until users hover over the link */
+#action-links a p .text, #action-links a .link-label {
+ display : none;
+}
+#action-links a:hover .link-label,
+#action-links a:focus .link-label,
+#action-links a:active .link-label {
+ display : block;
width : 16em;
+ margin-left : 10px;
+}
+#action-links a:hover p .text,
+#action-links a:focus p .text,
+#action-links a:active p .text {
+ display : block;
width : 16em;
+}
+#action-links a:hover,
+#action-links a:focus,
+#action-links a:active {
+ border : 0px;
+}
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/rtl.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/rtl.css
new file mode 100644
index 0000000..8929906
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/rtl.css
@@ -0,0 +1,106 @@
+/*******************************************************************************
+ * Copyright (c) 2008, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * This file contains styles that are specific to right to left display
+ */
+
+
+table {
+ direction: rtl;
+}
+
+#page-content p {
+ text-align : right;
+}
+
+#page-content #content-header H4, .page-description {
+ text-align : right;
+}
+
+#page-content table tr td a > .link-label {
+ left:0px;
+}
+
+#page-content * td a .link-label {
+ display:block;
+ left:0px;
+ margin-right:0px;
+ position:static;
+ top:0px;
+}
+
+#page-content * td a .text {
+ display:block;
+ left:0px;
+ margin-right:0px;
+ position:static;
+ top:0px;
+}
+
+.content-group {
+ text-align: right;
+}
+
+.intro-header span {
+ margin-right : 45px;
+ padding-right : 45px;
+}
+
+div div#rss-news {
+ position:static;
+ margin-left:0px;
+ margin-bottom: 0px;
+ margin-top: 10px;
+ top : 0px;
+ margin-right : 30px;
+}
+
+div ul#eclipse-news {
+ list-style-image: url("../graphics/icons/ctool/arrow_rtl.gif");
+ margin-left: 0px;
+ padding-right: 10px;
+ margin-right: 10px;
+}
+
+/* The 'closed' toggle image part of the folding section. */
+#page-content .section-title-link .section-toggle-image-closed {
+ background-image : url(../graphics/icons/ctool/widget_closed_rtl.gif);
+}
+
+#page-content .section-title-link:hover .section-toggle-image-closed,
+#page-content .section-title-link:active .section-toggle-image-closed {
+ background-image : url(../graphics/icons/ctool/widget_closed_hov_rtl.gif);
+}
+
+#standby #links-background {
+ text-align:right;
+}
+
+#standby #page-links a {
+ text-align : right;
+}
+
+#standby #page-links a .link-label {
+ left:auto;
+ right : 60px;
+}
+
+#standby #page-links p {
+ right : 60px;
+}
+
+#standby #page-links a p .text {
+ margin-right:auto;
+ left:auto;
+ right : 60px;
+}
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/samples.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/samples.css
new file mode 100644
index 0000000..b994004
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/samples.css
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+body {
+ background-image : url(../graphics/contentpage/samples_wtr.jpg);
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#samples img,
+#navigation-links a#samples:hover img,
+#navigation-links a#samples:focus img,
+#navigation-links a#samples:active img {
+ background-image : url(../graphics/icons/ctool/samples48sel.gif);
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/shared.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/shared.css
new file mode 100644
index 0000000..6e9e694
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/shared.css
@@ -0,0 +1,420 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * Set up general fonts, sizes and colors
+ */
+body { font-family : Arial, sans-serif; }
+
+H1, H2, H3, H4, p, a { color : #4D4D4D; }
+
+.intro-header H1 {
+ font-weight : normal;
+ color : #E5E5E5;
+}
+
+h2 {
+ font-weight : normal;
+ color : #7B8694;
+}
+/* For regular div labels */
+H4 .div-label {
+ font-weight : bold;
+}
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+ display : inline;
+}
+
+/* For separators */
+HR {
+ width: 90%;
+ align: left;
+ height : 1px;
+ color : #dfdfe4;
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+ font-weight : normal;
+ color : #8C96A2;
+ float : none;
+ clear : both;
+}
+
+.page-description {
+ float : none;
+ clear : both;
+}
+
+a {
+ font-weight : bold;
+ text-decoration : none;
+ color : #4D4D4D;
+}
+
+a .link-label {
+ font-weight : normal;
+}
+
+/* Hide the 'special-effect' extra div in links by default. */
+.link-extra-div {
+ display : none;
+}
+
+#navigation-links a .link-label {
+ font-weight : normal;
+ color : #E5E5E5;
+}
+
+a .text {
+ font-weight : normal;
+}
+
+p .group-description {
+ font-weight : normal;
+}
+
+
+/*
+ * Set up other general properties like padding/margins
+ */
+html, body { width : 100%; height : 100%; }
+
+html, body, div, h1, h4, p, a { margin : 0px; padding : 0px; }
+
+.intro-header H1 { padding-top : 10px; margin-left : 10px; }
+
+.section { }
+.section-body { display: none; padding : 0px; }
+
+/* For regular div labels */
+#page-content div H4 {
+ padding : 10px;
+ padding-bottom : 0px;
+}
+
+/* For the main page content's div label */
+#page-content #content-header H4 {
+ padding-bottom : 10px;
+ padding-top : 0px;
+}
+
+/* special case for Mozilla's main content-header label.
+ Mozilla 1.4 needs more room at the top */
+#page-content > #content-header H4 { padding-top : 10px; }
+
+/* Needed in IE to get shift+tab to show the active image properly */
+a:active {
+ border : solid 0px;
+}
+
+a img {
+ border-width : 0;
+ background-repeat : no-repeat;
+}
+
+/*
+ * to get scrollbars working in both IE and Mozilla
+ */
+html,body { overflow: auto; }
+html>body { overflow: visible; }
+
+/*
+ * Set up the body, decorative background, and navigation for the content
+ * pages.
+ * Note: the root page handles its own background and navigation; these
+ * settings primarily apply to the content pages
+ */
+body {
+ background-color : #FFFFFF;
+ background-repeat : no-repeat;
+ background-position : bottom right;
+}
+
+/*
+ * We will use one of the general purpose groups to show
+ * the curve image
+ */
+#extra-group1 {
+ width : 100%;
+ height : 164px;
+ position : absolute;
+ top : 0px;
+ background-image : url(../graphics/contentpage/backgroundcurve.gif);
+ background-repeat : no-repeat;
+ background-position : top center;
+ margin : 0;
+ padding : 0;
+}
+
+/*
+ * Hide the other general-purpose groups
+ */
+
+#extra-group2,
+#extra-group3,
+#extra-group4,
+#extra-group5 {
+ display : none;
+}
+
+.intro-header { background-color : transparent; z-index : 100;}
+
+body, .page{
+ min-width : 770px;
+ /* since IE doesn't support min-width, try expression */
+ width:expression(document.body.clientWidth < 770? "770px": "auto" );
+ min-height : 425px;
+ height : 100%;
+ height : expression(document.body.clientHeight < 425? "425px": "100%" );
+}
+
+.page {
+ min-height : 475px;
+ background-image : url(../graphics/contentpage/background.jpg);
+ background-repeat : repeat-x;
+ background-position : top left;
+}
+
+#page-content {
+ background-repeat : no-repeat;
+ background-position : bottom right;
+ height : 70%;
+}
+
+/*
+ * Lay out the navigation links
+ * (Root page does something similar for its navigation)
+ */
+#navigation-links {
+ position : relative;
+ left : 10px;
+ top : 5px;
+ height : 60px;
+ width : 98%;
+}
+
+#navigation-links a {
+ padding-left : 5px;
+ padding-right : 5px;
+ float : left;
+ text-align : center;
+}
+
+#navigation-links #customize {
+ padding-left : 5px;
+ padding-right : 5px;
+ float : left;
+ text-align : center;
+}
+
+#navigation-links a img {
+ height : 52px;
+ width : 52px;
+ vertical-align : middle;
+}
+
+#navigation-links a .link-label { display : block; margin-top : 5px;}
+
+#navigation-links a .text { display : none; }
+
+#navigation-links a:hover,
+#navigation-links a:focus
+#navigation-links a:active { border-right : 0px;}
+
+/* properties for each of the navigation-links */
+#navigation-links a#overview img { background-image : url(../graphics/icons/etool/overview48.gif); }
+#navigation-links a#overview:hover img,
+#navigation-links a#overview:focus img,
+#navigation-links a#overview:active img { background-image : url(../graphics/icons/ctool/overview48.gif); }
+
+#navigation-links a#tutorials img { background-image : url(../graphics/icons/etool/tutorials48.gif); }
+#navigation-links a#tutorials:hover img,
+#navigation-links a#tutorials:active img,
+#navigation-links a#tutorials:focus img { background-image : url(../graphics/icons/ctool/tutorials48.gif); }
+
+#navigation-links a#samples img { background-image : url(../graphics/icons/etool/samples48.gif); }
+#navigation-links a#samples:hover img,
+#navigation-links a#samples:active img,
+#navigation-links a#samples:focus img { background-image : url(../graphics/icons/ctool/samples48.gif); }
+
+#navigation-links a#whatsnew img { background-image : url(../graphics/icons/etool/whatsnew48.gif); }
+#navigation-links a#whatsnew:hover img,
+#navigation-links a#whatsnew:focus img,
+#navigation-links a#whatsnew:active img { background-image : url(../graphics/icons/ctool/whatsnew48.gif); }
+
+#navigation-links a#firststeps img { background-image : url(../graphics/icons/etool/firsteps48.gif); }
+#navigation-links a#firststeps:hover img,
+#navigation-links a#firststeps:focus img,
+#navigation-links a#firststeps:active img { background-image : url(../graphics/icons/ctool/firsteps48.gif); }
+
+#navigation-links a#webresources img { background-image : url(../graphics/icons/etool/webrsrc48.gif); }
+#navigation-links a#webresources:hover img,
+#navigation-links a#webresources:focus img,
+#navigation-links a#webresources:active img { background-image : url(../graphics/icons/ctool/webrsrc48.gif); }
+
+#navigation-links a#migrate img { background-image : url(../graphics/icons/etool/migrate48.gif); }
+#navigation-links a#migrate:hover img,
+#navigation-links a#migrate:focus img,
+#navigation-links a#migrate:active img { background-image : url(../graphics/icons/ctool/migrate48.gif); }
+
+
+#navigation-links a#workbench { position : absolute; right : 0px; top : -35px; text-align : right;}
+#navigation-links a#workbench .text { display : none; }
+#navigation-links a#workbench img { background-image : url(../graphics/icons/etool/wb48.gif); width : 53px; height : 53px;}
+#navigation-links a#workbench:hover img,
+#navigation-links a#workbench:focus img,
+#navigation-links a#workbench:active img { background-image : url(../graphics/icons/ctool/wb48.gif); }
+
+/*
+ * Lay out the page title and description
+ */
+h1, p { margin-left : 10px; } /* required in mozilla so the page description is properly indented */
+
+/* position the page content so that the page title overlays the bottom
+ * of the background image, but make sure the content is always on top
+ * (using z-index) */
+#page-content {
+ float : none;
+ clear : both;
+ text-align : center;
+ margin-top : 35px;
+}
+
+.page > #page-content { margin-top : 50px; }
+
+#page-content p {
+ padding-bottom : 15px;
+ text-align : left;
+ float : none;
+ clear : both;
+}
+
+/* Page content bins */
+
+#page-content #top-left {
+ border: none; float: left; margin: 0px; padding: 0px; width: 49%;
+ clear: left;
+}
+#page-content #top-right {
+ border: none; float: right; margin: 0px; padding: 0px; width: 49%;
+ clear: right;
+}
+
+/* top-bottom divider - runs the entire width to ensure
+ * bottom boxes start at the same y
+ */
+#page-content #content-divider {
+ border: none; float: none; margin: 0; padding: 0px; width: 100%;
+ clear: both;
+}
+
+#page-content #bottom-left {
+ border: none; float: left; margin: 0px; padding: 0px; width: 49%;
+ clear: left;
+}
+#page-content #bottom-right {
+ border: none; float: right; margin: 0px; padding: 0px; width: 49%;
+ clear: right;
+}
+
+#page-content #content-header H4, .page-description {
+ text-align : left;
+ margin-right : 10px;
+ float : none;
+ clear : both;
+}
+
+#page-content #top-left > *,
+#page-content #top-right > *,
+#page-content #bottom-left > *,
+#page-content #bottom-right > * {
+ display: block;
+}
+
+#page-content * > a {
+ vertical-align : middle;
+}
+
+#page-content * a img {
+ height : 57px;
+ width : 57px;
+ vertical-align : middle;
+}
+
+#page-content * a .link-label {
+ display : block;
+ position : relative;
+ top : -50px;
+ left : 60px;
+ margin-right: 60px;
+}
+
+#page-content * a > .link-label { left: 65px; }
+
+#page-content * a p .text {
+ display : block;
+ position : relative;
+ top : -45px;
+ margin-bottom: -25px;
+ left : 53px;
+ margin-right: 53px;
+}
+
+#page-content * a p > .text { left: 58px; }
+
+#page-content * a:hover { border-right : 5px; }
+
+
+/* The following rules are for extensions in all pages. Extensions should be placed in
+ * groups with the style 'content-group' and contain links with the style 'content-link'.
+ * Group is important so that importance mixin style can be applied to the group that
+ * uses block display. We need to see a solid rectangle around the extension, not
+ * a tight polygon around the link perimeter.
+ */
+
+.content-group {
+ margin-left: 10px;
+ margin-right: 10px;
+ padding-left: 10px;
+ padding-right: 10px;
+ float : none;
+ clear : both;
+ text-align : left;
+}
+
+.categoryContentnav {
+ font-weight: bold;
+ color: #4A4D4A;
+}
+
+.topicList {
+ line-height:1.75;
+ color: #00507C;
+}
+
+.content-link:hover { border-right : 0px; }
+
+iframe {
+ position:relative;
+ top:16px;
+ width:100%;
+ height:100%;
+ padding-left:10px;
+ }
+
+/* mozilla scrollbar appearing off page fix */
+#page-content > iframe {
+ width: 98%;
+ padding-left: 2%;
+}
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/standby.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/standby.css
new file mode 100644
index 0000000..9406e97
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/standby.css
@@ -0,0 +1,169 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * Set up general font colours, sizes, etc. Some of these will override
+ * settings from the shared CSS
+ */
+
+#page-links a .link-label, #action-links a .link-label {
+ font-weight : 600;
+ color : #E5E5E5;
+}
+
+#page-links a p .text, #action-links a p .text {
+ font-weight : 500;
+ color : #E5E5E5;
+}
+
+/*
+ * We will not use the general-purpose group1 used in
+ * other pages for a curve image.
+ */
+
+#extra-group1 {
+ display : none;
+}
+
+/*
+ * Set up the content for the standby page.
+ */
+body {
+ min-width : 230px;
+ /* since IE doesn't support min-width, use expression */
+ width:expression(document.body.clientWidth < 230? "230px": "auto" );
+ background-image : url(../graphics/root/background.jpg);
+ background-repeat : no-repeat;
+ background-position : top left;
+ background-color : #7169D1;
+}
+
+.page {
+/*
+ background-image : url(../graphics/root/brandmark.gif);
+ background-repeat : no-repeat;
+ background-position : bottom left;
+*/
+ background-image: none;
+ min-width : 230px;
+ /* since IE doesn't support min-width, use expression */
+ width:expression(document.body.clientWidth < 230? "230px": "auto" );
+ min-height : 610px;
+ height : 100%;
+ height : expression(document.body.clientHeight < 450? "450px": "100%" );
+}
+
+#extra-group1 {
+ display: none;
+}
+
+/*
+ * Set up the navigation bar. It should be centered in the middle
+ * of the page
+ */
+
+#links-background {
+ width : 100%;
+ margin-top : 10%;
+ margin-bottom : auto;
+ text-align : center;
+}
+
+#page-links a {
+ display : block;
+ width : 220px;
+ text-align : left;
+ margin-left : auto;
+ margin-right : auto;
+ margin-top : 0px;
+ vertical-align : top;
+}
+#page-links a span, #page-links a p {
+ display : block;
+ width : 160px;
+ margin : 0px;
+ padding : 0px;
+}
+
+#page-links a .link-label {
+ position : relative;
+ left : 60px;
+ top : -50px;
+}
+
+#page-links a p .text {
+ position : relative;
+ left : 60px;
+ top : -50px;
+
+}
+
+#page-links a .content-img {
+ visibility: hidden;
+}
+
+#page-links a img {
+ height : 52px;
+ width : 52px;
+ vertical-align : middle;
+}
+
+#page-links a:hover,
+#page-links a:focus,
+#page-links a:active { border : 0px; }
+
+#page-links a:hover p,
+#page-links a:focus p,
+#page-links a:active p { margin : 0px; padding : 0px; }
+
+#action-links a { visibility: hidden; }
+
+/* properties for each of the page-links */
+a#overview img { background-image : url(../graphics/icons/etool/overview48.gif); }
+a#overview:hover img,
+a#overview:focus img,
+a#overview:active img { background-image : url(../graphics/icons/ctool/overview48.gif); }
+
+a#tutorials img { background-image : url(../graphics/icons/etool/tutorials48.gif); }
+a#tutorials:hover img,
+a#tutorials:focus img,
+a#tutorials:active img { background-image : url(../graphics/icons/ctool/tutorials48.gif); }
+
+a#samples img { background-image : url(../graphics/icons/etool/samples48.gif); }
+a#samples:hover img,
+a#samples:focus img,
+a#samples:active img { background-image : url(../graphics/icons/ctool/samples48.gif); }
+
+a#whatsnew img { background-image : url(../graphics/icons/etool/whatsnew48.gif); }
+a#whatsnew:hover img,
+a#whatsnew:focus img,
+a#whatsnew:active img { background-image : url(../graphics/icons/ctool/whatsnew48.gif); }
+
+a#firststeps img { background-image : url(../graphics/icons/etool/firsteps48.gif); }
+a#firststeps:hover img,
+a#firststeps:focus img,
+a#firststeps:active img { background-image : url(../graphics/icons/ctool/firsteps48.gif); }
+
+a#webresources img { background-image : url(../graphics/icons/etool/webrsrc48.gif); }
+a#webresources:hover img,
+a#webresources:focus img,
+a#webresources:active img { background-image : url(../graphics/icons/ctool/webrsrc48.gif); }
+
+a#migrate img { background-image : url(../graphics/icons/etool/migrate48.gif); }
+a#migrate:hover img,
+a#migrate:focus img,
+a#migrate:active img { background-image : url(../graphics/icons/ctool/migrate48.gif); }
+
+a#workbench img { background-image : url(../graphics/icons/etool/wb48.gif); }
+a#workbench:hover img,
+a#workbench:focus img,
+a#workbench:active img { background-image : url(../graphics/icons/ctool/wb48.gif); }
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/tutorials.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/tutorials.css
new file mode 100644
index 0000000..1f35046
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/tutorials.css
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+body {
+ background-image : url(../graphics/contentpage/tutorials_wtr.jpg);
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#tutorials img,
+#navigation-links a#tutorials:hover img,
+#navigation-links a#tutorials:focus img,
+#navigation-links a#tutorials:active img {
+ background-image : url(../graphics/icons/ctool/tutorials48sel.gif);
+}
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/webresources.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/webresources.css
new file mode 100644
index 0000000..f15c3cd
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/webresources.css
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+body {
+ background-image : url(../graphics/contentpage/webrsrc_wtr.jpg);
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#webresources img,
+#navigation-links a#webresources:hover img,
+#navigation-links a#webresources:focus img,
+#navigation-links a#webresources:active img {
+ background-image : url(../graphics/icons/ctool/webrsrc48sel.gif);
+}
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/whatsnew.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/whatsnew.css
new file mode 100644
index 0000000..1d23ca3
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/html/whatsnew.css
@@ -0,0 +1,28 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+body {
+ background-image : url(../graphics/contentpage/whatsnew_wtr.jpg);
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#whatsnew img,
+#navigation-links a#whatsnew:hover img,
+#navigation-links a#whatsnew:focus img,
+#navigation-links a#whatsnew:active img {
+ background-image : url(../graphics/icons/ctool/whatsnew48sel.gif);
+}
+
+/*
+ * Default images for content links in this page.
+ */
+.content-link img { background-image : url(../graphics/icons/obj48/new_obj.gif); }
+.content-link:hover img { background-image : url(../graphics/icons/obj48/newhov_obj.gif); }
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/preview.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/preview.png
new file mode 100644
index 0000000..e280b53
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/preview.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/firststeps.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/firststeps.properties
new file mode 100644
index 0000000..ea3ca84
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/firststeps.properties
@@ -0,0 +1,15 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+firststeps.page-content.layout.ncolumns = 2
+firststeps.page-content.page-title.layout.colspan = 2
+firststeps.page-content.page-description.layout.colspan = 2
+firststeps.page-content.content-divider.layout.colspan = 2
+firststeps.subtitle-id = firststeps/page-content/page-title
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/migrate.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/migrate.properties
new file mode 100644
index 0000000..6c2cb2b
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/migrate.properties
@@ -0,0 +1,15 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+migrate.page-content.layout.ncolumns = 2
+migrate.page-content.page-title.layout.colspan = 2
+migrate.page-content.page-description.layout.colspan = 2
+migrate.page-content.content-divider.layout.colspan = 2
+migrate.subtitle-id = migrate/page-content/page-title
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/overview.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/overview.properties
new file mode 100644
index 0000000..1576641
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/overview.properties
@@ -0,0 +1,17 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+overview.page-content.layout.ncolumns = 2
+overview.page-content.page-title.layout.colspan = 2
+overview.page-content.page-description.layout.colspan = 2
+overview.page-content.content-divider.layout.colspan = 2
+
+overview.subtitle-id = overview/page-content/page-title
+overview.description-id = overview/page-content/page-description
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/root.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/root.properties
new file mode 100644
index 0000000..71518d0
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/root.properties
@@ -0,0 +1,51 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+theme=true
+root.links-background.page-links.overview.link-icon = ../graphics/icons/etool/overview72.gif
+root.links-background.page-links.tutorials.link-icon = ../graphics/icons/etool/tutorials72.gif
+root.links-background.page-links.samples.link-icon= ../graphics/icons/etool/samples72.gif
+root.links-background.page-links.whatsnew.link-icon = ../graphics/icons/etool/whatsnew72.gif
+root.links-background.page-links.migrate.link-icon = ../graphics/icons/etool/migrate72.gif
+root.links-background.page-links.firststeps.link-icon = ../graphics/icons/etool/firsteps72.gif
+root.links-background.page-links.webresources.link-icon = ../graphics/icons/etool/webrsrc72.gif
+root.action-links.workbench.link-icon = ../graphics/icons/etool/wb48.gif
+
+root.links-background.page-links.overview.hover-icon = ../graphics/icons/ctool/overview72.gif
+root.links-background.page-links.tutorials.hover-icon = ../graphics/icons/ctool/tutorials72.gif
+root.links-background.page-links.samples.hover-icon = ../graphics/icons/ctool/samples72.gif
+root.links-background.page-links.whatsnew.hover-icon = ../graphics/icons/ctool/whatsnew72.gif
+root.links-background.page-links.migrate.hover-icon = ../graphics/icons/ctool/migrate72.gif
+root.links-background.page-links.firststeps.hover-icon = ../graphics/icons/ctool/firsteps72.gif
+root.links-background.page-links.webresources.hover-icon = ../graphics/icons/ctool/webrsrc72.gif
+root.action-links.workbench.hover-icon = ../graphics/icons/ctool/wb48.gif
+
+
+root.links-background.page-links.overview.small-link-icon = ../graphics/icons/etool/overview48.gif
+root.links-background.page-links.tutorials.small-link-icon = ../graphics/icons/etool/tutorials48.gif
+root.links-background.page-links.samples.small-link-icon = ../graphics/icons/etool/samples48.gif
+root.links-background.page-links.whatsnew.small-link-icon = ../graphics/icons/etool/whatsnew48.gif
+root.links-background.page-links.migrate.small-link-icon = ../graphics/icons/etool/migrate48.gif
+root.links-background.page-links.firststeps.small-link-icon = ../graphics/icons/etool/firsteps48.gif
+root.links-background.page-links.webresources.small-link-icon = ../graphics/icons/etool/webrsrc48.gif
+root.action-links.workbench.small-link-icon = ../graphics/icons/etool/wb48.gif
+
+root.links-background.page-links.overview.small-hover-icon = ../graphics/icons/ctool/overview48.gif
+root.links-background.page-links.tutorials.small-hover-icon = ../graphics/icons/ctool/tutorials48.gif
+root.links-background.page-links.samples.small-hover-icon = ../graphics/icons/ctool/samples48.gif
+root.links-background.page-links.whatsnew.small-hover-icon = ../graphics/icons/ctool/whatsnew48.gif
+root.links-background.page-links.migrate.small-hover-icon = ../graphics/icons/ctool/migrate48.gif
+root.links-background.page-links.firststeps.small-hover-icon = ../graphics/icons/ctool/firsteps48.gif
+root.links-background.page-links.webresources.small-hover-icon = ../graphics/icons/ctool/webrsrc48.gif
+root.action-links.workbench.small-hover-icon = ../graphics/icons/ctool/wb48.gif
+
+root.layout.ncolumns = 1
+root.links-background.page-links.layout.hspacing = 40
+root.layout.vspacing = 35
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/samples.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/samples.properties
new file mode 100644
index 0000000..c5f11f3
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/samples.properties
@@ -0,0 +1,20 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+samples.page-content.layout.vspacing = 40
+
+samples.page-content.layout.ncolumns = 2
+samples.page-content.page-title.layout.colspan = 2
+samples.page-content.page-description.layout.colspan = 2
+samples.page-content.content-divider.layout.colspan = 2
+
+description-style-id = group-description
+samples.subtitle-id = samples/page-content/page-title
+samples.description-id = samples/page-content/page-description
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/standby.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/standby.properties
new file mode 100644
index 0000000..c6e4435
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/standby.properties
@@ -0,0 +1,33 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+theme=true
+standby.links-background.page-links.overview.link-icon = ../graphics/icons/etool/overview72.gif
+standby.links-background.page-links.tutorials.link-icon = ../graphics/icons/etool/tutorials72.gif
+standby.links-background.page-links.samples.link-icon= ../graphics/icons/etool/samples72.gif
+standby.links-background.page-links.whatsnew.link-icon = ../graphics/icons/etool/whatsnew72.gif
+standby.links-background.page-links.firststeps.link-icon = ../graphics/icons/etool/firsteps72.gif
+standby.links-background.page-links.migrate.link-icon = ../graphics/icons/etool/migrate72.gif
+standby.links-background.page-links.webresources.link-icon = ../graphics/icons/etool/webrsrc72.gif
+standby.action-links.workbench.link-icon = ../graphics/icons/etool/wb48.gif
+
+standby.links-background.page-links.overview.hover-icon = ../graphics/icons/ctool/overview72.gif
+standby.links-background.page-links.tutorials.hover-icon = ../graphics/icons/ctool/tutorials72.gif
+standby.links-background.page-links.samples.hover-icon = ../graphics/icons/ctool/samples72.gif
+standby.links-background.page-links.whatsnew.hover-icon = ../graphics/icons/ctool/whatsnew72.gif
+standby.links-background.page-links.migrate.hover-icon = ../graphics/icons/ctool/migrate72.gif
+standby.links-background.page-links.firststeps.hover-icon = ../graphics/icons/ctool/firsteps72.gif
+standby.links-background.page-links.webresources.hover-icon = ../graphics/icons/ctool/webrsrc72.gif
+standby.action-links.workbench.hover-icon = ../graphics/icons/ctool/wb48.gif
+
+standby.links-background.page-links.layout.vspacing = 30
+standby.layout.vspacing = 35
+standby.show-link-description = false
+standby.show-home-page-navigation = false
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/tutorials.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/tutorials.properties
new file mode 100644
index 0000000..b74fbc9
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/tutorials.properties
@@ -0,0 +1,19 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+tutorials.page-content.layout.vspacing = 40
+tutorials.page-content.layout.ncolumns = 2
+tutorials.page-content.page-title.layout.colspan = 2
+tutorials.page-content.page-description.layout.colspan = 2
+tutorials.page-content.content-divider.layout.colspan = 2
+
+tutorials.subtitle-id = tutorials/page-content/page-title
+tutorials.description-id = tutorials/page-content/page-description
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/webresources.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/webresources.properties
new file mode 100644
index 0000000..45cc9b2
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/webresources.properties
@@ -0,0 +1,19 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+webresources.page-content.layout.vspacing = 40
+
+webresources.page-content.layout.ncolumns = 2
+webresources.page-content.page-title.layout.colspan = 2
+webresources.page-content.page-description.layout.colspan = 2
+webresources.page-content.content-divider.layout.colspan = 2
+
+webresources.subtitle-id = webresources/page-content/page-title
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/whatsnew.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/whatsnew.properties
new file mode 100644
index 0000000..2bba9c2
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/purpleMesh/swt/whatsnew.properties
@@ -0,0 +1,24 @@
+###############################################################################
+# Copyright (c) 2005, 2006 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+theme = true
+whatsnew.page-content.layout.vspacing = 40
+
+whatsnew.page-content.layout.ncolumns = 2
+whatsnew.page-content.page-title.layout.colspan = 2
+whatsnew.page-content.page-description.layout.colspan = 2
+whatsnew.page-content.content-divider.layout.colspan = 2
+
+whatsnew.separator.fg = #dfdfe4
+
+whatsnew.link-icon = ../graphics/icons/obj48/new_obj.gif
+whatsnew.hover-icon = ../graphics/icons/obj48/newhov_obj.gif
+
+whatsnew.subtitle-id = whatsnew/page-content/page-title
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/grey_callout.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/grey_callout.gif
new file mode 100644
index 0000000..e8877a1
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/grey_callout.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/ov_high.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/ov_high.gif
new file mode 100644
index 0000000..144af18
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/ov_high.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/ov_med.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/ov_med.gif
new file mode 100644
index 0000000..1ed93fa
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/ov_med.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/tu-sa_high.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/tu-sa_high.gif
new file mode 100644
index 0000000..4059b1c
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/tu-sa_high.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/tu-sa_med.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/tu-sa_med.gif
new file mode 100644
index 0000000..a939a97
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/tu-sa_med.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wn-fs_high.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wn-fs_high.gif
new file mode 100644
index 0000000..492f2b1
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wn-fs_high.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wn-fs_med.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wn-fs_med.gif
new file mode 100644
index 0000000..fcfcac8
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wn-fs_med.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wr-mi_high.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wr-mi_high.gif
new file mode 100644
index 0000000..9d97731
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wr-mi_high.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wr-mi_med.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wr-mi_med.gif
new file mode 100644
index 0000000..551a32c
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/contentpage/wr-mi_med.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/arrow.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/arrow.gif
new file mode 100644
index 0000000..7d4c3f1
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/arrow.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/arrow_rtl.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/arrow_rtl.gif
new file mode 100644
index 0000000..d7bb424
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/arrow_rtl.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed.gif
new file mode 100644
index 0000000..21f09b1
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_hov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_hov.gif
new file mode 100644
index 0000000..dfef2a7
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_hov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_hov_rtl.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_hov_rtl.gif
new file mode 100644
index 0000000..deadfe5
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_hov_rtl.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_rtl.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_rtl.gif
new file mode 100644
index 0000000..60283fd
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_closed_rtl.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_open.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_open.gif
new file mode 100644
index 0000000..e96eb25
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_open.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_open_hov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_open_hov.gif
new file mode 100644
index 0000000..9fafae4
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/graphics/icons/ctool/widget_open_hov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/html/shared.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/html/shared.css
new file mode 100644
index 0000000..062a630
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/shared/html/shared.css
@@ -0,0 +1,156 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2007 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * This file contains styles that are shared between multiple themes.
+ */
+
+/* Folding section settings. */
+
+/* The foldable part of the section. It is off by default. */
+.section-body {
+ display: none;
+}
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+ display : inline;
+}
+
+.section-title-link .section-title,
+.section-title-link:focus .section-title {
+ color: #00517d;
+}
+
+.section-title-link {
+ vertical-align: bottom;
+}
+
+/* The 'open' toggle image part of the folding section. */
+#page-content .section-title-link .section-toggle-image-open {
+ display: none;
+ clear: right;
+ width : 7px;
+ height : 7px;
+ background-image : url(../graphics/icons/ctool/widget_open.gif);
+}
+
+/* The 'closed' toggle image part of the folding section. */
+#page-content .section-title-link .section-toggle-image-closed {
+ display: inline;
+ clear: right;
+ width : 7px;
+ height : 7px;
+ background-image : url(../graphics/icons/ctool/widget_closed.gif);
+}
+
+/*
+ * Section title during hover.
+ */
+.section-title-link:hover .section-title,
+.section-title-link:active .section-title {
+ color: #6699cc;
+}
+
+.section-title-link:hover .section-title {
+ text-decoration: underline;
+}
+
+/*
+ * Toggle image during hover.
+ */
+#page-content .section-title-link:hover .section-toggle-image-closed,
+#page-content .section-title-link:active .section-toggle-image-closed {
+ background-image : url(../graphics/icons/ctool/widget_closed_hov.gif);
+}
+#page-content .section-title-link:hover .section-toggle-image-open,
+#page-content .section-title-link:active .section-toggle-image-open {
+ background-image : url(../graphics/icons/ctool/widget_open_hov.gif);
+}
+
+/*
+ * Importance highlights for page content. Gradient image is
+ * tiled vertically. In addition, background color is applied
+ * to fill in the areas not covered by the gradient image.
+ */
+.importance-high,
+.importance-low,
+.importance-callout,
+.importance-medium,
+.importance-new {
+ background-position: top left;
+ background-repeat: repeat-y;
+}
+
+body .importance-low {
+ background-color: #ffffff;
+}
+
+body .importance-new {
+ background-image: url("../graphics/contentpage/ov_high.gif");
+ background-color: #fffacd;
+}
+
+body #overview .importance-high {
+ background-color: #fff7da;
+ background-image: url("../graphics/contentpage/ov_high.gif");
+}
+
+body #overview .importance-medium {
+ background-color: #fffbec;
+ background-image: url("../graphics/contentpage/ov_med.gif");
+}
+
+body #tutorials .importance-high,
+body #samples .importance-high {
+ background-color: #e1eaf2;
+ background-image: url("../graphics/contentpage/tu-sa_high.gif");
+}
+
+body #tutorials .importance-medium,
+body #samples .importance-medium {
+ background-color: #f0f4f8;
+ background-image: url("../graphics/contentpage/tu-sa_med.gif");
+}
+
+body #whatsnew .importance-high,
+body #firststeps .importance-high {
+ background-color: #f3ecdb;
+ background-image: url("../graphics/contentpage/wn-fs_high.gif");
+}
+
+body #whatsnew .importance-medium,
+body #firststeps .importance-medium {
+ background-color: #f7f2e7;
+ background-image: url("../graphics/contentpage/wn-fs_med.gif");
+}
+
+body #webresources .importance-high,
+body #migrate .importance-high {
+ background-color: #ecf4d7;
+ background-image: url("../graphics/contentpage/wr-mi_high.gif");
+}
+
+body #webresources .importance-medium,
+body #migrate .importance-medium {
+ background-color: #f5f9eb;
+ background-image: url("../graphics/contentpage/wr-mi_med.gif");
+}
+
+.importance-callout {
+ background-color: #eeeeee;
+ background-image: url("../graphics/contentpage/grey_callout.gif");
+}
+
+ul.news-list {
+ list-style-image: url("../graphics/icons/ctool/arrow.gif");
+}
+
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/banner_extension.jpg b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/banner_extension.jpg
new file mode 100644
index 0000000..4f885f5
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/banner_extension.jpg differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/fs_banner.jpg b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/fs_banner.jpg
new file mode 100644
index 0000000..bed56b4
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/fs_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/mi_banner.jpg b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/mi_banner.jpg
new file mode 100644
index 0000000..12e6e20
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/mi_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/ov_banner.jpg b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/ov_banner.jpg
new file mode 100644
index 0000000..53cfcd1
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/ov_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/sa_banner.jpg b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/sa_banner.jpg
new file mode 100644
index 0000000..61d0937
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/sa_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/tu_banner.jpg b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/tu_banner.jpg
new file mode 100644
index 0000000..276c1a8
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/tu_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/wn_banner.jpg b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/wn_banner.jpg
new file mode 100644
index 0000000..91445fe
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/wn_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/wr_banner.jpg b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/wr_banner.jpg
new file mode 100644
index 0000000..0626d13
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/contentpage/wr_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/arrow_rtl.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/arrow_rtl.gif
new file mode 100644
index 0000000..d7bb424
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/arrow_rtl.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps-select.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps-select.gif
new file mode 100644
index 0000000..ce1d903
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps-select.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps-select.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps-select.png
new file mode 100644
index 0000000..846b278
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps-select.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps.png
new file mode 100644
index 0000000..eccc757
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/firststeps.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/fs_nav.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/fs_nav.png
new file mode 100644
index 0000000..99eb592
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/fs_nav.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/fs_nav_32.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/fs_nav_32.gif
new file mode 100644
index 0000000..84885b5
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/fs_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/mi_nav.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/mi_nav.png
new file mode 100644
index 0000000..5434708
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/mi_nav.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/mi_nav_32.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/mi_nav_32.gif
new file mode 100644
index 0000000..d49d950
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/mi_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate-select.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate-select.gif
new file mode 100644
index 0000000..79ab661
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate-select.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate-select.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate-select.png
new file mode 100644
index 0000000..df8e2ff
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate-select.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate.png
new file mode 100644
index 0000000..07fea1d
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/migrate.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/ov_nav.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/ov_nav.png
new file mode 100644
index 0000000..709f69a
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/ov_nav.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/ov_nav_32.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/ov_nav_32.gif
new file mode 100644
index 0000000..2ff3933
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/ov_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview-select.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview-select.gif
new file mode 100644
index 0000000..e1563d2
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview-select.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview-select.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview-select.png
new file mode 100644
index 0000000..c2513e9
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview-select.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview.png
new file mode 100644
index 0000000..a60034c
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/overview.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/sa_nav.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/sa_nav.png
new file mode 100644
index 0000000..9871b72
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/sa_nav.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/sa_nav_32.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/sa_nav_32.gif
new file mode 100644
index 0000000..ffbe90e
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/sa_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples-select.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples-select.gif
new file mode 100644
index 0000000..aa36563
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples-select.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples-select.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples-select.png
new file mode 100644
index 0000000..d2cabf1
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples-select.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples.png
new file mode 100644
index 0000000..cb3db1d
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/samples.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tu_nav.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tu_nav.png
new file mode 100644
index 0000000..ce589ab
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tu_nav.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tu_nav_32.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tu_nav_32.gif
new file mode 100644
index 0000000..77a3421
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tu_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials-select.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials-select.gif
new file mode 100644
index 0000000..6e36ffe
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials-select.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials-select.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials-select.png
new file mode 100644
index 0000000..4c66644
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials-select.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials.png
new file mode 100644
index 0000000..e40a823
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/tutorials.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wb_nav.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wb_nav.png
new file mode 100644
index 0000000..0621c3c
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wb_nav.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wb_nav_32.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wb_nav_32.gif
new file mode 100644
index 0000000..3db3072
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wb_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources-select.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources-select.gif
new file mode 100644
index 0000000..34a1812
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources-select.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources-select.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources-select.png
new file mode 100644
index 0000000..dc106f2
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources-select.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources.png
new file mode 100644
index 0000000..1a876dc
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/webresources.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew-select.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew-select.gif
new file mode 100644
index 0000000..5acbd8f
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew-select.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew-select.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew-select.png
new file mode 100644
index 0000000..cb686d2
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew-select.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew.png
new file mode 100644
index 0000000..a10dd3d
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/whatsnew.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wn_nav.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wn_nav.png
new file mode 100644
index 0000000..47ecb7c
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wn_nav.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wn_nav_32.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wn_nav_32.gif
new file mode 100644
index 0000000..ce9c743
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wn_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/workbench.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/workbench.png
new file mode 100644
index 0000000..868f3ab
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/workbench.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wr_nav.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wr_nav.png
new file mode 100644
index 0000000..00d3056
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wr_nav.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wr_nav_32.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wr_nav_32.gif
new file mode 100644
index 0000000..a741e2f
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/icons/ctool/wr_nav_32.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/firststeps16.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/firststeps16.png
new file mode 100644
index 0000000..4c15c82
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/firststeps16.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/migrate16.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/migrate16.png
new file mode 100644
index 0000000..3fc8414
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/migrate16.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/overview16.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/overview16.png
new file mode 100644
index 0000000..b2e977f
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/overview16.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/samples16.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/samples16.png
new file mode 100644
index 0000000..fdff5dd
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/samples16.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/tutorials16.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/tutorials16.png
new file mode 100644
index 0000000..f2d688f
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/tutorials16.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/webresources16.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/webresources16.png
new file mode 100644
index 0000000..b847caa
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/webresources16.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/whatsnew16.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/whatsnew16.png
new file mode 100644
index 0000000..5294b17
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/launchbar/whatsnew16.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/background.jpg.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/background.jpg.REMOVED.git-id
new file mode 100644
index 0000000..9f0769f
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/background.jpg.REMOVED.git-id
@@ -0,0 +1 @@
+2595c789f8a8ac0fbde48e1a938209f16bb16ac5
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48.gif
new file mode 100644
index 0000000..7211d18
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48.png
new file mode 100644
index 0000000..a925486
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48_hov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48_hov.gif
new file mode 100644
index 0000000..82fa55f
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48_hov.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48_hov.png
new file mode 100644
index 0000000..60b1e58
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/firststeps48_hov.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48.gif
new file mode 100644
index 0000000..19ecef3
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48.png
new file mode 100644
index 0000000..98e167e
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48_hov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48_hov.gif
new file mode 100644
index 0000000..f9395da
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48_hov.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48_hov.png
new file mode 100644
index 0000000..6d21e5b
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/migrate48_hov.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48.gif
new file mode 100644
index 0000000..7d7053d
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48.png
new file mode 100644
index 0000000..71c5668
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48_hov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48_hov.gif
new file mode 100644
index 0000000..35690f3
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48_hov.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48_hov.png
new file mode 100644
index 0000000..334f7de
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/overview48_hov.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/root_banner.jpg b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/root_banner.jpg
new file mode 100644
index 0000000..a6ab1b1
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/root_banner.jpg differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/root_banner_logo.jpg b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/root_banner_logo.jpg
new file mode 100644
index 0000000..a5fd7c4
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/root_banner_logo.jpg differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48.gif
new file mode 100644
index 0000000..da714d8
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48.png
new file mode 100644
index 0000000..7104822
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48_hov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48_hov.gif
new file mode 100644
index 0000000..dd77558
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48_hov.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48_hov.png
new file mode 100644
index 0000000..2e1c9e7
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/samples48_hov.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48.gif
new file mode 100644
index 0000000..bdc3e9e
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48.png
new file mode 100644
index 0000000..e5b8179
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48_hov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48_hov.gif
new file mode 100644
index 0000000..2aac380
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48_hov.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48_hov.png
new file mode 100644
index 0000000..1609d2e
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/tutorials48_hov.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48.gif
new file mode 100644
index 0000000..4cce719
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48.png
new file mode 100644
index 0000000..bcc3528
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48_hov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48_hov.gif
new file mode 100644
index 0000000..90b3487
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48_hov.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48_hov.png
new file mode 100644
index 0000000..638b0c8
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/webresources48_hov.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48.gif
new file mode 100644
index 0000000..d80d0c4
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48.png
new file mode 100644
index 0000000..62a1e3c
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48_hov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48_hov.gif
new file mode 100644
index 0000000..6fe8c73
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48_hov.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48_hov.png
new file mode 100644
index 0000000..88ae9b4
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/whatsnew48_hov.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48.gif
new file mode 100644
index 0000000..e8c3e26
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48.png
new file mode 100644
index 0000000..739fde5
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48_hov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48_hov.gif
new file mode 100644
index 0000000..fb807e9
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48_hov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48_hov.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48_hov.png
new file mode 100644
index 0000000..860890c
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/rootpage/workbench48_hov.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/fs_standby.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/fs_standby.gif
new file mode 100644
index 0000000..aac6d6b
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/fs_standby.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/fs_standbyhov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/fs_standbyhov.gif
new file mode 100644
index 0000000..eded4ff
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/fs_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/mi_standby.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/mi_standby.gif
new file mode 100644
index 0000000..34b8963
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/mi_standby.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/mi_standbyhov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/mi_standbyhov.gif
new file mode 100644
index 0000000..08c4479
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/mi_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/ov_standby.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/ov_standby.gif
new file mode 100644
index 0000000..bfcf7b2
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/ov_standby.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/ov_standbyhov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/ov_standbyhov.gif
new file mode 100644
index 0000000..11e7892
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/ov_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/sa_standby.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/sa_standby.gif
new file mode 100644
index 0000000..a18a047
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/sa_standby.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/sa_standbyhov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/sa_standbyhov.gif
new file mode 100644
index 0000000..2063d8a
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/sa_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/tu_standby.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/tu_standby.gif
new file mode 100644
index 0000000..75baabf
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/tu_standby.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/tu_standbyhov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/tu_standbyhov.gif
new file mode 100644
index 0000000..82b758f
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/tu_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wb_standby.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wb_standby.gif
new file mode 100644
index 0000000..5037784
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wb_standby.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wb_standbyhov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wb_standbyhov.gif
new file mode 100644
index 0000000..d3be575
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wb_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wn_standby.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wn_standby.gif
new file mode 100644
index 0000000..77c7912
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wn_standby.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wn_standbyhov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wn_standbyhov.gif
new file mode 100644
index 0000000..2867f15
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wn_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wr_standby.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wr_standby.gif
new file mode 100644
index 0000000..cb4fa47
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wr_standby.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wr_standbyhov.gif b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wr_standbyhov.gif
new file mode 100644
index 0000000..00b4231
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/graphics/standby/wr_standbyhov.gif differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/firststeps.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/firststeps.css
new file mode 100644
index 0000000..2613074
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/firststeps.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+ display : none;
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#firststeps img {
+ background-image : url(../graphics/icons/ctool/firststeps-select.png);
+ width : 64px;
+ height: 64px;
+ margin-top : 12px;
+}
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+* html #navigation-links a#firststeps img {
+ background-image : url(../graphics/icons/ctool/firststeps-select.gif);
+}
+
+#navigation-links a#.high-contrast#firststeps img {
+ display : none;
+}
+
+.page {
+ background-image: url(../graphics/contentpage/fs_banner.jpg);
+}
+
+#navigation-links #firststeps .link-label {
+ display : none;
+}
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/font-absolute.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/font-absolute.css
new file mode 100644
index 0000000..145a584
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/font-absolute.css
@@ -0,0 +1,102 @@
+/*******************************************************************************
+ * Copyright (c) 2008, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+ font-size : 10pt;
+}
+
+h2 {
+ font-size : 13pt;
+}
+
+/* For regular div labels */
+H4 .div-label {
+ font-size: 10pt;
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+ font-size: 23pt;
+}
+
+
+/* Page description if the page has it. */
+.page-description {
+ font-size: 10pt;
+}
+
+/* General link labels */
+a .link-label {
+ font-size : 10pt;
+}
+
+/* Floating link labels for navigation links */
+#navigation-links a .link-label {
+ font-size : 8pt;
+}
+
+/* Text in links. */
+a .text {
+ font-size : 8pt;
+}
+
+p .group-description {
+ font-size : 10pt;
+}
+
+.content-link .link-label {
+ font-size: 11pt;
+}
+
+.content-link .text {
+ font-size: 10pt;
+}
+
+.categoryContentnav {
+ font-size:10pt;
+}
+
+.contentpgNavhover {
+ font-size: 8pt;
+}
+
+.topicList {
+ font-size:8pt;
+}
+
+/*
+ * Root page settings
+ */
+#root .intro-header H1 {
+ font-size : 23pt;
+}
+
+/* Link label properties */
+#root #page-links a .link-label {
+ font-size : 14pt;
+}
+
+/*
+ * Standby page settings
+ */
+
+#standby .intro-header H1 {
+ font-size : 15pt;
+}
+
+#standby #page-links a .link-label {
+ font-size : 10pt;
+}
+
+#standby #page-links a p .text {
+ font-size : 10pt;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/font-relative.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/font-relative.css
new file mode 100644
index 0000000..240a626
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/font-relative.css
@@ -0,0 +1,110 @@
+L/*******************************************************************************
+ * Copyright (c) 2008, 2010 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * Font sizes for the circles theme
+ */
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+ font-size : 100%;
+}
+
+h2 {
+ font-size : 120%;
+}
+
+/* For regular div labels */
+H4 .div-label {
+ font-size: 120%;
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+ font-size: 240%;
+}
+
+
+/* Page description if the page has it. */
+.page-description {
+ font-size: 100%;
+}
+
+#page-links, #action-links {
+ font-size : 8pt;
+}
+
+#standby #page-links {
+ font-size : 100%;
+}
+
+/* Floating link labels for navigation links */
+#navigation-links a .link-label {
+ font-size : 8pt;
+}
+
+/* Text in links. */
+a .text {
+ font-size : 90%;
+}
+
+p .group-description {
+ font-size : 100%;
+}
+
+.content-link .link-label {
+ font-size: 120%;
+}
+
+.content-link .text {
+ font-size: 100%;
+}
+
+.categoryContentnav {
+ //font-size:10pt;
+}
+
+.contentpgNavhover {
+ font-size: 8pt;
+}
+
+.topicList, .rss-feed-link {
+ font-size:90%;
+}
+
+#root #page-links, #root #action-links, #root #page-links a p .text {
+ font-size : 100%;
+}
+
+/* Link label properties */
+#root #page-links a .link-label {
+ font-size : 130%;
+}
+
+#root .intro-header span {
+ font-size : 125%;
+}
+
+/*
+ * Standby page settings
+ */
+
+#standby .intro-header H1 {
+ font-size : 150%;
+}
+
+#standby #page-links a .link-label, #standby #action-links a .link-label {
+ font-size : 100%;
+}
+
+#standby #page-links a p .text, #standby #action-links a p .text {
+ font-size : 100%;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/ltr.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/ltr.css
new file mode 100644
index 0000000..57586c8
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/ltr.css
@@ -0,0 +1,19 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * This file contains styles that are specific to left to right display
+ */
+
+body {
+ direction: ltr;
+}
+
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/migrate.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/migrate.css
new file mode 100644
index 0000000..be06798
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/migrate.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+ display : none;
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#migrate img {
+ background-image : url(../graphics/icons/ctool/migrate-select.png);
+ width : 64px;
+ height: 64px;
+ margin-top : 12px
+}
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+* html #navigation-links a#migrate img {
+ background-image : url(../graphics/icons/ctool/migrate-select.gif);
+}
+
+#navigation-links a#.high-contrast#migrate img {
+ display : none;
+}
+
+.page {
+ background-image: url(../graphics/contentpage/mi_banner.jpg);
+}
+
+#navigation-links #migrate .link-label {
+ display : none;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/overview.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/overview.css
new file mode 100644
index 0000000..716bfa0
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/overview.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+ display : none;
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#overview img {
+ background-image : url(../graphics/icons/ctool/overview-select.png);
+ width : 64px;
+ height: 64px;
+ margin-top : 12px
+}
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+* html #navigation-links a#overview img {
+ background-image : url(../graphics/icons/ctool/overview-select.gif);
+}
+
+#navigation-links a#.high-contrast#overview img {
+ display : none;
+}
+
+.page {
+ background-image: url(../graphics/contentpage/ov_banner.jpg);
+}
+
+#navigation-links #overview .link-label {
+ display : none;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/root.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/root.css
new file mode 100644
index 0000000..071b69f
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/root.css
@@ -0,0 +1,271 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2010 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/* Hide the extra div for links in the normal state. */
+a .link-extra-div {
+ display: none;
+}
+
+/* Link label properties */
+#page-links a .link-label {
+ top: -1.2em;
+ color:#00507C;
+ font-family:Verdana,Arial,Helvetica;
+ font-weight:bold;
+}
+
+#page-links a:hover .link-label {
+ color: #69c;
+ text-decoration : underline;
+}
+
+#page-links a {
+ width : 45%;
+ float : left;
+ margin-left : 3%;
+ margin-bottom : 35px;
+}
+
+/*
+ * Set up the content for the root page.
+ */
+html, body {
+ overflow : auto;
+ overflow-clip: rect(0, auto, auto, 0);
+ background-color : none;
+ background-image : url("../graphics/rootpage/background.jpg");
+ background-position : top left;
+ background-repeat : no-repeat;
+}
+
+#root {
+ background-image : url("../graphics/rootpage/root_banner.jpg");
+ background-position : top left;
+ background-repeat : repeat-x;
+}
+
+#branding {
+ position: absolute;
+ top : 0px;
+ left : 0px;
+}
+
+/*
+ * Set up the navigation bar. It should be centered in the middle
+ * of the page
+*/
+
+.intro-header {
+ padding-top : 90px;
+ margin-left : 7%;
+ margin-bottom : 40px;
+}
+
+/* For the main page content's title */
+.intro-header h1 {
+ font-family: Verdana, Arial, Helvetica;
+ color:#333333;
+ font-weight: normal;
+ letter-spacing:-0.03em;
+}
+
+#page-links a img {
+ height : 48px;
+ width : 64px;
+ vertical-align : middle;
+}
+
+#page-links a span {
+ display : block;
+}
+
+#page-links a span.link-label {
+ position : relative;
+ top : -45px;
+ left : 60px;
+ margin-right: 60px;
+ font-family: Verdana, Arial, Helvetica;
+ font-weight: bold;
+ line-height:1.5;
+ color: #00507C;
+}
+
+#page-links a p .text {
+ left: 51px;
+ display : block;
+ position : relative;
+ top : -40px;
+ margin-bottom: -25px;
+ margin-right: 53px;
+ font-family: Verdana, Arial, Helvetica;
+ line-height: 1.3;
+}
+
+#page-links a .background-image {
+ display: none;
+}
+
+#page-links a .link-extra-div {
+ display :none;
+}
+
+.content-img {
+ padding-left: 15px;
+}
+
+/* Link images */
+#page-links a#overview .content-img { background-image : url("../graphics/rootpage/overview48.png"); }
+#page-links a#overview:hover .content-img,
+#page-links a#overview:active .content-img,
+#page-links a#overview:focus .content-img { background-image : url("../graphics/rootpage/overview48_hov.png"); }
+
+#page-links a#tutorials .content-img { background-image : url("../graphics/rootpage/tutorials48.png"); }
+#page-links a#tutorials:hover .content-img,
+#page-links a#tutorials:active .content-img,
+#page-links a#tutorials:focus .content-img { background-image : url("../graphics/rootpage/tutorials48_hov.png"); }
+
+#page-links a#samples .content-img { background-image : url("../graphics/rootpage/samples48.png"); }
+#page-links a#samples:hover .content-img,
+#page-links a#samples:active .content-img,
+#page-links a#samples:focus .content-img { background-image : url("../graphics/rootpage/samples48_hov.png"); }
+
+#page-links a#whatsnew .content-img { background-image : url("../graphics/rootpage/whatsnew48.png"); }
+#page-links a#whatsnew:hover .content-img,
+#page-links a#whatsnew:active .content-img,
+#page-links a#whatsnew:focus .content-img { background-image : url("../graphics/rootpage/whatsnew48_hov.png"); }
+
+#page-links a#firststeps .content-img { background-image : url("../graphics/rootpage/firststeps48.png"); }
+#page-links a#firststeps:hover .content-img,
+#page-links a#firststeps:active .content-img,
+#page-links a#firststeps:focus .content-img { background-image : url("../graphics/rootpage/firststeps48_hov.png"); }
+
+#page-links a#migrate .content-img { background-image : url("../graphics/rootpage/migrate48.png"); }
+#page-links a#migrate:hover .content-img,
+#page-links a#migrate:active .content-img,
+#page-links a#migrate:focus .content-img { background-image : url("../graphics/rootpage/migrate48_hov.png"); }
+
+#page-links a#webresources .content-img { background-image : url("../graphics/rootpage/webresources48.png"); }
+#page-links a#webresources:hover .content-img,
+#page-links a#webresources:active .content-img,
+#page-links a#webresources:focus .content-img { background-image : url("../graphics/rootpage/webresources48_hov.png"); }
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+
+* html #page-links a#overview .content-img { background-image : url("../graphics/rootpage/overview48.gif"); }
+* html #page-links a#overview:hover .content-img,
+* html #page-links a#overview:active .content-img,
+* html #page-links a#overview:focus .content-img { background-image : url("../graphics/rootpage/overview48_hov.gif"); }
+
+* html #page-links a#tutorials .content-img { background-image : url("../graphics/rootpage/tutorials48.gif"); }
+* html #page-links a#tutorials:hover .content-img,
+* html #page-links a#tutorials:active .content-img,
+* html #page-links a#tutorials:focus .content-img { background-image : url("../graphics/rootpage/tutorials48_hov.gif"); }
+
+* html #page-links a#samples .content-img { background-image : url("../graphics/rootpage/samples48.gif"); }
+* html #page-links a#samples:hover .content-img,
+* html #page-links a#samples:active .content-img,
+* html #page-links a#samples:focus .content-img { background-image : url("../graphics/rootpage/samples48_hov.gif"); }
+
+* html #page-links a#whatsnew .content-img { background-image : url("../graphics/rootpage/whatsnew48.gif"); }
+* html #page-links a#whatsnew:hover .content-img,
+* html #page-links a#whatsnew:active .content-img,
+* html #page-links a#whatsnew:focus .content-img { background-image : url("../graphics/rootpage/whatsnew48_hov.gif"); }
+
+* html #page-links a#firststeps .content-img { background-image : url("../graphics/rootpage/firststeps48.gif"); }
+* html #page-links a#firststeps:hover .content-img,
+* html #page-links a#firststeps:active .content-img,
+* html #page-links a#firststeps:focus .content-img { background-image : url("../graphics/rootpage/firststeps48_hov.gif"); }
+
+* html #page-links a#migrate .content-img { background-image : url("../graphics/rootpage/migrate48.gif"); }
+* html #page-links a#migrate:hover .content-img,
+* html #page-links a#migrate:active .content-img,
+* html #page-links a#migrate:focus .content-img { background-image : url("../graphics/rootpage/migrate48_hov.gif"); }
+
+* html #page-links a#webresources .content-img { background-image : url("../graphics/rootpage/webresources48.gif"); }
+* html #page-links a#webresources:hover .content-img,
+* html #page-links a#webresources:active .content-img,
+* html #page-links a#webresources:focus .content-img { background-image : url("../graphics/rootpage/webresources48_hov.gif"); }
+
+/* End hack for IE6 */
+
+/*
+ * Not using action links.
+ */
+#action-links {
+ display: none;
+}
+
+/*
+* Workbench
+*/
+
+#page-links a#workbench:hover .link-label
+{
+ color : #FFEC89;
+ text-decoration : none;
+}
+
+#workbench p span {
+ display : none;
+}
+
+* html #page-links a#workbench .content-img {
+ background-image:url(../graphics/icons/ctool/wb_nav_32.gif);
+}
+
+#page-links a#workbench .content-img {
+ background-image:url(../graphics/icons/ctool/wb_nav_32.gif);
+ display:block;
+ color : white;
+ height:32px;
+ margin:5px auto 0;
+ width:32px;
+ background-repeat:no-repeat;
+ border-width:0;
+}
+
+#page-links a#workbench .link-label {
+ position : static;
+ margin-right : 0px;
+ font-weight : bold;
+ color : white;
+ font-family:Arial,sans-serif;
+}
+
+#page-links a#workbench .text {
+ display : none;
+}
+
+#page-links a#workbench {
+ position : absolute;
+ right : 20px;
+ top : 0px;
+ width : auto;
+ text-align:center;
+ margin-bottom : 0px;
+}
+
+#page-links a#workbench img {
+ padding : 0px;
+}
+
+#page-links a#workbench span {
+ margin-top : 0px;
+ line-height : normal;
+}
+
+#page-links a#workbench .link-label {
+ font-size:8pt;
+ color:white;
+ font-weight:bold;
+ text-align:center;
+ margin-left: 0;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/rtl.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/rtl.css
new file mode 100644
index 0000000..7053216
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/rtl.css
@@ -0,0 +1,137 @@
+/*******************************************************************************
+ * Copyright (c) 2009, 2011 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * This file contains styles that are specific to right to left display
+ */
+
+#page-links {
+ direction: rtl;
+ }
+
+table {
+ direction: rtl;
+}
+
+#page-links a span.link-label {
+ right : 48px;
+ margin-right: 0px;
+}
+
+#page-links a p .text {
+ right: 51px;
+ margin-right: 0px;
+}
+
+#page-content p {
+ text-align : right;
+}
+
+#page-content #content-header H4, .page-description {
+ text-align : right;
+}
+
+#page-content table tr td a > .link-label {
+ left:0px;
+}
+
+#page-content * td a .link-label {
+ display:block;
+ left:0px;
+ margin-right:0px;
+ position:static;
+ top:0px;
+}
+
+#page-content * td a .text {
+ display:block;
+ left:0px;
+ margin-right:0px;
+ position:static;
+ top:0px;
+}
+
+#page-content * a p {
+ margin-bottom:0px;
+ position:static;
+ top:0px;
+}
+
+.content-group {
+ text-align: right;
+}
+
+.intro-header span {
+ margin-right : 45px;
+ padding-right : 45px;
+}
+
+#navigation-links a {
+ float:right;
+ margin-left:auto;
+ margin-left : 10px;
+}
+
+#action-links a {
+ float:left;
+ margin-left:20px;
+ margin-right : auto;
+}
+
+div div#rss-news {
+ position:static;
+ margin-left:0px;
+ margin-bottom: 0px;
+ margin-top: 10px;
+ top : 0px;
+ margin-right : 30px;
+}
+
+div ul.news-list {
+ list-style-image: url("../graphics/icons/ctool/arrow_rtl.gif");
+ margin-left: 0px;
+ padding-right: 10px;
+ margin-right: 10px;
+}
+
+/* The 'closed' toggle image part of the folding section. */
+#page-content .section-title-link .section-toggle-image-closed {
+ background-image : url(../graphics/icons/ctool/widget_closed_rtl.gif);
+}
+
+#page-content .section-title-link:hover .section-toggle-image-closed,
+#page-content .section-title-link:active .section-toggle-image-closed {
+ background-image : url(../graphics/icons/ctool/widget_closed_hov_rtl.gif);
+}
+
+#standby #links-background {
+ text-align:right;
+}
+
+#standby #page-links a {
+ text-align : right;
+}
+
+#standby #page-links a .link-label {
+ left:auto;
+ right : 60px;
+}
+
+#standby #page-links p {
+ right : 60px;
+}
+
+#standby #page-links a p .text {
+ margin-right:auto;
+ left:auto;
+ right : 60px;
+}
+
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/samples.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/samples.css
new file mode 100644
index 0000000..665946c
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/samples.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+ display : none;
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#samples img {
+ background-image : url(../graphics/icons/ctool/samples-select.png);
+ width : 64px;
+ height: 64px;
+ margin-top : 12px;
+}
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+* html #navigation-links a#samples img {
+ background-image : url(../graphics/icons/ctool/samples-select.gif);
+}
+
+#navigation-links a#.high-contrast#samples img {
+ display : none;
+}
+
+.page {
+ background-image: url(../graphics/contentpage/sa_banner.jpg);
+}
+
+#navigation-links #samples .link-label {
+ display : none;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/shared.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/shared.css
new file mode 100644
index 0000000..309d565
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/shared.css
@@ -0,0 +1,522 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2010 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * Set up general fonts, sizes and colors
+ */
+body { font-family : Arial, sans-serif; }
+
+H1, H2, H3, H4, p, a { color : #4D4D4D; }
+
+ body {
+ background-color : #FFFFFF;
+}
+
+/* The label part of the folding section */
+.section-title-link .section-title {
+ display : inline;
+}
+
+h2 {
+ font-weight : normal;
+ color : #7B8694;
+}
+
+/* For regular div labels */
+H4 .div-label {
+ font-family: Verdana, Arial, Helvetica;
+ font-weight: bold;
+ color: #4A4D4A;
+ line-height:1.3;
+}
+
+/* For the main page content's title */
+#content-header H4 .div-label {
+ font-family: Verdana, Arial, Helvetica;
+ color:#333333;
+ font-weight: normal;
+ letter-spacing:-0.03em;
+ margin-left: 68px;
+ float : none;
+ clear : both;
+}
+
+/* For separators */
+HR {
+ width: 90%;
+ align: left;
+ height : 1px;
+ color : #dfdfe4;
+}
+
+/* Page description if the page has it. */
+.page-description {
+ display: block;
+ font-family: Verdana, Arial, Helvetica;
+ line-height:1.3;
+ float : none;
+ clear : both;
+ margin-left: 70px;
+ position : relative;
+ top : -25px;
+}
+
+a {
+ font-weight : bold;
+ text-decoration : none;
+ color : #4D4D4D;
+}
+
+a:hover {
+ color: #69c;
+}
+
+/* General link labels */
+a .link-label {
+ font-weight : normal;
+}
+
+/* Floating link labels for navigation links */
+#navigation-links a .link-label,
+#action links a .text {
+ font-weight : bold;
+ color : white;
+}
+
+#navigation-links a#overview:hover .link-label
+{
+ color : #FFEC89;
+}
+
+#navigation-links a#tutorials:hover .link-label,
+#navigation-links a#samples:hover .link-label
+{
+ color : #ACCCE9;
+}
+
+#navigation-links a#whatsnew:hover .link-label,
+#navigation-links a#firststeps:hover .link-label
+{
+ color : #E5CD89;
+}
+
+#navigation-links a#webresources:hover .link-label ,
+#navigation-links a#migrate:hover .link-label
+{
+ color : #BCD77C;
+}
+
+#action-links a:hover .link-label {
+ color : E0DFE3;
+}
+
+/* Text in links. */
+a .text {
+ font-weight : normal;
+}
+
+p .group-description {
+ font-family: Verdana, Arial, Helvetica;
+ font-weight : normal;
+}
+
+/* Hide the extra div in links by default. */
+.link-extra-div {
+ display : none;
+}
+
+/*
+ * Set up other general properties like padding/margins
+ */
+html, body { width : 100%; height : 100%; }
+
+html, body, div, h1, h4, p, a { margin : 0px; padding : 0px; }
+
+/*
+ * Page header - adding extra padding at the bottom to compensate
+ * for navigation background/header overlap.
+ */
+#page-content #content-header {
+ padding-top : 10px;
+ padding-bottom : 22px;
+}
+
+/* For regular div labels */
+#page-content div H4 {
+ padding : 10px;
+ padding-bottom : 0px;
+}
+
+/* For the main page content's div label */
+#page-content #content-header H4 {
+ padding-bottom : 10px;
+ padding-top : 0px;
+}
+
+/* special case for Mozilla's main content-header label.
+ Mozilla 1.4 needs more room at the top */
+#page-content > #content-header H4 { padding-top : 10px; }
+
+/* Needed in IE to get shift+tab to show the active image properly */
+a:active {
+ border : solid 0px;
+}
+
+a img {
+ border-width : 0;
+ background-repeat : no-repeat;
+}
+
+/*
+ * to get scrollbars working in both IE and Mozilla
+ */
+
+/*
+ * to get scrollbars working in both IE and Mozilla
+ */
+html,body { overflow: auto; }
+html>body { overflow: visible; }
+
+/*
+ * Set up the body, decorative background, and navigation for the content
+ * pages.
+ * Note: the root page handles its own background and navigation; these
+ * settings primarily apply to the content pages
+ */
+body {
+ background-image: url(../graphics/contentpage/banner_extension.jpg);
+ background-repeat: repeat-x;
+ background-position: top left;
+}
+
+/*
+ * Hide the general-purpose groups - not using them in this theme.
+ */
+#extra-group1,
+#extra-group2,
+#extra-group3,
+#extra-group4,
+#extra-group5 {
+ display : none;
+}
+
+/*
+ * Dimensions.
+ */
+body, .page {
+ /* since IE doesn't support min-width, try expression */
+ height : 100%;
+}
+
+.page {
+ background-repeat : no-repeat;
+ background-position : top left;
+
+ min-width : 770px;
+ width:expression(document.body.clientWidth < 770? "770px": "auto" );
+ min-height : 425px;
+ height : expression(document.body.clientHeight < 425? "425px": "100%" );
+}
+
+#page-content {
+ background-repeat : no-repeat;
+ background-position : bottom right;
+ height : 65%;
+}
+
+/*
+ * Lay out the navigation links
+ * (Root page does something similar for its navigation)
+ */
+#navigation-links {
+ position : relative;
+ left : 0px;
+ top : 0px;
+ padding-left: 12px;
+ height : 118px;
+}
+
+#navigation-links a {
+ text-align : left;
+ height : 64px;
+ float : left;
+ margin-left : 10px;
+ position : relative;
+ text-align : center;
+}
+
+#action-links a {
+ float : right;
+ margin-right : 20px;
+}
+
+#navigation-links a img {
+ height : 32px;
+ width : 32px;
+ vertical-align : center;
+ horizontal-align : center;
+ display : block;
+ margin-top : 5px;
+ margin-bottom : 0px;
+ margin-left : auto;
+ margin-right : auto;
+}
+
+#navigation-links a.high-contrast img {
+ margin-bottom : 0px;
+}
+
+
+/*
+ * Not showing description for navigation links.
+ */
+#navigation-links a .text { display : none; }
+
+/* properties for each of the navigation-links */
+#navigation-links a#overview img {
+ background-image : url(../graphics/icons/ctool/ov_nav_32.gif);
+}
+
+#navigation-links a#firststeps img {
+ background-image : url(../graphics/icons/ctool/fs_nav_32.gif);
+}
+
+#navigation-links a#tutorials img {
+ background-image : url(../graphics/icons/ctool/tu_nav_32.gif);
+}
+
+#navigation-links a#samples img {
+ background-image : url(../graphics/icons/ctool/sa_nav_32.gif);
+}
+
+#navigation-links a#whatsnew img {
+ background-image : url(../graphics/icons/ctool/wn_nav_32.gif);
+}
+
+#navigation-links a#migrate img {
+ background-image : url(../graphics/icons/ctool/mi_nav_32.gif);
+}
+
+#navigation-links a#webresources img {
+ background-image : url(../graphics/icons/ctool/wr_nav_32.gif);
+}
+
+#navigation-links a#workbench img {
+ background-image : url(../graphics/icons/ctool/wb_nav_32.gif);
+}
+
+#action-links a {
+ text-align : center;
+}
+
+#action-links a.high-contrast .link-label {
+ display: none;
+}
+
+#navigation-links a.high-contrast .background-image {
+ display: none;
+}
+
+#page-links a.high-contrast:focus .link-label,
+#page-links a.high-contrast:active .link-label {
+ display: block !important;
+ text-decoration: underline;
+ top : 5px;
+}
+
+#page-links span {
+ display : block;
+ margin-top : -2px;
+}
+
+/*
+ * Lay out the page title and description
+ */
+h1, p { margin-left : 10px; } /* required in mozilla so the page description is properly indented */
+
+/* position the page content so that the page title overlays the bottom
+ * of the background image, but make sure the content is always on top
+ * (using z-index) */
+
+#page-content {
+ float : none;
+ clear : both;
+ text-align : center;
+ position : relative;
+ top : -50px;
+ margin-bottom: -50px;
+ z-index : 10;
+}
+
+#page-content p {
+ padding-bottom : 15px;
+ text-align : left;
+ float : none;
+ clear : both;
+}
+
+/* Page content quadrants. Page content is placed in four quadrants.
+ * Upper pair is separated from the bottom pair with a divider
+ * to ensure bottom pair is aligned even with the uneven content
+ * in the upper pair.
+ */
+
+#page-content #top-left {
+ border: none; float: left; margin: 0px; padding: 0px; width: 49%;
+ clear: left;
+}
+#page-content #top-right {
+ border: none; float: right; margin: 0px; padding: 0px; width: 49%;
+ clear: right;
+}
+/* top-bottom divider - runs the entire width to ensure
+ * bottom boxes start at the same y
+ */
+#page-content #content-divider {
+ border: none; float: none; margin: 0; padding: 0px; width: 100%;
+ clear: both;
+}
+
+#page-content #bottom-left {
+ border: none; float: left; margin: 0px; padding: 0px; width: 49%;
+ clear: left;
+}
+#page-content #bottom-right {
+ border: none; float: right; margin: 0px; padding: 0px; width: 49%;
+ clear: right;
+}
+
+#page-content #content-header H4, .page-description {
+ text-align : left;
+ margin-right : 10px;
+ float : none;
+ clear : both;
+}
+
+#page-content * > a {
+ vertical-align : middle;
+}
+
+#page-content * a img {
+ height : 57px;
+ width : 57px;
+ vertical-align : middle;
+}
+
+#page-content * a .link-label {
+ display : block;
+ position : relative;
+ top : -50px;
+ left : 60px;
+ margin-right: 60px;
+}
+
+#page-content * a > .link-label { left: 65px; }
+
+#page-content * a p {
+ display : block;
+ position : relative;
+ top : -45px;
+ margin-bottom: -25px;
+}
+
+#page-content * a p .text {
+ display : block;
+ position : relative;
+ left : 53px;
+ margin-right: 53px;
+}
+
+#page-content * a p > .text { left: 56px; }
+
+#page-content * a:hover { border-right : 5px; }
+
+/* The following rules are for extensions in all pages. Extensions should be placed in
+ * groups with the style 'content-group' and contain links with the style 'content-link'.
+ * Group is important so that importance mixin style can be applied to the group that
+ * uses block display. We need to see a solid rectangle around the extension, not
+ * a tight polygon around the link perimeter.
+ */
+
+.content-group {
+ margin-left: 10px;
+ margin-right: 10px;
+ padding-left: 10px;
+ padding-right: 10px;
+ float : none;
+ clear : both;
+ text-align: left;
+}
+
+.content-link .link-label {
+ font-family: Verdana, Arial, Helvetica;
+ font-weight: bold;
+ line-height:1.5;
+ color: #00507C;
+}
+
+.content-link:hover .link-label {
+ color: #69c;
+ text-decoration : underline;
+}
+
+.content-link .text {
+ font-family: Verdana, Arial, Helvetica;
+ line-height: 1.3;
+}
+
+.categoryContentnav {
+ font-family: Verdana, Arial, Helvetica;
+ font-weight: bold;
+ color: #4A4D4A;
+ line-height:1.3;
+}
+
+.contentpgNavhover {
+ font-family: Verdana, Arial, Helvetica;
+ font-weight: bold;
+ color: #000;
+}
+
+.topicList {
+ font-family: Verdana, Arial, Helvetica;
+ line-height:1.75;
+ color: #00507C;
+}
+
+.topicList:hover {
+ color: #69c;
+}
+
+
+.rss-feed-link a {
+ font-family: Verdana, Arial, Helvetica;
+ color: #00507C;
+}
+
+/*
+ * This part is for hosting embedded document inside
+ * the content area.
+ */
+
+iframe {
+ position:relative;
+ top:16px;
+ width:100%;
+ height:100%;
+ padding-left:10px;
+}
+
+/* mozilla scrollbar appearing off page fix */
+#page-content > iframe {
+ width: 98%;
+ padding-left: 2%;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/standby.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/standby.css
new file mode 100644
index 0000000..5af77a1
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/standby.css
@@ -0,0 +1,165 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+ display : none;
+}
+
+/*
+ * We will not use the general-purpose group1 used in
+ * other pages for a curve image.
+ */
+
+#extra-group1 {
+ display : none;
+}
+
+
+#page-links a .link-label, #action-links a .link-label {
+ font-weight : 600;
+ color : #E5E5E5;
+}
+
+#page-links a p .text, #action-links a p .text {
+ font-weight : 500;
+ color : #E5E5E5;
+}
+
+/*
+ * Set up the content for the standby page.
+ */
+body {
+ min-width : 230px;
+ /* since IE doesn't support min-width, use expression */
+ width:expression(document.body.clientWidth < 230? "230px": "auto" );
+ background-repeat : no-repeat;
+ background-position : top left;
+ background-color : #6d7e85;
+}
+
+.page {
+ background-repeat : no-repeat;
+ background-position : bottom left;
+ min-width : 230px;
+ /* since IE doesn't support min-width, use expression */
+ width:expression(document.body.clientWidth < 230? "230px": "auto" );
+ min-height : 610px;
+ height : 100%;
+ height : expression(document.body.clientHeight < 450? "450px": "100%" );
+}
+
+/*
+ * Set up the navigation bar. It should be centered in the middle
+ * of the page
+ */
+
+#links-background {
+ width : 100%;
+ margin-top : 10%;
+ margin-bottom : auto;
+ text-align : center;
+}
+
+#page-links a {
+ display : block;
+ width : 220px;
+ text-align : left;
+ margin-left : auto;
+ margin-right : auto;
+ margin-top : 0px;
+ vertical-align : top;
+}
+
+#page-links a span, #page-links a p {
+ display : block;
+ width : 160px;
+ margin : 0px;
+ padding : 0px;
+}
+
+#page-links a .link-label {
+ position : relative;
+ left : 60px;
+ top : -50px;
+}
+
+#page-links a p .text {
+ position : relative;
+ left : 60px;
+ top : -50px;
+}
+
+#page-links a img {
+ height : 52px;
+ width : 52px;
+ vertical-align : middle;
+}
+
+#page-links a:hover,
+#page-links a:focus,
+#page-links a:active { border : 0px; }
+
+#page-links a:hover p,
+#page-links a:focus p,
+#page-links a:active p { margin : 0px; padding : 0px; }
+
+/* properties for each of the page-links */
+
+#page-links a .background-image {
+ display: none;
+}
+
+#page-links a .link-extra-div {
+ display :none;
+}
+
+a#overview img { background-image : url(../graphics/standby/ov_standby.gif); }
+a#overview:hover img,
+a#overview:focus img,
+a#overview:active img { background-image : url(../graphics/standby/ov_standbyhov.gif); }
+
+a#firststeps img { background-image : url(../graphics/standby/fs_standby.gif); }
+a#firststeps:hover img,
+a#firststeps:focus img,
+a#firststeps:active img { background-image : url(../graphics/standby/fs_standbyhov.gif); }
+
+a#tutorials img { background-image : url(../graphics/standby/tu_standby.gif); }
+a#tutorials:hover img,
+a#tutorials:focus img,
+a#tutorials:active img { background-image : url(../graphics/standby/tu_standbyhov.gif); }
+
+a#samples img { background-image : url(../graphics/standby/sa_standby.gif); }
+a#samples:hover img,
+a#samples:focus img,
+a#samples:active img { background-image : url(../graphics/standby/sa_standbyhov.gif); }
+
+a#whatsnew img { background-image : url(../graphics/standby/wn_standby.gif); }
+a#whatsnew:hover img,
+a#whatsnew:focus img,
+a#whatsnew:active img { background-image : url(../graphics/standby/wn_standbyhov.gif); }
+
+a#webresources img { background-image : url(../graphics/standby/wr_standby.gif); }
+a#webresources:hover img,
+a#webresources:focus img,
+a#webresources:active img { background-image : url(../graphics/standby/wr_standbyhov.gif); }
+
+a#migrate img { background-image : url(../graphics/standby/mi_standby.gif); }
+a#migrate:hover img,
+a#migrate:focus img,
+a#migrate:active img { background-image : url(../graphics/standby/mi_standbyhov.gif); }
+
+a#workbench img { background-image : url(../graphics/standby/wb_standby.gif); }
+a#workbench:hover img,
+a#workbench:focus img,
+a#workbench:active img { background-image : url(../graphics/standby/wb_standbyhov.gif); }
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/tutorials.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/tutorials.css
new file mode 100644
index 0000000..8ae9294
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/tutorials.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+ display : none;
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#tutorials img {
+ background-image : url(../graphics/icons/ctool/tutorials-select.png);
+ width : 64px;
+ height: 64px;
+ margin-top : 12px
+}
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+* html #navigation-links a#tutorials img {
+ background-image : url(../graphics/icons/ctool/tutorials-select.gif);
+}
+
+#navigation-links a.high-contrast#tutorials img {
+ display : none;
+}
+
+.page {
+ background-image: url(../graphics/contentpage/tu_banner.jpg);
+}
+
+#navigation-links #tutorials .link-label {
+ display : none;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/webresources.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/webresources.css
new file mode 100644
index 0000000..0e19a44
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/webresources.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+ display : none;
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#webresources img {
+ background-image : url(../graphics/icons/ctool/webresources-select.png);
+ width : 64px;
+ height: 64px;
+ margin-top : 12px
+}
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+* html #navigation-links a#webresources img {
+ background-image : url(../graphics/icons/ctool/webresources-select.gif);
+}
+
+#navigation-links a#.high-contrast#webresources img {
+ display : none;
+}
+
+.page {
+ background-image: url(../graphics/contentpage/wr_banner.jpg);
+}
+
+#navigation-links #webresources .link-label {
+ display : none;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/whatsnew.css b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/whatsnew.css
new file mode 100644
index 0000000..01d5b97
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/html/whatsnew.css
@@ -0,0 +1,42 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * We are not using titles on this page.
+ */
+.intro-header {
+ display : none;
+}
+
+/* show the "selected" image for this page */
+#navigation-links a#whatsnew img {
+ background-image : url(../graphics/icons/ctool/whatsnew-select.png);
+ width : 64px;
+ height: 64px;
+ margin-top : 12px;
+}
+
+/* Hack for IE6, which cannot display png files with alpha channel transparency */
+* html #navigation-links a#whatsnew img {
+ background-image : url(../graphics/icons/ctool/whatsnew-select.gif);
+}
+
+#navigation-links a#.high-contrast#whatsnew img {
+ display : none;
+}
+
+.page {
+ background-image: url(../graphics/contentpage/wn_banner.jpg);
+}
+
+#navigation-links #whatsnew .link-label {
+ display : none;
+}
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/preview.png b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/preview.png
new file mode 100644
index 0000000..79d7066
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/preview.png differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/firststeps.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/firststeps.properties
new file mode 100644
index 0000000..f294360
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/firststeps.properties
@@ -0,0 +1,18 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+firststeps.page-content.layout.vspacing = 40
+firststeps.page-content.layout.ncolumns = 2
+firststeps.page-content.page-title.layout.colspan = 2
+firststeps.page-content.page-description.layout.colspan = 2
+firststeps.page-content.content-divider.layout.colspan = 2
+firststeps.subtitle-id = firststeps/page-content/page-title
+firststeps.description-id = firststeps/page-content/page-description
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/migrate.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/migrate.properties
new file mode 100644
index 0000000..6de0f5c
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/migrate.properties
@@ -0,0 +1,18 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+migrate.page-content.layout.vspacing = 40
+migrate.page-content.layout.ncolumns = 2
+migrate.page-content.page-title.layout.colspan = 2
+migrate.page-content.page-description.layout.colspan = 2
+migrate.page-content.content-divider.layout.colspan = 2
+
+migrate.subtitle-id = migrate/page-content/page-title
+migrate.description-id = migrate/page-content/page-description
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/overview.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/overview.properties
new file mode 100644
index 0000000..43e9398
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/overview.properties
@@ -0,0 +1,18 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+overview.page-content.layout.ncolumns = 2
+overview.page-content.page-title.layout.colspan = 2
+overview.page-content.page-description.layout.colspan = 2
+overview.page-content.content-divider.layout.colspan = 2
+
+overview.subtitle-id = overview/page-content/page-title
+overview.description-id = overview/page-content/page-description
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/root.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/root.properties
new file mode 100644
index 0000000..3dbf653
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/root.properties
@@ -0,0 +1,51 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+theme=true
+root.links-background.page-links.overview.link-icon = ../graphics/icons/ctool/overview.png
+root.links-background.page-links.tutorials.link-icon = ../graphics/icons/ctool/tutorials.png
+root.links-background.page-links.samples.link-icon= ../graphics/icons/ctool/samples.png
+root.links-background.page-links.whatsnew.link-icon = ../graphics/icons/ctool/whatsnew.png
+root.links-background.page-links.firststeps.link-icon = ../graphics/icons/ctool/firststeps.png
+root.links-background.page-links.migrate.link-icon = ../graphics/icons/ctool/migrate.png
+root.links-background.page-links.webresources.link-icon = ../graphics/icons/ctool/webresources.png
+root.action-links.workbench.link-icon = ../graphics/icons/ctool/workbench.png
+
+root.links-background.page-links.overview.hover-icon = ../graphics/icons/ctool/overview.png
+root.links-background.page-links.tutorials.hover-icon = ../graphics/icons/ctool/tutorials.png
+root.links-background.page-links.samples.hover-icon = ../graphics/icons/ctool/samples.png
+root.links-background.page-links.whatsnew.hover-icon = ../graphics/icons/ctool/whatsnew.png
+root.links-background.page-links.firststeps.hover-icon = ../graphics/icons/ctool/firststeps.png
+root.links-background.page-links.migrate.hover-icon = ../graphics/icons/ctool/migrate.png
+root.links-background.page-links.webresources.hover-icon = ../graphics/icons/ctool/webresources.png
+root.action-links.workbench.hover-icon = ../graphics/icons/ctool/workbench.png
+
+root.links-background.page-links.overview.small-link-icon = ../graphics/icons/ctool/ov_nav.png
+root.links-background.page-links.tutorials.small-link-icon = ../graphics/icons/ctool/tu_nav.png
+root.links-background.page-links.samples.small-link-icon = ../graphics/icons/ctool/sa_nav.png
+root.links-background.page-links.whatsnew.small-link-icon = ../graphics/icons/ctool/wn_nav.png
+root.links-background.page-links.firststeps.small-link-icon = ../graphics/icons/ctool/fs_nav.png
+root.links-background.page-links.migrate.small-link-icon = ../graphics/icons/ctool/mi_nav.png
+root.links-background.page-links.webresources.small-link-icon = ../graphics/icons/ctool/wr_nav.png
+root.action-links.workbench.small-link-icon = ../graphics/icons/ctool/wb_nav.png
+
+root.links-background.page-links.overview.small-hover-icon = ../graphics/icons/ctool/ov_nav.png
+root.links-background.page-links.tutorials.small-hover-icon = ../graphics/icons/ctool/tu_nav.png
+root.links-background.page-links.samples.small-hover-icon = ../graphics/icons/ctool/sa_nav.png
+root.links-background.page-links.whatsnew.small-hover-icon = ../graphics/icons/ctool/wn_nav.png
+root.links-background.page-links.firststeps.small-hover-icon = ../graphics/icons/ctool/fs_nav.png
+root.links-background.page-links.migrate.small-hover-icon = ../graphics/icons/ctool/mi_nav.png
+root.links-background.page-links.webresources.small-hover-icon = ../graphics/icons/ctool/wr_nav.png
+root.action-links.workbench.small-hover-icon = ../graphics/icons/ctool/wb_nav.png
+
+
+root.layout.ncolumns = 1
+root.links-background.page-links.layout.hspacing = 40
+root.layout.vspacing = 35
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/samples.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/samples.properties
new file mode 100644
index 0000000..da16d12
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/samples.properties
@@ -0,0 +1,21 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+samples.page-content.layout.vspacing = 40
+samples.page-content.layout.ncolumns = 2
+samples.page-content.layout.equalWidth = true
+samples.page-content.page-title.layout.colspan = 2
+samples.page-content.page-description.layout.colspan = 2
+samples.page-content.content-divider.layout.colspan = 2
+
+description-style-id = group-description
+samples.subtitle-id = samples/page-content/page-title
+samples.description-id = samples/page-content/page-description
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/standby.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/standby.properties
new file mode 100644
index 0000000..0a474d2
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/standby.properties
@@ -0,0 +1,24 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+theme = true
+standby.links-background.page-links.overview.link-icon = ../graphics/icons/ctool/ov_nav.png
+standby.links-background.page-links.firststeps.link-icon = ../graphics/icons/ctool/fs_nav.png
+standby.links-background.page-links.tutorials.link-icon = ../graphics/icons/ctool/tu_nav.png
+standby.links-background.page-links.samples.link-icon = ../graphics/icons/ctool/sa_nav.png
+standby.links-background.page-links.whatsnew.link-icon = ../graphics/icons/ctool/wn_nav.png
+standby.links-background.page-links.migrate.link-icon = ../graphics/icons/ctool/mi_nav.png
+standby.links-background.page-links.webresources.link-icon = ../graphics/icons/ctool/wr_nav.png
+standby.links-background.page-links.workbench.link-icon = ../graphics/icons/ctool/wb_nav.png
+
+standby.links-background.page-links.layout.vspacing = 30
+standby.layout.vspacing = 35
+standby.show-link-description = false
+standby.show-home-page-navigation = false
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/tutorials.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/tutorials.properties
new file mode 100644
index 0000000..b7e1492
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/tutorials.properties
@@ -0,0 +1,19 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+tutorials.page-content.layout.vspacing = 40
+tutorials.page-content.layout.ncolumns = 2
+tutorials.page-content.layout.equalWidth = true
+tutorials.page-content.page-title.layout.colspan = 2
+tutorials.page-content.page-description.layout.colspan = 2
+tutorials.page-content.content-divider.layout.colspan = 2
+tutorials.subtitle-id = tutorials/page-content/page-title
+tutorials.description-id = tutorials/page-content/page-description
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/webresources.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/webresources.properties
new file mode 100644
index 0000000..1bba0e8
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/webresources.properties
@@ -0,0 +1,19 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+webresources.page-content.layout.vspacing = 40
+webresources.page-content.layout.ncolumns = 2
+webresources.page-content.page-title.layout.colspan = 2
+webresources.page-content.page-description.layout.colspan = 2
+webresources.page-content.content-divider.layout.colspan = 2
+
+webresources.subtitle-id = webresources/page-content/page-title
+webresources.description-id = webresources/page-content/page-description
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/whatsnew.properties b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/whatsnew.properties
new file mode 100644
index 0000000..28c5acf
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/themes/slate/swt/whatsnew.properties
@@ -0,0 +1,24 @@
+###############################################################################
+# Copyright (c) 2005, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+theme = true
+whatsnew.page-content.layout.vspacing = 40
+whatsnew.page-content.layout.ncolumns = 2
+whatsnew.page-content.layout.equalWidth = true
+whatsnew.page-content.page-title.layout.colspan = 2
+whatsnew.page-content.page-description.layout.colspan = 2
+whatsnew.page-content.content-divider.layout.colspan = 2
+
+whatsnew.separator.fg = #dfdfe4
+
+whatsnew.link-icon = ../graphics/icons/obj48/new_obj.gif
+whatsnew.hover-icon = ../graphics/icons/obj48/newhov_obj.gif
+
+whatsnew.subtitle-id = whatsnew/page-content/page-title
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/universal.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/universal.jar.REMOVED.git-id
new file mode 100644
index 0000000..581522c
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.intro.universal_3.2.600.v20120912-155524/universal.jar.REMOVED.git-id
@@ -0,0 +1 @@
+620ad463c2748c9a63c08b3cc47a76369dc4ca90
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.navigator.resources_3.4.400.v20120705-114010.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.navigator.resources_3.4.400.v20120705-114010.jar.REMOVED.git-id
new file mode 100644
index 0000000..211f437
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.navigator.resources_3.4.400.v20120705-114010.jar.REMOVED.git-id
@@ -0,0 +1 @@
+55d4d7d4d4b5c93a6df5dbf6b291c7e957fc0e91
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.navigator_3.5.200.v20120705-114103.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.navigator_3.5.200.v20120705-114103.jar.REMOVED.git-id
new file mode 100644
index 0000000..ec85058
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.navigator_3.5.200.v20120705-114103.jar.REMOVED.git-id
@@ -0,0 +1 @@
+e96146c52ed419a8766b2df6c7839b23e660c4b5
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.net_1.2.101.v20120914-093638.jar b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.net_1.2.101.v20120914-093638.jar
new file mode 100644
index 0000000..d90264d
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.net_1.2.101.v20120914-093638.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.views.properties.tabbed_3.5.300.v20120912-132807.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.views.properties.tabbed_3.5.300.v20120912-132807.jar.REMOVED.git-id
new file mode 100644
index 0000000..012b4c5
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.views.properties.tabbed_3.5.300.v20120912-132807.jar.REMOVED.git-id
@@ -0,0 +1 @@
+20686026286536e2e56dcae0f84337d55874d613
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.views_3.6.100.v20120705-114010.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.views_3.6.100.v20120705-114010.jar.REMOVED.git-id
new file mode 100644
index 0000000..53bcbf3
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.views_3.6.100.v20120705-114010.jar.REMOVED.git-id
@@ -0,0 +1 @@
+28573c712172625907a184ca913e4ac115c35170
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.workbench.texteditor_3.8.0.v20120523-1310.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.workbench.texteditor_3.8.0.v20120523-1310.jar.REMOVED.git-id
new file mode 100644
index 0000000..7443810
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.workbench.texteditor_3.8.0.v20120523-1310.jar.REMOVED.git-id
@@ -0,0 +1 @@
+a776ee2f4defa5cf47f71c8b61d76eea0b92214a
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.workbench_3.104.0.v20130204-164612.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.workbench_3.104.0.v20130204-164612.jar.REMOVED.git-id
new file mode 100644
index 0000000..e2a25dc
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui.workbench_3.104.0.v20130204-164612.jar.REMOVED.git-id
@@ -0,0 +1 @@
+f56c2b552a80ab13cb655afb162f259c50992f18
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui_3.104.0.v20121024-145224.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui_3.104.0.v20121024-145224.jar.REMOVED.git-id
new file mode 100644
index 0000000..b9a2f42
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.ui_3.104.0.v20121024-145224.jar.REMOVED.git-id
@@ -0,0 +1 @@
+5d53c3ff1632f3e1d7966e5719e794567ff351fa
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.eclipse.update.configurator_3.3.200.v20120912-144026.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.update.configurator_3.3.200.v20120912-144026.jar.REMOVED.git-id
new file mode 100644
index 0000000..4701759
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.eclipse.update.configurator_3.3.200.v20120912-144026.jar.REMOVED.git-id
@@ -0,0 +1 @@
+17d3fb279398b709db6b180f4f0c28320543f3b3
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.sat4j.core_2.3.0.v20110329.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.sat4j.core_2.3.0.v20110329.jar.REMOVED.git-id
new file mode 100644
index 0000000..567a74c
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.sat4j.core_2.3.0.v20110329.jar.REMOVED.git-id
@@ -0,0 +1 @@
+019572aa20a3b7d3d3b97fa6c5e84f30ed91af91
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.sat4j.pb_2.3.0.v20110329.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.sat4j.pb_2.3.0.v20110329.jar.REMOVED.git-id
new file mode 100644
index 0000000..7a16fca
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.sat4j.pb_2.3.0.v20110329.jar.REMOVED.git-id
@@ -0,0 +1 @@
+cf7bb368eebd51d3687b856482b4c077db51f867
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.w3c.css.sac_1.3.1.v200903091627.jar b/android/tools/lib/monitor-x86_64/plugins/org.w3c.css.sac_1.3.1.v200903091627.jar
new file mode 100644
index 0000000..2144c3a
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.w3c.css.sac_1.3.1.v200903091627.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.w3c.dom.smil_1.0.0.v200806040011.jar b/android/tools/lib/monitor-x86_64/plugins/org.w3c.dom.smil_1.0.0.v200806040011.jar
new file mode 100644
index 0000000..a1c8a83
Binary files /dev/null and b/android/tools/lib/monitor-x86_64/plugins/org.w3c.dom.smil_1.0.0.v200806040011.jar differ
diff --git a/android/tools/lib/monitor-x86_64/plugins/org.w3c.dom.svg_1.1.0.v201011041433.jar.REMOVED.git-id b/android/tools/lib/monitor-x86_64/plugins/org.w3c.dom.svg_1.1.0.v201011041433.jar.REMOVED.git-id
new file mode 100644
index 0000000..aab994c
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/plugins/org.w3c.dom.svg_1.1.0.v201011041433.jar.REMOVED.git-id
@@ -0,0 +1 @@
+99cfac18bc5f352de7dc626677e97927d9a81b79
\ No newline at end of file
diff --git a/android/tools/lib/monitor-x86_64/readme/readme_eclipse.html.REMOVED.git-id b/android/tools/lib/monitor-x86_64/readme/readme_eclipse.html.REMOVED.git-id
new file mode 100644
index 0000000..bfcd895
--- /dev/null
+++ b/android/tools/lib/monitor-x86_64/readme/readme_eclipse.html.REMOVED.git-id
@@ -0,0 +1 @@
+99113248a93d5a7e3a97f46c4ebcb6bc3a74938e
\ No newline at end of file
diff --git a/android/tools/lib/monkeyrunner-26.0.0-dev.jar.REMOVED.git-id b/android/tools/lib/monkeyrunner-26.0.0-dev.jar.REMOVED.git-id
new file mode 100644
index 0000000..5f027cf
--- /dev/null
+++ b/android/tools/lib/monkeyrunner-26.0.0-dev.jar.REMOVED.git-id
@@ -0,0 +1 @@
+9b616739ad71f89ee5c2ea561232f6185c3fc9bf
\ No newline at end of file
diff --git a/android/tools/lib/org-eclipse-core-commands-3.6.0.jar.REMOVED.git-id b/android/tools/lib/org-eclipse-core-commands-3.6.0.jar.REMOVED.git-id
new file mode 100644
index 0000000..cdc6369
--- /dev/null
+++ b/android/tools/lib/org-eclipse-core-commands-3.6.0.jar.REMOVED.git-id
@@ -0,0 +1 @@
+6c95c0f88d52b72417bd639b836768ae7eb78837
\ No newline at end of file
diff --git a/android/tools/lib/org-eclipse-equinox-common-3.6.0.jar.REMOVED.git-id b/android/tools/lib/org-eclipse-equinox-common-3.6.0.jar.REMOVED.git-id
new file mode 100644
index 0000000..4a0d687
--- /dev/null
+++ b/android/tools/lib/org-eclipse-equinox-common-3.6.0.jar.REMOVED.git-id
@@ -0,0 +1 @@
+a5d37aa152c5eefdfd3a58f490a54d466fd493c6
\ No newline at end of file
diff --git a/android/tools/lib/org-eclipse-jface-3.6.2.jar.REMOVED.git-id b/android/tools/lib/org-eclipse-jface-3.6.2.jar.REMOVED.git-id
new file mode 100644
index 0000000..f073d19
--- /dev/null
+++ b/android/tools/lib/org-eclipse-jface-3.6.2.jar.REMOVED.git-id
@@ -0,0 +1 @@
+289db85feaa19a2fbff76651bb8394c8adcbfc6c
\ No newline at end of file
diff --git a/android/tools/lib/osgi-4.0.0.jar.REMOVED.git-id b/android/tools/lib/osgi-4.0.0.jar.REMOVED.git-id
new file mode 100644
index 0000000..b449e5d
--- /dev/null
+++ b/android/tools/lib/osgi-4.0.0.jar.REMOVED.git-id
@@ -0,0 +1 @@
+5f82c42e1e2e38a93eba0cea56c925615bc98f39
\ No newline at end of file
diff --git a/android/tools/lib/proguard-project.txt b/android/tools/lib/proguard-project.txt
new file mode 100644
index 0000000..37a7e5a
--- /dev/null
+++ b/android/tools/lib/proguard-project.txt
@@ -0,0 +1,24 @@
+# To enable ProGuard in your project, edit project.properties
+# to define the proguard.config property as described in that file.
+#
+# This file is no longer maintained and is not used by new (2.2+) versions of the
+# Android plugin for Gradle. Instead, the Android plugin for Gradle generates the
+# default rules at build time and stores them in the build directory.
+#
+# Add project specific ProGuard rules here.
+# By default, the flags in this file are appended to flags specified
+# in ${sdk.dir}/tools/proguard/proguard-android.txt
+# You can edit the include path and order by changing the ProGuard
+# include property in project.properties.
+#
+# For more details, see
+# http://developer.android.com/guide/developing/tools/proguard.html
+
+# Add any project specific keep options here:
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+# public *;
+#}
diff --git a/android/tools/lib/protobuf-java-3.0.0.jar.REMOVED.git-id b/android/tools/lib/protobuf-java-3.0.0.jar.REMOVED.git-id
new file mode 100644
index 0000000..08e8556
--- /dev/null
+++ b/android/tools/lib/protobuf-java-3.0.0.jar.REMOVED.git-id
@@ -0,0 +1 @@
+7f36b334320b8f0cb9959a588d78eb46a2574cdc
\ No newline at end of file
diff --git a/android/tools/lib/repository-26.0.0-dev.jar.REMOVED.git-id b/android/tools/lib/repository-26.0.0-dev.jar.REMOVED.git-id
new file mode 100644
index 0000000..0c3db2d
--- /dev/null
+++ b/android/tools/lib/repository-26.0.0-dev.jar.REMOVED.git-id
@@ -0,0 +1 @@
+0df029c3ec0b2122d6cd62b8e18a248b7091f009
\ No newline at end of file
diff --git a/android/tools/lib/screenshot2-26.0.0-dev.jar b/android/tools/lib/screenshot2-26.0.0-dev.jar
new file mode 100644
index 0000000..b76082a
Binary files /dev/null and b/android/tools/lib/screenshot2-26.0.0-dev.jar differ
diff --git a/android/tools/lib/sdk-common-26.0.0-dev.jar.REMOVED.git-id b/android/tools/lib/sdk-common-26.0.0-dev.jar.REMOVED.git-id
new file mode 100644
index 0000000..2c4c7b2
--- /dev/null
+++ b/android/tools/lib/sdk-common-26.0.0-dev.jar.REMOVED.git-id
@@ -0,0 +1 @@
+9a8534aeb156d4594b6d20645a785b8e2aa226a2
\ No newline at end of file
diff --git a/android/tools/lib/sdklib-26.0.0-dev.jar.REMOVED.git-id b/android/tools/lib/sdklib-26.0.0-dev.jar.REMOVED.git-id
new file mode 100644
index 0000000..5ac816a
--- /dev/null
+++ b/android/tools/lib/sdklib-26.0.0-dev.jar.REMOVED.git-id
@@ -0,0 +1 @@
+71cc96f5047f72b6b8ad50ed395b07c56c597610
\ No newline at end of file
diff --git a/android/tools/lib/shared.jar b/android/tools/lib/shared.jar
new file mode 100644
index 0000000..de281c9
Binary files /dev/null and b/android/tools/lib/shared.jar differ
diff --git a/android/tools/lib/swtmenubar-26.0.0-dev.jar b/android/tools/lib/swtmenubar-26.0.0-dev.jar
new file mode 100644
index 0000000..6f8052d
Binary files /dev/null and b/android/tools/lib/swtmenubar-26.0.0-dev.jar differ
diff --git a/android/tools/lib/traceview-26.0.0-dev.jar.REMOVED.git-id b/android/tools/lib/traceview-26.0.0-dev.jar.REMOVED.git-id
new file mode 100644
index 0000000..33a53c5
--- /dev/null
+++ b/android/tools/lib/traceview-26.0.0-dev.jar.REMOVED.git-id
@@ -0,0 +1 @@
+67189c2e5f5ae736914637139e572a26f2d45d41
\ No newline at end of file
diff --git a/android/tools/lib/trove4j-20160824.jar.REMOVED.git-id b/android/tools/lib/trove4j-20160824.jar.REMOVED.git-id
new file mode 100644
index 0000000..a70d333
--- /dev/null
+++ b/android/tools/lib/trove4j-20160824.jar.REMOVED.git-id
@@ -0,0 +1 @@
+6bbf9e939cb684678946c50b93776b964293eda6
\ No newline at end of file
diff --git a/android/tools/lib/uast-26.0.0-dev.jar.REMOVED.git-id b/android/tools/lib/uast-26.0.0-dev.jar.REMOVED.git-id
new file mode 100644
index 0000000..dc9a31b
--- /dev/null
+++ b/android/tools/lib/uast-26.0.0-dev.jar.REMOVED.git-id
@@ -0,0 +1 @@
+ee79a0f19e82c577366a992ff4d93917cacd3aaf
\ No newline at end of file
diff --git a/android/tools/lib/uiautomatorviewer-26.0.0-dev.jar.REMOVED.git-id b/android/tools/lib/uiautomatorviewer-26.0.0-dev.jar.REMOVED.git-id
new file mode 100644
index 0000000..488f722
--- /dev/null
+++ b/android/tools/lib/uiautomatorviewer-26.0.0-dev.jar.REMOVED.git-id
@@ -0,0 +1 @@
+60d977d9a7f980cb8a5b224b425aec26fcd59136
\ No newline at end of file
diff --git a/android/tools/lib/util-2.2.1.jar.REMOVED.git-id b/android/tools/lib/util-2.2.1.jar.REMOVED.git-id
new file mode 100644
index 0000000..bf77e2a
--- /dev/null
+++ b/android/tools/lib/util-2.2.1.jar.REMOVED.git-id
@@ -0,0 +1 @@
+9bbeebf7601622a95037c36007022f3da05a1835
\ No newline at end of file
diff --git a/android/tools/lib/x86/swt.jar.REMOVED.git-id b/android/tools/lib/x86/swt.jar.REMOVED.git-id
new file mode 100644
index 0000000..a285612
--- /dev/null
+++ b/android/tools/lib/x86/swt.jar.REMOVED.git-id
@@ -0,0 +1 @@
+5c94f6efe0b1966ff3e674a56752592ac4139c0d
\ No newline at end of file
diff --git a/android/tools/lib/x86_64/swt.jar.REMOVED.git-id b/android/tools/lib/x86_64/swt.jar.REMOVED.git-id
new file mode 100644
index 0000000..fdc1122
--- /dev/null
+++ b/android/tools/lib/x86_64/swt.jar.REMOVED.git-id
@@ -0,0 +1 @@
+4ce079fea0404335cdece55e47739f16cd6a64a2
\ No newline at end of file
diff --git a/android/tools/mksdcard b/android/tools/mksdcard
new file mode 100755
index 0000000..0e84143
Binary files /dev/null and b/android/tools/mksdcard differ
diff --git a/android/tools/monitor b/android/tools/monitor
new file mode 100755
index 0000000..b1a3977
--- /dev/null
+++ b/android/tools/monitor
@@ -0,0 +1,42 @@
+#!/bin/bash
+# Copyright 2012, The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# Set up prog to be the path of this script, including following symlinks,
+# and set up progdir to be the fully-qualified pathname of its directory.
+prog="$0"
+while [ -h "${prog}" ]; do
+ newProg=`/bin/ls -ld "${prog}"`
+ newProg=`expr "${newProg}" : ".* -> \(.*\)$"`
+ if expr "x${newProg}" : 'x/' >/dev/null; then
+ prog="${newProg}"
+ else
+ progdir=`dirname "${prog}"`
+ prog="${progdir}/${newProg}"
+ fi
+done
+oldwd=`pwd`
+progdir=`dirname "${prog}"`
+cd "${progdir}"
+
+vmarch=`bin/archquery`
+
+app=lib/monitor-${vmarch}/monitor
+if [[ "Darwin" == `uname` ]]; then
+ app=${app}.app/Contents/MacOS/monitor
+fi
+
+
+exec $app
+
diff --git a/android/tools/proguard/README b/android/tools/proguard/README
new file mode 100644
index 0000000..a8fd359
--- /dev/null
+++ b/android/tools/proguard/README
@@ -0,0 +1,41 @@
+ProGuard, Java class file shrinker, optimizer, obfuscator, and preverifier
+==========================================================================
+
+This distribution contains the following directories:
+
+- bin : simple wrapper scripts to run ProGuard, its GUI, and ReTrace
+- lib : the main jars, compiled and ready to use with "java -jar ...."
+- docs : the complete documentation, licenses, etc. in html format
+- examples : some example configuration files
+
+The best place to start is docs/index.html
+
+Example
+=======
+
+If you want to give ProGuard a spin right away, try processing the ProGuard
+jar itself:
+
+ cd examples
+ java -jar ../lib/proguard.jar @proguard.pro
+
+The resulting proguard_out.jar contains the same application, but it's a lot
+smaller.
+
+Enjoy!
+
+http://proguard.sourceforge.net/
+
+Copyright (c) 2002-2011 Eric Lafortune (eric@graphics.cornell.edu)
+
+Android Addendum:
+=================
+NOTE: This distribution is identical to the official Proguard 4.7 release,
+with the following modifications:
+- the "src" and "build" directories were deleted (for space considerations)
+- the task.properties file was moved from src/ into ant/ (to be compatible
+ with the directory structure of earlier bundled versions of ProGuard
+- this README file was updated to reflect the above changes
+
+You can download the original proguard4.7.zip, containing the source code,
+from http://proguard.sourceforge.net/.
diff --git a/android/tools/proguard/ant/task.properties b/android/tools/proguard/ant/task.properties
new file mode 100644
index 0000000..b676db7
--- /dev/null
+++ b/android/tools/proguard/ant/task.properties
@@ -0,0 +1,2 @@
+proguard = proguard.ant.ProGuardTask
+proguardconfiguration = proguard.ant.ConfigurationTask
diff --git a/android/tools/proguard/bin/proguard.sh b/android/tools/proguard/bin/proguard.sh
new file mode 100755
index 0000000..5adc047
--- /dev/null
+++ b/android/tools/proguard/bin/proguard.sh
@@ -0,0 +1,12 @@
+#!/bin/sh
+#
+# Start-up script for ProGuard -- free class file shrinker, optimizer,
+# obfuscator, and preverifier for Java bytecode.
+#
+# Note: when passing file names containing spaces to this script,
+# you'll have to add escaped quotes around them, e.g.
+# "\"/My Directory/My File.txt\""
+
+PROGUARD_HOME=`dirname "$0"`/..
+
+java -jar $PROGUARD_HOME/lib/proguard.jar "$@"
diff --git a/android/tools/proguard/bin/proguardgui.sh b/android/tools/proguard/bin/proguardgui.sh
new file mode 100755
index 0000000..c734906
--- /dev/null
+++ b/android/tools/proguard/bin/proguardgui.sh
@@ -0,0 +1,15 @@
+#!/bin/sh
+#
+# Start-up script for the GUI of ProGuard -- free class file shrinker,
+# optimizer, obfuscator, and preverifier for Java bytecode.
+#
+# Note: when passing file names containing spaces to this script,
+# you'll have to add escaped quotes around them, e.g.
+# "\"/My Directory/My File.txt\""
+
+PROGUARD_HOME=`dirname "$0"`/..
+
+# On Linux, Java 1.6.0_24 and higher hang when starting the GUI:
+# http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7027598
+# We're using the -D option as a workaround.
+java -DsuppressSwingDropSupport=true -jar $PROGUARD_HOME/lib/proguardgui.jar "$@"
diff --git a/android/tools/proguard/bin/retrace.sh b/android/tools/proguard/bin/retrace.sh
new file mode 100755
index 0000000..85fd314
--- /dev/null
+++ b/android/tools/proguard/bin/retrace.sh
@@ -0,0 +1,12 @@
+#!/bin/sh
+#
+# Start-up script for Retrace -- companion tool for ProGuard, free class file
+# shrinker, optimizer, obfuscator, and preverifier for Java bytecode.
+#
+# Note: when passing file names containing spaces to this script,
+# you'll have to add escaped quotes around them, e.g.
+# "\"/My Directory/My File.txt\""
+
+PROGUARD_HOME=`dirname "$0"`/..
+
+java -jar $PROGUARD_HOME/lib/retrace.jar "$@"
diff --git a/android/tools/proguard/docs/FAQ.html b/android/tools/proguard/docs/FAQ.html
new file mode 100644
index 0000000..bdc9c04
--- /dev/null
+++ b/android/tools/proguard/docs/FAQ.html
@@ -0,0 +1,253 @@
+
+
+
+
+
+
+ProGuard FAQ
+
+
+
+
+
+
+Java source code (.java files) is typically compiled to bytecode (.class
+files). Bytecode is more compact than Java source code, but it may still
+contain a lot of unused code, especially if it includes program libraries.
+Shrinking programs such as ProGuard can analyze bytecode and remove
+unused classes, fields, and methods. The program remains functionally
+equivalent, including the information given in exception stack traces.
+
+
+
+By default, compiled bytecode still contains a lot of debugging information:
+source file names, line numbers, field names, method names, argument names,
+variable names, etc. This information makes it straightforward to decompile
+the bytecode and reverse-engineer entire programs. Sometimes, this is not
+desirable. Obfuscators such as ProGuard can remove the debugging
+information and replace all names by meaningless character sequences, making
+it much harder to reverse-engineer the code. It further compacts the code as a
+bonus. The program remains functionally equivalent, except for the class
+names, method names, and line numbers given in exception stack traces.
+
+
+
+When loading class files, the class loader performs some sophisticated
+verification of the byte code. This analysis makes sure the code can't
+accidentally or intentionally break out of the sandbox of the virtual machine.
+Java Micro Edition and Java 6 introduced split verification. This means that
+the JME preverifier and the Java 6 compiler add preverification information to
+the class files (StackMap and StackMapTable attributes, respectively), in order
+to simplify the actual verification step for the class loader. Class files can
+then be loaded faster and in a more memory-efficient way. ProGuard can
+perform the preverification step too, for instance allowing to retarget older
+class files at Java 6.
+
+
+
+Apart from removing unused classes, fields, and methods in the shrinking step,
+ProGuard can also perform optimizations at the bytecode level, inside
+and across methods. Thanks to techniques like control flow analysis, data flow
+analysis, partial evaluation, static single assignment, global value numbering,
+and liveness analysis, ProGuard can:
+
+
+
Evaluate constant expressions.
+
Remove unnecessary field accesses and method calls.
+
Remove unnecessary branches.
+
Remove unnecessary comparisons and instanceof tests.
+
Remove unused code blocks.
+
Merge identical code blocks.
+
Reduce variable allocation.
+
Remove write-only fields and unused method parameters.
+
Inline constant fields, method parameters, and return values.
+
Inline methods that are short or only called once.
+
Simplify tail recursion calls.
+
Merge classes and interfaces.
+
Make methods private, static, and final when possible.
+
Make classes static and final when possible.
+
Replace interfaces that have single implementations.
+
Perform over 200 peephole optimizations, like replacing ...*2 by
+ ...<<1.
+
Optionally remove logging code.
+
+The positive effects of these optimizations will depend on your code and on
+the virtual machine on which the code is executed. Simple virtual machines may
+benefit more than advanced virtual machines with sophisticated JIT compilers.
+At the very least, your bytecode may become a bit smaller.
+
+Some notable optimizations that aren't supported yet:
+
+
+Yes, you can. ProGuard itself is distributed under the GPL, but this
+doesn't affect the programs that you process. Your code remains yours, and
+its license can remain the same.
+
+
+
+Yes, ProGuard supports all JDKs from 1.1 up to and including 7.0. Java 2
+introduced some small differences in the class file format. Java 5 added
+attributes for generics and for annotations. Java 6 introduced optional
+preverification attributes. Java 7 made preverification obligatory and
+introduced support for dynamic languages. ProGuard handles all versions
+correctly.
+
+
+
+Yes. ProGuard itself runs in Java Standard Edition, but you can freely
+specify the run-time environment at which your programs are targeted,
+including Java Micro Edition. ProGuard then also performs the required
+preverification, producing more compact results than the traditional external
+preverifier.
+
+ProGuard also comes with an obfuscator plug-in for the JME Wireless
+Toolkit.
+
+
+
+Yes. Google's dx compiler converts ordinary jar files into files
+that run on Android devices. By preprocessing the original jar files,
+ProGuard can significantly reduce the file sizes and boost the run-time
+performance of the code.
+
+
+
+It should. RIM's proprietary rapc compiler converts ordinary JME
+jar files into cod files that run on Blackberry devices. The compiler performs
+quite a few optimizations, but preprocessing the jar files with
+ProGuard can generally still reduce the final code size by a few
+percent. However, the rapc compiler also seems to contain some
+bugs. It sometimes fails on obfuscated code that is valid and accepted by other
+JME tools and VMs. Your mileage may therefore vary.
+
+
+
+Yes. ProGuard provides an Ant task, so that it integrates seamlessly
+into your Ant build processes. You can still use configurations in
+ProGuard's own readable format. Alternatively, if you prefer XML, you
+can specify the equivalent XML configuration.
+
+
+
+Yes. First of all, ProGuard is perfectly usable as a command-line tool
+that can easily be integrated into any automatic build process. For casual
+users, there's also a graphical user interface that simplifies creating,
+loading, editing, executing, and saving ProGuard configurations.
+
+
+
+Yes. ProGuard automatically handles constructs like
+Class.forName("SomeClass") and SomeClass.class. The
+referenced classes are preserved in the shrinking phase, and the string
+arguments are properly replaced in the obfuscation phase.
+
+With variable string arguments, it's generally not possible to determine their
+possible values. They might be read from a configuration file, for instance.
+However, ProGuard will note a number of constructs like
+"(SomeClass)Class.forName(variable).newInstance()". These might
+be an indication that the class or interface SomeClass and/or its
+implementations may need to be preserved. The user can adapt his configuration
+accordingly.
+
+
+
+Yes. ProGuard copies all non-class resource files, optionally adapting
+their names and their contents to the obfuscation that has been applied.
+
+
+
+No. Storing encrypted string constants in program code is fairly futile, since
+the encryption has to be perfectly reversible by definition. Moreover, the
+decryption costs additional memory and computation at run-time. If this feature
+is ever incorporated, I'll provide a tool to decrypt the strings as well.
+
+
+
+Not explicitly. Control flow obfuscation injects additional branches into the
+bytecode, in an attempt to fool decompilers. ProGuard does not do this,
+in order to avoid any negative effects on performance and size. However, the
+optimization step often already restructures the code to the point where most
+decompilers get confused.
+
+
+
+Yes. This feature allows you to specify a previous obfuscation mapping file in
+a new obfuscation step, in order to produce add-ons or patches for obfuscated
+code.
+
+
+
+Yes. You can specify your own obfuscation dictionary, such as a list of
+reserved key words, identifiers with foreign characters, random source files,
+or a text by Shakespeare. Note that this hardly improves the obfuscation.
+Decent decompilers can automatically replace reserved keywords, and the effect
+can be undone fairly easily, by obfuscating again with simpler names.
+
+
+Copyright (C) 1989, 1991 Free Software Foundation, Inc.
+59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
+
+Everyone is permitted to copy and distribute verbatim copies
+of this license document, but changing it is not allowed.
+
+ The licenses for most software are designed to take away your
+freedom to share and change it. By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users. This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it. (Some other Free Software Foundation software is covered by
+the GNU Library General Public License instead.) You can apply it to
+your programs, too.
+
+
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+
+
+ To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have. You must make sure that they, too, receive or can get the
+source code. And you must show them these terms so they know their
+rights.
+
+
+
+ We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+
+
+ Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software. If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+
+
+ Finally, any free program is threatened constantly by software
+patents. We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary. To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+
+
+0.
+ This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License. The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language. (Hereinafter, translation is included without limitation in
+the term "modification".) Each licensee is addressed as "you".
+
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+
+
+1.
+ You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+
+2.
+ You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+
+
+
+
a)
+ You must cause the modified files to carry prominent notices
+ stating that you changed the files and the date of any change.
+
+
+
b)
+ You must cause any work that you distribute or publish, that in
+ whole or in part contains or is derived from the Program or any
+ part thereof, to be licensed as a whole at no charge to all third
+ parties under the terms of this License.
+
+
+
c)
+ If the modified program normally reads commands interactively
+ when run, you must cause it, when started running for such
+ interactive use in the most ordinary way, to print or display an
+ announcement including an appropriate copyright notice and a
+ notice that there is no warranty (or else, saying that you provide
+ a warranty) and that users may redistribute the program under
+ these conditions, and telling the user how to view a copy of this
+ License. (Exception: if the Program itself is interactive but
+ does not normally print such an announcement, your work based on
+ the Program is not required to print an announcement.)
+
+
+These requirements apply to the modified work as a whole. If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works. But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+
+
+3.
+ You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+
+
+
+
+
+
a)
+ Accompany it with the complete corresponding machine-readable
+ source code, which must be distributed under the terms of Sections
+ 1 and 2 above on a medium customarily used for software interchange; or,
+
+
+
b)
+ Accompany it with a written offer, valid for at least three
+ years, to give any third party, for a charge no more than your
+ cost of physically performing source distribution, a complete
+ machine-readable copy of the corresponding source code, to be
+ distributed under the terms of Sections 1 and 2 above on a medium
+ customarily used for software interchange; or,
+
+
+
c)
+ Accompany it with the information you received as to the offer
+ to distribute corresponding source code. (This alternative is
+ allowed only for noncommercial distribution and only if you
+ received the program in object code or executable form with such
+ an offer, in accord with Subsection b above.)
+
+
+The source code for a work means the preferred form of the work for
+making modifications to it. For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable. However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+
+4.
+ You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License. Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+
+
+5.
+ You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Program or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+
+
+6.
+ Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions. You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+
+
+7.
+ If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all. For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices. Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+
+
+8.
+ If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded. In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+
+
+9.
+ The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+
+Each version is given a distinguishing version number. If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation. If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+
+
+
+10.
+ If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission. For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this. Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+
+
+
NO WARRANTY
+
+
+
+11.
+ BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+
+
+12.
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+
+
+
+
END OF TERMS AND CONDITIONS
+
+
diff --git a/android/tools/proguard/docs/GPL_exception.html b/android/tools/proguard/docs/GPL_exception.html
new file mode 100644
index 0000000..0a1cd4f
--- /dev/null
+++ b/android/tools/proguard/docs/GPL_exception.html
@@ -0,0 +1,56 @@
+
+
+
+Special Exception to the GNU General Public License
+
+
+
Special Exception to the GNU General Public License
+This program is free software; you can redistribute it and/or modify it under
+the terms of the GNU General Public License as published by the Free Software
+Foundation; either version 2 of the License, or (at your option) any later
+version.
+
+
+
+This program is distributed in the hope that it will be useful, but WITHOUT
+ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+
+
+
+You should have received a copy of the GNU General Public License along with
+this program; if not, write to the Free Software Foundation, Inc., 59 Temple
+Place, Suite 330, Boston, MA 02111-1307 USA
+
+
+
+In addition, as a special exception, Eric Lafortune gives permission to link
+the code of this program with the following stand-alone applications:
+
+
Apache Ant,
+
Apache Maven,
+
the Google Android SDK,
+
the Eclipse ProGuardDT GUI,
+
the EclipseME JME IDE,
+
the Oracle NetBeans Java IDE,
+
the Oracle JME Wireless Toolkit,
+
the Simple Build Tool for Scala (and its scripts),
+
the NeoMAD Tools by Neomades,
+
the Javaground Tools, and
+
the Sanaware Tools,
+
+and distribute linked combinations including the two. You must obey the GNU
+General Public License in all respects for all of the code used other than
+these programs. If you modify this file, you may extend this exception to your
+version of the file, but you are not obligated to do so. If you do not wish to
+do so, delete this exception statement from your version.
+
+
+The first versions of ProGuard grew out of RetroGuard, which its
+author Mark Welsh kindly made available under the GNU Lesser General Public
+License. RetroGuard is a very nice piece of code, but it only performed
+obfuscation. I started from the class file parsing code and wrote my own
+shrinker, optimizer, obfuscator, and preverifier. As of version 4.0, all of the
+original code has been rewritten, so the most obvious remaining similarity are
+the program names.
+
+
+Dirk Schnelle has contributed and maintained the first versions of the Ant
+task. I have rewritten the implementation for version 3.0, but the XML schema
+is still based on his work.
+
+
+Since its first public release, many people have expressed their enthusiasm and
+have chimed in with interesting ideas, bug reports, and bug fixes: Thorsten
+Heit, Oliver Retzl, Jonathan Knudsen, Tarcisio Camara, Bob Drury, Dave Jarvis,
+Marc Chapman, Dave Morehouse, Richard Osbaldeston, Peter Hawkins, Mark
+Sherington, David Sitsky, James Manning, Ptolemy Oberin, Frank-Michael Moser,
+QZ Shines, Thomas Singer, Michele Puccini, Roman Bednarek, Natalia Pujol,
+Daniel Sjöblom, Jan Filipsky, Charles Smith, Gerrit Telkamp, Noel
+Grandin, Torbjörn Söderstedt, Clemens Eisserer, Clark Bassett,
+Eduard Welch, Dawid Weiss, Andrew Wilson, Sean Owen, Niels Gron, Ishan Mehta,
+Steven Adams, Xavier Kral, Stefan Martin, Toby Reyelts,
+and many others. Thanks! Your feedback has been invaluable.
+
+
+Saikoa is providing the
+financial resources for this project.
+
+
+SourceForge is providing the resources for hosting this
+project and many other projects.
+
+
+The code and these web pages were written using Oracle/Sun's JDKs, Linux,
+IntelliJ IDEA, GNU emacs, bash, sed, awk, and a whole host of other tools that
+continue to make programming interesting.
+
+
+There are quite a few Java class file shrinkers, optimizers, obfuscators, and
+preverifiers out there. Users of ProGuard tell me it easily compares
+with the best of them. However, you may want to check that out yourself.
+
+This is a list of the programs of which I'm aware. Obviously, I've never
+personally tested all of them. Many programs, even commercial ones, have been
+abandoned. Please drop me a note if you know of any other shrinkers,
+optimizers, obfuscators, or preverifiers, or if some information provided
+below is incorrect.
+
+
+ProGuard is distributed under the terms of the GNU General Public
+License. Please consult the license page for more
+details.
+
+ProGuard is written in Java, so it requires a Java Runtime Environment
+ (JRE 1.4 or higher).
+
+You can download the latest release (containing the program jar, the
+documentation you're reading now, examples, and the source code) from this
+location:
+
+
+If you're still working with an older version of ProGuard, check out
+the summary of changes below, to see if you're missing something essential.
+Better look at the up-to-date on-line version if
+you're reading a local copy of this page.
+
+The download section may also contain updates with sub-minor version numbers.
+These versions are typically released shortly after their parent versions, for
+applying emergency fixes. Please make sure to look at those if you are
+encountering any problems with recent releases.
+
+Finally, there may be beta versions of upcoming releases. They may be of
+interest too, because they typically contain any less urgent bug fixes
+collected since the previous release.
+
+
+
Dec 2011
Version 4.7
+
+
Added support for Java 7.
+
Parsing unquoted file names with special characters more leniently.
+
Added support for instance methods overriding class methods.
+
Added removal of unused parameterless constructors.
+
Added removal of empty class initializers.
+
Added peephole optimizations for constant strings.
+
Avoiding idle optimization passes.
+
Improved removal of unused constants after obfuscation.
+
Fixed removal of unused classes referenced by annotations.
+
Fixed simplifying parameters of constructors that should actually be
+ preserved.
+
Fixed simplifying parameters of large numbers of similar constructors.
+
Fixed exceptions in optimization of unusual obfuscated code.
+
Fixed NullPointerException when specifying -keepclassmembers
+ without specific class or class members.
+
Fixed potential problems with mixed-case class name dictionaries when not
+ allowing mixed-case class names.
+
Fixed obfuscation of classes with EnclosingMethod attributes that don't
+ specify methods.
+
Fixed preverification of returning try blocks with finally blocks, inside
+ try blocks, when compiled with JDK 1.4.
+
Fixed sorting of interfaces containing generics.
+
Fixed paths in shell scripts.
+
Fixed filling in of text fields showing class obfuscation dictionary and
+ package obfuscation dictionary from configuration in GUI.
+
Worked around Oracle Java 6/7 bug #7027598 that locked the GUI on Linux.
+
Updated documentation and examples.
+
+
+
Feb 2011
Version 4.6
+
+
Added support for synthetic, bridge, and varargs modifiers in configuration.
+
Added detection of atomic updater construction with constant arguments.
+
Fixed merging of package visible classes.
+
Fixed optimization of fields that are only accessed by reflection.
+
Fixed optimization of read-only or write-only fields that are volatile.
+
Fixed handling of side-effects due to static initializers.
+
Fixed handling of bridge flags in obfuscation step.
+
Fixed handling of super flag when merging classes.
+
Fixed updating of variable tables when optimizing variables.
+
Fixed removal of unused parameters with 32 or more parameters.
+
Fixed incorrect removal of exception handler for instanceof instruction.
+
Fixed inlining of methods with unusual exception handlers.
+
Fixed optimization of unusual code causing stack underflow.
+
Fixed keeping of constructor parameter names.
+
Fixed unwanted wrapping of non-standard META-INF files.
+
Fixed filtering of warnings about references to array types.
+
Fixed overriding of warning option and note option in Ant task.
+
Improved detection of file name extensions for canonical paths.
+
Improved printing of seeds specified by -keep options.
+
Improved printing of notes about unkept classes.
+
Improved checking whether output is up to date.
+
Updated documentation and examples.
+
+
+
Jun 2010
Version 4.5
+
+
Added option -keepparameternames.
+
-dontskipnonpubliclibraryclasses is now set by default. Added
+ -skipnonpubliclibraryclasses as an option.
+
Made processing independent of order of input classes to get even more
+ deterministic output.
+
Improved constant field propagation.
+
Improved renaming of resource files in subdirectories of packages.
+
Avoiding making fields in interfaces private.
+
Optimizing exception handlers for monitorexit instruction.
+
Reduced maximum allowed code length after inlining from 8000 bytes to
+ 7000 bytes.
+
Fixed missing warnings about missing library classes.
+
Fixed shrinking of annotations with arrays of length 0.
+
Fixed handling of -0.0 and NaN values when simplifying expressions.
+
Fixed copying of exception handlers when simplifying tail recursion calls.
+
Fixed optimization of introspected fields.
+
Fixed simplification of unnecessary variable initializations.
+
Fixed evaluation of subroutines in pre-JDK 1.5 code.
+
Fixed updating of access flags in inner classes information.
+
Fixed disabling of field privatization.
+
Fixed invocations of privatized methods.
+
Fixed updating of local variable debug information in optimization step.
+
Fixed print settings without file name in GUI.
+
Fixed field privatization setting in GUI.
+
Fixed saving incorrectly quoted arguments in GUI.
+
Fixed handling of regular expressions with only negators.
+
Fixed unwanted wrapping of non-standard META-INF files.
+
Fixed regular expression pattern for constructors in ReTrace.
+
Updated documentation and examples.
+
+
+
Jul 2009
Version 4.4
+
+
Added new peephole optimizations.
+
Added option -optimizations for fine-grained configuration of
+ optimizations.
+
Added option -adaptclassstrings for adapting string constants
+ that correspond to obfuscated classes.
+
Added option -keeppackagenames for keeping specified package
+ names from being obfuscated.
+
Added option -keepdirectories for keeping specified directory
+ entries in output jars.
+
Extended options -dontnote and -dontwarn for
+ fine-grained configuration of notes and warnings.
+
Added option -regex in ReTrace, for specifying alternative
+ regular expressions to parse stack traces.
+
Extended renaming of resource files based on obfuscation.
+
Improved inlining of constant parameters and removal of unused parameters.
+
Avoiding bug in IBM's JVM for JSE, in optimization step.
+
Avoiding ArrayIndexOutOfBoundsException in optimization step.
+
Fixed configuration with annotations that are not preserved themselves.
+
Fixed preverification of invocations of super constructors with arguments
+ containing ternary operators.
+
Fixed processing of unreachable exception handlers.
+
Fixed merging of exception classes.
+
Fixed repeated method inlining.
+
Fixed inlining of finally blocks surrounded by large try blocks, compiled
+ with JDK 1.4 or earlier.
+
Fixed optimization of complex finally blocks, compiled with JDK 1.4 or
+ earlier.
+
Fixed obfuscation of anonymous class names, if EnclosingMethod
+ attributes are being kept.
+
Fixed obfuscation of inner class names in generic types.
+
Fixed decoding of UTF-8 strings containing special characters.
+
Fixed copying of debug information and annotations when merging classes.
+
Fixed writing out of unknown attributes.
+
Fixed updating manifest files with split lines.
+
Updated documentation and examples.
+
+
+
Dec 2008
Version 4.3
+
+
Added class merging.
+
Added static single assignment analysis.
+
Added support for annotation and enumeration class types in configuration.
+
Refined shrinking of fields in case of unusual
+ -keepclassmembers options.
+
Fixed optimization of unusual initialization code causing
+ NullPointerExceptions.
+
Fixed optimization of half-used long and double parameters.
+
Fixed processing of complex generics signatures.
+
Working around suspected java compiler bug with parameter annotations on
+ constructors of non-static inner classes.
+
Fixed obfuscation of classes with inner classes whose names are preserved.
+
Fixed access of protected methods in repackaged classes.
+
Added options -classobfuscationdictionary and
+ -packageobfuscationdictionary.
+
Adapting more types of resource file names based on obfuscation.
+
Extended warnings about incorrect dependencies.
+
Added start-up scripts and build scripts.
+
Updated documentation and examples.
+
+
+
Mar 2008
Version 4.2
+
+
Refined data flow analysis in optimization step.
+
Fixed handling of exceptions when inlining subroutines.
+
Fixed inlining of incompatible code constructs between different java
+ versions.
+
Fixed computation of local variable frame size.
+
Fixed optimization of infinite loops.
+
Fixed optimization of subroutine invocations.
+
Fixed optimization of floating point remainder computations.
+
Fixed removal of unused parameters in method descriptors containing arrays
+ of longs or doubles.
+
Added undocumented java system properties
+ maximum.inlined.code.length (default is 8) and
+ maximum.resulting.code.length (defaults are 8000 for JSE and
+ 2000 for JME), for expert users who read release notes.
+
Fixed processing of generic types in Signature attributes in shrinking and
+ optimization steps.
+
Fixed processing of inner class names in Signature attributes in obfuscation
+ step.
+
Improved adapting resource file names following obfuscated class names.
+
Fixed interpretation of package names in GUI.
+
Fixed default settings for Xlets in GUI.
+
Updated documentation and examples.
+
+
+
Dec 2007
Version 4.1
+
+
Fixed shrinking of default annotation element values.
+
Fixed optimization of invocations of methods in same class that are
+ accessed through extensions.
+
Fixed optimization of invocations of synchronized methods without other
+ side-effects.
+
Fixed optimization of some non-returning subroutines.
+
Fixed handling of local variable debug information when inlining methods.
+
Avoiding StackOverflowErrors during optimization of complex methods.
+
Fixed obfuscation of potentially ambiguous non-primitive constants in
+ interfaces.
+
Fixed preverification of some code constructs involving String, Class, and
+ exception types.
+
The Ant task now allows empty <injars> and
+ <libraryjars> elements.
+
Updated documentation and examples.
+
+
+
Sep 2007
Version 4.0
+
+
Added preverifier for Java 6 and Java Micro Edition, with new options
+ -microedition and -dontpreverify.
+
Added new option -target to modify java version of processed
+ class files.
+
Made -keep options more orthogonal and flexible, with option
+ modifiers allowshrinking, allowoptimization, and
+ allowobfuscation.
+
Added new wildcards for class member descriptors: "***",
+ matching any type, and "...", matching any number of
+ arguments.
+
Added support for configuration by means of annotations.
+
Improved shrinking of unused annotations.
+
Added check on modification times of input and output, to avoid unnecessary
+ processing, with new option -forceprocessing.
+
Added new options -flattenpackagehierarchy and
+ -repackageclasses (replacing -defaultpackage) to
+ control obfuscation of package names.
+
Added new options -adaptresourcefilenames and
+ -adaptresourcefilecontents, with file filters, to update
+ resource files corresponding to obfuscated class names.
+
Added detection of dynamically accessed fields and methods.
+
Now treating Exceptions attributes as optional.
+
Now respecting naming rule for nested class names
+ (EnclosingClass$InnerClass) in obfuscation step, if
+ InnerClasses attributes or EnclosingMethod
+ attributes are being kept.
+
Added new inter-procedural optimizations: method inlining and propagation
+ of constant fields, constant arguments, and constant return values.
+
Added optimized local variable allocation.
+
Added more than 250 new peephole optimizations.
+
Improved making classes and class members public or protected.
+
Now printing notes on suspiciously unkept classes in parameters of
+ specified methods.
+
Now printing notes for class names that don't seem to be fully qualified.
+
Added support for uppercase filename extensions.
+
Added tool tips to the GUI.
+
Rewritten class file I/O code.
+
Updated documentation and examples.
+
+Upgrade considerations:
+
+
+
Since ProGuard now treats the Exceptions attribute as
+ optional, you may have to specify -keepattributes Exceptions,
+ notably when processing code that is to be used as a library.
+
+
ProGuard now preverifies code for Java Micro Edition, if you specify the
+ option -microedition. You then no longer need to process the
+ code with an external preverifier.
+
+
You should preferably specify -repackageclasses instead of the
+ old option name -defaultpackage.
+
+
+
Dec 2007
Version 3.11
+
+
Fixed optimization of invocations of methods in same class that are
+ accessed through extensions.
+
Fixed optimization of invocations of synchronized methods without other
+ side-effects.
+
Updated documentation and examples.
+
+
+
Aug 2007
Version 3.10
+
+
Now handling mixed-case input class names when
+ -dontusemixedcaseclassnames is specified.
+
Fixed optimization of synchronization on classes, as compiled by Eclipse
+ and Jikes.
+
Fixed optimization of switch statements with unreachable cases.
+
Avoiding merging subsequent identically named files.
+
Updated documentation and examples.
+
+
+
Jun 2007
Version 3.9
+
+
Fixed processing of .class constructs in Java 6.
+
Fixed repeated processing of .class constructs.
+
Fixed possible division by 0 in optimization step.
+
Fixed handling of variable instructions with variable indices larger than
+ 255.
+
Updated documentation and examples.
+
+
+
Mar 2007
Version 3.8
+
+
Fixed optimization of parameters used as local variables.
+
Fixed obfuscation with conflicting class member names.
+
Fixed incremental obfuscation with incomplete mapping file for library jars.
+
Updated documentation and examples.
+
+
+
Dec 2006
Version 3.7
+
+
Now accepting Java 6 class files.
+
Fixed shrinking of partially used annotations.
+
Improved incremental obfuscation, with new option
+ -useuniqueclassmembernames.
+
Printing more information in case of conflicting configuration and input.
+
Fixed optimization of repeated array length instruction.
+
Fixed optimization of subsequent try/catch/finally blocks with return
+ statements.
+
Fixed optimization of complex stack operations.
+
Fixed optimization of simple infinite loops.
+
Fixed optimization of expressions with constant doubles.
+
Tuned optimization to improve size reduction after preverification.
+
Fixed overflows of offsets in long code blocks.
+
Now allowing class names containing dashes.
+
Updated documentation and examples.
+
+
+
May 2006
Version 3.6
+
+
No longer automatically keeping classes in parameters of specified methods
+ from obfuscation and optimization (introduced in version 3.4).
+
Fixed inlining of interfaces that are used in .class constructs.
+
Fixed removal of busy-waiting loops reading volatile fields.
+
Fixed optimization of comparisons of known integers.
+
Fixed optimization of known branches.
+
Fixed optimization of method calls on arrays of interfaces.
+
Fixed optimization of method calls without side-effects.
+
Fixed optimization of nested try/catch/finally blocks with return
+ statements.
+
Fixed initialization of library classes that only appear in descriptors.
+
Fixed matching of primitive type wildcards in configuration.
+
Fixed the boilerplate specification for enumerations in the GUI.
+
Updated documentation and examples.
+
+
+
Jan 2006
Version 3.5
+
+
Fixed obfuscation of class members with complex visibility.
+
Fixed optimization bugs related to removal of unused parameters.
+
Fixed exception when optimizing code with many local variables.
+
Fixed exception when saving configuration with initializers in GUI.
+
Updated documentation and examples.
+
+
+
Jun 2005
Version 3.3
+
+
Extended optimizations: making methods private and static when possible,
+ making classes static when possible, removing unused parameters.
+
Made file names relative to the configuration files in which they are
+ specified. Added -basedirectory option.
+
Added -whyareyoukeeping option to get details on why given
+ classes and class members are being kept.
+
Added warnings for misplaced class files.
+
Improved printing of notes for Class.forName constructs.
+
Implemented 'assumenosideeffects' nested element in Ant task.
+
Improved processing of annotations.
+
Fixed reading and writing of parameter annotations.
+
Fixed various optimization bugs.
+
Fixed wildcards not matching '-' character.
+
Fixed wildcard bug and checkbox bugs in GUI.
+
Setting file chooser defaults in GUI.
+
Leaving room for growBox in GUI on Mac OS X.
+
Properly closing configuration files.
+
Updated documentation and examples.
+
+
+
Dec 2004
Version 3.2
+
+
Fixed JDK5.0 processing bugs.
+
Fixed optimization bugs.
+
Fixed relative paths in Ant task.
+
Improved speed of shrinking step.
+
Updated documentation and examples.
+
+
+
Nov 2004
Version 3.1
+
+
Improved obfuscation and shrinking of private class members.
+
Added inlining of interfaces with single implementations.
+
Added option to specify obfuscation dictionary.
+
Added option to read package visible library class members.
+
Extended support for JDK5.0 attributes.
+
Fixed various optimization bugs.
+
Modified Ant task to accept paths instead of filesets.
+
Fixed two Ant task bugs.
+
Updated documentation and examples.
+
+
+
Aug 2004
Version 3.0
+
+
Added bytecode optimization step, between shrinking step and obfuscation
+ step.
+
Generalized filtered recursive reading and writing of jars, wars, ears,
+ zips, and directories.
+
Added support for grouping input and output jars, wars, ears, zips, and
+ directories.
+
Added support for applying mapping files to library classes.
+
Removed -resourcejars option. Resources should now be read
+ using regular -injars options, using filters if necessary.
+
Rewrote Ant task. Input and output modification dates are not checked at
+ the moment. Minor changes in XML schema:
+
+
Filters now specified using attributes.
+
'outjars' now nested element instead of attribute.
+
'type' attribute of <method> element no
+ longer defaults to 'void'.
+
< and > characters now have to be
+ encoded in embedded configurations.
+
<proguardconfiguration> task no longer accepts
+ attributes.
+
+
Updated J2ME WTK plugin, now customizable through configuration file.
+
Updated GUI.
+
Fixed various processing bugs.
+
Fixed ReTrace parsing bugs.
+
Improved jar compression.
+
Updated documentation and examples.
+
+
+
Mar 2004
Version 2.1
+
+
Added support for JDK1.5 classes.
+
Added additional wildcard for matching primitive types.
+
Added possibility to switch off notes about duplicate class definitions.
+
Fixed use of multiple filters on output jars.
+
Fixed option to keep all attributes.
+
Fixed various Ant task bugs.
+
Updated documentation and examples.
+
+
+
Dec 2003
Version 2.0
+
+
Added a graphical user interface for ProGuard and ReTrace.
+
Added -applymapping option for incremental obfuscation.
+
Added support for filtering input and output files.
+
Added support for the J++ SourceDir attribute.
+
Improved detection of .class constructs.
+
Improved handling of misplaced manifest files.
+
Improved implementation of ReTrace.
+
Worked around String UTF-8 encoding bug affecting foreign characters.
+
Fixed exception when ignoring warnings.
+
Fixed various Ant task bugs.
+
Updated documentation and examples.
+
+
+
Aug 2003
Version 1.7
+
+
Fixed various Ant task bugs.
+
Fixed ClassCastException due to explicitly used abstract classes with
+ implicitly used interfaces targeted at JRE1.2 (the default in JDK1.4).
+
Fixed -defaultpackage bug for protected classes and class
+ members.
+
Fixed ReTrace bug when retracing without line number tables.
+
Worked around zip package problems with duplicate out entries and rogue
+ manifest files.
+
Added work-around for handling malformed legacy interface class files.
+
Updated documentation and examples.
+
+
+
May 2003
Version 1.6
+
+
Added support for Ant.
+
Added support for the J2ME Wireless Toolkit.
+
Added support for reading and writing directory hierarchies.
+
Added option for specifying resource jars and directories.
+
Added support for wildcards in class member specifications.
+
Improved handling of the -defaultpackage option.
+
Improved stack trace parsing in ReTrace tool.
+
Fixed processing of libraries containing public as well as non-public
+ extensions of non-public classes.
+
Fixed examples for processing libraries, midlets, and serializable code.
+
Updated documentation and examples.
+
+
+
Jan 2003
Version 1.5
+
+
Fixed processing of retrofitted library interfaces.
+
Fixed processing of .class constructs in internal classes
+ targeted at JRE1.2 (the default in JDK1.4).
+
Fixed -dump option when -outjar option is not
+ present.
+
Updated documentation and examples.
+
+
+
Nov 2002
Version 1.4
+
+
Now copying resource files over from the input jars to the output jar.
+
Added option to obfuscate using lower-case class names only.
+
Added better option for obfuscating native methods.
+
Added option not to ignore non-public library classes.
+
Added automatic .class detection for classes compiled with
+ Jikes.
+
Updated documentation and examples.
+
+
+
Sep 2002
Version 1.3
+
+
Added support for wildcards in class names.
+
Added tool to de-obfuscate stack traces.
+
Added options to print processing information to files.
+
Added option to rename source file attributes.
+
Fixed processing of implicitly used interfaces targeted at JRE1.2 (the
+ default in JDK1.4)
+
Fixed processing of configurations with negated access modifiers.
+
Fixed duplicate class entry bug.
+
Updated documentation and examples.
+
+
+
Aug 2002
Version 1.2
+
+
Improved speed.
+
Fixed processing of classes targeted at JRE1.2 (the default in JDK1.4)
+ with references to their own subclasses.
+
Fixed processing of static initializers in J2ME MIDP applications.
+
Fixed processing of retrofitted interfaces (again).
+
Added more flexible handling of white space in configuration.
+
Updated documentation.
+
+
+
Jul 2002
Version 1.1
+
+
Added automatic detection of Class.forName("MyClass"),
+ MyClass.class, and
+ (MyClass)Class.forName(variable).newInstance() constructs.
+ This greatly simplifies configuration.
+
Added options to keep class names and class member names without affecting
+ any shrinking. They are mostly useful for native methods and serializable
+ classes.
+
Fixed processing of retrofitted interfaces.
+
Added handling of missing/invalid manifest file in input jar.
+
Updated documentation and examples.
+
+
+
Jun 2002
Version 1.0
+
+
First public release, based on class parsing code from Mark Welsh's
+ RetroGuard.
+
+
+By now, I've invested a fair amount of time in ProGuard. You can help
+by providing feedback! If you have problems, bugs, bug fixes, ideas,
+encouragements, etc., please get in touch:
+
+
+
Through
+ Saikoa,
+ we provide professional support for ProGuard. If you find ProGuard useful
+ and you would like to have some professional backing, this is the place to
+ go.
+
+
The help forum (at SourceForge) is the right place to ask
+ questions about any problems you might have configuring and running
+ ProGuard. At this time, I can generally only assist other open source
+ projects though. If you're working on commercial software, please consider
+ our professional support above.
+
+
The open discussion forum (at SourceForge) offers a place
+ to share your thoughts and discuss new ideas.
+
+
The bug tracking page (at SourceForge) allows you to submit
+ and consult bug reports. Please make sure the reports are complete and
+ concise. If I can't reproduce the problem, I most likely can't fix it
+ either.
+
+
The feature request page (at SourceForge) allows you to
+ submit and consult feature requests. I generally have my own road map in
+ mind, but this is the place express your interest in new and existing
+ ideas.
+
+
The download section at SourceForge and the project page at FreshMeat offer the possibility to
+ subscribe to the announcements of new releases. They are the most
+ efficient way to stay abreast of the latest developments.
+
+
For anything that doesn't fall in the above categories, you can mail me
+ directly at
+
+
+
+.
+
+
+I can't promise a swift answer, or any answer at all, for that matter, but I
+like seeing any constructive comments.
+
+
+ProGuard isn't a typical open source project, in the sense that I am
+not looking for code contributions. Developing on my own allows me to
+do things my way, without the overhead and compromises associated with larger
+projects.
+
+
+ProGuard is a free Java class file shrinker, optimizer, obfuscator, and
+preverifier. It detects and removes unused classes, fields, methods, and
+attributes. It optimizes bytecode and removes unused instructions. It renames
+the remaining classes, fields, and methods using short meaningless names.
+Finally, it preverifies the processed code for Java 6 or for Java Micro
+Edition.
+
+
+Your browser doesn't support frames, but that's cool.
+
+
+ProGuard is free. You can use it freely for processing your
+applications, commercial or not. Your code obviously remains yours after
+having been processed, and its license can remain the same.
+
+
+ProGuard itself is copyrighted, but its distribution license provides
+you with some rights for modifying and redistributing its code and its
+documentation. More specifically, ProGuard is distributed under the
+terms of the GNU General Public License (GPL), version
+2, as published by the Free
+Software Foundation (FSF). In short, this means that you may freely
+redistribute the program, modified or as is, on the condition that you make
+the complete source code available as well. If you develop a program that is
+linked with
+ProGuard, the program as a whole has to be distributed at no charge
+under the GPL. I am granting a special
+exception to the latter clause (in wording suggested by
+the FSF), for combinations with the following stand-alone
+applications: Apache Ant, Apache Maven, the Google Android SDK, the Eclipse
+ProGuardDT GUI, the EclipseME JME IDE, the Oracle NetBeans Java IDE, the Oracle
+JME Wireless Toolkit, the Simple Build Tool for Scala, the NeoMAD Tools by
+Neomades, the Javaground Tools, and the Sanaware Tools.
+
+
+The ProGuard user documentation represents an important part of this
+work. It may only be redistributed without changes, along with the unmodified
+version of the code.
+
+
+ProGuard is a free Java class file shrinker, optimizer, obfuscator, and
+preverifier. It detects and removes unused classes, fields, methods, and
+attributes. It optimizes bytecode and removes unused instructions. It renames
+the remaining classes, fields, and methods using short meaningless names.
+Finally, it preverifies the processed code for Java 6 or for Java Micro
+Edition.
+
+Some uses of ProGuard are:
+
+
+
Creating more compact code, for smaller code archives, faster transfer
+ across networks, faster loading, and smaller memory footprints.
+
+
Making programs and libraries harder to reverse-engineer.
+
+
Listing dead code, so it can be removed from the source code.
+
+
Retargeting and preverifying existing class files for Java 6, to take full
+ advantage of Java 6's faster class loading.
+
+
+
+ProGuard's main advantage compared to other Java obfuscators is
+probably its compact template-based configuration. A few intuitive command
+line options or a simple configuration file are usually sufficient.
+The user manual explains all available options and shows examples of this
+powerful configuration style.
+
+ProGuard is fast. It only takes seconds to process programs and
+libraries of several megabytes. The results section presents actual figures
+for a number of applications.
+
+ProGuard is a command-line tool with an optional graphical user
+interface. It also comes with plugins for Ant and for the JME Wireless
+Toolkit.
+
+
+ProGuard is being used in various development contexts, ranging from
+small Android apps to large Java applications and libraries. Its user base is
+continuing to grow at a fast pace. In order to better manage the many
+questions and requests, we are now providing professional support at
+Saikoa.
+
+The following sections provide more detailed information:
+
+
+ProGuard can be run as a task in the Java-based build tool Ant (version
+1.6.0 or higher).
+
+
+Before you can use the proguard task, you have to tell Ant about
+this new task. The easiest way is to add the following line to your
+build.xml file:
+
+
+Please make sure the class path is set correctly for your system.
+
+
+There are three ways to configure the ProGuard task: using an external
+configuration file, using embedded ProGuard configuration options, or using
+the equivalent XML configuration tags. These three ways can be combined,
+depending on practical circumstances and personal preference.
+
+
+
1. An external ProGuard configuration file
+
+The simplest way to use the ProGuard task in an Ant build file is to keep your
+ProGuard configuration file, and include it from Ant. You can include your
+ProGuard configuration file by setting
+the configuration
+attribute of your
+proguard task. Your ant build file will then look like this:
+
+
+This is a convenient option if you prefer ProGuard's configuration style over
+XML, if you want to keep your build file small, or if you have to share your
+configuration with developers who don't use Ant.
+
+
+
2. Embedded ProGuard configuration options
+
+Instead of keeping an external ProGuard configuration file, you can also copy
+the contents of the file into the nested text of the proguard task
+(the PCDATA area). Your Ant build file will then look like this:
+
+
+Some minor syntactical changes are required in order to conform with the XML
+standard.
+
+
+Firstly, the # character cannot be used for comments in an XML
+file. Comments must be enclosed by an opening <!-- and a
+closing -->. All occurrences of the # character
+can be removed.
+
+
+Secondly, the use of < and > characters would
+upset the structure of the XML build file. Environment variables are now
+enclosed by an opening ${ and a closing }. This
+syntax also allows you to use Ant properties within the ProGuard
+configuration. Other occurrences of < and >
+have to be encoded as < and >.
+
+
+
3. XML configuration tags
+
+If you really prefer a full-blown XML configuration, you can replace the
+ProGuard configuration options by XML configuration tags. The resulting
+configuration will be equivalent, but much more verbose and difficult to read,
+as XML goes. The remainder of this page presents the supported tags. For a
+more extensive discussion of their meaning, please consult the traditional Usage section. You can find some sample configuration
+files in the examples/ant directory of the ProGuard distribution.
+
Read and merge options from the given ProGuard-style configuration
+ file. Note: for reading XML-style configurations, use the configuration
+ element.
Print warnings about unresolved references. Use the nested
+ element dontwarn for more fine-grained
+ control. Only use this option if you know what you're doing!
Write out the entire configuration in traditional ProGuard style, to the
+ standard output or to the given file. Useful to replace unreadable
+ XML configurations.
+
+
dump
+ = "boolean or filename"
+ (default = false)
+
Write out the internal structure of the processed class files, to the
+ standard output or to the given file.
Includes the configuration specified in the
+ <proguardconfiguration> task (or
+ <proguard> task) with the attribute id =
+ "ref_id". Note that only the nested elements of this configuration
+ are considered, not the attributes. Also note: for reading ProGuard-style
+ configuration files, use the configuration
+ attribute.
+
+The class member tags can have the following class_member_specification
+attributes:
+
+
+
+
access = "access_modifiers"
+
The optional access modifiers of the class. Any space-separated list of
+ "public", "protected", "private", "static", etc., with optional negators
+ "!".
+
+
annotation = "annotation_name"
+
The optional fully qualified name of an annotation of the class member,
+ with optional wildcards.
+
+
type = "type"
+
The optional fully qualified type of the class member, with optional
+ wildcards. Not applicable for constructors, but required for methods for
+ which the parameters attribute is specified.
+
+
name = "name"
+
The optional name of the class member, with optional wildcards. Not
+ applicable for constructors.
+
+
parameters = "parameters"
+
The optional comma-separated list of fully qualified method parameters,
+ with optional wildcards. Not applicable for fields, but required for
+ constructors, and for methods for which the type attribute is
+ specified.
+The GUI will pop up in a window. With the -nosplash option, you
+can switch off the short opening animation. If you have specified a ProGuard
+configuration file, it will be loaded. The GUI works like a wizard. You can
+edit the configuration and execute ProGuard through a few tabs:
+
Set up and run ReTrace, to de-obfuscate stack traces.
+
+
+
+You can freely toggle between the tabs by means of the buttons on the
+left-hand side of the window, or by means of the Previous and
+Next buttons at the bottom of the tabs. Tool tips briefly explain the
+purpose of the numerous options and text fields, although a basic
+understanding of the shrinking/optimization/obfuscation/preverification
+process is assumed. Please refer to the Introduction of this manual.
+
+
+The Input/Output tab contains two lists, respectively to specify the
+program jars (or wars, ears, zips, or directories), and the library jars (or
+wars, ears, zips, or directories).
+
+
+
The list of program jars contains input entries and output entries. Input
+ entries contain the class files and resource files to be processed. Output
+ entries specify the destinations to which the processed results will be
+ written. They are preceded by arrows, to distinguish them from input
+ entries. The results of each consecutive list of input entries will be
+ written to the subsequent consecutive list of output entries.
+
+
The library jars are not copied to the output jars; they contain class
+ files that are used by class files in the program jars and that are
+ necessary for correct processing. This list typically at least contains the
+ targeted Java runtime jar.
+
+
+
+Each of these lists can be edited by means of a couple of buttons on the
+right-hand side:
+
+
+
+
Add input...
opens a file chooser to add an
+ input entry to the list of program jars.
+
Add output...
opens a file chooser to add an
+ output entry to the list of program jars.
+
Add...
+
opens a file chooser to add an entry to the list of library
+ jars.
+
Edit...
+
opens a file chooser to edit the selected entry in the list.
+
Filter...
+
opens a text entry field to add or edit the filters of the selected
+ entries in the list.
+
Remove
+
removes the selected entries from the list.
+
Move up
+
moves the selected entries one position up the list.
+
Move down
+
moves the selected entries one position down the list.
+
Move to libraries
+
moves the selected entries in the list of program jars to the list of
+ library jars.
+
Move to program
+
moves the selected entries in the list of library jars to the list of
+ program jars.
+
+
+
+Filters allow to filter files based on their names. One can specify filters
+for class file names and resource file names, for jar file names, for war file
+names, for ear file names, and for zip file names. Multiple entries in the
+program list only make sense when combined with filters; each output file is
+written to the first entry with a matching filter.
+
+
+Input entries that are currently not readable are colored red.
+
+
+The order of the entries in each list may matter, as the first occurrence of
+any duplicate entries gets precedence, just as in conventional class paths.
+
+
+The Shrinking tab presents a number of options that affect the
+shrinking step. The basic options are followed by a few lists of classes and
+class members (fields and methods) that must be protected from shrinking (and
+implicitly from obfuscation as well).
+
+
+The fixed lists contain predefined entries that are typically useful for many
+applications. Each of these entries can be toggled by means of a check box.
+The text field following each entry allows to constrain the applicable classes
+by means of a comma-separated list of wildcarded, fully-qualified class
+names. The default is "*", which means that all input classes of the
+corresponding type are considered.
+
+
+For example, checking the Applications entry and filling in
+"myapplications.**" after it would mean: keep all classes that have main
+methods in the "myapplications" package and all of its subpackages.
+
+
+The variable list at the bottom allows to define additional entries
+yourself. The list can be edited by means of a couple of buttons on the
+right-hand side:
+
+
+
+
Add...
+
opens a window to add a new entry to the list.
+
Edit...
+
opens a window to edit the selected entry in the list.
+
Remove
+
removes the selected entries from the list.
+
Move up
+
moves the selected entries one position up the list.
+
Move down
+
moves the selected entries one position down the list.
+
+
+
+The interface windows allow to specify classes, fields, and methods. They
+contain text fields and check boxes to constrain these items. They have
+Ok and Cancel buttons to apply or to cancel the operation.
+
+
+For example, your application may be creating some classes dynamically using
+Class.forName. You should then specify them here, so they are kept
+by their original names. Press the Add... button to open the class
+window. Fill out the fully-qualified class name in the Code text field,
+and press the Ok button. Repeat this for all required classes. Wildcards
+can be helpful to specify a large number of related classes in one go. If you
+want to specify all implementations of a certain interface, fill out the
+fully qualified interface name in the Extends/implements class instead.
+
+
+For more advanced settings, it is advisable to become familiar with ProGuard's
+configuration options through the Usage section and
+the Examples section. We'll suffice with a brief
+overview of the three dialogs provided by the GUI.
+
+
+The keep class dialog appears when adding or editing new special keep
+entries. It has text fields and selections for specifying and constraining
+classes and class members to keep. The Advanced options / Basic
+options button at the bottom of the dialog allows to toggle showing the
+advanced options.
+
+
+
The Comments text field allows to add optional comments to this
+ entry. The comments will identify the entry in the list and they will
+ appear as comments in the configuration file.
+
+
The Keep selection allows to specify whether you want to protect
+ the specified classes and their specified class members, or just the
+ specified class members from the specified classes, or the specified
+ classes and the specified class members, if the class members are present.
+ Note that class members will only be protected if they are explicitly
+ specified, even if only by means of a wildcard.
+
+
The Allow selection allows to specify whether you want to allow the
+ the specified classes and their specified class members to be shrunk,
+ optimized and/or obfuscated.
+
+
The Access selections allows to specify constraints on the class or
+ classes, based on their access modifiers.
+
+
The Annotation text field takes the fully-qualified name of an
+ annotation that is required for matching classes. The annotation name can
+ contain wildcards. This is an advanced option for defining keep
+ annotations.
+
+
The Class text field takes the fully-qualified name of the class or
+ classes. The class name can contain wildcards.
+
+
The Annotation text field takes the fully-qualified name of an
+ annotation that is required for the class or interface that the above
+ class must extend. The annotation name can contain wildcards. This is an
+ advanced option for defining keep annotations.
+
+
The Extends/implements class text field takes the fully-qualified
+ name of the class or interface that the above classes must extend.
+
+
The Class members list allows to specify a list of fields and
+ methods to keep. It can be edited by means of a list of buttons on the
+ right-hand side.
+
+
+
+The keep field dialog appears when adding or editing fields within the
+above dialog. It has text fields and selections for specifying and
+constraining fields to keep. Again, the Advanced options / Basic
+options button at the bottom of the dialog allows to toggle showing the
+advanced options.
+
+
+
The Access selections allows to specify constraints on the field or
+ fields, based on their access modifiers.
+
+
The Annotation text field takes the fully-qualified name of an
+ annotation that is required for matching fields. The annotation name can
+ contain wildcards. This is an advanced option for defining keep
+ annotations.
+
+
The Return type text field takes the fully-qualified type of the
+ field or fields. The type can contain wildcards.
+
+
The Name text field takes the name of the field or fields. The field
+ name can contain wildcards.
+
+
+
+Similarly, the keep method dialog appears when adding or editing
+methods within the keep class dialog. It has text fields and selections for
+specifying and constraining methods to keep. Again, the Advanced
+options / Basic options button at the bottom of the dialog allows
+to toggle showing the advanced options.
+
+
+
The Access selections allows to specify constraints on the method or
+ methods, based on their access modifiers.
+
+
The Annotation text field takes the fully-qualified name of an
+ annotation that is required for matching methods. The annotation name can
+ contain wildcards. This is an advanced option for defining keep
+ annotations.
+
+
The Return type text field takes the fully-qualified type of the method or methods. The type can contain wildcards.
+
+
The Name text field takes the name of the method or methods. The
+ method name can contain wildcards.
+
+
The Arguments text field takes the comma-separated list of
+ fully-qualified method arguments. Each of these arguments can contain
+ wildcards.
+
+The Obfuscation tab presents a number of options that affect the
+obfuscation step. The basic options are followed by a few lists of classes and
+class members (fields and methods) that must be protected from obfuscation
+(but not necessarily from shrinking).
+
+
+The lists are manipulated in the same way as in the Shrinking Tab.
+
+
+The Optimization tab presents a number of options that affect the
+optimization step. The basic options are followed by a few lists of class
+method calls that can be removed if ProGuard can determine that their results
+are not being used.
+
+
+The lists are manipulated in much the same way as in the Shrinking Tab.
+
+
+The Information tab presents a number of options for preverification
+and targeting, and for the information that ProGuard returns when processing
+your code. The bottom list allows you to query ProGuard about why given
+classes and class members are being kept in the shrinking step.
+
+
+The Process tab has an output console for displaying the configuration
+and the messages while processing. There are three important buttons at the
+bottom:
+
+
+
+
View configuration
+
displays the current ProGuard configuration in the console.
+
Save configuration...
+
opens a file chooser to save the current ProGuard
+ configuration.
+
+The ReTrace tab has a panel with a few settings, an input text area for
+the obfuscated stack trace, and an output console to view the de-obfuscated
+stack trace:
+
+
+
The Verbose check box in the settings panel allows to toggle between
+ normal mode and verbose mode.
+
+
The Mapping file text field takes the name of the required mapping
+ file that ProGuard wrote while processing the original code. The file name
+ can be entered manually or by means of the Browse... button that
+ opens a file chooser.
+
+
The Obfuscated stack trace text area allows to enter the stack
+ trace, typically by copying and pasting it from elsewhere. Alternatively,
+ it can be loaded from a file by means of the load button below.
+
+
+There are two buttons at the bottom:
+
+
+
+
Load stack trace...
+
opens a file chooser to load an obfuscated stack trace.
+
+ProGuard is a Java class file shrinker, optimizer, obfuscator, and
+preverifier. The shrinking step detects and removes unused classes, fields,
+methods, and attributes. The optimization step analyzes and optimizes the
+bytecode of the methods. The obfuscation step renames the remaining classes,
+fields, and methods using short meaningless names. These first steps make the
+code base smaller, more efficient, and harder to reverse-engineer. The final
+preverification step adds preverification information to the classes, which is
+required for Java Micro Edition or which improves the start-up time for Java
+6.
+
+Each of these steps is optional. For instance, ProGuard can also be used to
+just list dead code in an application, or to preverify class files for
+efficient use in Java 6.
+
+
+ProGuard typically reads the input jars (or wars, ears, zips, or
+directories). It then shrinks, optimizes, obfuscates, and preverifies them.
+Optionally, multiple optimization passes can be performed, each typically
+followed by another shrinking step. ProGuard writes the processed results to
+one or more output jars (or wars, ears, zips, or directories). The
+input may contain resource files, whose names and contents can optionally be
+updated to reflect the obfuscated class names.
+
+ProGuard requires the library jars (or wars, ears, zips, or
+directories) of the input jars to be specified. These are essentially the
+libraries that you would need for compiling the code. ProGuard uses them to
+reconstruct the class dependencies that are necessary for proper processing.
+The library jars themselves always remain unchanged. You should still put them
+in the class path of your final application.
+
+
Entry points
+
+In order to determine which code has to be preserved and which code can be
+discarded or obfuscated, you have to specify one or more entry points to
+your code. These entry points are typically classes with main methods, applets,
+midlets, etc.
+
+
In the shrinking step, ProGuard starts from these seeds and
+ recursively determines which classes and class members are used. All other
+ classes and class members are discarded.
+
+
In the optimization step, ProGuard further optimizes the code.
+ Among other optimizations, classes and methods that are not entry points
+ can be made private, static, or final, unused parameters can be removed,
+ and some methods may be inlined.
+
+
In the obfuscation step, ProGuard renames classes and class members
+ that are not entry points. In this entire process, keeping the entry
+ points ensures that they can still be accessed by their original names.
+
+
The preverification step is the only step that doesn't have to know
+ the entry points.
+
+Reflection and introspection present particular problems for any automatic
+processing of code. In ProGuard, classes or class members in your code that
+are created or invoked dynamically (that is, by name) have to be specified as
+entry points too. For example, Class.forName() constructs may
+refer to any class at run-time. It is generally impossible to foresee which
+classes have to be preserved (with their original names), since the class
+names might be read from a configuration file, for instance. You therefore
+have to specify them in your ProGuard configuration, with the same
+simple -keep options.
+
+However, ProGuard will already detect and handle the following cases for you:
+
+
+
Class.forName("SomeClass")
+
SomeClass.class
+
SomeClass.class.getField("someField")
+
SomeClass.class.getDeclaredField("someField")
+
SomeClass.class.getMethod("someMethod", new Class[] {})
+
SomeClass.class.getMethod("someMethod", new Class[] { A.class })
+
SomeClass.class.getMethod("someMethod", new Class[] { A.class, B.class })
+
SomeClass.class.getDeclaredMethod("someMethod", new Class[] {})
+
SomeClass.class.getDeclaredMethod("someMethod", new Class[] { A.class })
+
SomeClass.class.getDeclaredMethod("someMethod", new Class[] { A.class, B.class })
+
+The names of the classes and class members may of course be different, but the
+constructs should be literally the same for ProGuard to recognize them. The
+referenced classes and class members are preserved in the shrinking phase, and
+the string arguments are properly updated in the obfuscation phase.
+
+Furthermore, ProGuard will offer some suggestions if keeping some classes or
+class members appears necessary. For example, ProGuard will note constructs
+like "(SomeClass)Class.forName(variable).newInstance()". These
+might be an indication that the class or interface SomeClass
+and/or its implementations may need to be preserved. You can then adapt your
+configuration accordingly.
+
+For proper results, you should at least be somewhat familiar with the code
+that you are processing. Obfuscating code that performs a lot of reflection
+may require trial and error, especially without the necessary information
+about the internals of the code.
+
+
+
+When using ProGuard, you should be aware of a few technical issues, all of
+which are easily avoided or resolved:
+
+
+
+
For best results, ProGuard's optimization algorithms assume that the
+ processed code never intentionally throws NullPointerExceptions or
+ ArrayIndexOutOfBoundsExceptions, or even OutOfMemoryErrors or
+ StackOverflowErrors, in order to achieve something useful. For instance,
+ it may remove a method call myObject.myMethod() if that call
+ wouldn't have any effect. It ignores the possibility that
+ myObject might be null, causing a NullPointerException. In
+ some way this is a good thing: optimized code may throw fewer exceptions.
+ Should this entire assumption be false, you'll have to switch off
+ optimization using the -dontoptimize option.
+
+
ProGuard's optimization algorithms currently also assume that the
+ processed code never creates busy-waiting loops without at least
+ testing on a volatile field. Again, it may remove such loops. Should this
+ assumption be false, you'll have to switch off optimization using
+ the -dontoptimize option.
+
+
If an input jar and a library jar contain classes in the same
+ package, the obfuscated output jar may contain class names that
+ overlap with class names in the library jar. This is most likely if the
+ library jar has been obfuscated before, as it will then probably contain
+ classes named 'a', 'b', etc. Packages should therefore never be split
+ across input jars and library jars.
+
+
When obfuscating, ProGuard writes out class files named
+ "a.class", "b.class", etc. If a package contains
+ a large number of classes, ProGuard may also write out
+ "aux.class". Inconveniently, Windows refuses to create
+ files with this reserved name (among a few other names). It's generally
+ better to write the output to a jar, in order to avoid such problems.
+
+The optimization step of ProGuard can be switched off with the
+-dontoptimize option. For
+more fine-grained control over individual optimizations, experts can use the
+-optimizations option,
+with a filter based on the optimization names listed below. The filter works
+like any filter in ProGuard.
+
+
+The following wildcards are supported:
+
+
+
?
+
matches any single character in an optimization name.
+
*
+
matches any part of an optimization name.
+
+
+An optimization that is preceded by an exclamation mark '!' is
+excluded from further attempts to match with subsequent
+optimization names in the filter. Make sure to specify filters correctly,
+since they are not checked for potential typos.
+
+
+For example,
+"code/simplification/variable,code/simplification/arithmetic"
+only performs the two specified peephole optimizations.
+
+
+For example, "!method/propagation/*" performs all optimizations,
+except the ones that propagate values between methods.
+
+
+For example,
+"!code/simplification/advanced,code/simplification/*" only
+performs all peephole optimizations.
+
+Some optimizations necessarily imply other optimizations. These are then
+indicated. Note that the list is likely to change over time, as optimizations
+are added and reorganized.
+
+
+
+
class/marking/final
+
Marks classes as final, whenever possible.
+
+
class/merging/vertical
+
Merges classes vertically in the class hierarchy, whenever possible.
+
+
class/merging/horizontal
+
Merges classes horizontally in the class hierarchy, whenever possible.
+
+
(⇒ code/removal/advanced)
+ field/removal/writeonly
+
Removes write-only fields.
+
+
field/marking/private
+
Marks fields as private, whenever possible.
+
+
(⇒ code/simplification/advanced)
+ field/propagation/value
+
Propagates the values of fields across methods.
+
+
method/marking/private
+
Marks methods as private, whenever possible (devirtualization).
+
+
(⇒ code/removal/advanced)
+ method/marking/static
+
Marks methods as static, whenever possible (devirtualization).
+
+
method/marking/final
+
Marks methods as final, whenever possible.
+
+
(⇒ code/removal/advanced)
+ method/removal/parameter
+
Removes unused method parameters.
+
+
(⇒ code/simplification/advanced)
+ method/propagation/parameter
+
Propagates the values of method parameters from method invocations to
+ the invoked methods.
+
+
(⇒ code/simplification/advanced)
+ method/propagation/returnvalue
+
Propagates the values of method return values from methods to their
+ invocations.
Class names must always be fully qualified, i.e. including their package
+ names.
+
Types in classname, annotationtype, returntype, and
+ argumenttype can contain wildcards: '?' for a
+ single character, '*' for any number of characters
+ (but not the package separator), '**' for any number
+ of (any) characters, '%' for any primitive type,
+ '***' for any type, and '...' for any number of arguments.
+
fieldname and methodname can contain wildcards as well:
+ '?' for a single character and '*'
+ for any number of characters.
+
+Now assume the processed application throws an exception, and we have saved the
+stack trace in proguard.trace, shown below. Of course, in real
+life ProGuard rarely throws exceptions, so this is a purposely generated
+exception. :)
+
+
+Exception in thread "main" java.lang.Error: Random exception
+ at pro.bY.a(ProGuard:576)
+ at pro.bO.a(ProGuard:431)
+ at pro.bj.a(ProGuard:145)
+ at pro.bY.a(ProGuard:522)
+ at pro.bj.a(ProGuard:129)
+ at pro.bN.a(ProGuard:125)
+ at pro.bY.a(ProGuard:251)
+ at pro.bY.a(ProGuard:229)
+ at pro.l.a(ProGuard:55)
+ at pro.bo.b(ProGuard:405)
+ at pro.ci.a(ProGuard:51)
+ at pro.bo.a(ProGuard:356)
+ at pro.be.a(ProGuard:109)
+ at pro.bo.a(ProGuard:356)
+ at pro.be.a(ProGuard:186)
+ at pro.bg.a(ProGuard:369)
+ at pro.bY.a(ProGuard:286)
+ at pro.bh.a(ProGuard:55)
+ at pro.bg.b(ProGuard:408)
+ at pro.bY.a(ProGuard:190)
+ at pro.bg.a(ProGuard:369)
+ at pro.M.a(ProGuard:110)
+ at pro.bY.a(ProGuard:449)
+ at pro.M.a(ProGuard:99)
+ at pro.bo.a(ProGuard:372)
+ at pro.bY.a(ProGuard:649)
+ at pro.bY.a(ProGuard:112)
+ at pro.P.a(ProGuard:66)
+ at pro.p.a(ProGuard:83)
+ at pro.bU.a(ProGuard:69)
+ at pro.bo.a(ProGuard:356)
+ at pro.J.a(ProGuard:149)
+ at pro.I.a(ProGuard:49)
+ at pro.J.a(ProGuard:105)
+ at pro.cf.c(ProGuard:370)
+ at pro.cf.a(ProGuard:317)
+ at pro.bc.a(ProGuard:55)
+ at proguard.ProGuard.a(ProGuard:363)
+ at proguard.ProGuard.c(ProGuard:187)
+ at proguard.ProGuard.b(ProGuard:385)
+ at proguard.ProGuard.main(ProGuard:429)
+
+
+
+We can then use the following command to recover the stack trace:
+
+Exception in thread "main" java.lang.Error: Random exception
+ at proguard.shrink.UsageMarker.visitInstruction(ProGuard:576)
+ at proguard.classfile.instruction.GenericInstruction.accept(ProGuard:431)
+ at proguard.classfile.CodeAttrInfo.instructionsAccept(ProGuard:145)
+ at proguard.shrink.UsageMarker.visitCodeAttrInfo(ProGuard:522)
+ at proguard.classfile.CodeAttrInfo.accept(ProGuard:129)
+ at proguard.classfile.ProgramMemberInfo.attributesAccept(ProGuard:125)
+ at proguard.shrink.UsageMarker.visitMemberInfo(ProGuard:251)
+ at proguard.shrink.UsageMarker.visitProgramMethodInfo(ProGuard:229)
+ at proguard.classfile.ProgramMethodInfo.accept(ProGuard:55)
+ at proguard.classfile.ProgramClassFile.methodAccept(ProGuard:405)
+ at proguard.classfile.visitor.NamedMethodVisitor.visitProgramClassFile(ProGuard:51)
+ at proguard.classfile.ProgramClassFile.accept(ProGuard:356)
+ at proguard.classfile.visitor.ClassFileUpDownTraveler.visitProgramClassFile(ProGuard:109)
+ at proguard.classfile.ProgramClassFile.accept(ProGuard:356)
+ at proguard.classfile.visitor.ClassFileUpDownTraveler.visitLibraryClassFile(ProGuard:186)
+ at proguard.classfile.LibraryClassFile.accept(ProGuard:369)
+ at proguard.shrink.UsageMarker.visitLibraryMethodInfo(ProGuard:286)
+ at proguard.classfile.LibraryMethodInfo.accept(ProGuard:55)
+ at proguard.classfile.LibraryClassFile.methodsAccept(ProGuard:408)
+ at proguard.shrink.UsageMarker.visitLibraryClassFile(ProGuard:190)
+ at proguard.classfile.LibraryClassFile.accept(ProGuard:369)
+ at proguard.classfile.ClassCpInfo.referencedClassAccept(ProGuard:110)
+ at proguard.shrink.UsageMarker.visitClassCpInfo(ProGuard:449)
+ at proguard.classfile.ClassCpInfo.accept(ProGuard:99)
+ at proguard.classfile.ProgramClassFile.constantPoolEntryAccept(ProGuard:372)
+ at proguard.shrink.UsageMarker.markCpEntry(ProGuard:649)
+ at proguard.shrink.UsageMarker.visitProgramClassFile(ProGuard:112)
+ at proguard.classfile.visitor.VariableClassFileVisitor.visitProgramClassFile(ProGuard:66)
+ at proguard.classfile.visitor.MultiClassFileVisitor.visitProgramClassFile(ProGuard:83)
+ at proguard.classfile.visitor.FilteredClassFileVisitor.visitProgramClassFile(ProGuard:69)
+ at proguard.classfile.ProgramClassFile.accept(ProGuard:356)
+ at proguard.classfile.ClassPool.classFileAccept(ProGuard:149)
+ at proguard.classfile.visitor.NamedClassFileVisitor.visitClassPool(ProGuard:49)
+ at proguard.classfile.ClassPool.accept(ProGuard:105)
+ at proguard.KeepCommand.executeShrinkingPhase(ProGuard:370)
+ at proguard.KeepCommand.execute(ProGuard:317)
+ at proguard.CompoundCommand.execute(ProGuard:55)
+ at proguard.ProGuard.executeCommands(ProGuard:363)
+ at proguard.ProGuard.shrink(ProGuard:187)
+ at proguard.ProGuard.execute(ProGuard:385)
+ at proguard.ProGuard.main(ProGuard:429)
+
+Exception in thread "main" java.lang.Error: Random exception
+ at proguard.shrink.UsageMarker.void visitInstruction(proguard.classfile.ClassFile,proguard.classfile.instruction.Instruction)(ProGuard:576)
+ at proguard.classfile.instruction.GenericInstruction.void accept(proguard.classfile.ClassFile,proguard.classfile.instruction.InstructionVisitor)(ProGuard:431)
+ at proguard.classfile.CodeAttrInfo.void instructionsAccept(proguard.classfile.ClassFile,proguard.classfile.instruction.InstructionVisitor)(ProGuard:145)
+ at proguard.shrink.UsageMarker.void visitCodeAttrInfo(proguard.classfile.ClassFile,proguard.classfile.CodeAttrInfo)(ProGuard:522)
+ at proguard.classfile.CodeAttrInfo.void accept(proguard.classfile.ClassFile,proguard.classfile.visitor.AttrInfoVisitor)(ProGuard:129)
+ at proguard.classfile.ProgramMemberInfo.void attributesAccept(proguard.classfile.ProgramClassFile,proguard.classfile.visitor.AttrInfoVisitor)(ProGuard:125)
+ at proguard.shrink.UsageMarker.void visitMemberInfo(proguard.classfile.ProgramClassFile,proguard.classfile.ProgramMemberInfo)(ProGuard:251)
+ at proguard.shrink.UsageMarker.void visitProgramMethodInfo(proguard.classfile.ProgramClassFile,proguard.classfile.ProgramMethodInfo)(ProGuard:229)
+ at proguard.classfile.ProgramMethodInfo.void accept(proguard.classfile.ProgramClassFile,proguard.classfile.visitor.MemberInfoVisitor)(ProGuard:55)
+ at proguard.classfile.ProgramClassFile.void methodAccept(proguard.classfile.visitor.MemberInfoVisitor,java.lang.String,java.lang.String)(ProGuard:405)
+ at proguard.classfile.visitor.NamedMethodVisitor.void visitProgramClassFile(proguard.classfile.ProgramClassFile)(ProGuard:51)
+ at proguard.classfile.ProgramClassFile.void accept(proguard.classfile.visitor.ClassFileVisitor)(ProGuard:356)
+ at proguard.classfile.visitor.ClassFileUpDownTraveler.void visitProgramClassFile(proguard.classfile.ProgramClassFile)(ProGuard:109)
+ at proguard.classfile.ProgramClassFile.void accept(proguard.classfile.visitor.ClassFileVisitor)(ProGuard:356)
+ at proguard.classfile.visitor.ClassFileUpDownTraveler.void visitLibraryClassFile(proguard.classfile.LibraryClassFile)(ProGuard:186)
+ at proguard.classfile.LibraryClassFile.void accept(proguard.classfile.visitor.ClassFileVisitor)(ProGuard:369)
+ at proguard.shrink.UsageMarker.void visitLibraryMethodInfo(proguard.classfile.LibraryClassFile,proguard.classfile.LibraryMethodInfo)(ProGuard:286)
+ at proguard.classfile.LibraryMethodInfo.void accept(proguard.classfile.LibraryClassFile,proguard.classfile.visitor.MemberInfoVisitor)(ProGuard:55)
+ at proguard.classfile.LibraryClassFile.void methodsAccept(proguard.classfile.visitor.MemberInfoVisitor)(ProGuard:408)
+ at proguard.shrink.UsageMarker.void visitLibraryClassFile(proguard.classfile.LibraryClassFile)(ProGuard:190)
+ at proguard.classfile.LibraryClassFile.void accept(proguard.classfile.visitor.ClassFileVisitor)(ProGuard:369)
+ at proguard.classfile.ClassCpInfo.void referencedClassAccept(proguard.classfile.visitor.ClassFileVisitor)(ProGuard:110)
+ at proguard.shrink.UsageMarker.void visitClassCpInfo(proguard.classfile.ClassFile,proguard.classfile.ClassCpInfo)(ProGuard:449)
+ at proguard.classfile.ClassCpInfo.void accept(proguard.classfile.ClassFile,proguard.classfile.visitor.CpInfoVisitor)(ProGuard:99)
+ at proguard.classfile.ProgramClassFile.void constantPoolEntryAccept(proguard.classfile.visitor.CpInfoVisitor,int)(ProGuard:372)
+ at proguard.shrink.UsageMarker.void markCpEntry(proguard.classfile.ClassFile,int)(ProGuard:649)
+ at proguard.shrink.UsageMarker.void visitProgramClassFile(proguard.classfile.ProgramClassFile)(ProGuard:112)
+ at proguard.classfile.visitor.VariableClassFileVisitor.void visitProgramClassFile(proguard.classfile.ProgramClassFile)(ProGuard:66)
+ at proguard.classfile.visitor.MultiClassFileVisitor.void visitProgramClassFile(proguard.classfile.ProgramClassFile)(ProGuard:83)
+ at proguard.classfile.visitor.FilteredClassFileVisitor.void visitProgramClassFile(proguard.classfile.ProgramClassFile)(ProGuard:69)
+ at proguard.classfile.ProgramClassFile.void accept(proguard.classfile.visitor.ClassFileVisitor)(ProGuard:356)
+ at proguard.classfile.ClassPool.void classFileAccept(proguard.classfile.visitor.ClassFileVisitor,java.lang.String)(ProGuard:149)
+ at proguard.classfile.visitor.NamedClassFileVisitor.void visitClassPool(proguard.classfile.ClassPool)(ProGuard:49)
+ at proguard.classfile.ClassPool.void accept(proguard.classfile.visitor.ClassPoolVisitor)(ProGuard:105)
+ at proguard.KeepCommand.void executeShrinkingPhase(proguard.classfile.ClassPool,proguard.classfile.ClassPool)(ProGuard:370)
+ at proguard.KeepCommand.void execute(int,proguard.classfile.ClassPool,proguard.classfile.ClassPool)(ProGuard:317)
+ at proguard.CompoundCommand.void execute(int,proguard.classfile.ClassPool,proguard.classfile.ClassPool)(ProGuard:55)
+ at proguard.ProGuard.void executeCommands(int)(ProGuard:363)
+ at proguard.ProGuard.void shrink()(ProGuard:187)
+ at proguard.ProGuard.void execute(java.lang.String[])(ProGuard:385)
+ at proguard.ProGuard.void main(java.lang.String[])(ProGuard:429)
+
+
+Assume for instance ProGuard itself has been obfuscated using the following
+extra options, this time without preserving the line number tables:
+
+-printmapping proguard.map
+
+
+
+A stack trace proguard.trace will then lack line number
+information:
+
+Exception in thread "main" java.lang.Error: Random exception
+ at pro.bY.a(Unknown Source)
+ at pro.bO.a(Unknown Source)
+ at pro.bj.a(Unknown Source)
+ at pro.bY.a(Unknown Source)
+ at pro.bj.a(Unknown Source)
+ at pro.bN.a(Unknown Source)
+ at pro.bY.a(Unknown Source)
+ at pro.bY.a(Unknown Source)
+ at pro.l.a(Unknown Source)
+ at pro.bo.b(Unknown Source)
+ at pro.ci.a(Unknown Source)
+ at pro.bo.a(Unknown Source)
+ at pro.be.a(Unknown Source)
+ at pro.bo.a(Unknown Source)
+ at pro.be.a(Unknown Source)
+ at pro.bg.a(Unknown Source)
+ at pro.bY.a(Unknown Source)
+ at pro.bh.a(Unknown Source)
+ at pro.bg.b(Unknown Source)
+ at pro.bY.a(Unknown Source)
+ at pro.bg.a(Unknown Source)
+ at pro.M.a(Unknown Source)
+ at pro.bY.a(Unknown Source)
+ at pro.M.a(Unknown Source)
+ at pro.bo.a(Unknown Source)
+ at pro.bY.a(Unknown Source)
+ at pro.bY.a(Unknown Source)
+ at pro.P.a(Unknown Source)
+ at pro.p.a(Unknown Source)
+ at pro.bU.a(Unknown Source)
+ at pro.bo.a(Unknown Source)
+ at pro.J.a(Unknown Source)
+ at pro.I.a(Unknown Source)
+ at pro.J.a(Unknown Source)
+ at pro.cf.c(Unknown Source)
+ at pro.cf.a(Unknown Source)
+ at pro.bc.a(Unknown Source)
+ at proguard.ProGuard.a(Unknown Source)
+ at proguard.ProGuard.c(Unknown Source)
+ at proguard.ProGuard.b(Unknown Source)
+ at proguard.ProGuard.main(Unknown Source)
+
+
+
+We can still use the same command to recover the stack trace:
+
+
+ReTrace is a companion tool for ProGuard that 'de-obfuscates'
+stack traces.
+
+When an obfuscated program throws an exception, the resulting stack trace
+typically isn't very informative. Class names and method names have been
+replaced by short meaningless strings. Source file names and line numbers are
+missing altogether. While this may be intentional, it can also be inconvenient
+when debugging problems.
+
+
+
+
+
+
Original code
+
- ProGuard →
+
Obfuscated code
+
+
+
+
+
↓
+
↓
+
+
+
+
Mapping file
+
↓
+
+
+
+
↓
+
↓
+
+
+
+
Readable stack trace
+
← ReTrace -
+
Obfuscated stack trace
+
+
+
+
+ReTrace can read an obfuscated stack trace and restore it to what it would
+look like without obfuscation. The restoration is based on the mapping file
+that ProGuard can write out during obfuscation. The mapping file links the
+original class names and class member names to their obfuscated names.
+
+
Specifies the name of the mapping file, produced by ProGuard with the
+ option
+ "-printmappingmapping_file",
+ while obfuscating the application that produced the stack trace.
+
+
stacktrace_file
+
+
Optionally specifies the name of the file containing the stack trace. If
+ no file is specified, a stack trace is read from the standard input. Blank
+ lines and unrecognized lines are ignored, as far as possible.
+
+
+The following options are supported:
+
+
-verbose
+
+
Specifies to print out more informative stack traces that include not only
+ method names, but also method return types and arguments.
+
+
-regexregular_expression
+
+
Specifies the regular expression that is used to parse the lines in the
+ stack trace. Specifying a different regular expression allows to
+ de-obfuscate more general types of input than just stack traces. The
+ default is suitable for stack traces produced by most JVMs:
+
+ The regular expression is a Java regular expression (cfr. the documentation
+ of java.util.regex.Pattern), with a few additional wildcards:
+
+
%c
+
matches a class name (e.g.
+ "myapplication.MyClass").
+
%C
+
matches a class name with slashes (e.g.
+ "myapplication/MyClass").
+
%t
+
matches a field type or method return type (e.g.
+ "myapplication.MyClass[]").
+
%f
+
matches a field name (e.g.
+ "myField").
+
%m
+
matches a method name (e.g.
+ "myMethod").
+
%a
+
matches a list of method arguments (e.g.
+ "boolean,int").
+
%l
+
matches a line number inside a method (e.g.
+ "123").
+
+ Elements that match these wildcards are de-obfuscated, when possible. Note
+ that regular expressions must not contain any capturing groups. Use
+ non-capturing groups instead: (?:...)
+
+
+
+The restored stack trace is printed to the standard output. The completeness
+of the restored stack trace depends on the presence of line number tables in
+the obfuscated class files:
+
+
+
If all line numbers have been preserved while obfuscating the application,
+ ReTrace will be able to restore the stack trace completely.
+
+
If the line numbers have been removed, mapping obfuscated method names
+ back to their original names has become ambiguous. Retrace will list all
+ possible original method names for each line in the stack trace. The user
+ can then try to deduce the actual stack trace manually, based on the logic
+ of the program.
+
+
+
+
+Preserving line number tables is explained in detail in this example in the ProGuard User Manual.
+
+
+Unobfuscated elements and obfuscated elements for which no mapping is available
+will be left unchanged.
+
+
+
+While preparing a configuration for processing your code, you may bump into a
+few problems. The following sections discuss some common issues and solutions:
+
+
ProGuard can't find a class or interface that your code is accessing by
+ means of introspection. You should check if you want to add the jar that
+ contains this class.
ProGuard lists all class casts of dynamically created class instances,
+ like "(MyClass)Class.forName(variable).newInstance()".
+ Depending on your application, you may need to keep the mentioned classes
+ with an option like "-keep class MyClass", or their
+ implementations with an option like "-keep class * implements
+ MyClass". You can switch off these notes by specifying the
+ -dontnote option.
ProGuard lists a number of constructs like
+ ".getField("myField")". Depending on your application, you
+ may need to figure out where the mentioned class members are defined and
+ keep them with an option like "-keep class MyClass { MyFieldType
+ myField; }". Otherwise, ProGuard might remove or obfuscate the
+ class members, since it can't know which ones they are exactly. It does
+ list possible candidates, for your information. You can switch off these
+ notes by specifying the -dontnote option.
Your configuration contains a -keep option to preserve the
+ given method (or field), but no -keep option for the given
+ class that is an argument type or return type in the method's descriptor.
+ You may then want to keep the class too. Otherwise, ProGuard will
+ obfuscate its name, thus changing the method's signature. The method might
+ then become unfindable as an entry point, e.g. if it is part of a public
+ API. You can switch off these notes by specifying the -dontnote option.
Your configuration contains
+ a -keepclassmembers/-keepclasseswithmembers option to
+ preserve fields or methods in the given class, but it doesn't specify
+ which fields or methods. This way, the option simply won't have any
+ effect. You probably want to specify one or more fields or methods, as
+ usual between curly braces. You can specify all fields or methods with a
+ wildcard "*;". You can switch off these notes by specifying
+ the -dontnote option.
Your program jars or library jars contain multiple definitions of the
+ listed classes. ProGuard continues processing as usual, only considering
+ the first definitions. The warning may be an indication of some problem
+ though, so it's advisable to remove the duplicates. A convenient way to do
+ so is by specifying filters on the input jars or library jars. You can
+ switch off these notes by specifying the -dontnote option.
Your input jars contain multiple resource files with the same name.
+ ProGuard continues copying the resource files as usual, skipping any files
+ with previously used names. Once more, the warning may be an indication of
+ some problem though, so it's advisable to remove the duplicates. A
+ convenient way to do so is by specifying filters on the input jars. There
+ is no option to switch off these warnings.
+
+
+
+
+ProGuard may terminate when it encounters parsing errors or I/O errors, or
+some more serious warnings:
+
+
If there are unresolved references to classes or interfaces, you most
+ likely forgot to specify an essential library. For proper processing, all
+ libraries that are referenced by your code must be specified, including
+ the Java run-time library. For specifying libraries, use
+ the -libraryjars option.
+
+ For example, if ProGuard complains that it can't find a
+ javax.crypto class, you probably still have to specify
+ jce.jar, next to the more common rt.jar.
+
+ If you're missing a library and you're absolutely sure it isn't used
+ anyway, you can try your luck with the -ignorewarnings option,
+ or even the -dontwarn
+ option. Only use these options if you really know what you're doing
+ though.
+
+ For example, if you're developing for Android, and ProGuard complains that
+ it can't find a java.awt class, then some library that you
+ are using is referring to java.awt. This is a bit shady, since
+ Android doesn't have this package at all, but if your application works
+ anyway, you can let ProGuard accept it with "-dontwarn
+ java.awt.**".
It seems like you tried to avoid the warnings from the previous paragraph
+ by specifying
+ -ignorewarnings
+ or -dontwarn, but it didn't
+ work out. ProGuard's optimization step and preverification step really
+ need the missing classes to make sense of the code. Preferably, you would
+ solve the problem by adding the missing library, as discussed. If you're
+ sure the class that references the missing class isn't used either, you
+ could also try filtering it out from the input, by adding a filter to the
+ corresponding -injars option:
+ "-injars
+ myapplication.jar(!somepackage/SomeUnusedClass.class)". Hopefully,
+ you can access the configuration of your build process for such a
+ modification. As a final solution, you could switch off optimization
+ (-dontoptimize) and
+ preverification
+ (-dontpreverify).
If there are unresolved references to class members in input classes, your
+ class files are most likely inconsistent. Possibly, some class file didn't
+ get recompiled properly, or some class file was left behind after its
+ source file was removed. Try removing all class files, recompiling them,
+ zipping them up, and running ProGuard again.
+
+ If your program classes reside in the same packages as library classes,
+ and refer to their package visible class members, then you should also
+ specify the
+ -dontskipnonpubliclibraryclassmembers
+ option.
If there are unresolved references to classes that are defined inside
+ methods in your input, once more, your class files are most likely
+ inconsistent. Possibly, some class file didn't get recompiled properly, or
+ some class file was left behind after its source file was removed. Try
+ removing all class files, recompiling them, zipping them up, and running
+ ProGuard again.
If any of your library classes depend on your program classes, by
+ extending, implementing or just referencing them, your processed code will
+ generally be unusable. Program classes can depend on library classes, but
+ not the other way around. Program classes are processed, while library
+ classes always remain unchanged. It is therefore impossible to adapt
+ references from library classes to program classes, for instance if the
+ program classes are renamed. You should define a clean separation between
+ program code (specified with -injars) and library code
+ (specified with -libraryjars), and try
+ again.
The given class file contains a definition for the given class, but the
+ directory name of the file doesn't correspond to the package name of the
+ class. ProGuard will accept the class definition, but the current
+ implementation will not write out the processed version. Please make sure
+ your input classes are packaged correctly. Notably, class files that are
+ in the WEB-INF/classes directory in a war should be packaged
+ in a jar and put in the WEB-INF/lib directory. If you don't
+ mind these classes not being written to the output, you can specify the -ignorewarnings option,
+ or even the -dontwarn
+ option.
There is a conflict between a -keep option in the
+ configuration, and the mapping file, in the obfuscation step. The given
+ class name or class member name can't be kept by its original name, as
+ specified in the configuration, but it has to be mapped to the other given
+ name, as specified in the mapping file. You should adapt your
+ configuration or your mapping file to remove the conflict. Alternatively,
+ if you're sure the renaming won't hurt, you can specify the -ignorewarnings option,
+ or even the -dontwarn
+ option.
There is a conflict between some new program code and the mapping file, in
+ the obfuscation step. The given class member can't be mapped to the given
+ name, because it would conflict with another class member that is already
+ being mapped to the same name. This can happen if you are performing
+ incremental obfuscation, applying an obfuscation mapping file from an
+ initial obfuscation step. For instance, some new class may have been added
+ that extends two existing classes, introducing a conflict in the name
+ space of its class members. If you're sure the class member receiving
+ another name than the one specified won't hurt, you can specify the -ignorewarnings option,
+ or even the -dontwarn
+ option. Note that you should always use the -useuniqueclassmembernames
+ option in the initial obfuscation step, in order to reduce the risk of
+ conflicts.
You are trying to process class files compiled for a recent version of
+ Java that your copy of ProGuard doesn't support yet. You should check if
+ there is a more recent release
+ on-line.
You either forgot to specify -keep options, or you mistyped the
+ class names. ProGuard has to know exactly what you want to keep: an
+ application, an applet, a servlet, a midlet,..., or any combination of
+ these. Without the proper seed specifications, ProGuard would shrink,
+ optimize, or obfuscate all class files away.
If the path of your run-time jar contains spaces, like in "Program Files",
+ you have to enclose it with single or double quotes, as explained in the
+ section on file names. This is actually
+ true for all file names containing special characters, on all
+ platforms.
In MacOS X, the run-time classes may be in a different place than on most
+ other platforms. You'll then have to adapt your configuration, replacing
+ the path <java.home>/lib/rt.jar by
+ <java.home>/../Classes/classes.jar.
In Linux, at least with Java 6, the GUI may not start properly, due to
+ Sun
+ Bug #7027598. The work-around at this time is to specify the JVM
+ option -DsuppressSwingDropSupport=true when running the
+ GUI.
+
+
+
+
+
+
+Should ProGuard crash while processing your application:
+
+
You can try increasing the heap size of the Java virtual machine (with the
+ usual -Xms and -Xmx options). You can also
+ reduce the amount of memory that ProGuard needs by removing unnecessary
+ library jars from your configuration, or by filtering out unused library
+ packages and classes. Remember that only classes or interfaces that are
+ extended or implemented by classes in your input jars are required.
This error might occur when processing a large code base on Windows
+ (surprisingly, not so easily on Linux). In theory, increasing the stack
+ size of the Java virtual machine (with the usual -Xss option)
+ should help too. In practice however, the -Xss setting
+ doesn't have any effect on the main thread, due to Sun Bug
+ #4362291. As a result, this solution will only work when running
+ ProGuard in a different thread, e.g. from its GUI.
ProGuard has encountered an unexpected condition, typically in the
+ optimization step. It may or may not recover. You should be able to avoid
+ it using the -dontoptimize option. In
+ any case, please report the problem, preferably with the simplest example
+ that causes ProGuard to crash.
Maybe your class files are corrupt. See if recompiling them and trying
+ again helps. If not, please report the problem, preferably with the
+ simplest example that causes ProGuard to crash.
If you are working on Windows and it looks like some classes have
+ disappeared from your output, you should make sure you're not writing your
+ output class files to a directory (or unpacking the output jar). On
+ platforms with case-insensitive file systems, such as Windows, unpacking
+ tools often let class files with similar lower-case and upper-case names
+ overwrite each other. If you really can't switch to a different operating
+ system, you could consider using ProGuard's -dontusemixedcaseclassnames
+ option.
+
+ Also, you should make sure your class files are in directories that
+ correspond to their package names. ProGuard will read misplaced class
+ files, but it will currently not write their processed versions. Notably,
+ class files that are in the WEB-INF/classes directory in a
+ war should be packaged in a jar and put in the WEB-INF/lib
+ directory.
If ProGuard is not keeping the right classes or class members, make sure
+ you are using fully qualified class names. If the package name of some
+ class is missing, ProGuard won't match the elements that you might be
+ expecting. It may help to double-check for typos too. You can use the -printseeds option to see
+ which elements are being kept exactly.
+
+ If you are using marker interfaces to keep other classes, the marker
+ interfaces themselves are probably being removed in the shrinking step.
+ You should therefore always explicitly keep any marker interfaces, with
+ an option like "-keep interface MyMarkerInterface".
+
+ Similarly, if you are keeping classes based on annotations, you may have to
+ avoid that the annotation classes themselves are removed in the shrinking
+ step. You can explicitly keep all annotation classes in your program code
+ with an option like "-keep @interface *".
If the names of the local variables and parameters in your obfuscated code
+ don't look obfuscated, because they suspiciously resemble the names of
+ their types, it's probably because the decompiler that you are using is
+ coming up with those names. ProGuard's obfuscation step does remove the
+ original names entirely, unless you explicitly keep the
+ LocalVariableTable or LocalVariableTypeTable
+ attributes.
This error indicates that ProGuard's optimization step has not been able
+ to maintain the correct debug information about local variables. This can
+ happen if some code is optimized radically. Possible work-arounds: let the
+ java compiler not produce debug information (-g:none), or let
+ ProGuard's obfuscation step remove the debug information again
+ (by not keeping the attributes LocalVariableTable
+ and LocalVariableTypeTable
+ with -keepattributes),
+ or otherwise just disable optimization
+ (-dontoptimize).
This error may have various causes, but if dx is tripping over some code
+ processed by ProGuard, you should make sure that you are using the latest
+ version of ProGuard. You can just copy the ProGuard jars
+ to android-sdk/tools/proguard/lib. If that doesn't help,
+ please report the problem, preferably with the simplest example that still
+ brings out the error.
If you get any such message from the preverifier, you are probably working
+ on a platform with a case-insensitive file system, such as Windows. The
+ preverify tool always unpacks the jars, so class files with
+ similar lower-case and upper-case names overwrite each other. You can use
+ ProGuard's -dontusemixedcaseclassnames
+ option to work around this problem.
+
+ If the above doesn't help, there is probably a bug in the optimization
+ step of ProGuard. Make sure you are using the latest version. You should
+ be able to work around the problem by using the -dontoptimize option. You
+ can check the bug database to see if it is a known problem (often with a
+ fix). Otherwise, please report it, preferably with the simplest example on
+ which you can find ProGuard to fail.
+
+
+
+Note that it is no longer necessary to use an external preverifier. With the
+-microedition option,
+ProGuard will preverify the class files for Java Micro Edition.
+
If your stack traces don't contain any class names or lines numbers,
+ even though you are keeping the proper attributes, make sure this debugging
+ information is present in your compiled code to start with. Notably the Ant
+ javac task has debugging information switched off by default.
Your code is probably calling Class.forName, trying to create
+ the missing class dynamically. ProGuard can only detect constant name
+ arguments, like Class.forName("mypackage.MyClass"). For
+ variable name arguments like Class.forName(someClass), you
+ have to keep all possible classes using the appropriate -keep option, e.g. "-keep
+ class mypackage.MyClass" or "-keep class * implements
+ mypackage.MyInterface".
Your code is probably calling something like
+ myClass.getMethod, trying to find some method dynamically.
+ Since ProGuard can't always detect this automatically, you have to keep
+ the missing method in using the appropriate -keep option, e.g. "-keep
+ class mypackage.MyClass { void myMethod(); }".
+
+ More specifically, if the method reported as missing is
+ values or valueOf, you probably have to keep
+ some methods related to enumerations.
Your processed code may be unable to find some resource files. ProGuard
+ simply copies resource files over from the input jars to the output jars.
+ Their names and contents remain unchanged, unless you specify the options
+ -adaptresourcefilenames
+ and/or -adaptresourcefilecontents.
+
+ Furthermore, directory entries in jar files aren't copied, unless you
+ specify the option -keepdirectories.
+ Note that Sun advises against calling Class.getResource() for
+ directories (Sun
+ Bug #4761949).
By default, the obfuscation step removes all annotations. If your
+ application relies on annotations to function properly, you should
+ explicitly keep them with
+ -keepattributes
+ *Annotation*.
You are probably starting your application with the java option
+ -jar instead of the option -classpath. The java
+ virtual machine returns with this error message if your jar doesn't
+ contain a manifest file (META-INF/MANIFEST.MF), if the
+ manifest file doesn't specify a main class (Main-Class: ...),
+ or if the jar doesn't contain this main class. You should then make sure
+ that the input jar contains a valid manifest file to start with, that this
+ manifest file is the one that is copied (the first manifest file that is
+ encountered), and that the main class is kept in your configuration,
At least one of your processed jar files contains an index file
+ META-INF/INDEX.LIST, listing all class files in the jar.
+ ProGuard by default copies files like these unchanged. ProGuard may however
+ remove or rename classes, thus invalidating the file. You should filter the
+ index file out of the input
+ (-injars in.jar(!META-INF/INDEX.LIST)) or update the file
+ after having applied ProGuard (jar -i out.jar).
+
If you get such an error in Java Micro Edition, you may have forgotten to
+ specify the -microedition option, so
+ the processed class files are preverified properly.
If you get such a message in a Motorola or Sony Ericsson phone emulator,
+ it's because these emulators don't like packageless classes and/or
+ overloaded fields and methods. You can work around it by not using the
+ options -repackageclasses
+ '' and -overloadaggressively.
+ If you're using the JME WTK plugin, you can adapt the configuration
+ proguard/wtk/default.pro that's inside the
+ proguard.jar.
If your midlet runs in an emulator and on some devices, but not on some
+ other devices, this is probably due to a bug in the latter devices. For
+ some older Motorola and Nokia phones, you might try specifying the -useuniqueclassmembernames
+ option. It avoids overloading class member names, which triggers a bug in
+ their java virtual machine.
+
+ You might also try using the -dontusemixedcaseclassnames
+ option. Even if the midlet has been properly processed and then
+ preverified on a case-sensitive file system, the device itself might not
+ like the mixed-case class names. Notably, the Nokia N-Gage emulator works
+ fine, but the actual device seems to exhibit this problem.
If your code contains empty busy-waiting loops, ProGuard's optimization
+ step may remove them. More specifically, this happens if a loop
+ continuously checks the value of a non-volatile field that is changed in a
+ different thread. The specifications of the Java Virtual Machine require
+ that you always mark fields that are accessed across different threads
+ without further synchronization as volatile. If this is not
+ possible for some reason, you'll have to switch off optimization using the
+ -dontoptimize
+ option.
You should make sure you're preserving the special methods of enumeration
+ types, which the run-time environment calls by introspection. The required
+ options are shown in the examples.
You are probably processing annotations involving enumerations. Again, you
+ should make sure you're preserving the special methods of the enumeration
+ type, as shown in the examples.
You are probably compiling or running some code that has been obfuscated
+ with the -overloadaggressively
+ option. This option triggers a bug in
+ sun.tools.java.MethodSet.add in Sun's JDK 1.2.2, which is
+ used for (dynamic) compilation. You should then avoid this option.
You are probably processing some code that has been obfuscated before with
+ the -overloadaggressively
+ option. You should then use the same option again in the second processing
+ round.
If you are keeping the LocalVariableTable or
+ LocalVariableTypeTable attributes, ProGuard's optimizing step
+ is sometimes unable to update them consistently. You should then let the
+ obfuscation step remove these attributes or disable the optimization
+ step.
You should make sure you're not writing your output class files to a
+ directory on a platform with a case-insensitive file system, such as
+ Windows. Please refer to the section about disappearing classes for details.
+
+ Furthermore, you should check whether you have specified your program jars
+ and library jars properly. Program classes can refer to library classes,
+ but not the other way around.
+
+ If all of this seems ok, perhaps there's a bug in ProGuard (gasp!). If so,
+ please report it, preferably with the simplest example on which you can
+ find ProGuard to fail.
Verification errors when executing a program are almost certainly the
+ result of a bug in the optimization step of ProGuard. Make sure you are
+ using the latest version. You should be able to work around the problem by
+ using the -dontoptimize
+ option. You can check the bug database to see if it is a known problem
+ (often with a fix). Otherwise, please report it, preferably with the
+ simplest example on which ProGuard fails.
+
+ProGuard can be seamlessly integrated in Oracle's Wireless Toolkit (WTK)
+for Java Micro Edition (JME).
+
+
+The WTK already comes with a plug-in for ProGuard. Alternatively, ProGuard
+offers its own plug-in. This latter implementation is recommended, as it more
+up to date and it solves some problems. It is also somewhat more efficient,
+invoking the ProGuard engine directly, instead of writing out a configuration
+file and running ProGuard in a separate virtual machine.
+
+
+In order to integrate this plug-in in the toolkit, you'll have to put the
+following lines in the file
+{j2mewtk.dir}/wtklib/Linux/ktools.properties or
+{j2mewtk.dir}\wtklib\Windows\ktools.properties (whichever is
+applicable).
+
+
+Please make sure the class path is set correctly for your system.
+
+
+Once ProGuard has been set up, you can apply it to your projects as part of
+the build process. The build process is started from the WTK menu bar:
+
+
Project -> Package -> Create Obfuscated Package
+
+This option will compile, shrink, obfuscate, verify, and install your midlets
+for testing.
+
+Should you ever need to customize your ProGuard configuration for the JME WTK,
+you can adapt the configuration file proguard/wtk/default.pro
+that's inside the proguard.jar.
+
+
+
+In order to get a feel for the quality of the ProGuard code, it is run
+through a regular automatic build process. This process produces numerous
+statistics on the source code, Java lint comments, Java documentation
+comments, the Java documentation itself, html lint comments on the Java
+documentation, spell checks, compilation results, an output jar, dead code
+analysis, a shrunk and obfuscated jar (using ProGuard itself!), test runs with
+memory and performance analyses, etc. Most analyses are produced using freely
+available tools. The results are poured into a convenient set of web pages
+using bash/sed/awk scripts. You're welcome to have a look at an uploaded
+snapshot of one of these runs:
+
+The pages will appear in a new window, which you probably want to view at
+full-screen size.
+
+
+In addition, ProGuard is tested against a constantly growing test suite
+(more than 900 tests at this time of writing). These small programs contain a
+wide range of common and uncommon constructs, in order to detect any regression
+problems as soon as possible.
+
+
+
+ProGuard successfully processes any Java bytecode, ranging from small
+midlets to entire run-time libraries. It primarily reduces the size of the
+processed code, with some potential increase in efficiency as an added bonus.
+The improvements obviously depend on the original code. The table below
+presents some typical results:
+
+Results were measured with ProGuard 4.0 on a 2.6 GHz Pentium 4 with 512 MB
+of memory, using Sun JDK 1.5.0 in Fedora Core 3 Linux. All of this technology
+and software has evolved since, but the gist of the results remains the same.
+
+The program sizes include companion libraries. The shrinking step produces the
+best results for programs that use only small parts of their libraries. The
+obfuscation step can significantly shrink large programs even further, since
+the identifiers of their many internal references can be replaced by short
+identifiers.
+
+The Java 6 run-time classes are the most complex example. The classes perform
+a lot of introspection, interacting with the native code of the virtual
+machine. The 1500+ lines of configuration were largely composed by automated
+analysis, complemented by a great deal of trial and error. The configuration
+is probably not complete, but the resulting library successfully serves as a
+run-time environment for running applications like ProGuard and the ProGuard
+GUI.
+
+For small inputs, timings are governed by the reading and parsing of the jars.
+For large inputs, the optimization step becomes more important. For instance,
+processing the Java 6 run-time classes without optimization only takes 2
+minutes.
+
+Memory usage (the amount of physical memory used by ProGuard while processing)
+is governed by the basic java virtual machine and by the total size of the
+library jars and program jars.
+
+
+
+
+
+
+
+The graphical user interface to ProGuard works like a wizard. It allows
+you to browse through the presented tabs and fill them out.
+
+You can click on the small tab buttons to see the full-size versions of the
+tabs.
+
+
+
+
+
+
+Of course, real developers don't need all this point-and-click fluff. They
+write short configuration files using their favorite text editors and invoke
+ProGuard from the command-line.
+
+You can click on the image to see the full-size version.
+
+
+
+And now for some shameless self-glorification and name-dropping...
+
+ProGuard is probably the most popular java shrinker, optimizer, and
+obfuscator world-wide. It is being used by developers at companies and
+organizations like IBM, HP, Siemens, Nokia, Google, and NATO. It is the
+default tool in many development environments like Oracle's Wireless Toolkit,
+Netbeans, EclipseME, Google's Android SDK, and more. Although the quotes below
+probably don't represent official views of any kind, encouragements like these
+do keep me happy.
+
+
+
+
+ProGuard is the ultimate java obfuscator!
+
+
P.S, IBM
+
+
+
+
+
+
+Also:
+
+
+ProGuard is pure quality - powerful and trouble-free.
+
+
M.B., Statestep
+
+
+
+
+
+
+And:
+
+
+It is the simplest and most robust obfuscator we have ever used.
+
+
I.I., Hewlett-Packard
+
+
+
+
+
+
+And indeed:
+
+
+ProGuard rules. Much easier to use than the commercial alternatives.
+
+
B.G., Quiotix Corp.
+
+
+
+
+
+
+Straight from ProGuard's open discussion forum:
+
+
+
+After searching for, trying to trial, and futzing with numerous other
+obfuscators and shrinkers, ProGuard stands out as the simplest, most robust,
+and accurate shrinker of them all.
+
+
D.J., Joot
+
+
+
+
+
+
+From the article "Obfuscating MIDlet Suites with ProGuard" at developers.sun.com:
+
+
+
+Its friendly license, attractive price tag, compelling performance, and
+powerful configuration options make it an excellent addition to your MIDlet
+development toolbox.
+
+
+
+
diff --git a/android/tools/proguard/examples/android.pro b/android/tools/proguard/examples/android.pro
new file mode 100644
index 0000000..a502a2b
--- /dev/null
+++ b/android/tools/proguard/examples/android.pro
@@ -0,0 +1,149 @@
+#
+# This ProGuard configuration file illustrates how to process Android
+# applications.
+# Usage:
+# java -jar proguard.jar @android.pro
+#
+# If you're using the Android SDK (version 2.3 or higher), the android tool
+# already creates a file like this in your project, called proguard.cfg.
+# It should contain the settings of this file, minus the input and output paths
+# (-injars, -outjars, -libraryjars, -printmapping, and -printseeds).
+# The generated Ant build file automatically sets these paths.
+
+# Specify the input jars, output jars, and library jars.
+# Note that ProGuard works with Java bytecode (.class),
+# before the dex compiler converts it into Dalvik code (.dex).
+
+-injars bin/classes
+-injars libs
+-outjars bin/classes-processed.jar
+
+-libraryjars /usr/local/android-sdk/platforms/android-9/android.jar
+#-libraryjars /usr/local/android-sdk/add-ons/google_apis-7_r01/libs/maps.jar
+# ...
+
+# Save the obfuscation mapping to a file, so you can de-obfuscate any stack
+# traces later on.
+
+-printmapping bin/classes-processed.map
+
+# You can print out the seeds that are matching the keep options below.
+
+#-printseeds bin/classes-processed.seeds
+
+# Preverification is irrelevant for the dex compiler and the Dalvik VM.
+
+-dontpreverify
+
+# Reduce the size of the output some more.
+
+-repackageclasses ''
+-allowaccessmodification
+
+# Switch off some optimizations that trip older versions of the Dalvik VM.
+
+-optimizations !code/simplification/arithmetic
+
+# Keep a fixed source file attribute and all line number tables to get line
+# numbers in the stack traces.
+# You can comment this out if you're not interested in stack traces.
+
+-renamesourcefileattribute SourceFile
+-keepattributes SourceFile,LineNumberTable
+
+# RemoteViews might need annotations.
+
+-keepattributes *Annotation*
+
+# Preserve all fundamental application classes.
+
+-keep public class * extends android.app.Activity
+-keep public class * extends android.app.Application
+-keep public class * extends android.app.Service
+-keep public class * extends android.content.BroadcastReceiver
+-keep public class * extends android.content.ContentProvider
+
+# Preserve all View implementations, their special context constructors, and
+# their setters.
+
+-keep public class * extends android.view.View {
+ public (android.content.Context);
+ public (android.content.Context, android.util.AttributeSet);
+ public (android.content.Context, android.util.AttributeSet, int);
+ public void set*(...);
+}
+
+# Preserve all classes that have special context constructors, and the
+# constructors themselves.
+
+-keepclasseswithmembers class * {
+ public (android.content.Context, android.util.AttributeSet);
+}
+
+# Preserve all classes that have special context constructors, and the
+# constructors themselves.
+
+-keepclasseswithmembers class * {
+ public (android.content.Context, android.util.AttributeSet, int);
+}
+
+# Preserve the special fields of all Parcelable implementations.
+
+-keepclassmembers class * implements android.os.Parcelable {
+ static android.os.Parcelable$Creator CREATOR;
+}
+
+# Preserve static fields of inner classes of R classes that might be accessed
+# through introspection.
+
+-keepclassmembers class **.R$* {
+ public static ;
+}
+
+# Preserve the required interface from the License Verification Library
+# (but don't nag the developer if the library is not used at all).
+
+-keep public interface com.android.vending.licensing.ILicensingService
+
+-dontnote com.android.vending.licensing.ILicensingService
+
+# The Android Compatibility library references some classes that may not be
+# present in all versions of the API, but we know that's ok.
+
+-dontwarn android.support.**
+
+# Preserve all native method names and the names of their classes.
+
+-keepclasseswithmembernames class * {
+ native ;
+}
+
+# Preserve the special static methods that are required in all enumeration
+# classes.
+
+-keepclassmembers class * extends java.lang.Enum {
+ public static **[] values();
+ public static ** valueOf(java.lang.String);
+}
+
+# Explicitly preserve all serialization members. The Serializable interface
+# is only a marker interface, so it wouldn't save them.
+# You can comment this out if your application doesn't use serialization.
+# If your code contains serializable classes that have to be backward
+# compatible, please refer to the manual.
+
+-keepclassmembers class * implements java.io.Serializable {
+ static final long serialVersionUID;
+ static final java.io.ObjectStreamField[] serialPersistentFields;
+ private void writeObject(java.io.ObjectOutputStream);
+ private void readObject(java.io.ObjectInputStream);
+ java.lang.Object writeReplace();
+ java.lang.Object readResolve();
+}
+
+# Your application may contain more items that need to be preserved;
+# typically classes that are dynamically created using Class.forName:
+
+# -keep public class mypackage.MyClass
+# -keep public interface mypackage.MyInterface
+# -keep public class * implements mypackage.MyInterface
diff --git a/android/tools/proguard/examples/annotations/examples.pro b/android/tools/proguard/examples/annotations/examples.pro
new file mode 100644
index 0000000..3a47183
--- /dev/null
+++ b/android/tools/proguard/examples/annotations/examples.pro
@@ -0,0 +1,60 @@
+#
+# This ProGuard configuration file illustrates how to use annotations for
+# specifying which classes and class members should be kept.
+# Usage:
+# java -jar proguard.jar @examples.pro
+#
+
+# Specify the input, output, and library jars.
+# This is assuming the code has been compiled in the examples directory.
+
+-injars examples(*.class)
+-outjars out
+
+-libraryjars /lib/rt.jar
+
+# Some important configuration is based on the annotations in the code.
+# We have to specify what the annotations mean to ProGuard.
+
+-include lib/annotations.pro
+
+#
+# We can then still add any other options that might be useful.
+#
+
+# Print out a list of what we're preserving.
+
+-printseeds
+
+# Preserve all annotations themselves.
+
+-keepattributes *Annotation*
+
+# Preserve all native method names and the names of their classes.
+
+-keepclasseswithmembernames class * {
+ native ;
+}
+
+# Preserve the special static methods that are required in all enumeration
+# classes.
+
+-keepclassmembers class * extends java.lang.Enum {
+ public static **[] values();
+ public static ** valueOf(java.lang.String);
+}
+
+# Explicitly preserve all serialization members. The Serializable interface
+# is only a marker interface, so it wouldn't save them.
+# You can comment this out if your application doesn't use serialization.
+# If your code contains serializable classes that have to be backward
+# compatible, please refer to the manual.
+
+-keepclassmembers class * implements java.io.Serializable {
+ static final long serialVersionUID;
+ static final java.io.ObjectStreamField[] serialPersistentFields;
+ private void writeObject(java.io.ObjectOutputStream);
+ private void readObject(java.io.ObjectInputStream);
+ java.lang.Object writeReplace();
+ java.lang.Object readResolve();
+}
diff --git a/android/tools/proguard/examples/annotations/examples/Applet.java b/android/tools/proguard/examples/annotations/examples/Applet.java
new file mode 100644
index 0000000..8a5874b
--- /dev/null
+++ b/android/tools/proguard/examples/annotations/examples/Applet.java
@@ -0,0 +1,22 @@
+import proguard.annotation.*;
+
+/**
+ * This applet illustrates the use of annotations for configuring ProGuard.
+ *
+ * You can compile it with:
+ * javac -classpath ../lib/annotations.jar Applet.java
+ * You can then process it with:
+ * java -jar ../../../lib/proguard.jar @ ../examples.pro
+ *
+ * The annotation will preserve the class and its essential methods.
+ */
+@Keep
+public class Applet extends java.applet.Applet
+{
+ // Implementations for Applet.
+
+ public void init()
+ {
+ // ...
+ }
+}
diff --git a/android/tools/proguard/examples/annotations/examples/Application.java b/android/tools/proguard/examples/annotations/examples/Application.java
new file mode 100644
index 0000000..f8d5060
--- /dev/null
+++ b/android/tools/proguard/examples/annotations/examples/Application.java
@@ -0,0 +1,20 @@
+import proguard.annotation.KeepApplication;
+
+/**
+ * This application illustrates the use of annotations for configuring ProGuard.
+ *
+ * You can compile it with:
+ * javac -classpath ../lib/annotations.jar Application.java
+ * You can then process it with:
+ * java -jar ../../../lib/proguard.jar @ ../examples.pro
+ *
+ * The annotation will preserve the class and its main method.
+ */
+@KeepApplication
+public class Application
+{
+ public static void main(String[] args)
+ {
+ System.out.println("The answer is 42");
+ }
+}
diff --git a/android/tools/proguard/examples/annotations/examples/Bean.java b/android/tools/proguard/examples/annotations/examples/Bean.java
new file mode 100644
index 0000000..0544bf3
--- /dev/null
+++ b/android/tools/proguard/examples/annotations/examples/Bean.java
@@ -0,0 +1,56 @@
+import proguard.annotation.*;
+
+/**
+ * This bean illustrates the use of annotations for configuring ProGuard.
+ *
+ * You can compile it with:
+ * javac -classpath ../lib/annotations.jar Bean.java
+ * You can then process it with:
+ * java -jar ../../../lib/proguard.jar @ ../examples.pro
+ *
+ * The annotations will preserve the class and its public getters and setters.
+ */
+@Keep
+@KeepPublicGettersSetters
+public class Bean
+{
+ public boolean booleanProperty;
+ public int intProperty;
+ public String stringProperty;
+
+
+ public boolean isBooleanProperty()
+ {
+ return booleanProperty;
+ }
+
+
+ public void setBooleanProperty(boolean booleanProperty)
+ {
+ this.booleanProperty = booleanProperty;
+ }
+
+
+ public int getIntProperty()
+ {
+ return intProperty;
+ }
+
+
+ public void setIntProperty(int intProperty)
+ {
+ this.intProperty = intProperty;
+ }
+
+
+ public String getStringProperty()
+ {
+ return stringProperty;
+ }
+
+
+ public void setStringProperty(String stringProperty)
+ {
+ this.stringProperty = stringProperty;
+ }
+}
diff --git a/android/tools/proguard/examples/annotations/examples/NativeCallBack.java b/android/tools/proguard/examples/annotations/examples/NativeCallBack.java
new file mode 100644
index 0000000..2c72f7b
--- /dev/null
+++ b/android/tools/proguard/examples/annotations/examples/NativeCallBack.java
@@ -0,0 +1,44 @@
+import proguard.annotation.*;
+
+/**
+ * This application illustrates the use of annotations for configuring ProGuard.
+ *
+ * You can compile it with:
+ * javac -classpath ../lib/annotations.jar NativeCallBack.java
+ * You can then process it with:
+ * java -jar ../../../lib/proguard.jar @ ../examples.pro
+ *
+ * The annotation will preserve the class and its main method.
+ */
+@KeepApplication
+public class NativeCallBack
+{
+ /**
+ * Suppose this is a native method that computes an answer.
+ *
+ * The -keep option regular ProGuard configuration will make sure it is
+ * not renamed when processing this code.
+ */
+ public native int computeAnswer();
+
+
+ /**
+ * Suppose this method is called back from the above native method.
+ *
+ * ProGuard would remove it, because it is not referenced from java.
+ * The annotation will make sure it is preserved anyhow.
+ */
+ @Keep
+ public int getAnswer()
+ {
+ return 42;
+ }
+
+
+ public static void main(String[] args)
+ {
+ int answer = new NativeCallBack().computeAnswer();
+
+ System.out.println("The answer is " + answer);
+ }
+}
diff --git a/android/tools/proguard/examples/annotations/lib/annotations.jar b/android/tools/proguard/examples/annotations/lib/annotations.jar
new file mode 100644
index 0000000..36f6356
Binary files /dev/null and b/android/tools/proguard/examples/annotations/lib/annotations.jar differ
diff --git a/android/tools/proguard/examples/annotations/lib/annotations.pro b/android/tools/proguard/examples/annotations/lib/annotations.pro
new file mode 100644
index 0000000..f704af2
--- /dev/null
+++ b/android/tools/proguard/examples/annotations/lib/annotations.pro
@@ -0,0 +1,118 @@
+#
+# This ProGuard configuration file specifies how annotations can be used
+# to configure the processing of other code.
+# Usage:
+# java -jar proguard.jar @annotations.pro -libraryjars annotations.jar ...
+#
+# Note that the other input/output options still have to be specified.
+# If you specify them in a separate file, you can simply include this file:
+# -include annotations.pro
+#
+# You can add any other options that are required. For instance, if you are
+# processing a library, you can still include the options from library.pro.
+
+
+# The annotations are defined in the accompanying jar. For now, we'll start
+# with these. You can always define your own annotations, if necessary.
+-libraryjars annotations.jar
+
+
+# The following annotations can be specified with classes and with class
+# members.
+
+# @Keep specifies not to shrink, optimize, or obfuscate the annotated class
+# or class member as an entry point.
+
+-keep @proguard.annotation.Keep class *
+
+-keepclassmembers class * {
+ @proguard.annotation.Keep *;
+}
+
+
+# @KeepName specifies not to optimize or obfuscate the annotated class or
+# class member as an entry point.
+
+-keepnames @proguard.annotation.KeepName class *
+
+-keepclassmembernames class * {
+ @proguard.annotation.KeepName *;
+}
+
+
+# The following annotations can only be specified with classes.
+
+# @KeepImplementations and @KeepPublicImplementations specify to keep all,
+# resp. all public, implementations or extensions of the annotated class as
+# entry points. Note the extension of the java-like syntax, adding annotations
+# before the (wild-carded) interface name.
+
+-keep class * implements @proguard.annotation.KeepImplementations *
+-keep public class * implements @proguard.annotation.KeepPublicImplementations *
+
+# @KeepApplication specifies to keep the annotated class as an application,
+# together with its main method.
+
+-keepclasseswithmembers @proguard.annotation.KeepApplication public class * {
+ public static void main(java.lang.String[]);
+}
+
+# @KeepClassMembers, @KeepPublicClassMembers, and
+# @KeepPublicProtectedClassMembers specify to keep all, all public, resp.
+# all public or protected, class members of the annotated class from being
+# shrunk, optimized, or obfuscated as entry points.
+
+-keepclassmembers @proguard.annotation.KeepClassMembers class * {
+ *;
+}
+
+-keepclassmembers @proguard.annotation.KeepPublicClassMembers class * {
+ public *;
+}
+
+-keepclassmembers @proguard.annotation.KeepPublicProtectedClassMembers class * {
+ public protected *;
+}
+
+# @KeepClassMemberNames, @KeepPublicClassMemberNames, and
+# @KeepPublicProtectedClassMemberNames specify to keep all, all public, resp.
+# all public or protected, class members of the annotated class from being
+# optimized or obfuscated as entry points.
+
+-keepclassmembernames @proguard.annotation.KeepClassMemberNames class * {
+ *;
+}
+
+-keepclassmembernames @proguard.annotation.KeepPublicClassMemberNames class * {
+ public *;
+}
+
+-keepclassmembernames @proguard.annotation.KeepPublicProtectedClassMemberNames class * {
+ public protected *;
+}
+
+# @KeepGettersSetters and @KeepPublicGettersSetters specify to keep all, resp.
+# all public, getters and setters of the annotated class from being shrunk,
+# optimized, or obfuscated as entry points.
+
+-keepclassmembers @proguard.annotation.KeepGettersSetters class * {
+ void set*(***);
+ void set*(int, ***);
+
+ boolean is*();
+ boolean is*(int);
+
+ *** get*();
+ *** get*(int);
+}
+
+-keepclassmembers @proguard.annotation.KeepPublicGettersSetters class * {
+ public void set*(***);
+ public void set*(int, ***);
+
+ public boolean is*();
+ public boolean is*(int);
+
+ public *** get*();
+ public *** get*(int);
+}
diff --git a/android/tools/proguard/examples/annotations/src/proguard/annotation/Keep.java b/android/tools/proguard/examples/annotations/src/proguard/annotation/Keep.java
new file mode 100644
index 0000000..93a469f
--- /dev/null
+++ b/android/tools/proguard/examples/annotations/src/proguard/annotation/Keep.java
@@ -0,0 +1,18 @@
+/*
+ * ProGuard -- shrinking, optimization, obfuscation, and preverification
+ * of Java bytecode.
+ *
+ * Copyright (c) 2002-2007 Eric Lafortune (eric@graphics.cornell.edu)
+ */
+package proguard.annotation;
+
+import java.lang.annotation.*;
+
+/**
+ * This annotation specifies not to optimize or obfuscate the annotated class or
+ * class member as an entry point.
+ */
+@Target({ ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.CONSTRUCTOR })
+@Retention(RetentionPolicy.CLASS)
+@Documented
+public @interface Keep {}
diff --git a/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepApplication.java b/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepApplication.java
new file mode 100644
index 0000000..181f9b1
--- /dev/null
+++ b/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepApplication.java
@@ -0,0 +1,18 @@
+/*
+ * ProGuard -- shrinking, optimization, obfuscation, and preverification
+ * of Java bytecode.
+ *
+ * Copyright (c) 2002-2007 Eric Lafortune (eric@graphics.cornell.edu)
+ */
+package proguard.annotation;
+
+import java.lang.annotation.*;
+
+/**
+ * This annotation specifies to keep the annotated class as an application,
+ * together with its a main method.
+ */
+@Target({ ElementType.TYPE })
+@Retention(RetentionPolicy.CLASS)
+@Documented
+public @interface KeepApplication {}
diff --git a/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepClassMemberNames.java b/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepClassMemberNames.java
new file mode 100644
index 0000000..b2f1df9
--- /dev/null
+++ b/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepClassMemberNames.java
@@ -0,0 +1,18 @@
+/*
+ * ProGuard -- shrinking, optimization, obfuscation, and preverification
+ * of Java bytecode.
+ *
+ * Copyright (c) 2002-2007 Eric Lafortune (eric@graphics.cornell.edu)
+ */
+package proguard.annotation;
+
+import java.lang.annotation.*;
+
+/**
+ * This annotation specifies to keep all class members of the annotated class
+ * from being optimized or obfuscated as entry points.
+ */
+@Target({ ElementType.TYPE })
+@Retention(RetentionPolicy.CLASS)
+@Documented
+public @interface KeepClassMemberNames {}
diff --git a/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepClassMembers.java b/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepClassMembers.java
new file mode 100644
index 0000000..7ed755b
--- /dev/null
+++ b/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepClassMembers.java
@@ -0,0 +1,18 @@
+/*
+ * ProGuard -- shrinking, optimization, obfuscation, and preverification
+ * of Java bytecode.
+ *
+ * Copyright (c) 2002-2007 Eric Lafortune (eric@graphics.cornell.edu)
+ */
+package proguard.annotation;
+
+import java.lang.annotation.*;
+
+/**
+ * This annotation specifies to keep all class members of the annotated class
+ * from being shrunk, optimized, or obfuscated as entry points.
+ */
+@Target({ ElementType.TYPE })
+@Retention(RetentionPolicy.CLASS)
+@Documented
+public @interface KeepClassMembers {}
diff --git a/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepGettersSetters.java b/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepGettersSetters.java
new file mode 100644
index 0000000..497dcb7
--- /dev/null
+++ b/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepGettersSetters.java
@@ -0,0 +1,18 @@
+/*
+ * ProGuard -- shrinking, optimization, obfuscation, and preverification
+ * of Java bytecode.
+ *
+ * Copyright (c) 2002-2007 Eric Lafortune (eric@graphics.cornell.edu)
+ */
+package proguard.annotation;
+
+import java.lang.annotation.*;
+
+/**
+ * This annotation specifies to keep all getters and setters of the annotated
+ * class from being shrunk, optimized, or obfuscated as entry points.
+ */
+@Target({ ElementType.TYPE })
+@Retention(RetentionPolicy.CLASS)
+@Documented
+public @interface KeepGettersSetters {}
diff --git a/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepImplementations.java b/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepImplementations.java
new file mode 100644
index 0000000..47406a3
--- /dev/null
+++ b/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepImplementations.java
@@ -0,0 +1,18 @@
+/*
+ * ProGuard -- shrinking, optimization, obfuscation, and preverification
+ * of Java bytecode.
+ *
+ * Copyright (c) 2002-2007 Eric Lafortune (eric@graphics.cornell.edu)
+ */
+package proguard.annotation;
+
+import java.lang.annotation.*;
+
+/**
+ * This annotation specifies to keep all implementations or extensions of the
+ * annotated class as entry points.
+ */
+@Target({ ElementType.TYPE })
+@Retention(RetentionPolicy.CLASS)
+@Documented
+public @interface KeepImplementations {}
diff --git a/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepName.java b/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepName.java
new file mode 100644
index 0000000..5dd3680
--- /dev/null
+++ b/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepName.java
@@ -0,0 +1,18 @@
+/*
+ * ProGuard -- shrinking, optimization, obfuscation, and preverification
+ * of Java bytecode.
+ *
+ * Copyright (c) 2002-2007 Eric Lafortune (eric@graphics.cornell.edu)
+ */
+package proguard.annotation;
+
+import java.lang.annotation.*;
+
+/**
+ * This annotation specifies not to optimize or obfuscate the annotated class or
+ * class member as an entry point.
+ */
+@Target({ ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.CONSTRUCTOR })
+@Retention(RetentionPolicy.CLASS)
+@Documented
+public @interface KeepName {}
diff --git a/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepPublicClassMemberNames.java b/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepPublicClassMemberNames.java
new file mode 100644
index 0000000..f24b126
--- /dev/null
+++ b/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepPublicClassMemberNames.java
@@ -0,0 +1,18 @@
+/*
+ * ProGuard -- shrinking, optimization, obfuscation, and preverification
+ * of Java bytecode.
+ *
+ * Copyright (c) 2002-2007 Eric Lafortune (eric@graphics.cornell.edu)
+ */
+package proguard.annotation;
+
+import java.lang.annotation.*;
+
+/**
+ * This annotation specifies to keep all public class members of the annotated
+ * class from being optimized or obfuscated as entry points.
+ */
+@Target({ ElementType.TYPE })
+@Retention(RetentionPolicy.CLASS)
+@Documented
+public @interface KeepPublicClassMemberNames {}
diff --git a/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepPublicClassMembers.java b/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepPublicClassMembers.java
new file mode 100644
index 0000000..2be7fa4
--- /dev/null
+++ b/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepPublicClassMembers.java
@@ -0,0 +1,18 @@
+/*
+ * ProGuard -- shrinking, optimization, obfuscation, and preverification
+ * of Java bytecode.
+ *
+ * Copyright (c) 2002-2007 Eric Lafortune (eric@graphics.cornell.edu)
+ */
+package proguard.annotation;
+
+import java.lang.annotation.*;
+
+/**
+ * This annotation specifies to keep all public class members of the annotated
+ * class from being shrunk, optimized, or obfuscated as entry points.
+ */
+@Target({ ElementType.TYPE })
+@Retention(RetentionPolicy.CLASS)
+@Documented
+public @interface KeepPublicClassMembers {}
diff --git a/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepPublicGettersSetters.java b/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepPublicGettersSetters.java
new file mode 100644
index 0000000..6028ba9
--- /dev/null
+++ b/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepPublicGettersSetters.java
@@ -0,0 +1,18 @@
+/*
+ * ProGuard -- shrinking, optimization, obfuscation, and preverification
+ * of Java bytecode.
+ *
+ * Copyright (c) 2002-2007 Eric Lafortune (eric@graphics.cornell.edu)
+ */
+package proguard.annotation;
+
+import java.lang.annotation.*;
+
+/**
+ * This annotation specifies to keep all public getters and setters of the
+ * annotated class from being shrunk, optimized, or obfuscated as entry points.
+ */
+@Target({ ElementType.TYPE })
+@Retention(RetentionPolicy.CLASS)
+@Documented
+public @interface KeepPublicGettersSetters {}
diff --git a/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepPublicImplementations.java b/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepPublicImplementations.java
new file mode 100644
index 0000000..52ee5b9
--- /dev/null
+++ b/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepPublicImplementations.java
@@ -0,0 +1,18 @@
+/*
+ * ProGuard -- shrinking, optimization, obfuscation, and preverification
+ * of Java bytecode.
+ *
+ * Copyright (c) 2002-2007 Eric Lafortune (eric@graphics.cornell.edu)
+ */
+package proguard.annotation;
+
+import java.lang.annotation.*;
+
+/**
+ * This annotation specifies to keep all public implementations or extensions
+ * of the annotated class as entry points.
+ */
+@Target({ ElementType.TYPE })
+@Retention(RetentionPolicy.CLASS)
+@Documented
+public @interface KeepPublicImplementations {}
diff --git a/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepPublicProtectedClassMemberNames.java b/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepPublicProtectedClassMemberNames.java
new file mode 100644
index 0000000..59f0004
--- /dev/null
+++ b/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepPublicProtectedClassMemberNames.java
@@ -0,0 +1,18 @@
+/*
+ * ProGuard -- shrinking, optimization, obfuscation, and preverification
+ * of Java bytecode.
+ *
+ * Copyright (c) 2002-2007 Eric Lafortune (eric@graphics.cornell.edu)
+ */
+package proguard.annotation;
+
+import java.lang.annotation.*;
+
+/**
+ * This annotation specifies to keep all public or protected class members of
+ * the annotated class from being optimized or obfuscated as entry points.
+ */
+@Target({ ElementType.TYPE })
+@Retention(RetentionPolicy.CLASS)
+@Documented
+public @interface KeepPublicProtectedClassMemberNames {}
diff --git a/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepPublicProtectedClassMembers.java b/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepPublicProtectedClassMembers.java
new file mode 100644
index 0000000..e918a9b
--- /dev/null
+++ b/android/tools/proguard/examples/annotations/src/proguard/annotation/KeepPublicProtectedClassMembers.java
@@ -0,0 +1,19 @@
+/*
+ * ProGuard -- shrinking, optimization, obfuscation, and preverification
+ * of Java bytecode.
+ *
+ * Copyright (c) 2002-2007 Eric Lafortune (eric@graphics.cornell.edu)
+ */
+package proguard.annotation;
+
+import java.lang.annotation.*;
+
+/**
+ * This annotation specifies to keep all public or protected class members of
+ * the annotated class from being shrunk, optimized, or obfuscated as entry
+ * points.
+ */
+@Target({ ElementType.TYPE })
+@Retention(RetentionPolicy.CLASS)
+@Documented
+public @interface KeepPublicProtectedClassMembers {}
diff --git a/android/tools/proguard/examples/ant/android-8.xml b/android/tools/proguard/examples/ant/android-8.xml
new file mode 100644
index 0000000..3a4316b
--- /dev/null
+++ b/android/tools/proguard/examples/ant/android-8.xml
@@ -0,0 +1,177 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Converting optimized files into ${intermediate.dex.file}...
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Optimizing compiled files and libraries into ${out.proguard.absolute.jar}...
+
+
+
+
+
+
+ -dontpreverify
+ -repackageclasses ''
+ -allowaccessmodification
+ -optimizations !code/simplification/arithmetic
+
+
+
+ -keepattributes *Annotation*
+
+ -keep public class * extends android.app.Activity
+ -keep public class * extends android.app.Application
+ -keep public class * extends android.app.Service
+ -keep public class * extends android.content.BroadcastReceiver
+ -keep public class * extends android.content.ContentProvider
+
+ -keep public class * extends android.view.View {
+ public <init>(android.content.Context);
+ public <init>(android.content.Context, android.util.AttributeSet);
+ public <init>(android.content.Context, android.util.AttributeSet, int);
+ public void set*(...);
+ }
+
+ -keepclasseswithmembers class * {
+ public <init>(android.content.Context, android.util.AttributeSet);
+ }
+
+ -keepclasseswithmembers class * {
+ public <init>(android.content.Context, android.util.AttributeSet, int);
+ }
+
+ -keepclassmembers class * implements android.os.Parcelable {
+ static android.os.Parcelable$Creator CREATOR;
+ }
+
+ -keepclassmembers class **.R$* {
+ public static <fields>;
+ }
+
+ -keep public interface com.android.vending.licensing.ILicensingService
+ -dontnote com.android.vending.licensing.ILicensingService
+
+ -keepclasseswithmembernames class * {
+ native <methods>;
+ }
+
+ -keepclassmembers class * extends java.lang.Enum {
+ public static **[] values();
+ public static ** valueOf(java.lang.String);
+ }
+
+
+
+
diff --git a/android/tools/proguard/examples/ant/applets.xml b/android/tools/proguard/examples/ant/applets.xml
new file mode 100644
index 0000000..4d0cb38
--- /dev/null
+++ b/android/tools/proguard/examples/ant/applets.xml
@@ -0,0 +1,88 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/proguard/examples/ant/applications1.xml b/android/tools/proguard/examples/ant/applications1.xml
new file mode 100644
index 0000000..6df5789
--- /dev/null
+++ b/android/tools/proguard/examples/ant/applications1.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/proguard/examples/ant/applications2.xml b/android/tools/proguard/examples/ant/applications2.xml
new file mode 100644
index 0000000..681a894
--- /dev/null
+++ b/android/tools/proguard/examples/ant/applications2.xml
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
+
+
+
+
+ -injars in.jar
+ -outjars out.jar
+
+ -libraryjars ${java.home}/lib/rt.jar
+
+
+
+
+
+
+
+ -printmapping out.map
+ -renamesourcefileattribute SourceFile
+ -keepattributes SourceFile,LineNumberTable
+
+
+
+ -keepattributes *Annotation*
+
+
+
+ -keepclasseswithmembers public class * {
+ public static void main(java.lang.String[]);
+ }
+
+
+
+ -keepclasseswithmembernames class * {
+ native <methods>;
+ }
+
+
+
+ -keepclassmembers class * extends java.lang.Enum {
+ public static **[] values();
+ public static ** valueOf(java.lang.String);
+ }
+
+
+
+ -keepclassmembers class * implements java.io.Serializable {
+ static final long serialVersionUID;
+ static final java.io.ObjectStreamField[] serialPersistentFields;
+ private void writeObject(java.io.ObjectOutputStream);
+ private void readObject(java.io.ObjectInputStream);
+ java.lang.Object writeReplace();
+ java.lang.Object readResolve();
+ }
+
+
+
+
+
+
+
diff --git a/android/tools/proguard/examples/ant/applications3.xml b/android/tools/proguard/examples/ant/applications3.xml
new file mode 100644
index 0000000..e42eb39
--- /dev/null
+++ b/android/tools/proguard/examples/ant/applications3.xml
@@ -0,0 +1,98 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/proguard/examples/ant/library.xml b/android/tools/proguard/examples/ant/library.xml
new file mode 100644
index 0000000..d87bd16
--- /dev/null
+++ b/android/tools/proguard/examples/ant/library.xml
@@ -0,0 +1,102 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/proguard/examples/ant/midlets.xml b/android/tools/proguard/examples/ant/midlets.xml
new file mode 100644
index 0000000..223d0da
--- /dev/null
+++ b/android/tools/proguard/examples/ant/midlets.xml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/proguard/examples/ant/proguard.xml b/android/tools/proguard/examples/ant/proguard.xml
new file mode 100644
index 0000000..f10764d
--- /dev/null
+++ b/android/tools/proguard/examples/ant/proguard.xml
@@ -0,0 +1,78 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/proguard/examples/ant/servlets.xml b/android/tools/proguard/examples/ant/servlets.xml
new file mode 100644
index 0000000..51bcaad
--- /dev/null
+++ b/android/tools/proguard/examples/ant/servlets.xml
@@ -0,0 +1,88 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android/tools/proguard/examples/applets.pro b/android/tools/proguard/examples/applets.pro
new file mode 100644
index 0000000..c5affc1
--- /dev/null
+++ b/android/tools/proguard/examples/applets.pro
@@ -0,0 +1,69 @@
+#
+# This ProGuard configuration file illustrates how to process applets.
+# Usage:
+# java -jar proguard.jar @applets.pro
+#
+
+# Specify the input jars, output jars, and library jars.
+
+-injars in.jar
+-outjars out.jar
+
+-libraryjars /lib/rt.jar
+
+# Save the obfuscation mapping to a file, so you can de-obfuscate any stack
+# traces later on. Keep a fixed source file attribute and all line number
+# tables to get line numbers in the stack traces.
+# You can comment this out if you're not interested in stack traces.
+
+-printmapping out.map
+-renamesourcefileattribute SourceFile
+-keepattributes SourceFile,LineNumberTable
+
+# Preserve all annotations.
+
+-keepattributes *Annotation*
+
+# You can print out the seeds that are matching the keep options below.
+
+#-printseeds out.seeds
+
+# Preserve all public applets.
+
+-keep public class * extends java.applet.Applet
+
+# Preserve all native method names and the names of their classes.
+
+-keepclasseswithmembernames class * {
+ native ;
+}
+
+# Preserve the special static methods that are required in all enumeration
+# classes.
+
+-keepclassmembers class * extends java.lang.Enum {
+ public static **[] values();
+ public static ** valueOf(java.lang.String);
+}
+
+# Explicitly preserve all serialization members. The Serializable interface
+# is only a marker interface, so it wouldn't save them.
+# You can comment this out if your library doesn't use serialization.
+# If your code contains serializable classes that have to be backward
+# compatible, please refer to the manual.
+
+-keepclassmembers class * implements java.io.Serializable {
+ static final long serialVersionUID;
+ static final java.io.ObjectStreamField[] serialPersistentFields;
+ private void writeObject(java.io.ObjectOutputStream);
+ private void readObject(java.io.ObjectInputStream);
+ java.lang.Object writeReplace();
+ java.lang.Object readResolve();
+}
+
+# Your application may contain more items that need to be preserved;
+# typically classes that are dynamically created using Class.forName:
+
+# -keep public class mypackage.MyClass
+# -keep public interface mypackage.MyInterface
+# -keep public class * implements mypackage.MyInterface
diff --git a/android/tools/proguard/examples/applications.pro b/android/tools/proguard/examples/applications.pro
new file mode 100644
index 0000000..f718088
--- /dev/null
+++ b/android/tools/proguard/examples/applications.pro
@@ -0,0 +1,75 @@
+#
+# This ProGuard configuration file illustrates how to process applications.
+# Usage:
+# java -jar proguard.jar @applications.pro
+#
+
+# Specify the input jars, output jars, and library jars.
+
+-injars in.jar
+-outjars out.jar
+
+-libraryjars /lib/rt.jar
+#-libraryjars junit.jar
+#-libraryjars servlet.jar
+#-libraryjars jai_core.jar
+#...
+
+# Save the obfuscation mapping to a file, so you can de-obfuscate any stack
+# traces later on. Keep a fixed source file attribute and all line number
+# tables to get line numbers in the stack traces.
+# You can comment this out if you're not interested in stack traces.
+
+-printmapping out.map
+-renamesourcefileattribute SourceFile
+-keepattributes SourceFile,LineNumberTable
+
+# Preserve all annotations.
+
+-keepattributes *Annotation*
+
+# You can print out the seeds that are matching the keep options below.
+
+#-printseeds out.seeds
+
+# Preserve all public applications.
+
+-keepclasseswithmembers public class * {
+ public static void main(java.lang.String[]);
+}
+
+# Preserve all native method names and the names of their classes.
+
+-keepclasseswithmembernames class * {
+ native ;
+}
+
+# Preserve the special static methods that are required in all enumeration
+# classes.
+
+-keepclassmembers class * extends java.lang.Enum {
+ public static **[] values();
+ public static ** valueOf(java.lang.String);
+}
+
+# Explicitly preserve all serialization members. The Serializable interface
+# is only a marker interface, so it wouldn't save them.
+# You can comment this out if your application doesn't use serialization.
+# If your code contains serializable classes that have to be backward
+# compatible, please refer to the manual.
+
+-keepclassmembers class * implements java.io.Serializable {
+ static final long serialVersionUID;
+ static final java.io.ObjectStreamField[] serialPersistentFields;
+ private void writeObject(java.io.ObjectOutputStream);
+ private void readObject(java.io.ObjectInputStream);
+ java.lang.Object writeReplace();
+ java.lang.Object readResolve();
+}
+
+# Your application may contain more items that need to be preserved;
+# typically classes that are dynamically created using Class.forName:
+
+# -keep public class mypackage.MyClass
+# -keep public interface mypackage.MyInterface
+# -keep public class * implements mypackage.MyInterface
diff --git a/android/tools/proguard/examples/dictionaries/compact.txt b/android/tools/proguard/examples/dictionaries/compact.txt
new file mode 100644
index 0000000..5636a3e
--- /dev/null
+++ b/android/tools/proguard/examples/dictionaries/compact.txt
@@ -0,0 +1,18 @@
+#
+# This obfuscation dictionary contains strings that are already present
+# in many class files. Since these strings can be shared, the resulting
+# obfuscated class files will generally be a little bit more compact.
+# Usage:
+# java -jar proguard.jar ..... -obfuscationdictionary compact.txt
+#
+
+Code
+V
+I
+Z
+B
+C
+S
+F
+D
+L
diff --git a/android/tools/proguard/examples/dictionaries/keywords.txt b/android/tools/proguard/examples/dictionaries/keywords.txt
new file mode 100644
index 0000000..76f5a7b
--- /dev/null
+++ b/android/tools/proguard/examples/dictionaries/keywords.txt
@@ -0,0 +1,58 @@
+#
+# This obfuscation dictionary contains reserved Java keywords. They can't
+# be used in Java source files, but they can be used in compiled class files.
+# Note that this hardly improves the obfuscation. Decent decompilers can
+# automatically replace reserved keywords, and the effect can fairly simply be
+# undone by obfuscating again with simpler names.
+# Usage:
+# java -jar proguard.jar ..... -obfuscationdictionary keywords.txt
+#
+
+do
+if
+for
+int
+new
+try
+byte
+case
+char
+else
+goto
+long
+this
+void
+break
+catch
+class
+const
+final
+float
+short
+super
+throw
+while
+double
+import
+native
+public
+return
+static
+switch
+throws
+boolean
+default
+extends
+finally
+package
+private
+abstract
+continue
+strictfp
+volatile
+interface
+protected
+transient
+implements
+instanceof
+synchronized
diff --git a/android/tools/proguard/examples/dictionaries/shakespeare.txt b/android/tools/proguard/examples/dictionaries/shakespeare.txt
new file mode 100644
index 0000000..28b1cd8
--- /dev/null
+++ b/android/tools/proguard/examples/dictionaries/shakespeare.txt
@@ -0,0 +1,23 @@
+#
+# This obfuscation dictionary contains quotes from plays by Shakespeare.
+# It illustrates that any text can be used, for whatever flippant reasons
+# one may have.
+# Usage:
+# java -jar proguard.jar ..... -obfuscationdictionary shakespeare.txt
+#
+
+
+"This thing of darkness I acknowledge mine."
+
+ --From The Tempest (V, i, 275-276)
+
+
+"Though this be madness, yet there is method in 't."
+
+ --From Hamlet (II, ii, 206)
+
+
+"What's in a name? That which we call a rose
+ By any other word would smell as sweet."
+
+ --From Romeo and Juliet (II, ii, 1-2)
diff --git a/android/tools/proguard/examples/dictionaries/windows.txt b/android/tools/proguard/examples/dictionaries/windows.txt
new file mode 100644
index 0000000..fd65dc9
--- /dev/null
+++ b/android/tools/proguard/examples/dictionaries/windows.txt
@@ -0,0 +1,209 @@
+#
+# This obfuscation dictionary contains names that are not allowed as file names
+# in Windows, not even with extensions like .class or .java. They can however
+# be used without problems in jar archives, which just begs to apply them as
+# obfuscated class names. Trying to unpack the obfuscated archives in Windows
+# will probably generate some sparks.
+# Usage:
+# java -jar proguard.jar ..... -classobfuscationdictionary windows.txt
+# -packageobfuscationdictionary windows.txt
+#
+
+aux
+Aux
+aUx
+AUx
+auX
+AuX
+aUX
+AUX
+AUX
+con
+Con
+cOn
+COn
+coN
+CoN
+cON
+CON
+CON
+nul
+Nul
+nUl
+NUl
+nuL
+NuL
+nUL
+NUL
+NUL
+prn
+Prn
+pRn
+PRn
+prN
+PrN
+pRN
+PRN
+PRN
+com1
+Com1
+cOm1
+COm1
+coM1
+CoM1
+cOM1
+COM1
+COM1
+com2
+Com2
+cOm2
+COm2
+coM2
+CoM2
+cOM2
+COM2
+COM2
+com3
+Com3
+cOm3
+COm3
+coM3
+CoM3
+cOM3
+COM3
+COM3
+com4
+Com4
+cOm4
+COm4
+coM4
+CoM4
+cOM4
+COM4
+COM4
+com5
+Com5
+cOm5
+COm5
+coM5
+CoM5
+cOM5
+COM5
+COM5
+com6
+Com6
+cOm6
+COm6
+coM6
+CoM6
+cOM6
+COM6
+COM6
+com7
+Com7
+cOm7
+COm7
+coM7
+CoM7
+cOM7
+COM7
+COM7
+com8
+Com8
+cOm8
+COm8
+coM8
+CoM8
+cOM8
+COM8
+COM8
+com9
+Com9
+cOm9
+COm9
+coM9
+CoM9
+cOM9
+COM9
+COM9
+lpt1
+Lpt1
+lPt1
+LPt1
+lpT1
+LpT1
+lPT1
+LPT1
+LPT1
+lpt2
+Lpt2
+lPt2
+LPt2
+lpT2
+LpT2
+lPT2
+LPT2
+LPT2
+lpt3
+Lpt3
+lPt3
+LPt3
+lpT3
+LpT3
+lPT3
+LPT3
+LPT3
+lpt4
+Lpt4
+lPt4
+LPt4
+lpT4
+LpT4
+lPT4
+LPT4
+LPT4
+lpt5
+Lpt5
+lPt5
+LPt5
+lpT5
+LpT5
+lPT5
+LPT5
+LPT5
+lpt6
+Lpt6
+lPt6
+LPt6
+lpT6
+LpT6
+lPT6
+LPT6
+LPT6
+lpt7
+Lpt7
+lPt7
+LPt7
+lpT7
+LpT7
+lPT7
+LPT7
+LPT7
+lpt8
+Lpt8
+lPt8
+LPt8
+lpT8
+LpT8
+lPT8
+LPT8
+LPT8
+lpt9
+Lpt9
+lPt9
+LPt9
+lpT9
+LpT9
+lPT9
+LPT9
+LPT9
diff --git a/android/tools/proguard/examples/library.pro b/android/tools/proguard/examples/library.pro
new file mode 100644
index 0000000..b812082
--- /dev/null
+++ b/android/tools/proguard/examples/library.pro
@@ -0,0 +1,79 @@
+#
+# This ProGuard configuration file illustrates how to process a program
+# library, such that it remains usable as a library.
+# Usage:
+# java -jar proguard.jar @library.pro
+#
+
+# Specify the input jars, output jars, and library jars.
+# In this case, the input jar is the program library that we want to process.
+
+-injars in.jar
+-outjars out.jar
+
+-libraryjars /lib/rt.jar
+
+# Save the obfuscation mapping to a file, so we can de-obfuscate any stack
+# traces later on. Keep a fixed source file attribute and all line number
+# tables to get line numbers in the stack traces.
+# You can comment this out if you're not interested in stack traces.
+
+-printmapping out.map
+-keepparameternames
+-renamesourcefileattribute SourceFile
+-keepattributes Exceptions,InnerClasses,Signature,Deprecated,
+ SourceFile,LineNumberTable,EnclosingMethod
+
+# Preserve all annotations.
+
+-keepattributes *Annotation*
+
+# Preserve all public classes, and their public and protected fields and
+# methods.
+
+-keep public class * {
+ public protected *;
+}
+
+# Preserve all .class method names.
+
+-keepclassmembernames class * {
+ java.lang.Class class$(java.lang.String);
+ java.lang.Class class$(java.lang.String, boolean);
+}
+
+# Preserve all native method names and the names of their classes.
+
+-keepclasseswithmembernames class * {
+ native ;
+}
+
+# Preserve the special static methods that are required in all enumeration
+# classes.
+
+-keepclassmembers class * extends java.lang.Enum {
+ public static **[] values();
+ public static ** valueOf(java.lang.String);
+}
+
+# Explicitly preserve all serialization members. The Serializable interface
+# is only a marker interface, so it wouldn't save them.
+# You can comment this out if your library doesn't use serialization.
+# If your code contains serializable classes that have to be backward
+# compatible, please refer to the manual.
+
+-keepclassmembers class * implements java.io.Serializable {
+ static final long serialVersionUID;
+ static final java.io.ObjectStreamField[] serialPersistentFields;
+ private void writeObject(java.io.ObjectOutputStream);
+ private void readObject(java.io.ObjectInputStream);
+ java.lang.Object writeReplace();
+ java.lang.Object readResolve();
+}
+
+# Your library may contain more items that need to be preserved;
+# typically classes that are dynamically created using Class.forName:
+
+# -keep public class mypackage.MyClass
+# -keep public interface mypackage.MyInterface
+# -keep public class * implements mypackage.MyInterface
diff --git a/android/tools/proguard/examples/midlets.pro b/android/tools/proguard/examples/midlets.pro
new file mode 100644
index 0000000..1383980
--- /dev/null
+++ b/android/tools/proguard/examples/midlets.pro
@@ -0,0 +1,67 @@
+#
+# This ProGuard configuration file illustrates how to process J2ME midlets.
+# Usage:
+# java -jar proguard.jar @midlets.pro
+#
+
+# Specify the input jars, output jars, and library jars.
+
+-injars in.jar
+-outjars out.jar
+
+-libraryjars /usr/local/java/wtk2.5.2/lib/midpapi20.jar
+-libraryjars /usr/local/java/wtk2.5.2/lib/cldcapi11.jar
+
+# Preverify the code suitably for Java Micro Edition.
+
+-microedition
+
+# Allow methods with the same signature, except for the return type,
+# to get the same obfuscation name.
+
+-overloadaggressively
+
+# Put all obfuscated classes into the nameless root package.
+
+-repackageclasses ''
+
+# Allow classes and class members to be made public.
+
+-allowaccessmodification
+
+# On Windows, you can't use mixed case class names,
+# should you still want to use the preverify tool.
+#
+# -dontusemixedcaseclassnames
+
+# Save the obfuscation mapping to a file, so you can de-obfuscate any stack
+# traces later on.
+
+-printmapping out.map
+
+# You can keep a fixed source file attribute and all line number tables to
+# get stack traces with line numbers.
+
+#-renamesourcefileattribute SourceFile
+#-keepattributes SourceFile,LineNumberTable
+
+# You can print out the seeds that are matching the keep options below.
+
+#-printseeds out.seeds
+
+# Preserve all public midlets.
+
+-keep public class * extends javax.microedition.midlet.MIDlet
+
+# Preserve all native method names and the names of their classes.
+
+-keepclasseswithmembernames class * {
+ native ;
+}
+
+# Your midlet may contain more items that need to be preserved;
+# typically classes that are dynamically created using Class.forName:
+
+# -keep public class mypackage.MyClass
+# -keep public interface mypackage.MyInterface
+# -keep public class * implements mypackage.MyInterface
diff --git a/android/tools/proguard/examples/proguard.pro b/android/tools/proguard/examples/proguard.pro
new file mode 100644
index 0000000..3b0a926
--- /dev/null
+++ b/android/tools/proguard/examples/proguard.pro
@@ -0,0 +1,57 @@
+#
+# This ProGuard configuration file illustrates how to process ProGuard itself.
+# Configuration files for typical applications will be very similar.
+# Usage:
+# java -jar proguard.jar @proguard.pro
+#
+
+# Specify the input jars, output jars, and library jars.
+# We'll filter out the Ant and WTK classes, keeping everything else.
+
+-injars ../lib/proguard.jar(!proguard/ant/**,!proguard/wtk/**)
+-outjars proguard_out.jar
+
+-libraryjars /lib/rt.jar
+
+# Write out an obfuscation mapping file, for de-obfuscating any stack traces
+# later on, or for incremental obfuscation of extensions.
+
+-printmapping proguard.map
+
+# Allow methods with the same signature, except for the return type,
+# to get the same obfuscation name.
+
+-overloadaggressively
+
+# Put all obfuscated classes into the nameless root package.
+
+-repackageclasses ''
+
+# Allow classes and class members to be made public.
+
+-allowaccessmodification
+
+# The entry point: ProGuard and its main method.
+
+-keep public class proguard.ProGuard {
+ public static void main(java.lang.String[]);
+}
+
+# If you want to preserve the Ant task as well, you'll have to specify the
+# main ant.jar.
+
+#-libraryjars /usr/local/java/ant/lib/ant.jar
+#-adaptresourcefilecontents proguard/ant/task.properties
+#
+#-keep,allowobfuscation class proguard.ant.*
+#-keepclassmembers public class proguard.ant.* {
+# (org.apache.tools.ant.Project);
+# public void set*(***);
+# public void add*(***);
+#}
+
+# If you want to preserve the WTK obfuscation plug-in, you'll have to specify
+# the kenv.zip file.
+
+#-libraryjars /usr/local/java/wtk2.5.2/wtklib/kenv.zip
+#-keep public class proguard.wtk.ProGuardObfuscator
diff --git a/android/tools/proguard/examples/proguardall.pro b/android/tools/proguard/examples/proguardall.pro
new file mode 100644
index 0000000..da9c2b3
--- /dev/null
+++ b/android/tools/proguard/examples/proguardall.pro
@@ -0,0 +1,62 @@
+#
+# This ProGuard configuration file illustrates how to process ProGuard
+# (including its main application, its GUI, its Ant task, and its WTK plugin),
+# and the ReTrace tool, all in one go.
+# Configuration files for typical applications will be very similar.
+# Usage:
+# java -jar proguard.jar @proguardall.pro
+#
+
+# Specify the input jars, output jars, and library jars.
+# We'll read all jars from the lib directory, process them, and write the
+# processed jars to a new out directory.
+
+-injars ../lib
+-outjars out
+
+# You may have to adapt the paths below.
+
+-libraryjars /lib/rt.jar
+-libraryjars /usr/local/java/ant/lib/ant.jar
+-libraryjars /usr/local/java/wtk2.5.2/wtklib/kenv.zip
+
+# Allow methods with the same signature, except for the return type,
+# to get the same obfuscation name.
+
+-overloadaggressively
+
+# Put all obfuscated classes into the nameless root package.
+
+-repackageclasses ''
+
+# Adapt the names and contents of the resource files.
+
+-adaptresourcefilenames **.properties,**.gif,**.jpg
+-adaptresourcefilecontents proguard/ant/task.properties
+
+# The main entry points.
+
+-keep public class proguard.ProGuard {
+ public static void main(java.lang.String[]);
+}
+
+-keep public class proguard.gui.ProGuardGUI {
+ public static void main(java.lang.String[]);
+}
+
+-keep public class proguard.retrace.ReTrace {
+ public static void main(java.lang.String[]);
+}
+
+# If we have ant.jar, we can properly process the Ant task.
+
+-keep,allowobfuscation class proguard.ant.*
+-keepclassmembers public class proguard.ant.* {
+ (org.apache.tools.ant.Project);
+ public void set*(***);
+ public void add*(***);
+}
+
+# If we have kenv.zip, we can process the J2ME WTK plugin.
+
+-keep public class proguard.wtk.ProGuardObfuscator
diff --git a/android/tools/proguard/examples/proguardgui.pro b/android/tools/proguard/examples/proguardgui.pro
new file mode 100644
index 0000000..f14ce14
--- /dev/null
+++ b/android/tools/proguard/examples/proguardgui.pro
@@ -0,0 +1,50 @@
+#
+# This ProGuard configuration file illustrates how to process the ProGuard GUI.
+# Configuration files for typical applications will be very similar.
+# Usage:
+# java -jar proguard.jar @proguardgui.pro
+#
+
+# Specify the input jars, output jars, and library jars.
+# The input jars will be merged in a single output jar.
+# We'll filter out the Ant and WTK classes.
+
+-injars ../lib/proguardgui.jar
+-injars ../lib/proguard.jar(!META-INF/**,!proguard/ant/**,!proguard/wtk/**)
+-injars ../lib/retrace.jar (!META-INF/**)
+-outjars proguardgui_out.jar
+
+-libraryjars /lib/rt.jar
+
+# If we wanted to reuse the previously obfuscated proguard_out.jar, we could
+# perform incremental obfuscation based on its mapping file, and only keep the
+# additional GUI files instead of all files.
+
+#-applymapping proguard.map
+#-injars ../lib/proguardgui.jar
+#-outjars proguardgui_out.jar
+#-libraryjars ../lib/proguard.jar(!proguard/ant/**,!proguard/wtk/**)
+#-libraryjars ../lib/retrace.jar
+#-libraryjars /lib/rt.jar
+
+
+# Allow methods with the same signature, except for the return type,
+# to get the same obfuscation name.
+
+-overloadaggressively
+
+# Put all obfuscated classes into the nameless root package.
+
+-repackageclasses ''
+
+# Adapt the names of resource files, based on the corresponding obfuscated
+# class names. Notably, in this case, the GUI resource properties file will
+# have to be renamed.
+
+-adaptresourcefilenames **.properties,**.gif,**.jpg
+
+# The entry point: ProGuardGUI and its main method.
+
+-keep public class proguard.gui.ProGuardGUI {
+ public static void main(java.lang.String[]);
+}
diff --git a/android/tools/proguard/examples/retrace.pro b/android/tools/proguard/examples/retrace.pro
new file mode 100644
index 0000000..39f5a95
--- /dev/null
+++ b/android/tools/proguard/examples/retrace.pro
@@ -0,0 +1,43 @@
+#
+# This ProGuard configuration file illustrates how to process the ReTrace tool.
+# Configuration files for typical applications will be very similar.
+# Usage:
+# java -jar proguard.jar @retrace.pro
+#
+
+# Specify the input jars, output jars, and library jars.
+# The input jars will be merged in a single output jar.
+# We'll filter out the Ant and WTK classes.
+
+-injars ../lib/retrace.jar
+-injars ../lib/proguard.jar(!META-INF/MANIFEST.MF,
+ !proguard/ant/**,!proguard/wtk/**)
+-outjars retrace_out.jar
+
+-libraryjars /lib/rt.jar
+
+# If we wanted to reuse the previously obfuscated proguard_out.jar, we could
+# perform incremental obfuscation based on its mapping file, and only keep the
+# additional ReTrace files instead of all files.
+
+#-applymapping proguard.map
+#-outjars retrace_out.jar(proguard/retrace/**)
+
+# Allow methods with the same signature, except for the return type,
+# to get the same obfuscation name.
+
+-overloadaggressively
+
+# Put all obfuscated classes into the nameless root package.
+
+-repackageclasses ''
+
+# Allow classes and class members to be made public.
+
+-allowaccessmodification
+
+# The entry point: ReTrace and its main method.
+
+-keep public class proguard.retrace.ReTrace {
+ public static void main(java.lang.String[]);
+}
diff --git a/android/tools/proguard/examples/scala.pro b/android/tools/proguard/examples/scala.pro
new file mode 100644
index 0000000..658fc77
--- /dev/null
+++ b/android/tools/proguard/examples/scala.pro
@@ -0,0 +1,132 @@
+#
+# This ProGuard configuration file illustrates how to process Scala
+# applications, including the Scala runtime.
+# Usage:
+# java -jar proguard.jar @scala.pro
+#
+
+# Specify the input jars, output jars, and library jars.
+
+-injars in.jar
+-injars /usr/local/java/scala-2.9.1/lib/scala-library.jar
+#-injars /usr/local/java/scala-2.9.1/lib/scala-compiler.jar(!META-INF/MANIFEST.MF)
+#-injars /usr/local/java/scala-2.9.1/lib/jline.jar(!META-INF/MANIFEST.MF)
+-outjars out.jar
+
+-libraryjars /lib/rt.jar
+#-libraryjars /usr/local/java/ant/lib/ant.jar
+#...
+
+# Ignore some compiler artefacts.
+
+-dontwarn scala.**
+
+# Save the obfuscation mapping to a file, so you can de-obfuscate any stack
+# traces later on. Keep a fixed source file attribute and all line number
+# tables to get line numbers in the stack traces.
+# You can comment this out if you're not interested in stack traces.
+
+-printmapping out.map
+-renamesourcefileattribute SourceFile
+-keepattributes SourceFile,LineNumberTable
+
+# Preserve all annotations.
+
+-keepattributes *Annotation*
+
+# You can print out the seeds that are matching the keep options below.
+
+#-printseeds out.seeds
+
+# Preserve all public applications.
+
+-keepclasseswithmembers public class * {
+ public static void main(java.lang.String[]);
+}
+
+# Preserve some classes and class members that are accessed by means of
+# introspection.
+
+-keep class * implements org.xml.sax.EntityResolver
+
+-keepclassmembers class * {
+ ** MODULE$;
+}
+
+-keepclassmembernames class scala.concurrent.forkjoin.ForkJoinPool {
+ long eventCount;
+ int workerCounts;
+ int runControl;
+ scala.concurrent.forkjoin.ForkJoinPool$WaitQueueNode syncStack;
+ scala.concurrent.forkjoin.ForkJoinPool$WaitQueueNode spareStack;
+}
+
+-keepclassmembernames class scala.concurrent.forkjoin.ForkJoinWorkerThread {
+ int base;
+ int sp;
+ int runState;
+}
+
+-keepclassmembernames class scala.concurrent.forkjoin.ForkJoinTask {
+ int status;
+}
+
+-keepclassmembernames class scala.concurrent.forkjoin.LinkedTransferQueue {
+ scala.concurrent.forkjoin.LinkedTransferQueue$PaddedAtomicReference head;
+ scala.concurrent.forkjoin.LinkedTransferQueue$PaddedAtomicReference tail;
+ scala.concurrent.forkjoin.LinkedTransferQueue$PaddedAtomicReference cleanMe;
+}
+
+# Preserve some classes and class members that are accessed by means of
+# introspection in the Scala compiler library, if it is processed as well.
+
+#-keep class * implements jline.Completor
+#-keep class * implements jline.Terminal
+
+#-keep class scala.tools.nsc.Global
+
+#-keepclasseswithmembers class * {
+# (scala.tools.nsc.Global);
+#}
+
+#-keepclassmembers class * {
+# *** scala_repl_value();
+# *** scala_repl_result();
+#}
+
+# Preserve all native method names and the names of their classes.
+
+-keepclasseswithmembernames class * {
+ native ;
+}
+
+# Preserve the special static methods that are required in all enumeration
+# classes.
+
+-keepclassmembers class * extends java.lang.Enum {
+ public static **[] values();
+ public static ** valueOf(java.lang.String);
+}
+
+# Explicitly preserve all serialization members. The Serializable interface
+# is only a marker interface, so it wouldn't save them.
+# You can comment this out if your application doesn't use serialization.
+# If your code contains serializable classes that have to be backward
+# compatible, please refer to the manual.
+
+-keepclassmembers class * implements java.io.Serializable {
+ static final long serialVersionUID;
+ static final java.io.ObjectStreamField[] serialPersistentFields;
+ private void writeObject(java.io.ObjectOutputStream);
+ private void readObject(java.io.ObjectInputStream);
+ java.lang.Object writeReplace();
+ java.lang.Object readResolve();
+}
+
+# Your application may contain more items that need to be preserved;
+# typically classes that are dynamically created using Class.forName:
+
+# -keep public class mypackage.MyClass
+# -keep public interface mypackage.MyInterface
+# -keep public class * implements mypackage.MyInterface
+
diff --git a/android/tools/proguard/examples/servlets.pro b/android/tools/proguard/examples/servlets.pro
new file mode 100644
index 0000000..b42b2e4
--- /dev/null
+++ b/android/tools/proguard/examples/servlets.pro
@@ -0,0 +1,70 @@
+#
+# This ProGuard configuration file illustrates how to process servlets.
+# Usage:
+# java -jar proguard.jar @servlets.pro
+#
+
+# Specify the input jars, output jars, and library jars.
+
+-injars in.jar
+-outjars out.jar
+
+-libraryjars /lib/rt.jar
+-libraryjars /usr/local/java/servlet/servlet.jar
+
+# Save the obfuscation mapping to a file, so you can de-obfuscate any stack
+# traces later on. Keep a fixed source file attribute and all line number
+# tables to get line numbers in the stack traces.
+# You can comment this out if you're not interested in stack traces.
+
+-printmapping out.map
+-renamesourcefileattribute SourceFile
+-keepattributes SourceFile,LineNumberTable
+
+# Preserve all annotations.
+
+-keepattributes *Annotation*
+
+# You can print out the seeds that are matching the keep options below.
+
+#-printseeds out.seeds
+
+# Preserve all public servlets.
+
+-keep public class * implements javax.servlet.Servlet
+
+# Preserve all native method names and the names of their classes.
+
+-keepclasseswithmembernames class * {
+ native ;
+}
+
+# Preserve the special static methods that are required in all enumeration
+# classes.
+
+-keepclassmembers class * extends java.lang.Enum {
+ public static **[] values();
+ public static ** valueOf(java.lang.String);
+}
+
+# Explicitly preserve all serialization members. The Serializable interface
+# is only a marker interface, so it wouldn't save them.
+# You can comment this out if your library doesn't use serialization.
+# If your code contains serializable classes that have to be backward
+# compatible, please refer to the manual.
+
+-keepclassmembers class * implements java.io.Serializable {
+ static final long serialVersionUID;
+ static final java.io.ObjectStreamField[] serialPersistentFields;
+ private void writeObject(java.io.ObjectOutputStream);
+ private void readObject(java.io.ObjectInputStream);
+ java.lang.Object writeReplace();
+ java.lang.Object readResolve();
+}
+
+# Your application may contain more items that need to be preserved;
+# typically classes that are dynamically created using Class.forName:
+
+# -keep public class mypackage.MyClass
+# -keep public interface mypackage.MyInterface
+# -keep public class * implements mypackage.MyInterface
diff --git a/android/tools/proguard/lib/proguard.jar.REMOVED.git-id b/android/tools/proguard/lib/proguard.jar.REMOVED.git-id
new file mode 100644
index 0000000..f61788a
--- /dev/null
+++ b/android/tools/proguard/lib/proguard.jar.REMOVED.git-id
@@ -0,0 +1 @@
+56d68ba157d99e47f9a84a4d85fc3554c326e283
\ No newline at end of file
diff --git a/android/tools/proguard/lib/proguardgui.jar.REMOVED.git-id b/android/tools/proguard/lib/proguardgui.jar.REMOVED.git-id
new file mode 100644
index 0000000..f50b4f8
--- /dev/null
+++ b/android/tools/proguard/lib/proguardgui.jar.REMOVED.git-id
@@ -0,0 +1 @@
+5cf8f81af3a152f7fbf75a0d35858825b11b2da7
\ No newline at end of file
diff --git a/android/tools/proguard/lib/retrace.jar b/android/tools/proguard/lib/retrace.jar
new file mode 100644
index 0000000..a872adb
Binary files /dev/null and b/android/tools/proguard/lib/retrace.jar differ
diff --git a/android/tools/proguard/license.html b/android/tools/proguard/license.html
new file mode 100644
index 0000000..5134165
--- /dev/null
+++ b/android/tools/proguard/license.html
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+ProGuard License
+
+
+
+
License
+
+ProGuard is free. You can use it freely for processing your
+applications, commercial or not. Your code obviously remains yours after
+having been processed, and its license can remain the same.
+
+
+ProGuard itself is copyrighted, but its distribution license provides
+you with some rights for modifying and redistributing its code and its
+documentation. More specifically, ProGuard is distributed under the
+terms of the GNU General Public License (GPL), version
+2, as published by the Free
+Software Foundation (FSF). In short, this means that you may freely
+redistribute the program, modified or as is, on the condition that you make
+the complete source code available as well. If you develop a program that is
+linked with
+ProGuard, the program as a whole has to be distributed at no charge
+under the GPL. I am granting a special
+exception to the latter clause (in wording suggested by
+the FSF), for combinations with the following stand-alone
+applications: Apache Ant, Apache Maven, the Google Android SDK, the Eclipse
+ProGuardDT GUI, the EclipseME JME IDE, the Oracle NetBeans Java IDE, the Oracle
+JME Wireless Toolkit, the Simple Build Tool for Scala, the NeoMAD Tools by
+Neomades, the Javaground Tools, and the Sanaware Tools.
+
+
+The ProGuard user documentation represents an important part of this
+work. It may only be redistributed without changes, along with the unmodified
+version of the code.
+
+