diff --git a/.gitignore b/.gitignore
new file mode 100755
index 0000000..9011bee
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,12 @@
+*.iml
+*~
+.DS_Store
+.gradle
+.idea
+.idea/uiDesigner.xml
+.idea/workspace.xml
+/.idea/libraries
+/.idea/workspace.xml
+build
+local.properties
+target
diff --git a/app/build.gradle b/app/build.gradle
new file mode 100755
index 0000000..3049222
--- /dev/null
+++ b/app/build.gradle
@@ -0,0 +1,30 @@
+apply plugin: 'com.android.application'
+
+android {
+ compileSdkVersion 22
+ buildToolsVersion '22.0.1'
+
+ sourceSets {
+ // main.res.srcDir += 'src/main/buttons'
+ }
+
+ defaultConfig {
+ applicationId "reinardcox.c4q.nyc.calculator"
+ minSdkVersion 15
+ targetSdkVersion 22
+ versionCode 1
+ versionName "1.0"
+ }
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+ }
+ }
+}
+
+dependencies {
+ compile fileTree(dir: 'libs', include: ['*.jar'])
+ compile 'com.android.support:appcompat-v7:22.1.1'
+ compile files('libs/jep-2.23.jar')
+}
diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro
new file mode 100755
index 0000000..17da285
--- /dev/null
+++ b/app/proguard-rules.pro
@@ -0,0 +1,17 @@
+# Add project specific ProGuard rules here.
+# By default, the flags in this file are appended to flags specified
+# in C:\Users\Shadow\AppData\Local\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 *;
+#}
diff --git a/app/src/androidTest/java/reinardcox/c4q/nyc/calculator/ApplicationTest.java b/app/src/androidTest/java/reinardcox/c4q/nyc/calculator/ApplicationTest.java
new file mode 100755
index 0000000..823103a
--- /dev/null
+++ b/app/src/androidTest/java/reinardcox/c4q/nyc/calculator/ApplicationTest.java
@@ -0,0 +1,13 @@
+package reinardcox.c4q.nyc.calculator;
+
+import android.app.Application;
+import android.test.ApplicationTestCase;
+
+/**
+ * Testing Fundamentals
+ */
+public class ApplicationTest extends ApplicationTestCase {
+ public ApplicationTest() {
+ super(Application.class);
+ }
+}
\ No newline at end of file
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
new file mode 100755
index 0000000..d572c02
--- /dev/null
+++ b/app/src/main/AndroidManifest.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/buttons/drawable/Instagram.png b/app/src/main/buttons/drawable/Instagram.png
new file mode 100755
index 0000000..c4d93ba
Binary files /dev/null and b/app/src/main/buttons/drawable/Instagram.png differ
diff --git a/app/src/main/java/reinardcox/c4q/nyc/calculator/MainActivity.java b/app/src/main/java/reinardcox/c4q/nyc/calculator/MainActivity.java
new file mode 100755
index 0000000..6d0bd39
--- /dev/null
+++ b/app/src/main/java/reinardcox/c4q/nyc/calculator/MainActivity.java
@@ -0,0 +1,320 @@
+package reinardcox.c4q.nyc.calculator;
+
+import android.os.Bundle;
+import android.os.PersistableBundle;
+import android.support.v7.app.AppCompatActivity;
+import android.view.View;
+import android.widget.Button;
+import android.widget.ImageView;
+import android.widget.TextView;
+
+import org.nfunk.jep.JEP;
+
+import java.util.Collection;
+
+/**
+ * Created by Shadow on 5/20/2015.
+ */
+public class MainActivity extends AppCompatActivity {
+
+ //Create a onCreate method
+ // TextView window;
+
+
+
+ String [] listOfthings = {"-","+","*", "/", "%"};
+
+ Button zero, one, two, three, four, five, six, seven, eight, nine, period, equal, plus, minus,
+ times, divide, clear, percentage, openPen, closePen, log1;
+ String memoryBank = "";
+ TextView reader;
+ boolean ticker = false, tickerPeriod = false;
+
+ public static boolean endsWithAnyOf(String s, String[] listOfStrings){
+ boolean valid = false;
+ for (String ending : listOfStrings){
+ if (s.endsWith(ending))
+ valid = true;
+ }
+ return valid;
+ }
+
+ @Override
+ public void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+
+ //Set Content View
+ setContentView(R.layout.main_layout);
+
+ reader = (TextView) findViewById(R.id.reader_id);
+
+ zero = (Button) findViewById(R.id.zero_id);
+ one = (Button) findViewById(R.id.one_id);
+ two = (Button) findViewById(R.id.two_id);
+ three = (Button) findViewById(R.id.three_id);
+ four = (Button) findViewById(R.id.four_id);
+ five = (Button) findViewById(R.id.five_id);
+ six = (Button) findViewById(R.id.six_id);
+ seven = (Button) findViewById(R.id.seven_id);
+ eight = (Button) findViewById(R.id.eight_id);
+ nine = (Button) findViewById(R.id.nine_id);
+
+ period = (Button) findViewById(R.id.peroid_id);
+ equal = (Button) findViewById(R.id.equal_id);
+ plus = (Button) findViewById(R.id.plus_id);
+ minus = (Button) findViewById(R.id.minus_id);
+ times = (Button) findViewById(R.id.times_id);
+ divide = (Button) findViewById(R.id.divide_id);
+ clear = (Button) findViewById(R.id.clear_id);
+ percentage = (Button) findViewById(R.id.percentage_id);
+ openPen = (Button) findViewById(R.id.openPen_id);
+ closePen = (Button) findViewById(R.id.closePen_id);
+
+ log1 = (Button) findViewById(R.id.log_id);
+
+
+ if (savedInstanceState == null) {
+ memoryBank = "";
+ } else {
+ memoryBank = savedInstanceState.getString("memoryBank");
+ reader.setText(memoryBank);
+ }
+
+ zero.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ check();
+ memoryBank += "0";
+ reader.setText(memoryBank);
+ }
+ });
+
+ one.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ check();
+ memoryBank += "1";
+ reader.setText(memoryBank);
+ }
+ });
+
+ two.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ check();
+ memoryBank += "2";
+ reader.setText(memoryBank);
+ }
+ });
+
+ three.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ check();
+ memoryBank += "3";
+ reader.setText(memoryBank);
+ }
+ });
+
+ four.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ check();
+ memoryBank += "4";
+ reader.setText(memoryBank);
+ }
+ });
+
+ five.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ check();
+ memoryBank += "5";
+ reader.setText(memoryBank);
+ }
+ });
+
+ six.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ check();
+ memoryBank += "6";
+ reader.setText(memoryBank);
+ }
+ });
+
+ seven.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ check();
+ memoryBank += "7";
+ reader.setText(memoryBank);
+ }
+ });
+
+ eight.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ check();
+ memoryBank += "8";
+ reader.setText(memoryBank);
+ }
+ });
+
+ nine.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ check();
+ memoryBank += "9";
+ reader.setText(memoryBank);
+ }
+ });
+
+ openPen.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ check();
+ memoryBank += "(";
+ reader.setText(memoryBank);
+ }
+ });
+
+ closePen.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ check();
+ memoryBank += ")";
+ reader.setText(memoryBank);
+ }
+ });
+
+ percentage.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+
+// if (!memoryBank.endsWith("%")) {
+ if (!endsWithAnyOf(memoryBank, listOfthings)){
+ check();
+ memoryBank += "%";
+ reader.setText(memoryBank);
+ }
+ }
+ });
+
+ divide.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+// if (!memoryBank.endsWith("/")) {
+ if (!endsWithAnyOf(memoryBank, listOfthings)){
+ ticker = false;
+ memoryBank += "/";
+ reader.setText(memoryBank);
+ }
+ }
+ });
+
+ times.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+
+// if (!memoryBank.endsWith("*")) {
+
+ if (!endsWithAnyOf(memoryBank, listOfthings)){
+ ticker = false;
+ memoryBank += "*";
+ reader.setText(memoryBank);
+ }
+ }
+ });
+
+
+ minus.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+// if (!memoryBank.endsWith("-")) {
+
+ if (!endsWithAnyOf(memoryBank, listOfthings)){
+ ticker = false;
+ memoryBank += "-";
+ reader.setText(memoryBank);
+ }
+ }
+ });
+
+ plus.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+
+// if (!memoryBank.endsWith("+")) {
+
+ if (!endsWithAnyOf(memoryBank, listOfthings)){
+ ticker = false;
+ memoryBank += "+";
+ reader.setText(memoryBank);
+ }
+ }
+ });
+
+ clear.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ memoryBank = "";
+ reader.setText(memoryBank);
+ }
+ });
+
+ period.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ if(!memoryBank.endsWith(".")) {
+ check();
+ memoryBank += ".";
+ reader.setText(memoryBank);
+ }
+ }
+ });
+
+ if (log1 != null) {
+ log1.setOnClickListener(new View.OnClickListener() {
+
+
+ @Override
+ public void onClick(View v) {
+ check();
+ memoryBank += "log(";
+ reader.setText(memoryBank);
+ }
+ });
+ }
+
+ equal.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+
+ JEP myParser = new JEP();
+ myParser.parseExpression(memoryBank);
+ memoryBank = myParser.getValue() + "";
+ reader.setText(memoryBank);
+
+ ticker = true;
+
+ }
+ });
+
+
+ }
+
+ public void check (){
+ if (ticker !=false) {
+ memoryBank = "";
+ reader.setText(memoryBank);
+ ticker = false;
+ }
+ }
+
+ @Override
+ public void onSaveInstanceState(Bundle saveInstanceState) {
+ super.onSaveInstanceState(saveInstanceState);
+ saveInstanceState.putString("memoryBank", memoryBank);
+ }
+}
diff --git a/app/src/main/res/drawable-hdpi/Thumbs.db b/app/src/main/res/drawable-hdpi/Thumbs.db
new file mode 100755
index 0000000..64fbaf4
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/Thumbs.db differ
diff --git a/app/src/main/res/drawable-hdpi/ans_down.9.png b/app/src/main/res/drawable-hdpi/ans_down.9.png
new file mode 100755
index 0000000..15a7f31
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/ans_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/ans_up.9.png b/app/src/main/res/drawable-hdpi/ans_up.9.png
new file mode 100755
index 0000000..bbcb0a4
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/ans_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/bar.9.png b/app/src/main/res/drawable-hdpi/bar.9.png
new file mode 100755
index 0000000..9420ae6
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/bar.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/ce_down.9.png b/app/src/main/res/drawable-hdpi/ce_down.9.png
new file mode 100755
index 0000000..fae876e
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/ce_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/ce_up.9.png b/app/src/main/res/drawable-hdpi/ce_up.9.png
new file mode 100755
index 0000000..fe85dca
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/ce_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/check_down.9.png b/app/src/main/res/drawable-hdpi/check_down.9.png
new file mode 100755
index 0000000..0e66a99
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/check_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/check_up.9.png b/app/src/main/res/drawable-hdpi/check_up.9.png
new file mode 100755
index 0000000..2e5ae93
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/check_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/close_pen_down.9.png b/app/src/main/res/drawable-hdpi/close_pen_down.9.png
new file mode 100755
index 0000000..1d3945c
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/close_pen_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/close_pen_up.9.png b/app/src/main/res/drawable-hdpi/close_pen_up.9.png
new file mode 100755
index 0000000..c14bac0
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/close_pen_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/cos_down.9.png b/app/src/main/res/drawable-hdpi/cos_down.9.png
new file mode 100755
index 0000000..d2bdf3e
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/cos_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/cos_up.9.png b/app/src/main/res/drawable-hdpi/cos_up.9.png
new file mode 100755
index 0000000..41168a7
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/cos_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/custom_0_down.9.png b/app/src/main/res/drawable-hdpi/custom_0_down.9.png
new file mode 100755
index 0000000..5ef1349
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/custom_0_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/custom_0_up.9.png b/app/src/main/res/drawable-hdpi/custom_0_up.9.png
new file mode 100755
index 0000000..90802e4
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/custom_0_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/custom_1_down.9.png b/app/src/main/res/drawable-hdpi/custom_1_down.9.png
new file mode 100755
index 0000000..42d57be
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/custom_1_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/custom_1_up.9.png b/app/src/main/res/drawable-hdpi/custom_1_up.9.png
new file mode 100755
index 0000000..4046c44
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/custom_1_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/custom_2_down.9.png b/app/src/main/res/drawable-hdpi/custom_2_down.9.png
new file mode 100755
index 0000000..a7796e5
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/custom_2_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/custom_2_up.9.png b/app/src/main/res/drawable-hdpi/custom_2_up.9.png
new file mode 100755
index 0000000..5769ce3
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/custom_2_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/custom_3_down.9.png b/app/src/main/res/drawable-hdpi/custom_3_down.9.png
new file mode 100755
index 0000000..610043a
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/custom_3_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/custom_3_up.9.png b/app/src/main/res/drawable-hdpi/custom_3_up.9.png
new file mode 100755
index 0000000..c0a7f77
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/custom_3_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/custom_4_down.9.png b/app/src/main/res/drawable-hdpi/custom_4_down.9.png
new file mode 100755
index 0000000..19ef4f9
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/custom_4_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/custom_4_up.9.png b/app/src/main/res/drawable-hdpi/custom_4_up.9.png
new file mode 100755
index 0000000..6ee7f66
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/custom_4_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/custom_5_down.9.png b/app/src/main/res/drawable-hdpi/custom_5_down.9.png
new file mode 100755
index 0000000..a81154c
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/custom_5_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/custom_5_up.9.png b/app/src/main/res/drawable-hdpi/custom_5_up.9.png
new file mode 100755
index 0000000..0cb21a1
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/custom_5_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/custom_6_down.9.png b/app/src/main/res/drawable-hdpi/custom_6_down.9.png
new file mode 100755
index 0000000..aa1eaa8
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/custom_6_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/custom_6_up.9.png b/app/src/main/res/drawable-hdpi/custom_6_up.9.png
new file mode 100755
index 0000000..d1777be
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/custom_6_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/custom_7_down.9.png b/app/src/main/res/drawable-hdpi/custom_7_down.9.png
new file mode 100755
index 0000000..7cf941c
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/custom_7_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/custom_7_up.9.png b/app/src/main/res/drawable-hdpi/custom_7_up.9.png
new file mode 100755
index 0000000..698a3b0
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/custom_7_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/custom_8_down.9.png b/app/src/main/res/drawable-hdpi/custom_8_down.9.png
new file mode 100755
index 0000000..22eff25
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/custom_8_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/custom_8_up.9.png b/app/src/main/res/drawable-hdpi/custom_8_up.9.png
new file mode 100755
index 0000000..a237536
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/custom_8_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/custom_9_down.9.png b/app/src/main/res/drawable-hdpi/custom_9_down.9.png
new file mode 100755
index 0000000..dc1c946
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/custom_9_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/custom_9_up.9.png b/app/src/main/res/drawable-hdpi/custom_9_up.9.png
new file mode 100755
index 0000000..a722fe5
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/custom_9_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/deg_down.9.png b/app/src/main/res/drawable-hdpi/deg_down.9.png
new file mode 100755
index 0000000..aa766e8
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/deg_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/deg_up.9.png b/app/src/main/res/drawable-hdpi/deg_up.9.png
new file mode 100755
index 0000000..afc550c
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/deg_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/divide_down.9.png b/app/src/main/res/drawable-hdpi/divide_down.9.png
new file mode 100755
index 0000000..db8c9d5
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/divide_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/divide_up.9.png b/app/src/main/res/drawable-hdpi/divide_up.9.png
new file mode 100755
index 0000000..ab839a1
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/divide_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/e_down.9.png b/app/src/main/res/drawable-hdpi/e_down.9.png
new file mode 100755
index 0000000..e7db062
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/e_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/e_up.9.png b/app/src/main/res/drawable-hdpi/e_up.9.png
new file mode 100755
index 0000000..7350f82
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/e_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/equal_down.9.png b/app/src/main/res/drawable-hdpi/equal_down.9.png
new file mode 100755
index 0000000..1f2bdea
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/equal_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/equal_up.9.png b/app/src/main/res/drawable-hdpi/equal_up.9.png
new file mode 100755
index 0000000..191a6c1
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/equal_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/exp_down.9.png b/app/src/main/res/drawable-hdpi/exp_down.9.png
new file mode 100755
index 0000000..6c527c4
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/exp_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/exp_up.9.png b/app/src/main/res/drawable-hdpi/exp_up.9.png
new file mode 100755
index 0000000..153e9f2
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/exp_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/inv_down.9.png b/app/src/main/res/drawable-hdpi/inv_down.9.png
new file mode 100755
index 0000000..a43fb12
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/inv_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/inv_up.9.png b/app/src/main/res/drawable-hdpi/inv_up.9.png
new file mode 100755
index 0000000..3175b0a
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/inv_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/ln_down.9.png b/app/src/main/res/drawable-hdpi/ln_down.9.png
new file mode 100755
index 0000000..34be0ac
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/ln_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/ln_up.9.png b/app/src/main/res/drawable-hdpi/ln_up.9.png
new file mode 100755
index 0000000..4ad5aa3
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/ln_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/log_down.9.png b/app/src/main/res/drawable-hdpi/log_down.9.png
new file mode 100755
index 0000000..4ec578b
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/log_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/log_up.9.png b/app/src/main/res/drawable-hdpi/log_up.9.png
new file mode 100755
index 0000000..bc84235
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/log_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/open_pen_down.9.png b/app/src/main/res/drawable-hdpi/open_pen_down.9.png
new file mode 100755
index 0000000..0a2585c
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/open_pen_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/open_pen_up.9.png b/app/src/main/res/drawable-hdpi/open_pen_up.9.png
new file mode 100755
index 0000000..bc9b9e0
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/open_pen_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/percentage_down.9.png b/app/src/main/res/drawable-hdpi/percentage_down.9.png
new file mode 100755
index 0000000..dc83b92
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/percentage_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/percentage_up.9.png b/app/src/main/res/drawable-hdpi/percentage_up.9.png
new file mode 100755
index 0000000..e5447f3
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/percentage_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/plus_down.9.png b/app/src/main/res/drawable-hdpi/plus_down.9.png
new file mode 100755
index 0000000..f22855d
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/plus_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/plus_up.9.png b/app/src/main/res/drawable-hdpi/plus_up.9.png
new file mode 100755
index 0000000..ca2bda1
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/plus_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/point_down.9.png b/app/src/main/res/drawable-hdpi/point_down.9.png
new file mode 100755
index 0000000..ba98eb6
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/point_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/point_up.9.png b/app/src/main/res/drawable-hdpi/point_up.9.png
new file mode 100755
index 0000000..56a178a
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/point_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/rad_down.9.png b/app/src/main/res/drawable-hdpi/rad_down.9.png
new file mode 100755
index 0000000..d18efa1
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/rad_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/rad_up.9.png b/app/src/main/res/drawable-hdpi/rad_up.9.png
new file mode 100755
index 0000000..25ac786
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/rad_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/sin_down.9.png b/app/src/main/res/drawable-hdpi/sin_down.9.png
new file mode 100755
index 0000000..4dc1795
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/sin_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/sin_up.9.png b/app/src/main/res/drawable-hdpi/sin_up.9.png
new file mode 100755
index 0000000..4603f99
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/sin_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/subtract_down.9.png b/app/src/main/res/drawable-hdpi/subtract_down.9.png
new file mode 100755
index 0000000..24d0e27
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/subtract_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/subtract_up.9.png b/app/src/main/res/drawable-hdpi/subtract_up.9.png
new file mode 100755
index 0000000..97fcb13
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/subtract_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/tan_down.9.png b/app/src/main/res/drawable-hdpi/tan_down.9.png
new file mode 100755
index 0000000..1679cf5
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/tan_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/tan_up.9.png b/app/src/main/res/drawable-hdpi/tan_up.9.png
new file mode 100755
index 0000000..9032c3b
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/tan_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/times_down.9.png b/app/src/main/res/drawable-hdpi/times_down.9.png
new file mode 100755
index 0000000..24f8633
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/times_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/times_up.9.png b/app/src/main/res/drawable-hdpi/times_up.9.png
new file mode 100755
index 0000000..2d6326a
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/times_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/tt_down.9.png b/app/src/main/res/drawable-hdpi/tt_down.9.png
new file mode 100755
index 0000000..e41476b
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/tt_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/tt_up.9.png b/app/src/main/res/drawable-hdpi/tt_up.9.png
new file mode 100755
index 0000000..c3207ed
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/tt_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/xx_down.9.png b/app/src/main/res/drawable-hdpi/xx_down.9.png
new file mode 100755
index 0000000..c38503c
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/xx_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/xx_up.9.png b/app/src/main/res/drawable-hdpi/xx_up.9.png
new file mode 100755
index 0000000..b77a950
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/xx_up.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/xy_down.9.png b/app/src/main/res/drawable-hdpi/xy_down.9.png
new file mode 100755
index 0000000..6acd84a
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/xy_down.9.png differ
diff --git a/app/src/main/res/drawable-hdpi/xy_up.9.png b/app/src/main/res/drawable-hdpi/xy_up.9.png
new file mode 100755
index 0000000..c66c6bf
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/xy_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/Thumbs.db b/app/src/main/res/drawable-mdpi/Thumbs.db
new file mode 100755
index 0000000..5263813
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/Thumbs.db differ
diff --git a/app/src/main/res/drawable-mdpi/ans_down.9.png b/app/src/main/res/drawable-mdpi/ans_down.9.png
new file mode 100755
index 0000000..8af3783
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/ans_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/ans_up.9.png b/app/src/main/res/drawable-mdpi/ans_up.9.png
new file mode 100755
index 0000000..67b65f2
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/ans_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/bar.9.png b/app/src/main/res/drawable-mdpi/bar.9.png
new file mode 100755
index 0000000..dbb84b4
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/bar.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/ce_down.9.png b/app/src/main/res/drawable-mdpi/ce_down.9.png
new file mode 100755
index 0000000..247c9d0
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/ce_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/ce_up.9.png b/app/src/main/res/drawable-mdpi/ce_up.9.png
new file mode 100755
index 0000000..9b741ec
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/ce_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/check_down.9.png b/app/src/main/res/drawable-mdpi/check_down.9.png
new file mode 100755
index 0000000..99b8282
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/check_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/check_up.9.png b/app/src/main/res/drawable-mdpi/check_up.9.png
new file mode 100755
index 0000000..7fe6943
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/check_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/close_pen_down.9.png b/app/src/main/res/drawable-mdpi/close_pen_down.9.png
new file mode 100755
index 0000000..a53edd0
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/close_pen_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/close_pen_up.9.png b/app/src/main/res/drawable-mdpi/close_pen_up.9.png
new file mode 100755
index 0000000..372e853
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/close_pen_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/cos_down.9.png b/app/src/main/res/drawable-mdpi/cos_down.9.png
new file mode 100755
index 0000000..fe627d7
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/cos_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/cos_up.9.png b/app/src/main/res/drawable-mdpi/cos_up.9.png
new file mode 100755
index 0000000..b18530b
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/cos_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/custom_0_down.9.png b/app/src/main/res/drawable-mdpi/custom_0_down.9.png
new file mode 100755
index 0000000..2155131
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/custom_0_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/custom_0_up.9.png b/app/src/main/res/drawable-mdpi/custom_0_up.9.png
new file mode 100755
index 0000000..1169b03
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/custom_0_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/custom_1_down.9.png b/app/src/main/res/drawable-mdpi/custom_1_down.9.png
new file mode 100755
index 0000000..35bfd76
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/custom_1_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/custom_1_up.9.png b/app/src/main/res/drawable-mdpi/custom_1_up.9.png
new file mode 100755
index 0000000..961172e
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/custom_1_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/custom_2_down.9.png b/app/src/main/res/drawable-mdpi/custom_2_down.9.png
new file mode 100755
index 0000000..b91ee84
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/custom_2_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/custom_2_up.9.png b/app/src/main/res/drawable-mdpi/custom_2_up.9.png
new file mode 100755
index 0000000..13e466d
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/custom_2_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/custom_3_down.9.png b/app/src/main/res/drawable-mdpi/custom_3_down.9.png
new file mode 100755
index 0000000..a82ef4d
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/custom_3_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/custom_3_up.9.png b/app/src/main/res/drawable-mdpi/custom_3_up.9.png
new file mode 100755
index 0000000..a8fb4d6
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/custom_3_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/custom_4_down.9.png b/app/src/main/res/drawable-mdpi/custom_4_down.9.png
new file mode 100755
index 0000000..1c76f50
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/custom_4_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/custom_4_up.9.png b/app/src/main/res/drawable-mdpi/custom_4_up.9.png
new file mode 100755
index 0000000..c9e05fb
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/custom_4_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/custom_5_down.9.png b/app/src/main/res/drawable-mdpi/custom_5_down.9.png
new file mode 100755
index 0000000..024d618
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/custom_5_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/custom_5_up.9.png b/app/src/main/res/drawable-mdpi/custom_5_up.9.png
new file mode 100755
index 0000000..270173e
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/custom_5_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/custom_6_down.9.png b/app/src/main/res/drawable-mdpi/custom_6_down.9.png
new file mode 100755
index 0000000..0f7f56c
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/custom_6_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/custom_6_up.9.png b/app/src/main/res/drawable-mdpi/custom_6_up.9.png
new file mode 100755
index 0000000..5aebf26
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/custom_6_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/custom_7_down.9.png b/app/src/main/res/drawable-mdpi/custom_7_down.9.png
new file mode 100755
index 0000000..9408f9f
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/custom_7_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/custom_7_up.9.png b/app/src/main/res/drawable-mdpi/custom_7_up.9.png
new file mode 100755
index 0000000..0c3c174
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/custom_7_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/custom_8_down.9.png b/app/src/main/res/drawable-mdpi/custom_8_down.9.png
new file mode 100755
index 0000000..2759047
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/custom_8_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/custom_8_up.9.png b/app/src/main/res/drawable-mdpi/custom_8_up.9.png
new file mode 100755
index 0000000..2da590a
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/custom_8_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/custom_9_down.9.png b/app/src/main/res/drawable-mdpi/custom_9_down.9.png
new file mode 100755
index 0000000..3c57487
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/custom_9_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/custom_9_up.9.png b/app/src/main/res/drawable-mdpi/custom_9_up.9.png
new file mode 100755
index 0000000..a6431c9
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/custom_9_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/deg_down.9.png b/app/src/main/res/drawable-mdpi/deg_down.9.png
new file mode 100755
index 0000000..5872f54
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/deg_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/deg_up.9.png b/app/src/main/res/drawable-mdpi/deg_up.9.png
new file mode 100755
index 0000000..ed689ba
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/deg_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/divide_down.9.png b/app/src/main/res/drawable-mdpi/divide_down.9.png
new file mode 100755
index 0000000..90aa73b
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/divide_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/divide_up.9.png b/app/src/main/res/drawable-mdpi/divide_up.9.png
new file mode 100755
index 0000000..c0b6199
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/divide_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/e_down.9.png b/app/src/main/res/drawable-mdpi/e_down.9.png
new file mode 100755
index 0000000..416cf29
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/e_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/e_up.9.png b/app/src/main/res/drawable-mdpi/e_up.9.png
new file mode 100755
index 0000000..62165bf
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/e_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/equal_down.9.png b/app/src/main/res/drawable-mdpi/equal_down.9.png
new file mode 100755
index 0000000..cf7c3af
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/equal_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/equal_up.9.png b/app/src/main/res/drawable-mdpi/equal_up.9.png
new file mode 100755
index 0000000..f587981
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/equal_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/exp_down.9.png b/app/src/main/res/drawable-mdpi/exp_down.9.png
new file mode 100755
index 0000000..28fe22a
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/exp_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/exp_up.9.png b/app/src/main/res/drawable-mdpi/exp_up.9.png
new file mode 100755
index 0000000..e883eb7
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/exp_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/inv_down.9.png b/app/src/main/res/drawable-mdpi/inv_down.9.png
new file mode 100755
index 0000000..808a85c
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/inv_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/inv_up.9.png b/app/src/main/res/drawable-mdpi/inv_up.9.png
new file mode 100755
index 0000000..91946b6
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/inv_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/ln_down.9.png b/app/src/main/res/drawable-mdpi/ln_down.9.png
new file mode 100755
index 0000000..e0ef12c
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/ln_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/ln_up.9.png b/app/src/main/res/drawable-mdpi/ln_up.9.png
new file mode 100755
index 0000000..483f406
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/ln_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/log_down.9.png b/app/src/main/res/drawable-mdpi/log_down.9.png
new file mode 100755
index 0000000..4b7ee17
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/log_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/log_up.9.png b/app/src/main/res/drawable-mdpi/log_up.9.png
new file mode 100755
index 0000000..c49b53d
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/log_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/open_pen_down.9.png b/app/src/main/res/drawable-mdpi/open_pen_down.9.png
new file mode 100755
index 0000000..911a8e8
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/open_pen_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/open_pen_up.9.png b/app/src/main/res/drawable-mdpi/open_pen_up.9.png
new file mode 100755
index 0000000..0628f84
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/open_pen_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/percentage_down.9.png b/app/src/main/res/drawable-mdpi/percentage_down.9.png
new file mode 100755
index 0000000..b664ba7
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/percentage_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/percentage_up.9.png b/app/src/main/res/drawable-mdpi/percentage_up.9.png
new file mode 100755
index 0000000..841d786
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/percentage_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/plus_down.9.png b/app/src/main/res/drawable-mdpi/plus_down.9.png
new file mode 100755
index 0000000..4d97147
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/plus_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/plus_up.9.png b/app/src/main/res/drawable-mdpi/plus_up.9.png
new file mode 100755
index 0000000..217c9f3
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/plus_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/point_down.9.png b/app/src/main/res/drawable-mdpi/point_down.9.png
new file mode 100755
index 0000000..3f09ef7
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/point_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/point_up.9.png b/app/src/main/res/drawable-mdpi/point_up.9.png
new file mode 100755
index 0000000..ebce546
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/point_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/rad_down.9.png b/app/src/main/res/drawable-mdpi/rad_down.9.png
new file mode 100755
index 0000000..d7fd317
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/rad_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/rad_up.9.png b/app/src/main/res/drawable-mdpi/rad_up.9.png
new file mode 100755
index 0000000..fc81072
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/rad_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/sin_down.9.png b/app/src/main/res/drawable-mdpi/sin_down.9.png
new file mode 100755
index 0000000..1689114
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/sin_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/sin_up.9.png b/app/src/main/res/drawable-mdpi/sin_up.9.png
new file mode 100755
index 0000000..ce762bb
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/sin_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/subtract_down.9.png b/app/src/main/res/drawable-mdpi/subtract_down.9.png
new file mode 100755
index 0000000..cd6bfef
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/subtract_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/subtract_up.9.png b/app/src/main/res/drawable-mdpi/subtract_up.9.png
new file mode 100755
index 0000000..671fe27
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/subtract_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/tan_down.9.png b/app/src/main/res/drawable-mdpi/tan_down.9.png
new file mode 100755
index 0000000..aec1967
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/tan_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/tan_up.9.png b/app/src/main/res/drawable-mdpi/tan_up.9.png
new file mode 100755
index 0000000..6f53ce9
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/tan_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/times_down.9.png b/app/src/main/res/drawable-mdpi/times_down.9.png
new file mode 100755
index 0000000..d9285ba
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/times_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/times_up.9.png b/app/src/main/res/drawable-mdpi/times_up.9.png
new file mode 100755
index 0000000..b1ecce2
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/times_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/tt_down.9.png b/app/src/main/res/drawable-mdpi/tt_down.9.png
new file mode 100755
index 0000000..6579c2c
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/tt_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/tt_up.9.png b/app/src/main/res/drawable-mdpi/tt_up.9.png
new file mode 100755
index 0000000..a6ead1e
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/tt_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/xx_down.9.png b/app/src/main/res/drawable-mdpi/xx_down.9.png
new file mode 100755
index 0000000..22340d5
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/xx_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/xx_up.9.png b/app/src/main/res/drawable-mdpi/xx_up.9.png
new file mode 100755
index 0000000..4a1112c
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/xx_up.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/xy_down.9.png b/app/src/main/res/drawable-mdpi/xy_down.9.png
new file mode 100755
index 0000000..4024312
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/xy_down.9.png differ
diff --git a/app/src/main/res/drawable-mdpi/xy_up.9.png b/app/src/main/res/drawable-mdpi/xy_up.9.png
new file mode 100755
index 0000000..617b40d
Binary files /dev/null and b/app/src/main/res/drawable-mdpi/xy_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/Thumbs.db b/app/src/main/res/drawable-xhdpi/Thumbs.db
new file mode 100755
index 0000000..4294d3a
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/Thumbs.db differ
diff --git a/app/src/main/res/drawable-xhdpi/ans_down.9.png b/app/src/main/res/drawable-xhdpi/ans_down.9.png
new file mode 100755
index 0000000..afe5077
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/ans_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/ans_up.9.png b/app/src/main/res/drawable-xhdpi/ans_up.9.png
new file mode 100755
index 0000000..c896b90
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/ans_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/bar.9.png b/app/src/main/res/drawable-xhdpi/bar.9.png
new file mode 100755
index 0000000..050c67e
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/bar.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/ce_down.9.png b/app/src/main/res/drawable-xhdpi/ce_down.9.png
new file mode 100755
index 0000000..46367cb
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/ce_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/ce_up.9.png b/app/src/main/res/drawable-xhdpi/ce_up.9.png
new file mode 100755
index 0000000..502ce70
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/ce_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/check_down.9.png b/app/src/main/res/drawable-xhdpi/check_down.9.png
new file mode 100755
index 0000000..de44f6c
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/check_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/check_up.9.png b/app/src/main/res/drawable-xhdpi/check_up.9.png
new file mode 100755
index 0000000..b8a1376
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/check_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/close_pen_down.9.png b/app/src/main/res/drawable-xhdpi/close_pen_down.9.png
new file mode 100755
index 0000000..aebb88b
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/close_pen_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/close_pen_up.9.png b/app/src/main/res/drawable-xhdpi/close_pen_up.9.png
new file mode 100755
index 0000000..7a152c6
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/close_pen_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/cos_down.9.png b/app/src/main/res/drawable-xhdpi/cos_down.9.png
new file mode 100755
index 0000000..fcd4c21
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/cos_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/cos_up.9.png b/app/src/main/res/drawable-xhdpi/cos_up.9.png
new file mode 100755
index 0000000..0efef1c
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/cos_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/custom_0_down.9.png b/app/src/main/res/drawable-xhdpi/custom_0_down.9.png
new file mode 100755
index 0000000..738ff65
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/custom_0_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/custom_0_up.9.png b/app/src/main/res/drawable-xhdpi/custom_0_up.9.png
new file mode 100755
index 0000000..7b24e26
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/custom_0_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/custom_1_down.9.png b/app/src/main/res/drawable-xhdpi/custom_1_down.9.png
new file mode 100755
index 0000000..421101c
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/custom_1_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/custom_1_up.9.png b/app/src/main/res/drawable-xhdpi/custom_1_up.9.png
new file mode 100755
index 0000000..b6df399
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/custom_1_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/custom_2_down.9.png b/app/src/main/res/drawable-xhdpi/custom_2_down.9.png
new file mode 100755
index 0000000..e96267a
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/custom_2_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/custom_2_up.9.png b/app/src/main/res/drawable-xhdpi/custom_2_up.9.png
new file mode 100755
index 0000000..146160e
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/custom_2_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/custom_3_down.9.png b/app/src/main/res/drawable-xhdpi/custom_3_down.9.png
new file mode 100755
index 0000000..b1e5345
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/custom_3_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/custom_3_up.9.png b/app/src/main/res/drawable-xhdpi/custom_3_up.9.png
new file mode 100755
index 0000000..6caf1d5
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/custom_3_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/custom_4_down.9.png b/app/src/main/res/drawable-xhdpi/custom_4_down.9.png
new file mode 100755
index 0000000..1412921
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/custom_4_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/custom_4_up.9.png b/app/src/main/res/drawable-xhdpi/custom_4_up.9.png
new file mode 100755
index 0000000..bfd4bfb
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/custom_4_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/custom_5_down.9.png b/app/src/main/res/drawable-xhdpi/custom_5_down.9.png
new file mode 100755
index 0000000..593906b
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/custom_5_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/custom_5_up.9.png b/app/src/main/res/drawable-xhdpi/custom_5_up.9.png
new file mode 100755
index 0000000..4c2bdb9
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/custom_5_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/custom_6_down.9.png b/app/src/main/res/drawable-xhdpi/custom_6_down.9.png
new file mode 100755
index 0000000..88b1aa6
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/custom_6_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/custom_6_up.9.png b/app/src/main/res/drawable-xhdpi/custom_6_up.9.png
new file mode 100755
index 0000000..36fb2e3
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/custom_6_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/custom_7_down.9.png b/app/src/main/res/drawable-xhdpi/custom_7_down.9.png
new file mode 100755
index 0000000..2e04d1e
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/custom_7_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/custom_7_up.9.png b/app/src/main/res/drawable-xhdpi/custom_7_up.9.png
new file mode 100755
index 0000000..e2ae7f0
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/custom_7_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/custom_8_down.9.png b/app/src/main/res/drawable-xhdpi/custom_8_down.9.png
new file mode 100755
index 0000000..fc25d81
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/custom_8_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/custom_8_up.9.png b/app/src/main/res/drawable-xhdpi/custom_8_up.9.png
new file mode 100755
index 0000000..5dec1f2
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/custom_8_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/custom_9_down.9.png b/app/src/main/res/drawable-xhdpi/custom_9_down.9.png
new file mode 100755
index 0000000..92a91a7
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/custom_9_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/custom_9_up.9.png b/app/src/main/res/drawable-xhdpi/custom_9_up.9.png
new file mode 100755
index 0000000..b342e93
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/custom_9_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/deg_down.9.png b/app/src/main/res/drawable-xhdpi/deg_down.9.png
new file mode 100755
index 0000000..c89a8cb
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/deg_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/deg_up.9.png b/app/src/main/res/drawable-xhdpi/deg_up.9.png
new file mode 100755
index 0000000..9e302e6
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/deg_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/divide_down.9.png b/app/src/main/res/drawable-xhdpi/divide_down.9.png
new file mode 100755
index 0000000..cf3839e
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/divide_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/divide_up.9.png b/app/src/main/res/drawable-xhdpi/divide_up.9.png
new file mode 100755
index 0000000..4bd00e1
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/divide_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/e_down.9.png b/app/src/main/res/drawable-xhdpi/e_down.9.png
new file mode 100755
index 0000000..3541b39
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/e_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/e_up.9.png b/app/src/main/res/drawable-xhdpi/e_up.9.png
new file mode 100755
index 0000000..0cd6baf
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/e_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/equal_down.9.png b/app/src/main/res/drawable-xhdpi/equal_down.9.png
new file mode 100755
index 0000000..0904489
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/equal_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/equal_up.9.png b/app/src/main/res/drawable-xhdpi/equal_up.9.png
new file mode 100755
index 0000000..23fc366
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/equal_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/exp_down.9.png b/app/src/main/res/drawable-xhdpi/exp_down.9.png
new file mode 100755
index 0000000..28888f2
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/exp_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/exp_up.9.png b/app/src/main/res/drawable-xhdpi/exp_up.9.png
new file mode 100755
index 0000000..e101afe
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/exp_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/inv_down.9.png b/app/src/main/res/drawable-xhdpi/inv_down.9.png
new file mode 100755
index 0000000..681485e
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/inv_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/inv_up.9.png b/app/src/main/res/drawable-xhdpi/inv_up.9.png
new file mode 100755
index 0000000..3cd07d6
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/inv_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/ln_down.9.png b/app/src/main/res/drawable-xhdpi/ln_down.9.png
new file mode 100755
index 0000000..471f5cd
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/ln_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/ln_up.9.png b/app/src/main/res/drawable-xhdpi/ln_up.9.png
new file mode 100755
index 0000000..bc47ed0
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/ln_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/log_down.9.png b/app/src/main/res/drawable-xhdpi/log_down.9.png
new file mode 100755
index 0000000..6fb57ec
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/log_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/log_up.9.png b/app/src/main/res/drawable-xhdpi/log_up.9.png
new file mode 100755
index 0000000..8dca44c
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/log_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/open_pen_down.9.png b/app/src/main/res/drawable-xhdpi/open_pen_down.9.png
new file mode 100755
index 0000000..78cbe4b
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/open_pen_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/open_pen_up.9.png b/app/src/main/res/drawable-xhdpi/open_pen_up.9.png
new file mode 100755
index 0000000..1547cc8
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/open_pen_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/percentage_down.9.png b/app/src/main/res/drawable-xhdpi/percentage_down.9.png
new file mode 100755
index 0000000..2341d50
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/percentage_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/percentage_up.9.png b/app/src/main/res/drawable-xhdpi/percentage_up.9.png
new file mode 100755
index 0000000..10e17bc
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/percentage_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/plus_down.9.png b/app/src/main/res/drawable-xhdpi/plus_down.9.png
new file mode 100755
index 0000000..11640ee
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/plus_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/plus_up.9.png b/app/src/main/res/drawable-xhdpi/plus_up.9.png
new file mode 100755
index 0000000..cbfddd4
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/plus_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/point_down.9.png b/app/src/main/res/drawable-xhdpi/point_down.9.png
new file mode 100755
index 0000000..804854d
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/point_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/point_up.9.png b/app/src/main/res/drawable-xhdpi/point_up.9.png
new file mode 100755
index 0000000..0120bc3
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/point_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/rad_down.9.png b/app/src/main/res/drawable-xhdpi/rad_down.9.png
new file mode 100755
index 0000000..e723433
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/rad_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/rad_up.9.png b/app/src/main/res/drawable-xhdpi/rad_up.9.png
new file mode 100755
index 0000000..c846fba
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/rad_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/sin_down.9.png b/app/src/main/res/drawable-xhdpi/sin_down.9.png
new file mode 100755
index 0000000..786a1fa
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/sin_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/sin_up.9.png b/app/src/main/res/drawable-xhdpi/sin_up.9.png
new file mode 100755
index 0000000..889d321
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/sin_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/subtract_down.9.png b/app/src/main/res/drawable-xhdpi/subtract_down.9.png
new file mode 100755
index 0000000..9242ffa
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/subtract_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/subtract_up.9.png b/app/src/main/res/drawable-xhdpi/subtract_up.9.png
new file mode 100755
index 0000000..ae23c17
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/subtract_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/tan_down.9.png b/app/src/main/res/drawable-xhdpi/tan_down.9.png
new file mode 100755
index 0000000..ca8b8b3
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/tan_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/tan_up.9.png b/app/src/main/res/drawable-xhdpi/tan_up.9.png
new file mode 100755
index 0000000..f0ea18b
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/tan_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/times_down.9.png b/app/src/main/res/drawable-xhdpi/times_down.9.png
new file mode 100755
index 0000000..c409b86
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/times_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/times_up.9.png b/app/src/main/res/drawable-xhdpi/times_up.9.png
new file mode 100755
index 0000000..65d54c7
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/times_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/tt_down.9.png b/app/src/main/res/drawable-xhdpi/tt_down.9.png
new file mode 100755
index 0000000..447a918
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/tt_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/tt_up.9.png b/app/src/main/res/drawable-xhdpi/tt_up.9.png
new file mode 100755
index 0000000..2e94be3
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/tt_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/xx_down.9.png b/app/src/main/res/drawable-xhdpi/xx_down.9.png
new file mode 100755
index 0000000..5ab962e
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/xx_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/xx_up.9.png b/app/src/main/res/drawable-xhdpi/xx_up.9.png
new file mode 100755
index 0000000..d17e4e7
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/xx_up.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/xy_down.9.png b/app/src/main/res/drawable-xhdpi/xy_down.9.png
new file mode 100755
index 0000000..1ee2adc
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/xy_down.9.png differ
diff --git a/app/src/main/res/drawable-xhdpi/xy_up.9.png b/app/src/main/res/drawable-xhdpi/xy_up.9.png
new file mode 100755
index 0000000..887e4e8
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/xy_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/Thumbs.db b/app/src/main/res/drawable-xxhdpi/Thumbs.db
new file mode 100755
index 0000000..87ce3f9
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/Thumbs.db differ
diff --git a/app/src/main/res/drawable-xxhdpi/ans_down.9.png b/app/src/main/res/drawable-xxhdpi/ans_down.9.png
new file mode 100755
index 0000000..8ec1acf
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/ans_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/ans_up.9.png b/app/src/main/res/drawable-xxhdpi/ans_up.9.png
new file mode 100755
index 0000000..bee629e
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/ans_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/bar.9.png b/app/src/main/res/drawable-xxhdpi/bar.9.png
new file mode 100755
index 0000000..ced51e5
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/bar.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/ce_down.9.png b/app/src/main/res/drawable-xxhdpi/ce_down.9.png
new file mode 100755
index 0000000..04e7a09
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/ce_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/ce_up.9.png b/app/src/main/res/drawable-xxhdpi/ce_up.9.png
new file mode 100755
index 0000000..8068a2f
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/ce_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/check_down.9.png b/app/src/main/res/drawable-xxhdpi/check_down.9.png
new file mode 100755
index 0000000..1dcbd3f
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/check_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/check_up.9.png b/app/src/main/res/drawable-xxhdpi/check_up.9.png
new file mode 100755
index 0000000..2da1f65
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/check_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/close_pen_down.9.png b/app/src/main/res/drawable-xxhdpi/close_pen_down.9.png
new file mode 100755
index 0000000..ba680ef
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/close_pen_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/close_pen_up.9.png b/app/src/main/res/drawable-xxhdpi/close_pen_up.9.png
new file mode 100755
index 0000000..8dbe6d4
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/close_pen_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/cos_down.9.png b/app/src/main/res/drawable-xxhdpi/cos_down.9.png
new file mode 100755
index 0000000..71c351f
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/cos_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/cos_up.9.png b/app/src/main/res/drawable-xxhdpi/cos_up.9.png
new file mode 100755
index 0000000..4363e8b
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/cos_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/custom_0_down.9.png b/app/src/main/res/drawable-xxhdpi/custom_0_down.9.png
new file mode 100755
index 0000000..38f1e8d
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/custom_0_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/custom_0_up.9.png b/app/src/main/res/drawable-xxhdpi/custom_0_up.9.png
new file mode 100755
index 0000000..55003e6
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/custom_0_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/custom_1_down.9.png b/app/src/main/res/drawable-xxhdpi/custom_1_down.9.png
new file mode 100755
index 0000000..2cbec3a
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/custom_1_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/custom_1_up.9.png b/app/src/main/res/drawable-xxhdpi/custom_1_up.9.png
new file mode 100755
index 0000000..057e410
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/custom_1_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/custom_2_down.9.png b/app/src/main/res/drawable-xxhdpi/custom_2_down.9.png
new file mode 100755
index 0000000..75f50b7
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/custom_2_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/custom_2_up.9.png b/app/src/main/res/drawable-xxhdpi/custom_2_up.9.png
new file mode 100755
index 0000000..8274716
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/custom_2_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/custom_3_down.9.png b/app/src/main/res/drawable-xxhdpi/custom_3_down.9.png
new file mode 100755
index 0000000..37d798b
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/custom_3_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/custom_3_up.9.png b/app/src/main/res/drawable-xxhdpi/custom_3_up.9.png
new file mode 100755
index 0000000..997424b
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/custom_3_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/custom_4_down.9.png b/app/src/main/res/drawable-xxhdpi/custom_4_down.9.png
new file mode 100755
index 0000000..20b19a9
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/custom_4_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/custom_4_up.9.png b/app/src/main/res/drawable-xxhdpi/custom_4_up.9.png
new file mode 100755
index 0000000..bade386
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/custom_4_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/custom_5_down.9.png b/app/src/main/res/drawable-xxhdpi/custom_5_down.9.png
new file mode 100755
index 0000000..6a8f208
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/custom_5_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/custom_5_up.9.png b/app/src/main/res/drawable-xxhdpi/custom_5_up.9.png
new file mode 100755
index 0000000..927a741
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/custom_5_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/custom_6_down.9.png b/app/src/main/res/drawable-xxhdpi/custom_6_down.9.png
new file mode 100755
index 0000000..f8281d8
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/custom_6_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/custom_6_up.9.png b/app/src/main/res/drawable-xxhdpi/custom_6_up.9.png
new file mode 100755
index 0000000..3fa90a5
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/custom_6_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/custom_7_down.9.png b/app/src/main/res/drawable-xxhdpi/custom_7_down.9.png
new file mode 100755
index 0000000..cc93d05
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/custom_7_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/custom_7_up.9.png b/app/src/main/res/drawable-xxhdpi/custom_7_up.9.png
new file mode 100755
index 0000000..7687ae5
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/custom_7_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/custom_8_down.9.png b/app/src/main/res/drawable-xxhdpi/custom_8_down.9.png
new file mode 100755
index 0000000..c9593f0
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/custom_8_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/custom_8_up.9.png b/app/src/main/res/drawable-xxhdpi/custom_8_up.9.png
new file mode 100755
index 0000000..d890a13
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/custom_8_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/custom_9_down.9.png b/app/src/main/res/drawable-xxhdpi/custom_9_down.9.png
new file mode 100755
index 0000000..48a3b0a
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/custom_9_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/custom_9_up.9.png b/app/src/main/res/drawable-xxhdpi/custom_9_up.9.png
new file mode 100755
index 0000000..e589f84
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/custom_9_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/deg_down.9.png b/app/src/main/res/drawable-xxhdpi/deg_down.9.png
new file mode 100755
index 0000000..aa8b054
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/deg_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/deg_up.9.png b/app/src/main/res/drawable-xxhdpi/deg_up.9.png
new file mode 100755
index 0000000..01f23ed
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/deg_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/divide_down.9.png b/app/src/main/res/drawable-xxhdpi/divide_down.9.png
new file mode 100755
index 0000000..5d418fb
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/divide_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/divide_up.9.png b/app/src/main/res/drawable-xxhdpi/divide_up.9.png
new file mode 100755
index 0000000..35c36fa
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/divide_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/e_down.9.png b/app/src/main/res/drawable-xxhdpi/e_down.9.png
new file mode 100755
index 0000000..ceca75f
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/e_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/e_up.9.png b/app/src/main/res/drawable-xxhdpi/e_up.9.png
new file mode 100755
index 0000000..153ce35
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/e_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/equal_down.9.png b/app/src/main/res/drawable-xxhdpi/equal_down.9.png
new file mode 100755
index 0000000..08ba140
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/equal_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/equal_up.9.png b/app/src/main/res/drawable-xxhdpi/equal_up.9.png
new file mode 100755
index 0000000..d493681
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/equal_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/exp_down.9.png b/app/src/main/res/drawable-xxhdpi/exp_down.9.png
new file mode 100755
index 0000000..ea2d453
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/exp_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/exp_up.9.png b/app/src/main/res/drawable-xxhdpi/exp_up.9.png
new file mode 100755
index 0000000..af163cb
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/exp_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/inv_down.9.png b/app/src/main/res/drawable-xxhdpi/inv_down.9.png
new file mode 100755
index 0000000..55f2568
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/inv_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/inv_up.9.png b/app/src/main/res/drawable-xxhdpi/inv_up.9.png
new file mode 100755
index 0000000..823331b
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/inv_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/ln_down.9.png b/app/src/main/res/drawable-xxhdpi/ln_down.9.png
new file mode 100755
index 0000000..1d9273f
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/ln_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/ln_up.9.png b/app/src/main/res/drawable-xxhdpi/ln_up.9.png
new file mode 100755
index 0000000..4f54e97
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/ln_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/log_down.9.png b/app/src/main/res/drawable-xxhdpi/log_down.9.png
new file mode 100755
index 0000000..7bb161f
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/log_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/log_up.9.png b/app/src/main/res/drawable-xxhdpi/log_up.9.png
new file mode 100755
index 0000000..6f58c89
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/log_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/open_pen_down.9.png b/app/src/main/res/drawable-xxhdpi/open_pen_down.9.png
new file mode 100755
index 0000000..fc7123c
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/open_pen_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/open_pen_up.9.png b/app/src/main/res/drawable-xxhdpi/open_pen_up.9.png
new file mode 100755
index 0000000..b9c9d4b
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/open_pen_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/percentage_down.9.png b/app/src/main/res/drawable-xxhdpi/percentage_down.9.png
new file mode 100755
index 0000000..7db51ee
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/percentage_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/percentage_up.9.png b/app/src/main/res/drawable-xxhdpi/percentage_up.9.png
new file mode 100755
index 0000000..8925ad8
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/percentage_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/plus_down.9.png b/app/src/main/res/drawable-xxhdpi/plus_down.9.png
new file mode 100755
index 0000000..e2dc7c8
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/plus_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/plus_up.9.png b/app/src/main/res/drawable-xxhdpi/plus_up.9.png
new file mode 100755
index 0000000..a442462
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/plus_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/point_down.9.png b/app/src/main/res/drawable-xxhdpi/point_down.9.png
new file mode 100755
index 0000000..a9c2191
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/point_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/point_up.9.png b/app/src/main/res/drawable-xxhdpi/point_up.9.png
new file mode 100755
index 0000000..145f865
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/point_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/rad_down.9.png b/app/src/main/res/drawable-xxhdpi/rad_down.9.png
new file mode 100755
index 0000000..d5a448b
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/rad_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/rad_up.9.png b/app/src/main/res/drawable-xxhdpi/rad_up.9.png
new file mode 100755
index 0000000..7f00efb
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/rad_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/sin_down.9.png b/app/src/main/res/drawable-xxhdpi/sin_down.9.png
new file mode 100755
index 0000000..a746aae
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/sin_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/sin_up.9.png b/app/src/main/res/drawable-xxhdpi/sin_up.9.png
new file mode 100755
index 0000000..e2da968
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/sin_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/subtract_down.9.png b/app/src/main/res/drawable-xxhdpi/subtract_down.9.png
new file mode 100755
index 0000000..50effa2
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/subtract_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/subtract_up.9.png b/app/src/main/res/drawable-xxhdpi/subtract_up.9.png
new file mode 100755
index 0000000..b74161f
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/subtract_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/tan_down.9.png b/app/src/main/res/drawable-xxhdpi/tan_down.9.png
new file mode 100755
index 0000000..b3fe8f1
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/tan_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/tan_up.9.png b/app/src/main/res/drawable-xxhdpi/tan_up.9.png
new file mode 100755
index 0000000..969dd78
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/tan_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/times_down.9.png b/app/src/main/res/drawable-xxhdpi/times_down.9.png
new file mode 100755
index 0000000..9bff70f
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/times_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/times_up.9.png b/app/src/main/res/drawable-xxhdpi/times_up.9.png
new file mode 100755
index 0000000..c9b6c8d
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/times_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/tt_down.9.png b/app/src/main/res/drawable-xxhdpi/tt_down.9.png
new file mode 100755
index 0000000..57819e5
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/tt_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/tt_up.9.png b/app/src/main/res/drawable-xxhdpi/tt_up.9.png
new file mode 100755
index 0000000..fed6815
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/tt_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/xx_down.9.png b/app/src/main/res/drawable-xxhdpi/xx_down.9.png
new file mode 100755
index 0000000..7eb1f4c
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/xx_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/xx_up.9.png b/app/src/main/res/drawable-xxhdpi/xx_up.9.png
new file mode 100755
index 0000000..fa869f8
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/xx_up.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/xy_down.9.png b/app/src/main/res/drawable-xxhdpi/xy_down.9.png
new file mode 100755
index 0000000..5d299c2
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/xy_down.9.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/xy_up.9.png b/app/src/main/res/drawable-xxhdpi/xy_up.9.png
new file mode 100755
index 0000000..df63e93
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/xy_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/Thumbs.db b/app/src/main/res/drawable-xxxhdpi/Thumbs.db
new file mode 100755
index 0000000..dc2e28d
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/Thumbs.db differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ans_down.9.png b/app/src/main/res/drawable-xxxhdpi/ans_down.9.png
new file mode 100755
index 0000000..399fa9b
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/ans_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ans_up.9.png b/app/src/main/res/drawable-xxxhdpi/ans_up.9.png
new file mode 100755
index 0000000..402d382
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/ans_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/bar.9.png b/app/src/main/res/drawable-xxxhdpi/bar.9.png
new file mode 100755
index 0000000..64aa017
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/bar.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ce_down.9.png b/app/src/main/res/drawable-xxxhdpi/ce_down.9.png
new file mode 100755
index 0000000..1e49822
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/ce_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ce_up.9.png b/app/src/main/res/drawable-xxxhdpi/ce_up.9.png
new file mode 100755
index 0000000..abd7a08
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/ce_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/check_down.9.png b/app/src/main/res/drawable-xxxhdpi/check_down.9.png
new file mode 100755
index 0000000..90f1cdf
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/check_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/check_up.9.png b/app/src/main/res/drawable-xxxhdpi/check_up.9.png
new file mode 100755
index 0000000..a39d3db
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/check_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/close_pen_down.9.png b/app/src/main/res/drawable-xxxhdpi/close_pen_down.9.png
new file mode 100755
index 0000000..11112f7
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/close_pen_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/close_pen_up.9.png b/app/src/main/res/drawable-xxxhdpi/close_pen_up.9.png
new file mode 100755
index 0000000..ce55186
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/close_pen_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/cos_down.9.png b/app/src/main/res/drawable-xxxhdpi/cos_down.9.png
new file mode 100755
index 0000000..faf091d
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/cos_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/cos_up.9.png b/app/src/main/res/drawable-xxxhdpi/cos_up.9.png
new file mode 100755
index 0000000..3a65fd6
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/cos_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/custom_0_down.9.png b/app/src/main/res/drawable-xxxhdpi/custom_0_down.9.png
new file mode 100755
index 0000000..d90cc70
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/custom_0_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/custom_0_up.9.png b/app/src/main/res/drawable-xxxhdpi/custom_0_up.9.png
new file mode 100755
index 0000000..5f84215
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/custom_0_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/custom_1_down.9.png b/app/src/main/res/drawable-xxxhdpi/custom_1_down.9.png
new file mode 100755
index 0000000..6bafa5d
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/custom_1_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/custom_1_up.9.png b/app/src/main/res/drawable-xxxhdpi/custom_1_up.9.png
new file mode 100755
index 0000000..00b8dbe
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/custom_1_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/custom_2_down.9.png b/app/src/main/res/drawable-xxxhdpi/custom_2_down.9.png
new file mode 100755
index 0000000..fbce151
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/custom_2_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/custom_2_up.9.png b/app/src/main/res/drawable-xxxhdpi/custom_2_up.9.png
new file mode 100755
index 0000000..2da27a1
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/custom_2_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/custom_3_down.9.png b/app/src/main/res/drawable-xxxhdpi/custom_3_down.9.png
new file mode 100755
index 0000000..17311d6
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/custom_3_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/custom_3_up.9.png b/app/src/main/res/drawable-xxxhdpi/custom_3_up.9.png
new file mode 100755
index 0000000..6a66a3f
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/custom_3_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/custom_4_down.9.png b/app/src/main/res/drawable-xxxhdpi/custom_4_down.9.png
new file mode 100755
index 0000000..41e3f62
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/custom_4_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/custom_4_up.9.png b/app/src/main/res/drawable-xxxhdpi/custom_4_up.9.png
new file mode 100755
index 0000000..95e9bb9
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/custom_4_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/custom_5_down.9.png b/app/src/main/res/drawable-xxxhdpi/custom_5_down.9.png
new file mode 100755
index 0000000..4586d11
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/custom_5_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/custom_5_up.9.png b/app/src/main/res/drawable-xxxhdpi/custom_5_up.9.png
new file mode 100755
index 0000000..8fac0ae
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/custom_5_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/custom_6_down.9.png b/app/src/main/res/drawable-xxxhdpi/custom_6_down.9.png
new file mode 100755
index 0000000..a3faa51
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/custom_6_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/custom_6_up.9.png b/app/src/main/res/drawable-xxxhdpi/custom_6_up.9.png
new file mode 100755
index 0000000..0de9165
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/custom_6_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/custom_7_down.9.png b/app/src/main/res/drawable-xxxhdpi/custom_7_down.9.png
new file mode 100755
index 0000000..0cc565e
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/custom_7_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/custom_7_up.9.png b/app/src/main/res/drawable-xxxhdpi/custom_7_up.9.png
new file mode 100755
index 0000000..6c4f30a
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/custom_7_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/custom_8_down.9.png b/app/src/main/res/drawable-xxxhdpi/custom_8_down.9.png
new file mode 100755
index 0000000..a797273
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/custom_8_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/custom_8_up.9.png b/app/src/main/res/drawable-xxxhdpi/custom_8_up.9.png
new file mode 100755
index 0000000..5c21026
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/custom_8_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/custom_9_down.9.png b/app/src/main/res/drawable-xxxhdpi/custom_9_down.9.png
new file mode 100755
index 0000000..8700c7e
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/custom_9_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/custom_9_up.9.png b/app/src/main/res/drawable-xxxhdpi/custom_9_up.9.png
new file mode 100755
index 0000000..c1e3fb7
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/custom_9_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/deg_down.9.png b/app/src/main/res/drawable-xxxhdpi/deg_down.9.png
new file mode 100755
index 0000000..6cdac59
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/deg_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/deg_up.9.png b/app/src/main/res/drawable-xxxhdpi/deg_up.9.png
new file mode 100755
index 0000000..5c8fa0c
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/deg_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/divide_down.9.png b/app/src/main/res/drawable-xxxhdpi/divide_down.9.png
new file mode 100755
index 0000000..3769de5
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/divide_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/divide_up.9.png b/app/src/main/res/drawable-xxxhdpi/divide_up.9.png
new file mode 100755
index 0000000..65442c5
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/divide_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/e_down.9.png b/app/src/main/res/drawable-xxxhdpi/e_down.9.png
new file mode 100755
index 0000000..8fa876b
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/e_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/e_up.9.png b/app/src/main/res/drawable-xxxhdpi/e_up.9.png
new file mode 100755
index 0000000..33dcc2a
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/e_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/equal_down.9.png b/app/src/main/res/drawable-xxxhdpi/equal_down.9.png
new file mode 100755
index 0000000..c60f48d
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/equal_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/equal_up.9.png b/app/src/main/res/drawable-xxxhdpi/equal_up.9.png
new file mode 100755
index 0000000..60aca5d
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/equal_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/exp_down.9.png b/app/src/main/res/drawable-xxxhdpi/exp_down.9.png
new file mode 100755
index 0000000..4dfc13a
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/exp_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/exp_up.9.png b/app/src/main/res/drawable-xxxhdpi/exp_up.9.png
new file mode 100755
index 0000000..8951012
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/exp_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/inv_down.9.png b/app/src/main/res/drawable-xxxhdpi/inv_down.9.png
new file mode 100755
index 0000000..a035913
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/inv_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/inv_up.9.png b/app/src/main/res/drawable-xxxhdpi/inv_up.9.png
new file mode 100755
index 0000000..08ec289
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/inv_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ln_down.9.png b/app/src/main/res/drawable-xxxhdpi/ln_down.9.png
new file mode 100755
index 0000000..e487900
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/ln_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ln_up.9.png b/app/src/main/res/drawable-xxxhdpi/ln_up.9.png
new file mode 100755
index 0000000..f05da8f
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/ln_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/log_down.9.png b/app/src/main/res/drawable-xxxhdpi/log_down.9.png
new file mode 100755
index 0000000..237f695
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/log_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/log_up.9.png b/app/src/main/res/drawable-xxxhdpi/log_up.9.png
new file mode 100755
index 0000000..2975953
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/log_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/open_pen_down.9.png b/app/src/main/res/drawable-xxxhdpi/open_pen_down.9.png
new file mode 100755
index 0000000..015162e
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/open_pen_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/open_pen_up.9.png b/app/src/main/res/drawable-xxxhdpi/open_pen_up.9.png
new file mode 100755
index 0000000..7131309
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/open_pen_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/percentage_down.9.png b/app/src/main/res/drawable-xxxhdpi/percentage_down.9.png
new file mode 100755
index 0000000..c962b98
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/percentage_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/percentage_up.9.png b/app/src/main/res/drawable-xxxhdpi/percentage_up.9.png
new file mode 100755
index 0000000..216a0b6
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/percentage_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/plus_down.9.png b/app/src/main/res/drawable-xxxhdpi/plus_down.9.png
new file mode 100755
index 0000000..078a8cb
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/plus_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/plus_up.9.png b/app/src/main/res/drawable-xxxhdpi/plus_up.9.png
new file mode 100755
index 0000000..9b85f80
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/plus_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/point_down.9.png b/app/src/main/res/drawable-xxxhdpi/point_down.9.png
new file mode 100755
index 0000000..8cf7789
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/point_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/point_up.9.png b/app/src/main/res/drawable-xxxhdpi/point_up.9.png
new file mode 100755
index 0000000..fb36e1d
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/point_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/rad_down.9.png b/app/src/main/res/drawable-xxxhdpi/rad_down.9.png
new file mode 100755
index 0000000..f6cbcfa
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/rad_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/rad_up.9.png b/app/src/main/res/drawable-xxxhdpi/rad_up.9.png
new file mode 100755
index 0000000..c5120c5
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/rad_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/sin_down.9.png b/app/src/main/res/drawable-xxxhdpi/sin_down.9.png
new file mode 100755
index 0000000..e971545
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/sin_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/sin_up.9.png b/app/src/main/res/drawable-xxxhdpi/sin_up.9.png
new file mode 100755
index 0000000..95095e5
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/sin_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/subtract_down.9.png b/app/src/main/res/drawable-xxxhdpi/subtract_down.9.png
new file mode 100755
index 0000000..18e93c8
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/subtract_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/subtract_up.9.png b/app/src/main/res/drawable-xxxhdpi/subtract_up.9.png
new file mode 100755
index 0000000..1f86f95
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/subtract_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/tan_down.9.png b/app/src/main/res/drawable-xxxhdpi/tan_down.9.png
new file mode 100755
index 0000000..6b99e7b
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/tan_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/tan_up.9.png b/app/src/main/res/drawable-xxxhdpi/tan_up.9.png
new file mode 100755
index 0000000..ca1a121
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/tan_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/times_down.9.png b/app/src/main/res/drawable-xxxhdpi/times_down.9.png
new file mode 100755
index 0000000..4059435
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/times_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/times_up.9.png b/app/src/main/res/drawable-xxxhdpi/times_up.9.png
new file mode 100755
index 0000000..525df0a
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/times_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/tt_down.9.png b/app/src/main/res/drawable-xxxhdpi/tt_down.9.png
new file mode 100755
index 0000000..91492da
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/tt_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/tt_up.9.png b/app/src/main/res/drawable-xxxhdpi/tt_up.9.png
new file mode 100755
index 0000000..c04193d
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/tt_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/xx_down.9.png b/app/src/main/res/drawable-xxxhdpi/xx_down.9.png
new file mode 100755
index 0000000..9d3d9b2
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/xx_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/xx_up.9.png b/app/src/main/res/drawable-xxxhdpi/xx_up.9.png
new file mode 100755
index 0000000..3764ecd
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/xx_up.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/xy_down.9.png b/app/src/main/res/drawable-xxxhdpi/xy_down.9.png
new file mode 100755
index 0000000..7a45e83
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/xy_down.9.png differ
diff --git a/app/src/main/res/drawable-xxxhdpi/xy_up.9.png b/app/src/main/res/drawable-xxxhdpi/xy_up.9.png
new file mode 100755
index 0000000..3a80b91
Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/xy_up.9.png differ
diff --git a/app/src/main/res/drawable/ans_button.xml b/app/src/main/res/drawable/ans_button.xml
new file mode 100755
index 0000000..b162eb9
--- /dev/null
+++ b/app/src/main/res/drawable/ans_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/background_picture.png b/app/src/main/res/drawable/background_picture.png
new file mode 100755
index 0000000..ef1a536
Binary files /dev/null and b/app/src/main/res/drawable/background_picture.png differ
diff --git a/app/src/main/res/drawable/ce_button.xml b/app/src/main/res/drawable/ce_button.xml
new file mode 100755
index 0000000..21cf845
--- /dev/null
+++ b/app/src/main/res/drawable/ce_button.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/check_button.xml b/app/src/main/res/drawable/check_button.xml
new file mode 100755
index 0000000..d22737d
--- /dev/null
+++ b/app/src/main/res/drawable/check_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/close_pen_button.xml b/app/src/main/res/drawable/close_pen_button.xml
new file mode 100755
index 0000000..3fb1ab6
--- /dev/null
+++ b/app/src/main/res/drawable/close_pen_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/cos_button.xml b/app/src/main/res/drawable/cos_button.xml
new file mode 100755
index 0000000..3bc1348
--- /dev/null
+++ b/app/src/main/res/drawable/cos_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/custom_0_button.xml b/app/src/main/res/drawable/custom_0_button.xml
new file mode 100755
index 0000000..5b7af97
--- /dev/null
+++ b/app/src/main/res/drawable/custom_0_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/custom_1_button.xml b/app/src/main/res/drawable/custom_1_button.xml
new file mode 100755
index 0000000..5d1d373
--- /dev/null
+++ b/app/src/main/res/drawable/custom_1_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/custom_2_button.xml b/app/src/main/res/drawable/custom_2_button.xml
new file mode 100755
index 0000000..b00e19d
--- /dev/null
+++ b/app/src/main/res/drawable/custom_2_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/custom_3_button.xml b/app/src/main/res/drawable/custom_3_button.xml
new file mode 100755
index 0000000..57e8849
--- /dev/null
+++ b/app/src/main/res/drawable/custom_3_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/custom_4_button.xml b/app/src/main/res/drawable/custom_4_button.xml
new file mode 100755
index 0000000..7bcd8a4
--- /dev/null
+++ b/app/src/main/res/drawable/custom_4_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/custom_5_button.xml b/app/src/main/res/drawable/custom_5_button.xml
new file mode 100755
index 0000000..f5fb6b7
--- /dev/null
+++ b/app/src/main/res/drawable/custom_5_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/custom_6_button.xml b/app/src/main/res/drawable/custom_6_button.xml
new file mode 100755
index 0000000..21c1319
--- /dev/null
+++ b/app/src/main/res/drawable/custom_6_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/custom_8_button.xml b/app/src/main/res/drawable/custom_8_button.xml
new file mode 100755
index 0000000..16f9da9
--- /dev/null
+++ b/app/src/main/res/drawable/custom_8_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/custom_9_button.xml b/app/src/main/res/drawable/custom_9_button.xml
new file mode 100755
index 0000000..b934502
--- /dev/null
+++ b/app/src/main/res/drawable/custom_9_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/custom_button_7.xml b/app/src/main/res/drawable/custom_button_7.xml
new file mode 100755
index 0000000..8b5467f
--- /dev/null
+++ b/app/src/main/res/drawable/custom_button_7.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/deg_button.xml b/app/src/main/res/drawable/deg_button.xml
new file mode 100755
index 0000000..498b159
--- /dev/null
+++ b/app/src/main/res/drawable/deg_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/divide_button.xml b/app/src/main/res/drawable/divide_button.xml
new file mode 100755
index 0000000..6026f2d
--- /dev/null
+++ b/app/src/main/res/drawable/divide_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/e_button.xml b/app/src/main/res/drawable/e_button.xml
new file mode 100755
index 0000000..58acab8
--- /dev/null
+++ b/app/src/main/res/drawable/e_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/equal_button.xml b/app/src/main/res/drawable/equal_button.xml
new file mode 100755
index 0000000..3a5de3d
--- /dev/null
+++ b/app/src/main/res/drawable/equal_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/exp_button.xml b/app/src/main/res/drawable/exp_button.xml
new file mode 100755
index 0000000..48521d8
--- /dev/null
+++ b/app/src/main/res/drawable/exp_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/inv_button.xml b/app/src/main/res/drawable/inv_button.xml
new file mode 100755
index 0000000..9a152ed
--- /dev/null
+++ b/app/src/main/res/drawable/inv_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/ln_button.xml b/app/src/main/res/drawable/ln_button.xml
new file mode 100755
index 0000000..9d38f49
--- /dev/null
+++ b/app/src/main/res/drawable/ln_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/log_button.xml b/app/src/main/res/drawable/log_button.xml
new file mode 100755
index 0000000..4f6394c
--- /dev/null
+++ b/app/src/main/res/drawable/log_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/open_pen_button.xml b/app/src/main/res/drawable/open_pen_button.xml
new file mode 100755
index 0000000..fb7086a
--- /dev/null
+++ b/app/src/main/res/drawable/open_pen_button.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/percentage_button.xml b/app/src/main/res/drawable/percentage_button.xml
new file mode 100755
index 0000000..e59b891
--- /dev/null
+++ b/app/src/main/res/drawable/percentage_button.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/plus_button.xml b/app/src/main/res/drawable/plus_button.xml
new file mode 100755
index 0000000..e210757
--- /dev/null
+++ b/app/src/main/res/drawable/plus_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/point_button.xml b/app/src/main/res/drawable/point_button.xml
new file mode 100755
index 0000000..6c3bb73
--- /dev/null
+++ b/app/src/main/res/drawable/point_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/rad_button.xml b/app/src/main/res/drawable/rad_button.xml
new file mode 100755
index 0000000..b35bcca
--- /dev/null
+++ b/app/src/main/res/drawable/rad_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/sin_button.xml b/app/src/main/res/drawable/sin_button.xml
new file mode 100755
index 0000000..bddc403
--- /dev/null
+++ b/app/src/main/res/drawable/sin_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/subtract_button.xml b/app/src/main/res/drawable/subtract_button.xml
new file mode 100755
index 0000000..621a322
--- /dev/null
+++ b/app/src/main/res/drawable/subtract_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/tan_button.xml b/app/src/main/res/drawable/tan_button.xml
new file mode 100755
index 0000000..62f18d1
--- /dev/null
+++ b/app/src/main/res/drawable/tan_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/times_button.xml b/app/src/main/res/drawable/times_button.xml
new file mode 100755
index 0000000..4166b24
--- /dev/null
+++ b/app/src/main/res/drawable/times_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/tt_button.xml b/app/src/main/res/drawable/tt_button.xml
new file mode 100755
index 0000000..9428674
--- /dev/null
+++ b/app/src/main/res/drawable/tt_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/xx_button.xml b/app/src/main/res/drawable/xx_button.xml
new file mode 100755
index 0000000..0fce826
--- /dev/null
+++ b/app/src/main/res/drawable/xx_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/xy_button.xml b/app/src/main/res/drawable/xy_button.xml
new file mode 100755
index 0000000..e434520
--- /dev/null
+++ b/app/src/main/res/drawable/xy_button.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout-land/main_layout.xml b/app/src/main/res/layout-land/main_layout.xml
new file mode 100755
index 0000000..4d3057c
--- /dev/null
+++ b/app/src/main/res/layout-land/main_layout.xml
@@ -0,0 +1,384 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/main_layout.xml b/app/src/main/res/layout/main_layout.xml
new file mode 100755
index 0000000..fd2036d
--- /dev/null
+++ b/app/src/main/res/layout/main_layout.xml
@@ -0,0 +1,261 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-hdpi/Thumbs.db b/app/src/main/res/mipmap-hdpi/Thumbs.db
new file mode 100755
index 0000000..6610687
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/Thumbs.db differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.png b/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100755
index 0000000..ac5aec9
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/app/src/main/res/mipmap-mdpi/Thumbs.db b/app/src/main/res/mipmap-mdpi/Thumbs.db
new file mode 100755
index 0000000..beabbdb
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/Thumbs.db differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.png b/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100755
index 0000000..238c8c5
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/app/src/main/res/mipmap-xhdpi/Thumbs.db b/app/src/main/res/mipmap-xhdpi/Thumbs.db
new file mode 100755
index 0000000..025052b
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/Thumbs.db differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100755
index 0000000..09085ba
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/app/src/main/res/mipmap-xxhdpi/Thumbs.db b/app/src/main/res/mipmap-xxhdpi/Thumbs.db
new file mode 100755
index 0000000..9570401
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/Thumbs.db differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100755
index 0000000..92d44f4
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/Thumbs.db b/app/src/main/res/mipmap-xxxhdpi/Thumbs.db
new file mode 100755
index 0000000..41e2fc8
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/Thumbs.db differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100755
index 0000000..23cab82
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
new file mode 100755
index 0000000..efdeb92
--- /dev/null
+++ b/app/src/main/res/values/strings.xml
@@ -0,0 +1,3 @@
+
+ Calculator
+
diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml
new file mode 100755
index 0000000..084b42b
--- /dev/null
+++ b/app/src/main/res/values/styles.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
diff --git a/build.gradle b/build.gradle
new file mode 100755
index 0000000..80003fb
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,19 @@
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
+
+buildscript {
+ repositories {
+ jcenter()
+ }
+ dependencies {
+ classpath 'com.android.tools.build:gradle:1.2.3'
+
+ // NOTE: Do not place your application dependencies here; they belong
+ // in the individual module build.gradle files
+ }
+}
+
+allprojects {
+ repositories {
+ jcenter()
+ }
+}
diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar
new file mode 100755
index 0000000..8c0fb64
Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
new file mode 100755
index 0000000..0c71e76
--- /dev/null
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,6 @@
+#Wed Apr 10 15:27:10 PDT 2013
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip
diff --git a/gradlew b/gradlew
new file mode 100755
index 0000000..91a7e26
--- /dev/null
+++ b/gradlew
@@ -0,0 +1,164 @@
+#!/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
+
+# For Cygwin, ensure paths are in UNIX format before anything is touched.
+if $cygwin ; then
+ [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
+fi
+
+# 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\"`/" >&-
+APP_HOME="`pwd -P`"
+cd "$SAVED" >&-
+
+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"`
+
+ # 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/gradlew.bat b/gradlew.bat
new file mode 100755
index 0000000..aec9973
--- /dev/null
+++ b/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/settings.gradle b/settings.gradle
new file mode 100755
index 0000000..d3db109
--- /dev/null
+++ b/settings.gradle
@@ -0,0 +1 @@
+include ':app'