This commit is contained in:
horhik 2020-04-04 07:45:17 -03:00
parent 5be7f11bec
commit 4e17994f9e
84 changed files with 19015 additions and 1647 deletions

55
android/app/BUCK Normal file
View File

@ -0,0 +1,55 @@
# To learn about Buck see [Docs](https://buckbuild.com/).
# To run your application with Buck:
# - install Buck
# - `npm start` - to start the packager
# - `cd android`
# - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"`
# - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck
# - `buck install -r android/app` - compile, install and run application
#
load(":build_defs.bzl", "create_aar_targets", "create_jar_targets")
lib_deps = []
create_aar_targets(glob(["libs/*.aar"]))
create_jar_targets(glob(["libs/*.jar"]))
android_library(
name = "all-libs",
exported_deps = lib_deps,
)
android_library(
name = "app-code",
srcs = glob([
"src/main/java/**/*.java",
]),
deps = [
":all-libs",
":build_config",
":res",
],
)
android_build_config(
name = "build_config",
package = "com.ankilan",
)
android_resource(
name = "res",
package = "com.ankilan",
res = "src/main/res",
)
android_binary(
name = "app",
keystore = "//android/keystores:debug",
manifest = "src/main/AndroidManifest.xml",
package_type = "debug",
deps = [
":app-code",
],
)

225
android/app/build.gradle Normal file
View File

@ -0,0 +1,225 @@
apply plugin: "com.android.application"
import com.android.build.OutputFile
/**
* The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets
* and bundleReleaseJsAndAssets).
* These basically call `react-native bundle` with the correct arguments during the Android build
* cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
* bundle directly from the development server. Below you can see all the possible configurations
* and their defaults. If you decide to add a configuration block, make sure to add it before the
* `apply from: "../../node_modules/react-native/react.gradle"` line.
*
* project.ext.react = [
* // the name of the generated asset file containing your JS bundle
* bundleAssetName: "index.android.bundle",
*
* // the entry file for bundle generation. If none specified and
* // "index.android.js" exists, it will be used. Otherwise "index.js" is
* // default. Can be overridden with ENTRY_FILE environment variable.
* entryFile: "index.android.js",
*
* // https://facebook.github.io/react-native/docs/performance#enable-the-ram-format
* bundleCommand: "ram-bundle",
*
* // whether to bundle JS and assets in debug mode
* bundleInDebug: false,
*
* // whether to bundle JS and assets in release mode
* bundleInRelease: true,
*
* // whether to bundle JS and assets in another build variant (if configured).
* // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
* // The configuration property can be in the following formats
* // 'bundleIn${productFlavor}${buildType}'
* // 'bundleIn${buildType}'
* // bundleInFreeDebug: true,
* // bundleInPaidRelease: true,
* // bundleInBeta: true,
*
* // whether to disable dev mode in custom build variants (by default only disabled in release)
* // for example: to disable dev mode in the staging build type (if configured)
* devDisabledInStaging: true,
* // The configuration property can be in the following formats
* // 'devDisabledIn${productFlavor}${buildType}'
* // 'devDisabledIn${buildType}'
*
* // the root of your project, i.e. where "package.json" lives
* root: "../../",
*
* // where to put the JS bundle asset in debug mode
* jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
*
* // where to put the JS bundle asset in release mode
* jsBundleDirRelease: "$buildDir/intermediates/assets/release",
*
* // where to put drawable resources / React Native assets, e.g. the ones you use via
* // require('./image.png')), in debug mode
* resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
*
* // where to put drawable resources / React Native assets, e.g. the ones you use via
* // require('./image.png')), in release mode
* resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
*
* // by default the gradle tasks are skipped if none of the JS files or assets change; this means
* // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
* // date; if you have any other folders that you want to ignore for performance reasons (gradle
* // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
* // for example, you might want to remove it from here.
* inputExcludes: ["android/**", "ios/**"],
*
* // override which node gets called and with what additional arguments
* nodeExecutableAndArgs: ["node"],
*
* // supply additional arguments to the packager
* extraPackagerArgs: []
* ]
*/
project.ext.react = [
enableHermes: false, // clean and rebuild if changing
]
apply from: "../../node_modules/react-native/react.gradle"
/**
* Set this to true to create two separate APKs instead of one:
* - An APK that only works on ARM devices
* - An APK that only works on x86 devices
* The advantage is the size of the APK is reduced by about 4MB.
* Upload all the APKs to the Play Store and people will download
* the correct one based on the CPU architecture of their device.
*/
def enableSeparateBuildPerCPUArchitecture = false
/**
* Run Proguard to shrink the Java bytecode in release builds.
*/
def enableProguardInReleaseBuilds = false
/**
* The preferred build flavor of JavaScriptCore.
*
* For example, to use the international variant, you can use:
* `def jscFlavor = 'org.webkit:android-jsc-intl:+'`
*
* The international variant includes ICU i18n library and necessary data
* allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
* give correct results when using with locales other than en-US. Note that
* this variant is about 6MiB larger per architecture than default.
*/
def jscFlavor = 'org.webkit:android-jsc:+'
/**
* Whether to enable the Hermes VM.
*
* This should be set on project.ext.react and mirrored here. If it is not set
* on project.ext.react, JavaScript will not be compiled to Hermes Bytecode
* and the benefits of using Hermes will therefore be sharply reduced.
*/
def enableHermes = project.ext.react.get("enableHermes", false);
android {
compileSdkVersion rootProject.ext.compileSdkVersion
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
defaultConfig {
applicationId "com.ankilan"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "1.0"
}
splits {
abi {
reset()
enable enableSeparateBuildPerCPUArchitecture
universalApk false // If true, also generate a universal APK
include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}
}
signingConfigs {
debug {
storeFile file('debug.keystore')
storePassword 'android'
keyAlias 'androiddebugkey'
keyPassword 'android'
}
}
buildTypes {
debug {
signingConfig signingConfigs.debug
}
release {
// Caution! In production, you need to generate your own keystore file.
// see https://facebook.github.io/react-native/docs/signed-apk-android.
signingConfig signingConfigs.debug
minifyEnabled enableProguardInReleaseBuilds
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
}
}
packagingOptions {
pickFirst "lib/armeabi-v7a/libc++_shared.so"
pickFirst "lib/arm64-v8a/libc++_shared.so"
pickFirst "lib/x86/libc++_shared.so"
pickFirst "lib/x86_64/libc++_shared.so"
}
// applicationVariants are e.g. debug, release
applicationVariants.all { variant ->
variant.outputs.each { output ->
// For each separate APK per architecture, set a unique version code as described here:
// https://developer.android.com/studio/build/configure-apk-splits.html
def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4]
def abi = output.getFilter(OutputFile.ABI)
if (abi != null) { // null for the universal-debug, universal-release variants
output.versionCodeOverride =
versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
}
}
}
}
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
//noinspection GradleDynamicVersion
implementation "com.facebook.react:react-native:+" // From node_modules
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0"
debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") {
exclude group:'com.facebook.fbjni'
}
debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") {
exclude group:'com.facebook.flipper'
}
debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") {
exclude group:'com.facebook.flipper'
}
if (enableHermes) {
def hermesPath = "../../node_modules/hermes-engine/android/";
debugImplementation files(hermesPath + "hermes-debug.aar")
releaseImplementation files(hermesPath + "hermes-release.aar")
} else {
implementation jscFlavor
}
}
// Run this once to be able to run the application with BUCK
// puts all compile dependencies into folder libs for BUCK to use
task copyDownloadableDepsToLibs(type: Copy) {
from configurations.compile
into 'libs'
}
apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)

View File

@ -0,0 +1,19 @@
"""Helper definitions to glob .aar and .jar targets"""
def create_aar_targets(aarfiles):
for aarfile in aarfiles:
name = "aars__" + aarfile[aarfile.rindex("/") + 1:aarfile.rindex(".aar")]
lib_deps.append(":" + name)
android_prebuilt_aar(
name = name,
aar = aarfile,
)
def create_jar_targets(jarfiles):
for jarfile in jarfiles:
name = "jars__" + jarfile[jarfile.rindex("/") + 1:jarfile.rindex(".jar")]
lib_deps.append(":" + name)
prebuilt_jar(
name = name,
binary_jar = jarfile,
)

BIN
android/app/debug.keystore Normal file

Binary file not shown.

10
android/app/proguard-rules.pro vendored Normal file
View File

@ -0,0 +1,10 @@
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in /usr/local/Cellar/android-sdk/24.3.3/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:

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
<application android:usesCleartextTraffic="true" tools:targetApi="28" tools:ignore="GoogleAppIndexingWarning" />
</manifest>

View File

@ -0,0 +1,72 @@
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* <p>This source code is licensed under the MIT license found in the LICENSE file in the root
* directory of this source tree.
*/
package com.ankilan;
import android.content.Context;
import com.facebook.flipper.android.AndroidFlipperClient;
import com.facebook.flipper.android.utils.FlipperUtils;
import com.facebook.flipper.core.FlipperClient;
import com.facebook.flipper.plugins.crashreporter.CrashReporterPlugin;
import com.facebook.flipper.plugins.databases.DatabasesFlipperPlugin;
import com.facebook.flipper.plugins.fresco.FrescoFlipperPlugin;
import com.facebook.flipper.plugins.inspector.DescriptorMapping;
import com.facebook.flipper.plugins.inspector.InspectorFlipperPlugin;
import com.facebook.flipper.plugins.network.FlipperOkhttpInterceptor;
import com.facebook.flipper.plugins.network.NetworkFlipperPlugin;
import com.facebook.flipper.plugins.react.ReactFlipperPlugin;
import com.facebook.flipper.plugins.sharedpreferences.SharedPreferencesFlipperPlugin;
import com.facebook.react.ReactInstanceManager;
import com.facebook.react.bridge.ReactContext;
import com.facebook.react.modules.network.NetworkingModule;
import okhttp3.OkHttpClient;
public class ReactNativeFlipper {
public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) {
if (FlipperUtils.shouldEnableFlipper(context)) {
final FlipperClient client = AndroidFlipperClient.getInstance(context);
client.addPlugin(new InspectorFlipperPlugin(context, DescriptorMapping.withDefaults()));
client.addPlugin(new ReactFlipperPlugin());
client.addPlugin(new DatabasesFlipperPlugin(context));
client.addPlugin(new SharedPreferencesFlipperPlugin(context));
client.addPlugin(CrashReporterPlugin.getInstance());
NetworkFlipperPlugin networkFlipperPlugin = new NetworkFlipperPlugin();
NetworkingModule.setCustomClientBuilder(
new NetworkingModule.CustomClientBuilder() {
@Override
public void apply(OkHttpClient.Builder builder) {
builder.addNetworkInterceptor(new FlipperOkhttpInterceptor(networkFlipperPlugin));
}
});
client.addPlugin(networkFlipperPlugin);
client.start();
// Fresco Plugin needs to ensure that ImagePipelineFactory is initialized
// Hence we run if after all native modules have been initialized
ReactContext reactContext = reactInstanceManager.getCurrentReactContext();
if (reactContext == null) {
reactInstanceManager.addReactInstanceEventListener(
new ReactInstanceManager.ReactInstanceEventListener() {
@Override
public void onReactContextInitialized(ReactContext reactContext) {
reactInstanceManager.removeReactInstanceEventListener(this);
reactContext.runOnNativeModulesQueueThread(
new Runnable() {
@Override
public void run() {
client.addPlugin(new FrescoFlipperPlugin());
}
});
}
});
} else {
client.addPlugin(new FrescoFlipperPlugin());
}
}
}
}

View File

@ -0,0 +1,29 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.ankilan">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:name=".MainApplication"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:allowBackup="false"
android:theme="@style/AppTheme"
tools:replace="android:allowBackup">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
android:launchMode="singleTask"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
</application>
</manifest>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,15 @@
package com.ankilan;
import com.facebook.react.ReactActivity;
public class MainActivity extends ReactActivity {
/**
* Returns the name of the main component registered from JavaScript. This is used to schedule
* rendering of the component.
*/
@Override
protected String getMainComponentName() {
return "ankilan";
}
}

View File

@ -0,0 +1,80 @@
package com.ankilan;
import android.app.Application;
import android.content.Context;
import com.facebook.react.PackageList;
import com.facebook.react.ReactApplication;
import com.facebook.react.ReactInstanceManager;
import com.facebook.react.ReactNativeHost;
import com.facebook.react.ReactPackage;
import com.facebook.soloader.SoLoader;
import java.lang.reflect.InvocationTargetException;
import java.util.List;
public class MainApplication extends Application implements ReactApplication {
private final ReactNativeHost mReactNativeHost =
new ReactNativeHost(this) {
@Override
public boolean getUseDeveloperSupport() {
return BuildConfig.DEBUG;
}
@Override
protected List<ReactPackage> getPackages() {
@SuppressWarnings("UnnecessaryLocalVariable")
List<ReactPackage> packages = new PackageList(this).getPackages();
// Packages that cannot be autolinked yet can be added manually here, for example:
// packages.add(new MyReactNativePackage());
return packages;
}
@Override
protected String getJSMainModuleName() {
return "index";
}
};
@Override
public ReactNativeHost getReactNativeHost() {
return mReactNativeHost;
}
@Override
public void onCreate() {
super.onCreate();
SoLoader.init(this, /* native exopackage */ false);
initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
}
/**
* Loads Flipper in React Native templates. Call this in the onCreate method with something like
* initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
*
* @param context
* @param reactInstanceManager
*/
private static void initializeFlipper(
Context context, ReactInstanceManager reactInstanceManager) {
if (BuildConfig.DEBUG) {
try {
/*
We use reflection here to pick up the class that initializes Flipper,
since Flipper library is not available in release mode
*/
Class<?> aClass = Class.forName("com.ankilan.ReactNativeFlipper");
aClass
.getMethod("initializeFlipper", Context.class, ReactInstanceManager.class)
.invoke(null, context, reactInstanceManager);
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (NoSuchMethodException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
}
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,4 @@
{
"name": "ankilan",
"displayName": "ankilan"
}

View File

@ -0,0 +1,300 @@
{
"stepforward": 58880,
"stepbackward": 58881,
"forward": 58882,
"banckward": 58883,
"caretright": 58884,
"caretleft": 58885,
"caretdown": 58886,
"caretup": 58887,
"rightcircle": 58888,
"leftcircle": 58889,
"upcircle": 58890,
"downcircle": 58891,
"rightcircleo": 58892,
"leftcircleo": 58893,
"upcircleo": 58894,
"downcircleo": 58895,
"verticleleft": 58896,
"verticleright": 58897,
"back": 58898,
"retweet": 58899,
"shrink": 58900,
"arrowsalt": 58901,
"doubleright": 58903,
"doubleleft": 58904,
"arrowdown": 58905,
"arrowup": 58906,
"arrowright": 58907,
"arrowleft": 58908,
"down": 58909,
"up": 58910,
"right": 58911,
"left": 58912,
"minussquareo": 58913,
"minuscircle": 58914,
"minuscircleo": 58915,
"minus": 58916,
"pluscircleo": 58917,
"pluscircle": 58918,
"plus": 58919,
"infocirlce": 58920,
"infocirlceo": 58921,
"info": 58922,
"exclamation": 58923,
"exclamationcircle": 58924,
"exclamationcircleo": 58925,
"closecircle": 58926,
"closecircleo": 58927,
"checkcircle": 58928,
"checkcircleo": 58929,
"check": 58930,
"close": 58931,
"customerservice": 58932,
"creditcard": 58933,
"codesquareo": 58934,
"book": 58935,
"barschart": 58936,
"bars": 58937,
"question": 58938,
"questioncircle": 58939,
"questioncircleo": 58940,
"pause": 58941,
"pausecircle": 58942,
"pausecircleo": 58943,
"clockcircle": 58944,
"clockcircleo": 58945,
"swap": 58946,
"swapleft": 58947,
"swapright": 58948,
"plussquareo": 58949,
"frown": 58950,
"menufold": 58968,
"mail": 58969,
"link": 58971,
"areachart": 58972,
"linechart": 58973,
"home": 58974,
"laptop": 58975,
"star": 58976,
"staro": 58977,
"filter": 58979,
"meho": 58982,
"meh": 58983,
"shoppingcart": 58984,
"save": 58985,
"user": 58986,
"videocamera": 58987,
"totop": 58988,
"team": 58989,
"sharealt": 58993,
"setting": 58994,
"picture": 58996,
"phone": 58997,
"paperclip": 58998,
"notification": 58999,
"menuunfold": 59001,
"inbox": 59002,
"lock": 59003,
"qrcode": 59004,
"tags": 59005,
"tagso": 59006,
"cloudo": 59007,
"cloud": 59008,
"cloudupload": 59009,
"clouddownload": 59010,
"clouddownloado": 59011,
"clouduploado": 59012,
"enviroment": 59013,
"enviromento": 59014,
"eye": 59015,
"eyeo": 59016,
"camera": 59017,
"camerao": 59018,
"windows": 59019,
"export2": 59024,
"export": 59025,
"circledowno": 59027,
"circledown": 59028,
"hdd": 59034,
"ie": 59035,
"delete": 59039,
"enter": 59040,
"pushpino": 59041,
"pushpin": 59042,
"heart": 59043,
"hearto": 59044,
"smile-circle": 59047,
"smileo": 59048,
"frowno": 59049,
"calculator": 59050,
"chrome": 59052,
"github": 59053,
"iconfontdesktop": 59060,
"caretcircleoup": 59061,
"upload": 59062,
"download": 59063,
"piechart": 59064,
"lock1": 59065,
"unlock": 59066,
"windowso": 59068,
"dotchart": 59069,
"barchart": 59070,
"codesquare": 59071,
"plussquare": 59072,
"minussquare": 59073,
"closesquare": 59074,
"closesquareo": 59075,
"checksquare": 59076,
"checksquareo": 59077,
"fastbackward": 59078,
"fastforward": 59079,
"upsquare": 59080,
"downsquare": 59081,
"leftsquare": 59082,
"rightsquare": 59083,
"rightsquareo": 59084,
"leftsquareo": 59085,
"down-square-o": 59086,
"up-square-o": 59087,
"play": 59088,
"playcircleo": 59089,
"tag": 59090,
"tago": 59091,
"addfile": 59664,
"folder1": 58978,
"file1": 58980,
"switcher": 59667,
"addfolder": 59668,
"folderopen": 59033,
"search1": 58992,
"ellipsis1": 58951,
"calendar": 59067,
"filetext1": 59032,
"copy1": 58952,
"jpgfile1": 59036,
"pdffile1": 59059,
"exclefile1": 59056,
"pptfile1": 59057,
"unknowfile1": 59055,
"wordfile1": 59058,
"dingding": 59683,
"dingding-o": 59685,
"mobile1": 59000,
"tablet1": 58990,
"bells": 58958,
"disconnect": 58959,
"database": 58960,
"barcode": 58962,
"hourglass": 58963,
"key": 58964,
"flag": 58965,
"layout": 58966,
"printer": 58995,
"USB": 59095,
"skin": 59096,
"tool": 59097,
"car": 59100,
"addusergroup": 59101,
"carryout": 59103,
"deleteuser": 59104,
"deleteusergroup": 59105,
"man": 59106,
"isv": 59107,
"gift": 59108,
"idcard": 59109,
"medicinebox": 59110,
"redenvelopes": 59111,
"rest": 59112,
"Safety": 59114,
"wallet": 59115,
"woman": 59116,
"adduser": 59117,
"bank": 59118,
"Trophy": 59119,
"loading1": 59054,
"loading2": 58957,
"like2": 59037,
"dislike2": 59038,
"like1": 58956,
"dislike1": 58955,
"bulb1": 58953,
"rocket1": 59663,
"select1": 58954,
"apple1": 59020,
"apple-o": 59092,
"android1": 59704,
"android": 59021,
"aliwangwang-o1": 59023,
"aliwangwang": 59022,
"pay-circle1": 59045,
"pay-circle-o1": 59046,
"poweroff": 59093,
"trademark": 58961,
"find": 59099,
"copyright": 59102,
"sound": 59113,
"earth": 59121,
"wifi": 59094,
"sync": 59098,
"login": 58967,
"logout": 58970,
"reload1": 58902,
"message1": 59051,
"shake": 59727,
"API": 59729,
"appstore-o": 59029,
"appstore1": 59030,
"scan1": 59031,
"exception1": 58981,
"contacts": 59120,
"solution1": 58991,
"fork": 59122,
"edit": 59026,
"form": 59798,
"warning": 59799,
"table": 59800,
"profile": 59801,
"dashboard": 59802,
"indent-left": 59814,
"indent-right": 59815,
"menu-unfold": 59820,
"menu-fold": 59821,
"antdesign": 59826,
"alipay-square": 59827,
"codepen-circle": 59828,
"google": 59829,
"amazon": 59830,
"codepen": 59831,
"facebook-square": 59832,
"dropbox": 59833,
"googleplus": 59834,
"linkedin-square": 59835,
"medium-monogram": 59836,
"gitlab": 59837,
"medium-wordmark": 59838,
"QQ": 59839,
"skype": 59840,
"taobao-square": 59841,
"alipay-circle": 59842,
"youtube": 59843,
"wechat": 59844,
"twitter": 59845,
"weibo": 59846,
"HTML": 59847,
"taobao-circle": 59123,
"weibo-circle": 59124,
"weibo-square": 59125,
"CodeSandbox": 59860,
"aliyun": 59892,
"zhihu": 59139,
"behance": 59143,
"dribbble": 59145,
"dribbble-square": 59146,
"behance-square": 59144,
"file-markdown": 59140,
"instagram": 59147,
"yuque": 59148,
"slack": 59141,
"slack-square": 59142
}

View File

@ -0,0 +1,413 @@
{
"500px": 61696,
"500px-with-circle": 61697,
"add-to-list": 61698,
"add-user": 61699,
"address": 61700,
"adjust": 61701,
"air": 61702,
"aircraft": 61703,
"aircraft-landing": 61704,
"aircraft-take-off": 61705,
"align-bottom": 61706,
"align-horizontal-middle": 61707,
"align-left": 61708,
"align-right": 61709,
"align-top": 61710,
"align-vertical-middle": 61711,
"app-store": 61712,
"archive": 61713,
"area-graph": 61714,
"arrow-bold-down": 61715,
"arrow-bold-left": 61716,
"arrow-bold-right": 61717,
"arrow-bold-up": 61718,
"arrow-down": 61719,
"arrow-left": 61720,
"arrow-long-down": 61721,
"arrow-long-left": 61722,
"arrow-long-right": 61723,
"arrow-long-up": 61724,
"arrow-right": 61725,
"arrow-up": 61726,
"arrow-with-circle-down": 61727,
"arrow-with-circle-left": 61728,
"arrow-with-circle-right": 61729,
"arrow-with-circle-up": 61730,
"attachment": 61731,
"awareness-ribbon": 61732,
"back": 61733,
"back-in-time": 61734,
"baidu": 61735,
"bar-graph": 61736,
"basecamp": 61737,
"battery": 61738,
"beamed-note": 61739,
"behance": 61740,
"bell": 61741,
"blackboard": 61742,
"block": 61743,
"book": 61744,
"bookmark": 61745,
"bookmarks": 61746,
"bowl": 61747,
"box": 61748,
"briefcase": 61749,
"browser": 61750,
"brush": 61751,
"bucket": 61752,
"bug": 61753,
"cake": 61754,
"calculator": 61755,
"calendar": 61756,
"camera": 61757,
"ccw": 61758,
"chat": 61759,
"check": 61760,
"chevron-down": 61761,
"chevron-left": 61762,
"chevron-right": 61763,
"chevron-small-down": 61764,
"chevron-small-left": 61765,
"chevron-small-right": 61766,
"chevron-small-up": 61767,
"chevron-thin-down": 61768,
"chevron-thin-left": 61769,
"chevron-thin-right": 61770,
"chevron-thin-up": 61771,
"chevron-up": 61772,
"chevron-with-circle-down": 61773,
"chevron-with-circle-left": 61774,
"chevron-with-circle-right": 61775,
"chevron-with-circle-up": 61776,
"circle": 61777,
"circle-with-cross": 61778,
"circle-with-minus": 61779,
"circle-with-plus": 61780,
"circular-graph": 61781,
"clapperboard": 61782,
"classic-computer": 61783,
"clipboard": 61784,
"clock": 61785,
"cloud": 61786,
"code": 61787,
"cog": 61788,
"colours": 61789,
"compass": 61790,
"controller-fast-backward": 61791,
"controller-fast-forward": 61792,
"controller-jump-to-start": 61793,
"controller-next": 61794,
"controller-paus": 61795,
"controller-play": 61796,
"controller-record": 61797,
"controller-stop": 61798,
"controller-volume": 61799,
"copy": 61800,
"creative-cloud": 61801,
"creative-commons": 61802,
"creative-commons-attribution": 61803,
"creative-commons-noderivs": 61804,
"creative-commons-noncommercial-eu": 61805,
"creative-commons-noncommercial-us": 61806,
"creative-commons-public-domain": 61807,
"creative-commons-remix": 61808,
"creative-commons-share": 61809,
"creative-commons-sharealike": 61810,
"credit": 61811,
"credit-card": 61812,
"crop": 61813,
"cross": 61814,
"cup": 61815,
"cw": 61816,
"cycle": 61817,
"database": 61818,
"dial-pad": 61819,
"direction": 61820,
"document": 61821,
"document-landscape": 61822,
"documents": 61823,
"dot-single": 61824,
"dots-three-horizontal": 61825,
"dots-three-vertical": 61826,
"dots-two-horizontal": 61827,
"dots-two-vertical": 61828,
"download": 61829,
"dribbble": 61830,
"dribbble-with-circle": 61831,
"drink": 61832,
"drive": 61833,
"drop": 61834,
"dropbox": 61835,
"edit": 61836,
"email": 61837,
"emoji-flirt": 61838,
"emoji-happy": 61839,
"emoji-neutral": 61840,
"emoji-sad": 61841,
"erase": 61842,
"eraser": 61843,
"evernote": 61844,
"export": 61845,
"eye": 61846,
"eye-with-line": 61847,
"facebook": 61848,
"facebook-with-circle": 61849,
"feather": 61850,
"fingerprint": 61851,
"flag": 61852,
"flash": 61853,
"flashlight": 61854,
"flat-brush": 61855,
"flattr": 61856,
"flickr": 61857,
"flickr-with-circle": 61858,
"flow-branch": 61859,
"flow-cascade": 61860,
"flow-line": 61861,
"flow-parallel": 61862,
"flow-tree": 61863,
"flower": 61864,
"folder": 61865,
"folder-images": 61866,
"folder-music": 61867,
"folder-video": 61868,
"forward": 61869,
"foursquare": 61870,
"funnel": 61871,
"game-controller": 61872,
"gauge": 61873,
"github": 61874,
"github-with-circle": 61875,
"globe": 61876,
"google-": 61877,
"google--with-circle": 61878,
"google-drive": 61879,
"google-hangouts": 61880,
"google-play": 61881,
"graduation-cap": 61882,
"grid": 61883,
"grooveshark": 61884,
"hair-cross": 61885,
"hand": 61886,
"heart": 61887,
"heart-outlined": 61888,
"help": 61889,
"help-with-circle": 61890,
"home": 61891,
"hour-glass": 61892,
"houzz": 61893,
"icloud": 61894,
"image": 61895,
"image-inverted": 61896,
"images": 61897,
"inbox": 61898,
"infinity": 61899,
"info": 61900,
"info-with-circle": 61901,
"instagram": 61902,
"instagram-with-circle": 61903,
"install": 61904,
"key": 61905,
"keyboard": 61906,
"lab-flask": 61907,
"landline": 61908,
"language": 61909,
"laptop": 61910,
"lastfm": 61911,
"lastfm-with-circle": 61912,
"layers": 61913,
"leaf": 61914,
"level-down": 61915,
"level-up": 61916,
"lifebuoy": 61917,
"light-bulb": 61918,
"light-down": 61919,
"light-up": 61920,
"line-graph": 61921,
"link": 61922,
"linkedin": 61923,
"linkedin-with-circle": 61924,
"list": 61925,
"location": 61926,
"location-pin": 61927,
"lock": 61928,
"lock-open": 61929,
"log-out": 61930,
"login": 61931,
"loop": 61932,
"magnet": 61933,
"magnifying-glass": 61934,
"mail": 61935,
"mail-with-circle": 61936,
"man": 61937,
"map": 61938,
"mask": 61939,
"medal": 61940,
"medium": 61941,
"medium-with-circle": 61942,
"megaphone": 61943,
"menu": 61944,
"merge": 61945,
"message": 61946,
"mic": 61947,
"minus": 61948,
"mixi": 61949,
"mobile": 61950,
"modern-mic": 61951,
"moon": 61952,
"mouse": 61953,
"mouse-pointer": 61954,
"music": 61955,
"network": 61956,
"new": 61957,
"new-message": 61958,
"news": 61959,
"newsletter": 61960,
"note": 61961,
"notification": 61962,
"notifications-off": 61963,
"old-mobile": 61964,
"old-phone": 61965,
"onedrive": 61966,
"open-book": 61967,
"palette": 61968,
"paper-plane": 61969,
"paypal": 61970,
"pencil": 61971,
"phone": 61972,
"picasa": 61973,
"pie-chart": 61974,
"pin": 61975,
"pinterest": 61976,
"pinterest-with-circle": 61977,
"plus": 61978,
"popup": 61979,
"power-plug": 61980,
"price-ribbon": 61981,
"price-tag": 61982,
"print": 61983,
"progress-empty": 61984,
"progress-full": 61985,
"progress-one": 61986,
"progress-two": 61987,
"publish": 61988,
"qq": 61989,
"qq-with-circle": 61990,
"quote": 61991,
"radio": 61992,
"raft": 61993,
"raft-with-circle": 61994,
"rainbow": 61995,
"rdio": 61996,
"rdio-with-circle": 61997,
"remove-user": 61998,
"renren": 61999,
"reply": 62000,
"reply-all": 62001,
"resize-100-": 62002,
"resize-full-screen": 62003,
"retweet": 62004,
"rocket": 62005,
"round-brush": 62006,
"rss": 62007,
"ruler": 62008,
"save": 62009,
"scissors": 62010,
"scribd": 62011,
"select-arrows": 62012,
"share": 62013,
"share-alternative": 62014,
"shareable": 62015,
"shield": 62016,
"shop": 62017,
"shopping-bag": 62018,
"shopping-basket": 62019,
"shopping-cart": 62020,
"shuffle": 62021,
"signal": 62022,
"sina-weibo": 62023,
"skype": 62024,
"skype-with-circle": 62025,
"slideshare": 62026,
"smashing": 62027,
"sound": 62028,
"sound-mix": 62029,
"sound-mute": 62030,
"soundcloud": 62031,
"sports-club": 62032,
"spotify": 62033,
"spotify-with-circle": 62034,
"spreadsheet": 62035,
"squared-cross": 62036,
"squared-minus": 62037,
"squared-plus": 62038,
"star": 62039,
"star-outlined": 62040,
"stopwatch": 62041,
"stumbleupon": 62042,
"stumbleupon-with-circle": 62043,
"suitcase": 62044,
"swap": 62045,
"swarm": 62046,
"sweden": 62047,
"switch": 62048,
"tablet": 62049,
"tablet-mobile-combo": 62050,
"tag": 62051,
"text": 62052,
"text-document": 62053,
"text-document-inverted": 62054,
"thermometer": 62055,
"thumbs-down": 62056,
"thumbs-up": 62057,
"thunder-cloud": 62058,
"ticket": 62059,
"time-slot": 62060,
"tools": 62061,
"traffic-cone": 62062,
"trash": 62063,
"tree": 62064,
"triangle-down": 62065,
"triangle-left": 62066,
"triangle-right": 62067,
"triangle-up": 62068,
"tripadvisor": 62069,
"trophy": 62070,
"tumblr": 62071,
"tumblr-with-circle": 62072,
"tv": 62073,
"twitter": 62074,
"twitter-with-circle": 62075,
"typing": 62076,
"uninstall": 62077,
"unread": 62078,
"untag": 62079,
"upload": 62080,
"upload-to-cloud": 62081,
"user": 62082,
"users": 62083,
"v-card": 62084,
"video": 62085,
"video-camera": 62086,
"vimeo": 62087,
"vimeo-with-circle": 62088,
"vine": 62089,
"vine-with-circle": 62090,
"vinyl": 62091,
"vk": 62092,
"vk-alternitive": 62093,
"vk-with-circle": 62094,
"voicemail": 62095,
"wallet": 62096,
"warning": 62097,
"water": 62098,
"windows-store": 62099,
"xing": 62100,
"xing-with-circle": 62101,
"yelp": 62102,
"youko": 62103,
"youko-with-circle": 62104,
"youtube": 62105,
"youtube-with-circle": 62106
}

View File

@ -0,0 +1,72 @@
{
"archive": 61696,
"arrow-down": 61697,
"arrow-left": 61698,
"arrow-right": 61699,
"arrow-up": 61700,
"bell": 61701,
"calendar": 61702,
"camera": 61703,
"cart": 61704,
"chart": 61705,
"check": 61706,
"chevron-down": 61707,
"chevron-left": 61708,
"chevron-right": 61709,
"chevron-up": 61710,
"clock": 61711,
"close": 61712,
"close-o": 61713,
"comment": 61714,
"credit-card": 61715,
"envelope": 61716,
"exclamation": 61717,
"external-link": 61718,
"eye": 61719,
"gear": 61720,
"heart": 61721,
"image": 61722,
"like": 61723,
"link": 61724,
"location": 61725,
"lock": 61726,
"minus": 61727,
"navicon": 61728,
"paperclip": 61729,
"pencil": 61730,
"play": 61731,
"plus": 61732,
"pointer": 61733,
"question": 61734,
"redo": 61735,
"refresh": 61736,
"retweet": 61737,
"sc-facebook": 61738,
"sc-github": 61739,
"sc-google-plus": 61740,
"sc-instagram": 61741,
"sc-linkedin": 61742,
"sc-odnoklassniki": 61743,
"sc-pinterest": 61744,
"sc-skype": 61745,
"sc-soundcloud": 61746,
"sc-telegram": 61747,
"sc-tumblr": 61748,
"sc-twitter": 61749,
"sc-vimeo": 61750,
"sc-vk": 61751,
"sc-youtube": 61752,
"search": 61753,
"share-apple": 61754,
"share-google": 61755,
"spinner": 61756,
"spinner-2": 61757,
"spinner-3": 61758,
"star": 61759,
"tag": 61760,
"trash": 61761,
"trophy": 61762,
"undo": 61763,
"unlock": 61764,
"user": 61765
}

View File

@ -0,0 +1,281 @@
{
"activity": 61696,
"airplay": 61697,
"alert-circle": 61698,
"alert-octagon": 61699,
"alert-triangle": 61700,
"align-center": 61701,
"align-justify": 61702,
"align-left": 61703,
"align-right": 61704,
"anchor": 61705,
"aperture": 61706,
"archive": 61707,
"arrow-down": 61708,
"arrow-down-circle": 61709,
"arrow-down-left": 61710,
"arrow-down-right": 61711,
"arrow-left": 61712,
"arrow-left-circle": 61713,
"arrow-right": 61714,
"arrow-right-circle": 61715,
"arrow-up": 61716,
"arrow-up-circle": 61717,
"arrow-up-left": 61718,
"arrow-up-right": 61719,
"at-sign": 61720,
"award": 61721,
"bar-chart": 61722,
"bar-chart-2": 61723,
"battery": 61724,
"battery-charging": 61725,
"bell": 61726,
"bell-off": 61727,
"bluetooth": 61728,
"bold": 61729,
"book": 61730,
"book-open": 61731,
"bookmark": 61732,
"box": 61733,
"briefcase": 61734,
"calendar": 61735,
"camera": 61736,
"camera-off": 61737,
"cast": 61738,
"check": 61739,
"check-circle": 61740,
"check-square": 61741,
"chevron-down": 61742,
"chevron-left": 61743,
"chevron-right": 61744,
"chevron-up": 61745,
"chevrons-down": 61746,
"chevrons-left": 61747,
"chevrons-right": 61748,
"chevrons-up": 61749,
"chrome": 61750,
"circle": 61751,
"clipboard": 61752,
"clock": 61753,
"cloud": 61754,
"cloud-drizzle": 61755,
"cloud-lightning": 61756,
"cloud-off": 61757,
"cloud-rain": 61758,
"cloud-snow": 61759,
"code": 61760,
"codepen": 61761,
"codesandbox": 61972,
"coffee": 61762,
"columns": 61973,
"command": 61763,
"compass": 61764,
"copy": 61765,
"corner-down-left": 61766,
"corner-down-right": 61767,
"corner-left-down": 61768,
"corner-left-up": 61769,
"corner-right-down": 61770,
"corner-right-up": 61771,
"corner-up-left": 61772,
"corner-up-right": 61773,
"cpu": 61774,
"credit-card": 61775,
"crop": 61776,
"crosshair": 61777,
"database": 61778,
"delete": 61779,
"disc": 61780,
"dollar-sign": 61781,
"download": 61782,
"download-cloud": 61783,
"droplet": 61784,
"edit": 61785,
"edit-2": 61786,
"edit-3": 61787,
"external-link": 61788,
"eye": 61789,
"eye-off": 61790,
"facebook": 61791,
"fast-forward": 61792,
"feather": 61793,
"figma": 61970,
"file": 61794,
"file-minus": 61795,
"file-plus": 61796,
"file-text": 61797,
"film": 61798,
"filter": 61799,
"flag": 61800,
"folder": 61801,
"folder-minus": 61802,
"folder-plus": 61803,
"frown": 61804,
"gift": 61805,
"git-branch": 61806,
"git-commit": 61807,
"git-merge": 61808,
"git-pull-request": 61809,
"github": 61810,
"gitlab": 61811,
"globe": 61812,
"grid": 61813,
"hard-drive": 61814,
"hash": 61815,
"headphones": 61816,
"heart": 61817,
"help-circle": 61818,
"hexagon": 61974,
"home": 61819,
"image": 61820,
"inbox": 61821,
"info": 61822,
"instagram": 61823,
"italic": 61824,
"key": 61967,
"layers": 61825,
"layout": 61826,
"life-buoy": 61827,
"link": 61828,
"link-2": 61829,
"linkedin": 61830,
"list": 61831,
"loader": 61832,
"lock": 61833,
"log-in": 61834,
"log-out": 61835,
"mail": 61836,
"map": 61837,
"map-pin": 61838,
"maximize": 61839,
"maximize-2": 61840,
"meh": 61841,
"menu": 61842,
"message-circle": 61843,
"message-square": 61844,
"mic": 61845,
"mic-off": 61846,
"minimize": 61847,
"minimize-2": 61848,
"minus": 61849,
"minus-circle": 61850,
"minus-square": 61851,
"monitor": 61852,
"moon": 61853,
"more-horizontal": 61854,
"more-vertical": 61855,
"mouse-pointer": 61968,
"move": 61856,
"music": 61857,
"navigation": 61858,
"navigation-2": 61859,
"octagon": 61860,
"package": 61861,
"paperclip": 61862,
"pause": 61863,
"pause-circle": 61864,
"pen-tool": 61969,
"percent": 61865,
"phone": 61866,
"phone-call": 61867,
"phone-forwarded": 61868,
"phone-incoming": 61869,
"phone-missed": 61870,
"phone-off": 61871,
"phone-outgoing": 61872,
"pie-chart": 61873,
"play": 61874,
"play-circle": 61875,
"plus": 61876,
"plus-circle": 61877,
"plus-square": 61878,
"pocket": 61879,
"power": 61880,
"printer": 61881,
"radio": 61882,
"refresh-ccw": 61883,
"refresh-cw": 61884,
"repeat": 61885,
"rewind": 61886,
"rotate-ccw": 61887,
"rotate-cw": 61888,
"rss": 61889,
"save": 61890,
"scissors": 61891,
"search": 61892,
"send": 61893,
"server": 61894,
"settings": 61895,
"share": 61896,
"share-2": 61897,
"shield": 61898,
"shield-off": 61899,
"shopping-bag": 61900,
"shopping-cart": 61901,
"shuffle": 61902,
"sidebar": 61903,
"skip-back": 61904,
"skip-forward": 61905,
"slack": 61906,
"slash": 61907,
"sliders": 61908,
"smartphone": 61909,
"smile": 61910,
"speaker": 61911,
"square": 61912,
"star": 61913,
"stop-circle": 61914,
"sun": 61915,
"sunrise": 61916,
"sunset": 61917,
"tablet": 61975,
"tag": 61919,
"target": 61920,
"terminal": 61921,
"thermometer": 61922,
"thumbs-down": 61923,
"thumbs-up": 61924,
"toggle-left": 61925,
"toggle-right": 61926,
"trash": 61927,
"trash-2": 61928,
"trello": 61929,
"trending-down": 61930,
"trending-up": 61931,
"triangle": 61932,
"truck": 61933,
"tv": 61934,
"twitter": 61935,
"type": 61936,
"umbrella": 61937,
"underline": 61938,
"unlock": 61939,
"upload": 61940,
"upload-cloud": 61941,
"user": 61942,
"user-check": 61943,
"user-minus": 61944,
"user-plus": 61945,
"user-x": 61946,
"users": 61947,
"video": 61948,
"video-off": 61949,
"voicemail": 61950,
"volume": 61951,
"volume-1": 61952,
"volume-2": 61953,
"volume-x": 61954,
"watch": 61955,
"wifi": 61956,
"wifi-off": 61957,
"wind": 61958,
"x": 61959,
"x-circle": 61960,
"x-octagon": 61971,
"x-square": 61961,
"youtube": 61962,
"zap": 61963,
"zap-off": 61964,
"zoom-in": 61965,
"zoom-out": 61966
}

View File

@ -0,0 +1,788 @@
{
"glass": 61440,
"music": 61441,
"search": 61442,
"envelope-o": 61443,
"heart": 61444,
"star": 61445,
"star-o": 61446,
"user": 61447,
"film": 61448,
"th-large": 61449,
"th": 61450,
"th-list": 61451,
"check": 61452,
"remove": 61453,
"close": 61453,
"times": 61453,
"search-plus": 61454,
"search-minus": 61456,
"power-off": 61457,
"signal": 61458,
"gear": 61459,
"cog": 61459,
"trash-o": 61460,
"home": 61461,
"file-o": 61462,
"clock-o": 61463,
"road": 61464,
"download": 61465,
"arrow-circle-o-down": 61466,
"arrow-circle-o-up": 61467,
"inbox": 61468,
"play-circle-o": 61469,
"rotate-right": 61470,
"repeat": 61470,
"refresh": 61473,
"list-alt": 61474,
"lock": 61475,
"flag": 61476,
"headphones": 61477,
"volume-off": 61478,
"volume-down": 61479,
"volume-up": 61480,
"qrcode": 61481,
"barcode": 61482,
"tag": 61483,
"tags": 61484,
"book": 61485,
"bookmark": 61486,
"print": 61487,
"camera": 61488,
"font": 61489,
"bold": 61490,
"italic": 61491,
"text-height": 61492,
"text-width": 61493,
"align-left": 61494,
"align-center": 61495,
"align-right": 61496,
"align-justify": 61497,
"list": 61498,
"dedent": 61499,
"outdent": 61499,
"indent": 61500,
"video-camera": 61501,
"photo": 61502,
"image": 61502,
"picture-o": 61502,
"pencil": 61504,
"map-marker": 61505,
"adjust": 61506,
"tint": 61507,
"edit": 61508,
"pencil-square-o": 61508,
"share-square-o": 61509,
"check-square-o": 61510,
"arrows": 61511,
"step-backward": 61512,
"fast-backward": 61513,
"backward": 61514,
"play": 61515,
"pause": 61516,
"stop": 61517,
"forward": 61518,
"fast-forward": 61520,
"step-forward": 61521,
"eject": 61522,
"chevron-left": 61523,
"chevron-right": 61524,
"plus-circle": 61525,
"minus-circle": 61526,
"times-circle": 61527,
"check-circle": 61528,
"question-circle": 61529,
"info-circle": 61530,
"crosshairs": 61531,
"times-circle-o": 61532,
"check-circle-o": 61533,
"ban": 61534,
"arrow-left": 61536,
"arrow-right": 61537,
"arrow-up": 61538,
"arrow-down": 61539,
"mail-forward": 61540,
"share": 61540,
"expand": 61541,
"compress": 61542,
"plus": 61543,
"minus": 61544,
"asterisk": 61545,
"exclamation-circle": 61546,
"gift": 61547,
"leaf": 61548,
"fire": 61549,
"eye": 61550,
"eye-slash": 61552,
"warning": 61553,
"exclamation-triangle": 61553,
"plane": 61554,
"calendar": 61555,
"random": 61556,
"comment": 61557,
"magnet": 61558,
"chevron-up": 61559,
"chevron-down": 61560,
"retweet": 61561,
"shopping-cart": 61562,
"folder": 61563,
"folder-open": 61564,
"arrows-v": 61565,
"arrows-h": 61566,
"bar-chart-o": 61568,
"bar-chart": 61568,
"twitter-square": 61569,
"facebook-square": 61570,
"camera-retro": 61571,
"key": 61572,
"gears": 61573,
"cogs": 61573,
"comments": 61574,
"thumbs-o-up": 61575,
"thumbs-o-down": 61576,
"star-half": 61577,
"heart-o": 61578,
"sign-out": 61579,
"linkedin-square": 61580,
"thumb-tack": 61581,
"external-link": 61582,
"sign-in": 61584,
"trophy": 61585,
"github-square": 61586,
"upload": 61587,
"lemon-o": 61588,
"phone": 61589,
"square-o": 61590,
"bookmark-o": 61591,
"phone-square": 61592,
"twitter": 61593,
"facebook-f": 61594,
"facebook": 61594,
"github": 61595,
"unlock": 61596,
"credit-card": 61597,
"feed": 61598,
"rss": 61598,
"hdd-o": 61600,
"bullhorn": 61601,
"bell": 61683,
"certificate": 61603,
"hand-o-right": 61604,
"hand-o-left": 61605,
"hand-o-up": 61606,
"hand-o-down": 61607,
"arrow-circle-left": 61608,
"arrow-circle-right": 61609,
"arrow-circle-up": 61610,
"arrow-circle-down": 61611,
"globe": 61612,
"wrench": 61613,
"tasks": 61614,
"filter": 61616,
"briefcase": 61617,
"arrows-alt": 61618,
"group": 61632,
"users": 61632,
"chain": 61633,
"link": 61633,
"cloud": 61634,
"flask": 61635,
"cut": 61636,
"scissors": 61636,
"copy": 61637,
"files-o": 61637,
"paperclip": 61638,
"save": 61639,
"floppy-o": 61639,
"square": 61640,
"navicon": 61641,
"reorder": 61641,
"bars": 61641,
"list-ul": 61642,
"list-ol": 61643,
"strikethrough": 61644,
"underline": 61645,
"table": 61646,
"magic": 61648,
"truck": 61649,
"pinterest": 61650,
"pinterest-square": 61651,
"google-plus-square": 61652,
"google-plus": 61653,
"money": 61654,
"caret-down": 61655,
"caret-up": 61656,
"caret-left": 61657,
"caret-right": 61658,
"columns": 61659,
"unsorted": 61660,
"sort": 61660,
"sort-down": 61661,
"sort-desc": 61661,
"sort-up": 61662,
"sort-asc": 61662,
"envelope": 61664,
"linkedin": 61665,
"rotate-left": 61666,
"undo": 61666,
"legal": 61667,
"gavel": 61667,
"dashboard": 61668,
"tachometer": 61668,
"comment-o": 61669,
"comments-o": 61670,
"flash": 61671,
"bolt": 61671,
"sitemap": 61672,
"umbrella": 61673,
"paste": 61674,
"clipboard": 61674,
"lightbulb-o": 61675,
"exchange": 61676,
"cloud-download": 61677,
"cloud-upload": 61678,
"user-md": 61680,
"stethoscope": 61681,
"suitcase": 61682,
"bell-o": 61602,
"coffee": 61684,
"cutlery": 61685,
"file-text-o": 61686,
"building-o": 61687,
"hospital-o": 61688,
"ambulance": 61689,
"medkit": 61690,
"fighter-jet": 61691,
"beer": 61692,
"h-square": 61693,
"plus-square": 61694,
"angle-double-left": 61696,
"angle-double-right": 61697,
"angle-double-up": 61698,
"angle-double-down": 61699,
"angle-left": 61700,
"angle-right": 61701,
"angle-up": 61702,
"angle-down": 61703,
"desktop": 61704,
"laptop": 61705,
"tablet": 61706,
"mobile-phone": 61707,
"mobile": 61707,
"circle-o": 61708,
"quote-left": 61709,
"quote-right": 61710,
"spinner": 61712,
"circle": 61713,
"mail-reply": 61714,
"reply": 61714,
"github-alt": 61715,
"folder-o": 61716,
"folder-open-o": 61717,
"smile-o": 61720,
"frown-o": 61721,
"meh-o": 61722,
"gamepad": 61723,
"keyboard-o": 61724,
"flag-o": 61725,
"flag-checkered": 61726,
"terminal": 61728,
"code": 61729,
"mail-reply-all": 61730,
"reply-all": 61730,
"star-half-empty": 61731,
"star-half-full": 61731,
"star-half-o": 61731,
"location-arrow": 61732,
"crop": 61733,
"code-fork": 61734,
"unlink": 61735,
"chain-broken": 61735,
"question": 61736,
"info": 61737,
"exclamation": 61738,
"superscript": 61739,
"subscript": 61740,
"eraser": 61741,
"puzzle-piece": 61742,
"microphone": 61744,
"microphone-slash": 61745,
"shield": 61746,
"calendar-o": 61747,
"fire-extinguisher": 61748,
"rocket": 61749,
"maxcdn": 61750,
"chevron-circle-left": 61751,
"chevron-circle-right": 61752,
"chevron-circle-up": 61753,
"chevron-circle-down": 61754,
"html5": 61755,
"css3": 61756,
"anchor": 61757,
"unlock-alt": 61758,
"bullseye": 61760,
"ellipsis-h": 61761,
"ellipsis-v": 61762,
"rss-square": 61763,
"play-circle": 61764,
"ticket": 61765,
"minus-square": 61766,
"minus-square-o": 61767,
"level-up": 61768,
"level-down": 61769,
"check-square": 61770,
"pencil-square": 61771,
"external-link-square": 61772,
"share-square": 61773,
"compass": 61774,
"toggle-down": 61776,
"caret-square-o-down": 61776,
"toggle-up": 61777,
"caret-square-o-up": 61777,
"toggle-right": 61778,
"caret-square-o-right": 61778,
"euro": 61779,
"eur": 61779,
"gbp": 61780,
"dollar": 61781,
"usd": 61781,
"rupee": 61782,
"inr": 61782,
"cny": 61783,
"rmb": 61783,
"yen": 61783,
"jpy": 61783,
"ruble": 61784,
"rouble": 61784,
"rub": 61784,
"won": 61785,
"krw": 61785,
"bitcoin": 61786,
"btc": 61786,
"file": 61787,
"file-text": 61788,
"sort-alpha-asc": 61789,
"sort-alpha-desc": 61790,
"sort-amount-asc": 61792,
"sort-amount-desc": 61793,
"sort-numeric-asc": 61794,
"sort-numeric-desc": 61795,
"thumbs-up": 61796,
"thumbs-down": 61797,
"youtube-square": 61798,
"youtube": 61799,
"xing": 61800,
"xing-square": 61801,
"youtube-play": 61802,
"dropbox": 61803,
"stack-overflow": 61804,
"instagram": 61805,
"flickr": 61806,
"adn": 61808,
"bitbucket": 61809,
"bitbucket-square": 61810,
"tumblr": 61811,
"tumblr-square": 61812,
"long-arrow-down": 61813,
"long-arrow-up": 61814,
"long-arrow-left": 61815,
"long-arrow-right": 61816,
"apple": 61817,
"windows": 61818,
"android": 61819,
"linux": 61820,
"dribbble": 61821,
"skype": 61822,
"foursquare": 61824,
"trello": 61825,
"female": 61826,
"male": 61827,
"gittip": 61828,
"gratipay": 61828,
"sun-o": 61829,
"moon-o": 61830,
"archive": 61831,
"bug": 61832,
"vk": 61833,
"weibo": 61834,
"renren": 61835,
"pagelines": 61836,
"stack-exchange": 61837,
"arrow-circle-o-right": 61838,
"arrow-circle-o-left": 61840,
"toggle-left": 61841,
"caret-square-o-left": 61841,
"dot-circle-o": 61842,
"wheelchair": 61843,
"vimeo-square": 61844,
"turkish-lira": 61845,
"try": 61845,
"plus-square-o": 61846,
"space-shuttle": 61847,
"slack": 61848,
"envelope-square": 61849,
"wordpress": 61850,
"openid": 61851,
"institution": 61852,
"bank": 61852,
"university": 61852,
"mortar-board": 61853,
"graduation-cap": 61853,
"yahoo": 61854,
"google": 61856,
"reddit": 61857,
"reddit-square": 61858,
"stumbleupon-circle": 61859,
"stumbleupon": 61860,
"delicious": 61861,
"digg": 61862,
"pied-piper-pp": 61863,
"pied-piper-alt": 61864,
"drupal": 61865,
"joomla": 61866,
"language": 61867,
"fax": 61868,
"building": 61869,
"child": 61870,
"paw": 61872,
"spoon": 61873,
"cube": 61874,
"cubes": 61875,
"behance": 61876,
"behance-square": 61877,
"steam": 61878,
"steam-square": 61879,
"recycle": 61880,
"automobile": 61881,
"car": 61881,
"cab": 61882,
"taxi": 61882,
"tree": 61883,
"spotify": 61884,
"deviantart": 61885,
"soundcloud": 61886,
"database": 61888,
"file-pdf-o": 61889,
"file-word-o": 61890,
"file-excel-o": 61891,
"file-powerpoint-o": 61892,
"file-photo-o": 61893,
"file-picture-o": 61893,
"file-image-o": 61893,
"file-zip-o": 61894,
"file-archive-o": 61894,
"file-sound-o": 61895,
"file-audio-o": 61895,
"file-movie-o": 61896,
"file-video-o": 61896,
"file-code-o": 61897,
"vine": 61898,
"codepen": 61899,
"jsfiddle": 61900,
"life-bouy": 61901,
"life-buoy": 61901,
"life-saver": 61901,
"support": 61901,
"life-ring": 61901,
"circle-o-notch": 61902,
"ra": 61904,
"resistance": 61904,
"rebel": 61904,
"ge": 61905,
"empire": 61905,
"git-square": 61906,
"git": 61907,
"y-combinator-square": 61908,
"yc-square": 61908,
"hacker-news": 61908,
"tencent-weibo": 61909,
"qq": 61910,
"wechat": 61911,
"weixin": 61911,
"send": 61912,
"paper-plane": 61912,
"send-o": 61913,
"paper-plane-o": 61913,
"history": 61914,
"circle-thin": 61915,
"header": 61916,
"paragraph": 61917,
"sliders": 61918,
"share-alt": 61920,
"share-alt-square": 61921,
"bomb": 61922,
"soccer-ball-o": 61923,
"futbol-o": 61923,
"tty": 61924,
"binoculars": 61925,
"plug": 61926,
"slideshare": 61927,
"twitch": 61928,
"yelp": 61929,
"newspaper-o": 61930,
"wifi": 61931,
"calculator": 61932,
"paypal": 61933,
"google-wallet": 61934,
"cc-visa": 61936,
"cc-mastercard": 61937,
"cc-discover": 61938,
"cc-amex": 61939,
"cc-paypal": 61940,
"cc-stripe": 61941,
"bell-slash": 61942,
"bell-slash-o": 61943,
"trash": 61944,
"copyright": 61945,
"at": 61946,
"eyedropper": 61947,
"paint-brush": 61948,
"birthday-cake": 61949,
"area-chart": 61950,
"pie-chart": 61952,
"line-chart": 61953,
"lastfm": 61954,
"lastfm-square": 61955,
"toggle-off": 61956,
"toggle-on": 61957,
"bicycle": 61958,
"bus": 61959,
"ioxhost": 61960,
"angellist": 61961,
"cc": 61962,
"shekel": 61963,
"sheqel": 61963,
"ils": 61963,
"meanpath": 61964,
"buysellads": 61965,
"connectdevelop": 61966,
"dashcube": 61968,
"forumbee": 61969,
"leanpub": 61970,
"sellsy": 61971,
"shirtsinbulk": 61972,
"simplybuilt": 61973,
"skyatlas": 61974,
"cart-plus": 61975,
"cart-arrow-down": 61976,
"diamond": 61977,
"ship": 61978,
"user-secret": 61979,
"motorcycle": 61980,
"street-view": 61981,
"heartbeat": 61982,
"venus": 61985,
"mars": 61986,
"mercury": 61987,
"intersex": 61988,
"transgender": 61988,
"transgender-alt": 61989,
"venus-double": 61990,
"mars-double": 61991,
"venus-mars": 61992,
"mars-stroke": 61993,
"mars-stroke-v": 61994,
"mars-stroke-h": 61995,
"neuter": 61996,
"genderless": 61997,
"facebook-official": 62000,
"pinterest-p": 62001,
"whatsapp": 62002,
"server": 62003,
"user-plus": 62004,
"user-times": 62005,
"hotel": 62006,
"bed": 62006,
"viacoin": 62007,
"train": 62008,
"subway": 62009,
"medium": 62010,
"yc": 62011,
"y-combinator": 62011,
"optin-monster": 62012,
"opencart": 62013,
"expeditedssl": 62014,
"battery-4": 62016,
"battery": 62016,
"battery-full": 62016,
"battery-3": 62017,
"battery-three-quarters": 62017,
"battery-2": 62018,
"battery-half": 62018,
"battery-1": 62019,
"battery-quarter": 62019,
"battery-0": 62020,
"battery-empty": 62020,
"mouse-pointer": 62021,
"i-cursor": 62022,
"object-group": 62023,
"object-ungroup": 62024,
"sticky-note": 62025,
"sticky-note-o": 62026,
"cc-jcb": 62027,
"cc-diners-club": 62028,
"clone": 62029,
"balance-scale": 62030,
"hourglass-o": 62032,
"hourglass-1": 62033,
"hourglass-start": 62033,
"hourglass-2": 62034,
"hourglass-half": 62034,
"hourglass-3": 62035,
"hourglass-end": 62035,
"hourglass": 62036,
"hand-grab-o": 62037,
"hand-rock-o": 62037,
"hand-stop-o": 62038,
"hand-paper-o": 62038,
"hand-scissors-o": 62039,
"hand-lizard-o": 62040,
"hand-spock-o": 62041,
"hand-pointer-o": 62042,
"hand-peace-o": 62043,
"trademark": 62044,
"registered": 62045,
"creative-commons": 62046,
"gg": 62048,
"gg-circle": 62049,
"tripadvisor": 62050,
"odnoklassniki": 62051,
"odnoklassniki-square": 62052,
"get-pocket": 62053,
"wikipedia-w": 62054,
"safari": 62055,
"chrome": 62056,
"firefox": 62057,
"opera": 62058,
"internet-explorer": 62059,
"tv": 62060,
"television": 62060,
"contao": 62061,
"500px": 62062,
"amazon": 62064,
"calendar-plus-o": 62065,
"calendar-minus-o": 62066,
"calendar-times-o": 62067,
"calendar-check-o": 62068,
"industry": 62069,
"map-pin": 62070,
"map-signs": 62071,
"map-o": 62072,
"map": 62073,
"commenting": 62074,
"commenting-o": 62075,
"houzz": 62076,
"vimeo": 62077,
"black-tie": 62078,
"fonticons": 62080,
"reddit-alien": 62081,
"edge": 62082,
"credit-card-alt": 62083,
"codiepie": 62084,
"modx": 62085,
"fort-awesome": 62086,
"usb": 62087,
"product-hunt": 62088,
"mixcloud": 62089,
"scribd": 62090,
"pause-circle": 62091,
"pause-circle-o": 62092,
"stop-circle": 62093,
"stop-circle-o": 62094,
"shopping-bag": 62096,
"shopping-basket": 62097,
"hashtag": 62098,
"bluetooth": 62099,
"bluetooth-b": 62100,
"percent": 62101,
"gitlab": 62102,
"wpbeginner": 62103,
"wpforms": 62104,
"envira": 62105,
"universal-access": 62106,
"wheelchair-alt": 62107,
"question-circle-o": 62108,
"blind": 62109,
"audio-description": 62110,
"volume-control-phone": 62112,
"braille": 62113,
"assistive-listening-systems": 62114,
"asl-interpreting": 62115,
"american-sign-language-interpreting": 62115,
"deafness": 62116,
"hard-of-hearing": 62116,
"deaf": 62116,
"glide": 62117,
"glide-g": 62118,
"signing": 62119,
"sign-language": 62119,
"low-vision": 62120,
"viadeo": 62121,
"viadeo-square": 62122,
"snapchat": 62123,
"snapchat-ghost": 62124,
"snapchat-square": 62125,
"pied-piper": 62126,
"first-order": 62128,
"yoast": 62129,
"themeisle": 62130,
"google-plus-circle": 62131,
"google-plus-official": 62131,
"fa": 62132,
"font-awesome": 62132,
"handshake-o": 62133,
"envelope-open": 62134,
"envelope-open-o": 62135,
"linode": 62136,
"address-book": 62137,
"address-book-o": 62138,
"vcard": 62139,
"address-card": 62139,
"vcard-o": 62140,
"address-card-o": 62140,
"user-circle": 62141,
"user-circle-o": 62142,
"user-o": 62144,
"id-badge": 62145,
"drivers-license": 62146,
"id-card": 62146,
"drivers-license-o": 62147,
"id-card-o": 62147,
"quora": 62148,
"free-code-camp": 62149,
"telegram": 62150,
"thermometer-4": 62151,
"thermometer": 62151,
"thermometer-full": 62151,
"thermometer-3": 62152,
"thermometer-three-quarters": 62152,
"thermometer-2": 62153,
"thermometer-half": 62153,
"thermometer-1": 62154,
"thermometer-quarter": 62154,
"thermometer-0": 62155,
"thermometer-empty": 62155,
"shower": 62156,
"bathtub": 62157,
"s15": 62157,
"bath": 62157,
"podcast": 62158,
"window-maximize": 62160,
"window-minimize": 62161,
"window-restore": 62162,
"times-rectangle": 62163,
"window-close": 62163,
"times-rectangle-o": 62164,
"window-close-o": 62164,
"bandcamp": 62165,
"grav": 62166,
"etsy": 62167,
"imdb": 62168,
"ravelry": 62169,
"eercast": 62170,
"microchip": 62171,
"snowflake-o": 62172,
"superpowers": 62173,
"wpexplorer": 62174,
"meetup": 62176
}

View File

@ -0,0 +1,619 @@
{
"acrobat-reader": 60095,
"applemusic": 60096,
"atlassian": 60097,
"aws": 60098,
"baidu": 60099,
"bing": 60100,
"bower": 60101,
"dailymotion": 60102,
"delicious": 60103,
"deviantart": 60104,
"disqus": 60105,
"flipboard": 60106,
"graphql": 60107,
"hexo": 60108,
"hipchat": 60109,
"icq": 60110,
"invision": 60111,
"jekyll": 60112,
"jira": 60113,
"json": 60114,
"livestream": 60115,
"messenger": 60116,
"meteor": 60117,
"onenote": 60118,
"mongodb": 60119,
"netflix": 60120,
"nginx": 60121,
"odnoklassniki": 60122,
"onedrive": 60123,
"origin": 60124,
"pingdom": 60125,
"rails": 60126,
"raspberry-pi": 60127,
"redis": 60128,
"redux": 60129,
"saucelabs": 60130,
"scorp": 60131,
"sentry": 60132,
"shazam": 60133,
"shopify": 60134,
"sinaweibo": 60135,
"slides": 60136,
"sublimetext": 60137,
"swift": 60138,
"ted": 60139,
"telegram": 60140,
"tesla": 60141,
"tinder": 60142,
"treehouse": 60143,
"twoo": 60144,
"udacity": 60145,
"webstorm": 60146,
"wix": 60147,
"yandex-international": 60148,
"yandex": 60149,
"ember": 60087,
"cpanel": 60088,
"viber": 60089,
"deskpro": 60090,
"discord": 60091,
"discourse": 60092,
"adobe": 60059,
"algolia": 60060,
"atom": 60061,
"babel": 60062,
"coffeescript": 60063,
"electronjs": 60064,
"mysql": 60065,
"oracle": 60066,
"php": 60067,
"sourcetree": 60068,
"ubuntu": 60069,
"unity": 60070,
"unreal-engine": 60071,
"webpack": 60072,
"angelist": 60026,
"app-store": 60027,
"digg": 60030,
"dockers": 60031,
"envato": 60032,
"gitlab": 60033,
"google-drive": 60034,
"google-play": 60035,
"grunt": 60036,
"gulp": 60037,
"hacker-news": 60038,
"imdb": 60039,
"jenkins": 60040,
"joomla": 60041,
"kickstarter": 60042,
"laravel": 60043,
"less": 60044,
"line": 60045,
"npm": 60046,
"periscope": 60047,
"product-hunt": 60048,
"quora": 60049,
"skyatlas": 60050,
"stylus": 60051,
"travis": 60052,
"trello": 60053,
"uber": 60054,
"vine": 60055,
"visual-studio": 60056,
"vk": 60057,
"vuejs": 60058,
"microsoft": 60025,
"blogger": 60028,
"500px": 59658,
"amazon": 59659,
"ampproject": 59660,
"android": 59661,
"angularjs": 59662,
"apple": 59663,
"behance": 59664,
"bitbucket": 59665,
"bluetooth-b": 59666,
"cloudflare": 59667,
"codepen": 59668,
"css3": 59669,
"dribbble": 59670,
"dropbox": 59671,
"facebook": 59672,
"flickr": 59673,
"foursquare": 59674,
"git": 59675,
"github": 59676,
"google-plus": 59677,
"google": 59678,
"hangout": 59679,
"houzz": 59680,
"html5": 59681,
"instagram": 59682,
"java": 59683,
"jquery": 59684,
"jsfiddle": 59685,
"linkedin": 59686,
"linux": 59687,
"magento": 59688,
"maxcdn": 59689,
"medium": 59690,
"meetup": 59691,
"nodejs": 59692,
"opencart": 59693,
"pinterest": 59694,
"playstation": 59695,
"python": 59696,
"react": 59697,
"reddit": 59698,
"ruby": 59699,
"sass": 59700,
"skype": 59701,
"slack": 59702,
"snapchat": 59703,
"soundcloud": 59704,
"spotify": 59705,
"stack-overflow": 59706,
"steam": 59707,
"stumbleupon": 59708,
"svn": 59709,
"swarm": 59710,
"tripadvisor": 59711,
"tumblr": 59712,
"twitch": 59713,
"twitter": 59714,
"vimeo": 59715,
"wetransfer": 59716,
"whatsapp": 59717,
"wifi-logo": 59718,
"wikipedia": 59719,
"windows": 59720,
"wordpress": 59721,
"xbox": 59722,
"yahoo": 59723,
"yelp": 59724,
"youtube-play": 59725,
"cocoapods": 60200,
"composer": 60201,
"yarn": 60202,
"language": 59943,
"toggle-off": 59948,
"toggle-on": 60029,
"anchor": 60094,
"archive": 60150,
"at": 60151,
"ban": 60152,
"battery-half": 60153,
"battery-full": 60154,
"battery-empty": 60155,
"battery-quarter": 60156,
"battery-three-quarters": 60157,
"bell-alt": 60158,
"bell": 60159,
"bookmark-alt": 60160,
"bookmark": 60161,
"bug": 60162,
"calculator": 60163,
"calendar": 60164,
"crosshairs": 60165,
"desktop": 60166,
"download": 60167,
"film": 60168,
"history": 60169,
"hourglass-end": 60170,
"hourglass-half": 60171,
"hourglass-start": 60172,
"hourglass": 60173,
"info": 60174,
"key": 60175,
"keyboard": 60176,
"laptop": 60177,
"lightbulb": 60178,
"magnet": 60179,
"map-marker-alt": 60180,
"map-marker": 60181,
"map": 60182,
"mobile-alt": 60183,
"mobile": 60184,
"paw": 60185,
"phone": 60186,
"power": 60187,
"qrcode": 60188,
"question": 60189,
"search": 60190,
"sitemap": 60191,
"star-half": 60192,
"stopwatch": 60193,
"tablet-alt": 60194,
"tablet": 60195,
"ticket": 60196,
"tv": 60197,
"upload": 60198,
"user-secret": 60199,
"camera": 59798,
"clock": 59799,
"close-a": 59800,
"code": 59801,
"comment": 59802,
"commenting": 59803,
"comments": 59804,
"crop": 59805,
"cursor": 59806,
"database": 59807,
"date": 59808,
"earth": 59809,
"email": 59810,
"eye": 59811,
"female": 59812,
"favorite": 59813,
"filter": 59814,
"fire": 59815,
"flag": 59816,
"flash": 59817,
"home": 59818,
"link": 59819,
"locked": 59820,
"male": 59821,
"minus-a": 59822,
"more-v-a": 59823,
"more-v": 59824,
"move-h-a": 59825,
"move-h": 59826,
"nav-icon-a": 59827,
"nav-icon-grid-a": 59828,
"nav-icon-grid": 59829,
"nav-icon-list-a": 59830,
"nav-icon-list": 59831,
"nav-icon": 59832,
"navigate": 59833,
"paper-plane": 59834,
"person": 59835,
"persons": 59836,
"picture": 59837,
"plus-a": 59838,
"print": 59839,
"quote-a-left": 59840,
"quote-a-right": 59841,
"quote-left": 59842,
"quote-right": 59843,
"reply": 59844,
"rss": 59845,
"scissors": 59846,
"share-a": 59847,
"share": 59848,
"trash": 59849,
"unlocked": 59850,
"usb": 59851,
"wifi": 59852,
"world-o": 59853,
"world": 59854,
"zoom": 59855,
"adjust": 60015,
"recycle": 60016,
"pinboard": 60093,
"zoom-minus": 60082,
"zoom-plus": 60083,
"check": 60084,
"asterisk": 60085,
"hashtag": 60086,
"checkbox-active": 59778,
"checkbox-passive": 59779,
"radio-btn-active": 59780,
"radio-btn-passive": 59781,
"shopping-bag-1": 60011,
"shopping-bag": 60012,
"shopping-barcode": 60017,
"shopping-basket-add": 60018,
"shopping-basket-remove": 60019,
"shopping-basket": 60020,
"shopping-package": 60021,
"shopping-pos-machine": 60022,
"shopping-sale": 60023,
"shopping-store": 60024,
"angle-dobule-down": 59748,
"angle-dobule-left": 59749,
"angle-dobule-right": 59750,
"angle-dobule-up": 59751,
"angle-down": 59752,
"angle-left": 59753,
"angle-right": 59754,
"angle-up": 59755,
"arrow-down-l": 59756,
"arrow-down": 59757,
"arrow-expand": 59758,
"arrow-h": 59759,
"arrow-left-l": 59760,
"arrow-left": 59761,
"arrow-move": 59762,
"arrow-resize": 59763,
"arrow-return-left": 59764,
"arrow-return-right": 59765,
"arrow-right-l": 59766,
"arrow-right": 59767,
"arrow-swap": 59768,
"arrow-up-l": 59769,
"arrow-up": 59770,
"arrow-v": 59771,
"caret-down": 59772,
"caret-left": 59773,
"caret-right": 59774,
"caret-up": 59775,
"fi": 59776,
"fontisto": 59777,
"backward": 59866,
"eject": 59867,
"equalizer": 59868,
"forward": 59869,
"headphone": 59870,
"heart": 59871,
"mic": 59872,
"music-note": 59873,
"pause": 59874,
"play-list": 59875,
"play": 59876,
"player-settings": 59877,
"podcast": 59878,
"random": 59879,
"record": 59880,
"star": 59881,
"step-backwrad": 59882,
"step-forward": 59883,
"stop": 59884,
"volume-down": 59885,
"volume-mute": 59886,
"volume-off": 59887,
"volume-up": 59888,
"airplay": 60008,
"bold": 59918,
"broken-link": 59919,
"center-align": 59920,
"close": 59921,
"columns": 59922,
"copy": 59923,
"eraser": 59924,
"export": 59925,
"file-1": 59926,
"file-2": 59927,
"folder": 59928,
"font": 59929,
"import": 59930,
"indent": 59931,
"italic": 59932,
"justify": 59933,
"left-align": 59934,
"link2": 59935,
"list-1": 59936,
"list-2": 59937,
"outdent": 59938,
"paperclip": 59939,
"paragraph": 59940,
"paste": 59941,
"preview": 59942,
"print2": 59943,
"redo": 59944,
"right-align": 59945,
"save-1": 59946,
"save": 59947,
"scissors2": 59948,
"strikethrough": 59949,
"subscript": 59950,
"superscript": 59951,
"table-1": 59952,
"table-2": 59953,
"text-height": 59954,
"text-width": 59955,
"underline": 59956,
"undo": 59957,
"cloud-down": 59958,
"cloud-refresh": 59959,
"cloud-up": 59960,
"cloudy-gusts": 59961,
"cloudy": 59962,
"compass": 59963,
"day-cloudy": 59964,
"day-haze": 59965,
"day-lightning": 59966,
"day-rain": 59967,
"day-snow": 59968,
"day-sunny": 59969,
"fog": 59970,
"horizon-alt": 59971,
"horizon": 59972,
"lightning": 59973,
"lightnings": 59974,
"night-alt-cloudy": 59975,
"night-alt-lightning": 59976,
"night-alt-rain": 59977,
"night-alt-snow": 59978,
"night-clear": 59979,
"rain": 59980,
"rainbow": 59981,
"rains": 59982,
"snow": 59983,
"snows": 59984,
"thermometer": 59985,
"umbrella": 59986,
"wind": 59987,
"confused": 59988,
"dizzy": 59989,
"expressionless": 59990,
"frowning": 59991,
"heart-eyes": 59992,
"laughing": 59993,
"mad": 59994,
"nervous": 59995,
"neutral": 59996,
"open-mouth": 59997,
"rage": 59998,
"slightly-smile": 59999,
"smiley": 60000,
"smiling": 60001,
"stuck-out-tongue": 60002,
"sunglasses": 60003,
"surprised": 60004,
"tongue": 60005,
"wink": 60006,
"zipper-mouth": 60007,
"aids": 60233,
"ambulance": 60234,
"bandage": 60235,
"bed-patient": 60236,
"blood-drop": 60237,
"blood-test": 60238,
"blood": 60239,
"dna": 60240,
"doctor": 60241,
"drug-pack": 60242,
"first-aid-alt": 60243,
"heart-alt": 60244,
"heartbeat-alt": 60245,
"heartbeat": 60246,
"helicopter-ambulance": 60247,
"hospital": 60248,
"injection-syringe": 60249,
"laboratory": 60250,
"nurse": 60251,
"nursing-home": 60252,
"paralysis-disability": 60253,
"pills": 60254,
"prescription": 60255,
"pulse": 60256,
"stethoscope": 60257,
"surgical-knife": 60258,
"tablets": 60259,
"test-bottle": 60260,
"test-tube-alt": 60261,
"test-tube": 60262,
"thermometer-alt": 60263,
"american-express": 59856,
"credit-card": 59857,
"google-wallet": 59858,
"iyzigo": 59859,
"mastercard": 59860,
"paypal-p": 59861,
"paypal": 59862,
"payu": 59863,
"troy": 59864,
"visa": 59865,
"dinners-club": 60010,
"apple-pay": 60009,
"discover": 60013,
"jcb": 60014,
"dislike": 59796,
"like": 59797,
"audio-description": 59648,
"blind": 59649,
"braille": 59650,
"deaf": 59651,
"fa-american-sign-language-interpreting": 59652,
"low-vision": 59654,
"tty": 59655,
"universal-acces": 59656,
"wheelchair": 59657,
"area-chart": 59732,
"bar-chart": 59733,
"line-chart": 59734,
"pie-chart-1": 59735,
"pie-chart-2": 59736,
"chrome": 59726,
"edge": 59727,
"firefox": 59728,
"internet-explorer": 59729,
"opera": 59730,
"safari": 59731,
"bitcoin": 59737,
"dollar": 59738,
"euro": 59739,
"gbp": 59740,
"gg": 59741,
"ils": 59742,
"inr": 59743,
"krw": 59744,
"rouble": 59745,
"tl": 59746,
"yen": 59747,
"genderless": 59782,
"intersex": 59783,
"mars-double": 59784,
"mars-stroke-h": 59785,
"mars-stroke-v": 59786,
"mars-stroke": 59787,
"mars": 59788,
"mercury": 59789,
"neuter": 59790,
"transgender-alt": 59791,
"transgender": 59792,
"venus-double": 59793,
"venus-mars": 59794,
"venus": 59795,
"automobile": 59899,
"bicycle": 59900,
"bus": 59901,
"car": 59902,
"helicopter": 59903,
"metro": 59904,
"motorcycle": 59905,
"plane": 59906,
"rocket": 59907,
"ship": 59908,
"subway": 59909,
"taxi": 59910,
"train": 59911,
"truck": 59912,
"yacht": 59913,
"beach-slipper": 60203,
"bus-ticket": 60204,
"cocktail": 60205,
"compass-alt": 60206,
"direction-sign": 60207,
"do-not-disturb": 60208,
"flotation-ring": 60209,
"holiday-village": 60210,
"hot-air-balloon": 60211,
"hotel-alt": 60212,
"hotel": 60213,
"island": 60214,
"money-symbol": 60215,
"parasol": 60216,
"passport-alt": 60217,
"passport": 60218,
"photograph": 60219,
"plane-ticket": 60220,
"room": 60221,
"sait-boat": 60222,
"snorkel": 60223,
"suitcase-alt": 60224,
"suitcase": 60225,
"sun": 60226,
"sunglasses-alt": 60227,
"swimsuit": 60228,
"tent": 60229,
"ticket-alt": 60230,
"train-ticket": 60231,
"wallet": 60232,
"circle-o-notch": 59889,
"propeller-1": 59890,
"propeller-2": 59891,
"propeller-3": 59892,
"propeller-4": 59893,
"spinner-cog": 59894,
"spinner-fidget": 59895,
"spinner-refresh": 59896,
"spinner-rotate-forward": 59897,
"spinner": 59898,
"snowflake": 60081,
"snowflake-1": 60073,
"snowflake-2": 60074,
"snowflake-3": 60075,
"snowflake-4": 60076,
"snowflake-5": 60077,
"snowflake-6": 60078,
"snowflake-7": 60079,
"snowflake-8": 60080,
"curve": 59915,
"ellipse": 59916,
"rectangle": 59917,
"shield": 59914
}

View File

@ -0,0 +1,285 @@
{
"address-book": 61696,
"alert": 61697,
"align-center": 61698,
"align-justify": 61699,
"align-left": 61700,
"align-right": 61701,
"anchor": 61702,
"annotate": 61703,
"archive": 61704,
"arrow-down": 61705,
"arrow-left": 61706,
"arrow-right": 61707,
"arrow-up": 61708,
"arrows-compress": 61709,
"arrows-expand": 61710,
"arrows-in": 61711,
"arrows-out": 61712,
"asl": 61713,
"asterisk": 61714,
"at-sign": 61715,
"background-color": 61716,
"battery-empty": 61717,
"battery-full": 61718,
"battery-half": 61719,
"bitcoin-circle": 61720,
"bitcoin": 61721,
"blind": 61722,
"bluetooth": 61723,
"bold": 61724,
"book-bookmark": 61725,
"book": 61726,
"bookmark": 61727,
"braille": 61728,
"burst-new": 61729,
"burst-sale": 61730,
"burst": 61731,
"calendar": 61732,
"camera": 61733,
"check": 61734,
"checkbox": 61735,
"clipboard-notes": 61736,
"clipboard-pencil": 61737,
"clipboard": 61738,
"clock": 61739,
"closed-caption": 61740,
"cloud": 61741,
"comment-minus": 61742,
"comment-quotes": 61743,
"comment-video": 61744,
"comment": 61745,
"comments": 61746,
"compass": 61747,
"contrast": 61748,
"credit-card": 61749,
"crop": 61750,
"crown": 61751,
"css3": 61752,
"database": 61753,
"die-five": 61754,
"die-four": 61755,
"die-one": 61756,
"die-six": 61757,
"die-three": 61758,
"die-two": 61759,
"dislike": 61760,
"dollar-bill": 61761,
"dollar": 61762,
"download": 61763,
"eject": 61764,
"elevator": 61765,
"euro": 61766,
"eye": 61767,
"fast-forward": 61768,
"female-symbol": 61769,
"female": 61770,
"filter": 61771,
"first-aid": 61772,
"flag": 61773,
"folder-add": 61774,
"folder-lock": 61775,
"folder": 61776,
"foot": 61777,
"foundation": 61778,
"graph-bar": 61779,
"graph-horizontal": 61780,
"graph-pie": 61781,
"graph-trend": 61782,
"guide-dog": 61783,
"hearing-aid": 61784,
"heart": 61785,
"home": 61786,
"html5": 61787,
"indent-less": 61788,
"indent-more": 61789,
"info": 61790,
"italic": 61791,
"key": 61792,
"laptop": 61793,
"layout": 61794,
"lightbulb": 61795,
"like": 61796,
"link": 61797,
"list-bullet": 61798,
"list-number": 61799,
"list-thumbnails": 61800,
"list": 61801,
"lock": 61802,
"loop": 61803,
"magnifying-glass": 61804,
"mail": 61805,
"male-female": 61806,
"male-symbol": 61807,
"male": 61808,
"map": 61809,
"marker": 61810,
"megaphone": 61811,
"microphone": 61812,
"minus-circle": 61813,
"minus": 61814,
"mobile-signal": 61815,
"mobile": 61816,
"monitor": 61817,
"mountains": 61818,
"music": 61819,
"next": 61820,
"no-dogs": 61821,
"no-smoking": 61822,
"page-add": 61823,
"page-copy": 61824,
"page-csv": 61825,
"page-delete": 61826,
"page-doc": 61827,
"page-edit": 61828,
"page-export-csv": 61829,
"page-export-doc": 61830,
"page-export-pdf": 61831,
"page-export": 61832,
"page-filled": 61833,
"page-multiple": 61834,
"page-pdf": 61835,
"page-remove": 61836,
"page-search": 61837,
"page": 61838,
"paint-bucket": 61839,
"paperclip": 61840,
"pause": 61841,
"paw": 61842,
"paypal": 61843,
"pencil": 61844,
"photo": 61845,
"play-circle": 61846,
"play-video": 61847,
"play": 61848,
"plus": 61849,
"pound": 61850,
"power": 61851,
"previous": 61852,
"price-tag": 61853,
"pricetag-multiple": 61854,
"print": 61855,
"prohibited": 61856,
"projection-screen": 61857,
"puzzle": 61858,
"quote": 61859,
"record": 61860,
"refresh": 61861,
"results-demographics": 61862,
"results": 61863,
"rewind-ten": 61864,
"rewind": 61865,
"rss": 61866,
"safety-cone": 61867,
"save": 61868,
"share": 61869,
"sheriff-badge": 61870,
"shield": 61871,
"shopping-bag": 61872,
"shopping-cart": 61873,
"shuffle": 61874,
"skull": 61875,
"social-500px": 61876,
"social-adobe": 61877,
"social-amazon": 61878,
"social-android": 61879,
"social-apple": 61880,
"social-behance": 61881,
"social-bing": 61882,
"social-blogger": 61883,
"social-delicious": 61884,
"social-designer-news": 61885,
"social-deviant-art": 61886,
"social-digg": 61887,
"social-dribbble": 61888,
"social-drive": 61889,
"social-dropbox": 61890,
"social-evernote": 61891,
"social-facebook": 61892,
"social-flickr": 61893,
"social-forrst": 61894,
"social-foursquare": 61895,
"social-game-center": 61896,
"social-github": 61897,
"social-google-plus": 61898,
"social-hacker-news": 61899,
"social-hi5": 61900,
"social-instagram": 61901,
"social-joomla": 61902,
"social-lastfm": 61903,
"social-linkedin": 61904,
"social-medium": 61905,
"social-myspace": 61906,
"social-orkut": 61907,
"social-path": 61908,
"social-picasa": 61909,
"social-pinterest": 61910,
"social-rdio": 61911,
"social-reddit": 61912,
"social-skillshare": 61913,
"social-skype": 61914,
"social-smashing-mag": 61915,
"social-snapchat": 61916,
"social-spotify": 61917,
"social-squidoo": 61918,
"social-stack-overflow": 61919,
"social-steam": 61920,
"social-stumbleupon": 61921,
"social-treehouse": 61922,
"social-tumblr": 61923,
"social-twitter": 61924,
"social-vimeo": 61925,
"social-windows": 61926,
"social-xbox": 61927,
"social-yahoo": 61928,
"social-yelp": 61929,
"social-youtube": 61930,
"social-zerply": 61931,
"social-zurb": 61932,
"sound": 61933,
"star": 61934,
"stop": 61935,
"strikethrough": 61936,
"subscript": 61937,
"superscript": 61938,
"tablet-landscape": 61939,
"tablet-portrait": 61940,
"target-two": 61941,
"target": 61942,
"telephone-accessible": 61943,
"telephone": 61944,
"text-color": 61945,
"thumbnails": 61946,
"ticket": 61947,
"torso-business": 61948,
"torso-female": 61949,
"torso": 61950,
"torsos-all-female": 61951,
"torsos-all": 61952,
"torsos-female-male": 61953,
"torsos-male-female": 61954,
"torsos": 61955,
"trash": 61956,
"trees": 61957,
"trophy": 61958,
"underline": 61959,
"universal-access": 61960,
"unlink": 61961,
"unlock": 61962,
"upload-cloud": 61963,
"upload": 61964,
"usb": 61965,
"video": 61966,
"volume-none": 61967,
"volume-strike": 61968,
"volume": 61969,
"web": 61970,
"wheelchair": 61971,
"widget": 61972,
"wrench": 61973,
"x-circle": 61974,
"x": 61975,
"yen": 61976,
"zoom-in": 61977,
"zoom-out": 61978
}

View File

@ -0,0 +1,698 @@
{
"ios-add": 61698,
"ios-add-circle": 61697,
"ios-add-circle-outline": 61696,
"ios-airplane": 61751,
"ios-alarm": 62408,
"ios-albums": 62410,
"ios-alert": 61700,
"ios-american-football": 61702,
"ios-analytics": 62414,
"ios-aperture": 61704,
"ios-apps": 61706,
"ios-appstore": 61708,
"ios-archive": 61710,
"ios-arrow-back": 62415,
"ios-arrow-down": 62416,
"ios-arrow-dropdown": 61712,
"ios-arrow-dropdown-circle": 61733,
"ios-arrow-dropleft": 61714,
"ios-arrow-dropleft-circle": 61737,
"ios-arrow-dropright": 61716,
"ios-arrow-dropright-circle": 61739,
"ios-arrow-dropup": 61718,
"ios-arrow-dropup-circle": 61741,
"ios-arrow-forward": 62417,
"ios-arrow-round-back": 61719,
"ios-arrow-round-down": 61720,
"ios-arrow-round-forward": 61721,
"ios-arrow-round-up": 61722,
"ios-arrow-up": 62424,
"ios-at": 62426,
"ios-attach": 61723,
"ios-backspace": 61725,
"ios-barcode": 62428,
"ios-baseball": 62430,
"ios-basket": 61727,
"ios-basketball": 62432,
"ios-battery-charging": 61728,
"ios-battery-dead": 61729,
"ios-battery-full": 61730,
"ios-beaker": 61732,
"ios-bed": 61753,
"ios-beer": 61734,
"ios-bicycle": 61735,
"ios-bluetooth": 61736,
"ios-boat": 61738,
"ios-body": 62436,
"ios-bonfire": 61740,
"ios-book": 62440,
"ios-bookmark": 61742,
"ios-bookmarks": 62442,
"ios-bowtie": 61744,
"ios-briefcase": 62446,
"ios-browsers": 62448,
"ios-brush": 61746,
"ios-bug": 61748,
"ios-build": 61750,
"ios-bulb": 61752,
"ios-bus": 61754,
"ios-business": 61859,
"ios-cafe": 61756,
"ios-calculator": 62450,
"ios-calendar": 62452,
"ios-call": 61758,
"ios-camera": 62454,
"ios-car": 61760,
"ios-card": 61762,
"ios-cart": 62456,
"ios-cash": 61764,
"ios-cellular": 61757,
"ios-chatboxes": 62458,
"ios-chatbubbles": 61766,
"ios-checkbox": 61768,
"ios-checkbox-outline": 61767,
"ios-checkmark": 62463,
"ios-checkmark-circle": 61770,
"ios-checkmark-circle-outline": 61769,
"ios-clipboard": 61772,
"ios-clock": 62467,
"ios-close": 62470,
"ios-close-circle": 61774,
"ios-close-circle-outline": 61773,
"ios-cloud": 62476,
"ios-cloud-circle": 61778,
"ios-cloud-done": 61780,
"ios-cloud-download": 62472,
"ios-cloud-outline": 62473,
"ios-cloud-upload": 62475,
"ios-cloudy": 62480,
"ios-cloudy-night": 62478,
"ios-code": 61783,
"ios-code-download": 61781,
"ios-code-working": 61782,
"ios-cog": 62482,
"ios-color-fill": 61785,
"ios-color-filter": 62484,
"ios-color-palette": 61787,
"ios-color-wand": 62486,
"ios-compass": 61789,
"ios-construct": 61791,
"ios-contact": 62490,
"ios-contacts": 61793,
"ios-contract": 61794,
"ios-contrast": 61795,
"ios-copy": 62492,
"ios-create": 61797,
"ios-crop": 62494,
"ios-cube": 61800,
"ios-cut": 61802,
"ios-desktop": 61804,
"ios-disc": 61806,
"ios-document": 61808,
"ios-done-all": 61809,
"ios-download": 62496,
"ios-easel": 61811,
"ios-egg": 61813,
"ios-exit": 61815,
"ios-expand": 61816,
"ios-eye": 62501,
"ios-eye-off": 61818,
"ios-fastforward": 62503,
"ios-female": 61819,
"ios-filing": 62505,
"ios-film": 62507,
"ios-finger-print": 61820,
"ios-fitness": 61867,
"ios-flag": 62509,
"ios-flame": 62511,
"ios-flash": 61822,
"ios-flash-off": 61743,
"ios-flashlight": 61761,
"ios-flask": 62513,
"ios-flower": 62515,
"ios-folder": 62517,
"ios-folder-open": 61824,
"ios-football": 62519,
"ios-funnel": 61826,
"ios-gift": 61841,
"ios-git-branch": 61827,
"ios-git-commit": 61828,
"ios-git-compare": 61829,
"ios-git-merge": 61830,
"ios-git-network": 61831,
"ios-git-pull-request": 61832,
"ios-glasses": 62527,
"ios-globe": 61834,
"ios-grid": 61836,
"ios-hammer": 61838,
"ios-hand": 61840,
"ios-happy": 61842,
"ios-headset": 61844,
"ios-heart": 62531,
"ios-heart-dislike": 61759,
"ios-heart-empty": 61851,
"ios-heart-half": 61853,
"ios-help": 62534,
"ios-help-buoy": 61846,
"ios-help-circle": 61848,
"ios-help-circle-outline": 61847,
"ios-home": 62536,
"ios-hourglass": 61699,
"ios-ice-cream": 61850,
"ios-image": 61852,
"ios-images": 61854,
"ios-infinite": 62538,
"ios-information": 62541,
"ios-information-circle": 61856,
"ios-information-circle-outline": 61855,
"ios-jet": 61861,
"ios-journal": 61833,
"ios-key": 61863,
"ios-keypad": 62544,
"ios-laptop": 61864,
"ios-leaf": 61866,
"ios-link": 61994,
"ios-list": 62548,
"ios-list-box": 61763,
"ios-locate": 61870,
"ios-lock": 61872,
"ios-log-in": 61873,
"ios-log-out": 61874,
"ios-magnet": 61876,
"ios-mail": 61880,
"ios-mail-open": 61878,
"ios-mail-unread": 61765,
"ios-male": 61881,
"ios-man": 61883,
"ios-map": 61885,
"ios-medal": 61887,
"ios-medical": 62556,
"ios-medkit": 62558,
"ios-megaphone": 61889,
"ios-menu": 61891,
"ios-mic": 62561,
"ios-mic-off": 62559,
"ios-microphone": 61894,
"ios-moon": 62568,
"ios-more": 61896,
"ios-move": 61899,
"ios-musical-note": 62571,
"ios-musical-notes": 62572,
"ios-navigate": 62574,
"ios-notifications": 61907,
"ios-notifications-off": 61905,
"ios-notifications-outline": 61747,
"ios-nuclear": 61909,
"ios-nutrition": 62576,
"ios-open": 61911,
"ios-options": 61913,
"ios-outlet": 61915,
"ios-paper": 62578,
"ios-paper-plane": 61917,
"ios-partly-sunny": 61919,
"ios-pause": 62584,
"ios-paw": 62586,
"ios-people": 62588,
"ios-person": 62590,
"ios-person-add": 61921,
"ios-phone-landscape": 61922,
"ios-phone-portrait": 61923,
"ios-photos": 62594,
"ios-pie": 62596,
"ios-pin": 61925,
"ios-pint": 62598,
"ios-pizza": 61927,
"ios-planet": 61931,
"ios-play": 62600,
"ios-play-circle": 61715,
"ios-podium": 61933,
"ios-power": 61935,
"ios-pricetag": 62605,
"ios-pricetags": 62607,
"ios-print": 61937,
"ios-pulse": 62611,
"ios-qr-scanner": 61939,
"ios-quote": 61941,
"ios-radio": 61945,
"ios-radio-button-off": 61942,
"ios-radio-button-on": 61943,
"ios-rainy": 62613,
"ios-recording": 62615,
"ios-redo": 62617,
"ios-refresh": 62620,
"ios-refresh-circle": 61749,
"ios-remove": 61948,
"ios-remove-circle": 61947,
"ios-remove-circle-outline": 61946,
"ios-reorder": 61949,
"ios-repeat": 61950,
"ios-resize": 61951,
"ios-restaurant": 61953,
"ios-return-left": 61954,
"ios-return-right": 61955,
"ios-reverse-camera": 62623,
"ios-rewind": 62625,
"ios-ribbon": 61957,
"ios-rocket": 61771,
"ios-rose": 62627,
"ios-sad": 61959,
"ios-save": 61862,
"ios-school": 61961,
"ios-search": 62629,
"ios-send": 61964,
"ios-settings": 62631,
"ios-share": 61969,
"ios-share-alt": 61967,
"ios-shirt": 61971,
"ios-shuffle": 62633,
"ios-skip-backward": 61973,
"ios-skip-forward": 61975,
"ios-snow": 61976,
"ios-speedometer": 62640,
"ios-square": 61978,
"ios-square-outline": 61788,
"ios-star": 62643,
"ios-star-half": 62641,
"ios-star-outline": 62642,
"ios-stats": 61980,
"ios-stopwatch": 62645,
"ios-subway": 61982,
"ios-sunny": 62647,
"ios-swap": 61983,
"ios-switch": 61985,
"ios-sync": 61986,
"ios-tablet-landscape": 61987,
"ios-tablet-portrait": 62030,
"ios-tennisball": 62651,
"ios-text": 62032,
"ios-thermometer": 62034,
"ios-thumbs-down": 62036,
"ios-thumbs-up": 62038,
"ios-thunderstorm": 62653,
"ios-time": 62655,
"ios-timer": 62657,
"ios-today": 61775,
"ios-train": 62040,
"ios-transgender": 62041,
"ios-trash": 62661,
"ios-trending-down": 62042,
"ios-trending-up": 62043,
"ios-trophy": 62045,
"ios-tv": 61717,
"ios-umbrella": 62047,
"ios-undo": 62663,
"ios-unlock": 62049,
"ios-videocam": 62669,
"ios-volume-high": 61724,
"ios-volume-low": 61726,
"ios-volume-mute": 62051,
"ios-volume-off": 62052,
"ios-walk": 62054,
"ios-wallet": 61835,
"ios-warning": 62056,
"ios-watch": 62057,
"ios-water": 62059,
"ios-wifi": 62061,
"ios-wine": 62063,
"ios-woman": 62065,
"logo-android": 61989,
"logo-angular": 61991,
"logo-apple": 61993,
"logo-bitbucket": 61843,
"logo-bitcoin": 61995,
"logo-buffer": 61997,
"logo-chrome": 61999,
"logo-closed-captioning": 61701,
"logo-codepen": 62000,
"logo-css3": 62001,
"logo-designernews": 62002,
"logo-dribbble": 62003,
"logo-dropbox": 62004,
"logo-euro": 62005,
"logo-facebook": 62006,
"logo-flickr": 61703,
"logo-foursquare": 62007,
"logo-freebsd-devil": 62008,
"logo-game-controller-a": 61755,
"logo-game-controller-b": 61825,
"logo-github": 62009,
"logo-google": 62010,
"logo-googleplus": 62011,
"logo-hackernews": 62012,
"logo-html5": 62013,
"logo-instagram": 62014,
"logo-ionic": 61776,
"logo-ionitron": 61777,
"logo-javascript": 62015,
"logo-linkedin": 62016,
"logo-markdown": 62017,
"logo-model-s": 61779,
"logo-no-smoking": 61705,
"logo-nodejs": 62018,
"logo-npm": 61845,
"logo-octocat": 62019,
"logo-pinterest": 62020,
"logo-playstation": 62021,
"logo-polymer": 61790,
"logo-python": 62022,
"logo-reddit": 62023,
"logo-rss": 62024,
"logo-sass": 62025,
"logo-skype": 62026,
"logo-slack": 61707,
"logo-snapchat": 62027,
"logo-steam": 62028,
"logo-tumblr": 62029,
"logo-tux": 62126,
"logo-twitch": 62127,
"logo-twitter": 62128,
"logo-usd": 62129,
"logo-vimeo": 62148,
"logo-vk": 61709,
"logo-whatsapp": 62149,
"logo-windows": 62255,
"logo-wordpress": 62256,
"logo-xbox": 62284,
"logo-xing": 61711,
"logo-yahoo": 62285,
"logo-yen": 62286,
"logo-youtube": 62287,
"md-add": 62067,
"md-add-circle": 62066,
"md-add-circle-outline": 61784,
"md-airplane": 61786,
"md-alarm": 62068,
"md-albums": 62069,
"md-alert": 62070,
"md-american-football": 62071,
"md-analytics": 62072,
"md-aperture": 62073,
"md-apps": 62074,
"md-appstore": 62075,
"md-archive": 62076,
"md-arrow-back": 62077,
"md-arrow-down": 62078,
"md-arrow-dropdown": 62080,
"md-arrow-dropdown-circle": 62079,
"md-arrow-dropleft": 62082,
"md-arrow-dropleft-circle": 62081,
"md-arrow-dropright": 62084,
"md-arrow-dropright-circle": 62083,
"md-arrow-dropup": 62086,
"md-arrow-dropup-circle": 62085,
"md-arrow-forward": 62087,
"md-arrow-round-back": 62088,
"md-arrow-round-down": 62089,
"md-arrow-round-forward": 62090,
"md-arrow-round-up": 62091,
"md-arrow-up": 62092,
"md-at": 62093,
"md-attach": 62094,
"md-backspace": 62095,
"md-barcode": 62096,
"md-baseball": 62097,
"md-basket": 62098,
"md-basketball": 62099,
"md-battery-charging": 62100,
"md-battery-dead": 62101,
"md-battery-full": 62102,
"md-beaker": 62103,
"md-bed": 61792,
"md-beer": 62104,
"md-bicycle": 62105,
"md-bluetooth": 62106,
"md-boat": 62107,
"md-body": 62108,
"md-bonfire": 62109,
"md-book": 62110,
"md-bookmark": 62111,
"md-bookmarks": 62112,
"md-bowtie": 62113,
"md-briefcase": 62114,
"md-browsers": 62115,
"md-brush": 62116,
"md-bug": 62117,
"md-build": 62118,
"md-bulb": 62119,
"md-bus": 62120,
"md-business": 61860,
"md-cafe": 62121,
"md-calculator": 62122,
"md-calendar": 62123,
"md-call": 62124,
"md-camera": 62125,
"md-car": 62130,
"md-card": 62131,
"md-cart": 62132,
"md-cash": 62133,
"md-cellular": 61796,
"md-chatboxes": 62134,
"md-chatbubbles": 62135,
"md-checkbox": 62137,
"md-checkbox-outline": 62136,
"md-checkmark": 62140,
"md-checkmark-circle": 62139,
"md-checkmark-circle-outline": 62138,
"md-clipboard": 62141,
"md-clock": 62142,
"md-close": 62144,
"md-close-circle": 62143,
"md-close-circle-outline": 61798,
"md-cloud": 62153,
"md-cloud-circle": 62146,
"md-cloud-done": 62147,
"md-cloud-download": 62150,
"md-cloud-outline": 62151,
"md-cloud-upload": 62152,
"md-cloudy": 62155,
"md-cloudy-night": 62154,
"md-code": 62158,
"md-code-download": 62156,
"md-code-working": 62157,
"md-cog": 62159,
"md-color-fill": 62160,
"md-color-filter": 62161,
"md-color-palette": 62162,
"md-color-wand": 62163,
"md-compass": 62164,
"md-construct": 62165,
"md-contact": 62166,
"md-contacts": 62167,
"md-contract": 62168,
"md-contrast": 62169,
"md-copy": 62170,
"md-create": 62171,
"md-crop": 62172,
"md-cube": 62173,
"md-cut": 62174,
"md-desktop": 62175,
"md-disc": 62176,
"md-document": 62177,
"md-done-all": 62178,
"md-download": 62179,
"md-easel": 62180,
"md-egg": 62181,
"md-exit": 62182,
"md-expand": 62183,
"md-eye": 62185,
"md-eye-off": 62184,
"md-fastforward": 62186,
"md-female": 62187,
"md-filing": 62188,
"md-film": 62189,
"md-finger-print": 62190,
"md-fitness": 61868,
"md-flag": 62191,
"md-flame": 62192,
"md-flash": 62193,
"md-flash-off": 61801,
"md-flashlight": 61803,
"md-flask": 62194,
"md-flower": 62195,
"md-folder": 62197,
"md-folder-open": 62196,
"md-football": 62198,
"md-funnel": 62199,
"md-gift": 61849,
"md-git-branch": 62202,
"md-git-commit": 62203,
"md-git-compare": 62204,
"md-git-merge": 62205,
"md-git-network": 62206,
"md-git-pull-request": 62207,
"md-glasses": 62208,
"md-globe": 62209,
"md-grid": 62210,
"md-hammer": 62211,
"md-hand": 62212,
"md-happy": 62213,
"md-headset": 62214,
"md-heart": 62216,
"md-heart-dislike": 61799,
"md-heart-empty": 61857,
"md-heart-half": 61858,
"md-help": 62219,
"md-help-buoy": 62217,
"md-help-circle": 62218,
"md-help-circle-outline": 61805,
"md-home": 62220,
"md-hourglass": 61713,
"md-ice-cream": 62221,
"md-image": 62222,
"md-images": 62223,
"md-infinite": 62224,
"md-information": 62226,
"md-information-circle": 62225,
"md-information-circle-outline": 61807,
"md-jet": 62229,
"md-journal": 61837,
"md-key": 62230,
"md-keypad": 62231,
"md-laptop": 62232,
"md-leaf": 62233,
"md-link": 61998,
"md-list": 62235,
"md-list-box": 62234,
"md-locate": 62236,
"md-lock": 62237,
"md-log-in": 62238,
"md-log-out": 62239,
"md-magnet": 62240,
"md-mail": 62242,
"md-mail-open": 62241,
"md-mail-unread": 61810,
"md-male": 62243,
"md-man": 62244,
"md-map": 62245,
"md-medal": 62246,
"md-medical": 62247,
"md-medkit": 62248,
"md-megaphone": 62249,
"md-menu": 62250,
"md-mic": 62252,
"md-mic-off": 62251,
"md-microphone": 62253,
"md-moon": 62254,
"md-more": 61897,
"md-move": 62257,
"md-musical-note": 62258,
"md-musical-notes": 62259,
"md-navigate": 62260,
"md-notifications": 62264,
"md-notifications-off": 62262,
"md-notifications-outline": 62263,
"md-nuclear": 62265,
"md-nutrition": 62266,
"md-open": 62267,
"md-options": 62268,
"md-outlet": 62269,
"md-paper": 62271,
"md-paper-plane": 62270,
"md-partly-sunny": 62272,
"md-pause": 62273,
"md-paw": 62274,
"md-people": 62275,
"md-person": 62277,
"md-person-add": 62276,
"md-phone-landscape": 62278,
"md-phone-portrait": 62279,
"md-photos": 62280,
"md-pie": 62281,
"md-pin": 62282,
"md-pint": 62283,
"md-pizza": 62292,
"md-planet": 62294,
"md-play": 62295,
"md-play-circle": 61812,
"md-podium": 62296,
"md-power": 62297,
"md-pricetag": 62298,
"md-pricetags": 62299,
"md-print": 62300,
"md-pulse": 62301,
"md-qr-scanner": 62302,
"md-quote": 62303,
"md-radio": 62306,
"md-radio-button-off": 62304,
"md-radio-button-on": 62305,
"md-rainy": 62307,
"md-recording": 62308,
"md-redo": 62309,
"md-refresh": 62310,
"md-refresh-circle": 61992,
"md-remove": 62312,
"md-remove-circle": 62311,
"md-remove-circle-outline": 61814,
"md-reorder": 62313,
"md-repeat": 62314,
"md-resize": 62315,
"md-restaurant": 62316,
"md-return-left": 62317,
"md-return-right": 62318,
"md-reverse-camera": 62319,
"md-rewind": 62320,
"md-ribbon": 62321,
"md-rocket": 61817,
"md-rose": 62322,
"md-sad": 62323,
"md-save": 61865,
"md-school": 62324,
"md-search": 62325,
"md-send": 62326,
"md-settings": 62327,
"md-share": 62329,
"md-share-alt": 62328,
"md-shirt": 62330,
"md-shuffle": 62331,
"md-skip-backward": 62332,
"md-skip-forward": 62333,
"md-snow": 62334,
"md-speedometer": 62335,
"md-square": 62337,
"md-square-outline": 62336,
"md-star": 62340,
"md-star-half": 62338,
"md-star-outline": 62339,
"md-stats": 62341,
"md-stopwatch": 62342,
"md-subway": 62343,
"md-sunny": 62344,
"md-swap": 62345,
"md-switch": 62346,
"md-sync": 62347,
"md-tablet-landscape": 62348,
"md-tablet-portrait": 62349,
"md-tennisball": 62350,
"md-text": 62351,
"md-thermometer": 62352,
"md-thumbs-down": 62353,
"md-thumbs-up": 62354,
"md-thunderstorm": 62355,
"md-time": 62356,
"md-timer": 62357,
"md-today": 61821,
"md-train": 62358,
"md-transgender": 62359,
"md-trash": 62360,
"md-trending-down": 62361,
"md-trending-up": 62362,
"md-trophy": 62363,
"md-tv": 61823,
"md-umbrella": 62364,
"md-undo": 62365,
"md-unlock": 62366,
"md-videocam": 62367,
"md-volume-high": 61731,
"md-volume-low": 61745,
"md-volume-mute": 62369,
"md-volume-off": 62370,
"md-walk": 62372,
"md-wallet": 61839,
"md-warning": 62373,
"md-watch": 62374,
"md-water": 62375,
"md-wifi": 62376,
"md-wine": 62377,
"md-woman": 62378
}

View File

@ -0,0 +1,934 @@
{
"3d-rotation": 59469,
"ac-unit": 60219,
"access-alarm": 57744,
"access-alarms": 57745,
"access-time": 57746,
"accessibility": 59470,
"accessible": 59668,
"account-balance": 59471,
"account-balance-wallet": 59472,
"account-box": 59473,
"account-circle": 59475,
"adb": 58894,
"add": 57669,
"add-a-photo": 58425,
"add-alarm": 57747,
"add-alert": 57347,
"add-box": 57670,
"add-circle": 57671,
"add-circle-outline": 57672,
"add-location": 58727,
"add-shopping-cart": 59476,
"add-to-photos": 58269,
"add-to-queue": 57436,
"adjust": 58270,
"airline-seat-flat": 58928,
"airline-seat-flat-angled": 58929,
"airline-seat-individual-suite": 58930,
"airline-seat-legroom-extra": 58931,
"airline-seat-legroom-normal": 58932,
"airline-seat-legroom-reduced": 58933,
"airline-seat-recline-extra": 58934,
"airline-seat-recline-normal": 58935,
"airplanemode-active": 57749,
"airplanemode-inactive": 57748,
"airplay": 57429,
"airport-shuttle": 60220,
"alarm": 59477,
"alarm-add": 59478,
"alarm-off": 59479,
"alarm-on": 59480,
"album": 57369,
"all-inclusive": 60221,
"all-out": 59659,
"android": 59481,
"announcement": 59482,
"apps": 58819,
"archive": 57673,
"arrow-back": 58820,
"arrow-downward": 58843,
"arrow-drop-down": 58821,
"arrow-drop-down-circle": 58822,
"arrow-drop-up": 58823,
"arrow-forward": 58824,
"arrow-upward": 58840,
"art-track": 57440,
"aspect-ratio": 59483,
"assessment": 59484,
"assignment": 59485,
"assignment-ind": 59486,
"assignment-late": 59487,
"assignment-return": 59488,
"assignment-returned": 59489,
"assignment-turned-in": 59490,
"assistant": 58271,
"assistant-photo": 58272,
"attach-file": 57894,
"attach-money": 57895,
"attachment": 58044,
"audiotrack": 58273,
"autorenew": 59491,
"av-timer": 57371,
"backspace": 57674,
"backup": 59492,
"battery-alert": 57756,
"battery-charging-full": 57763,
"battery-full": 57764,
"battery-std": 57765,
"battery-unknown": 57766,
"beach-access": 60222,
"beenhere": 58669,
"block": 57675,
"bluetooth": 57767,
"bluetooth-audio": 58895,
"bluetooth-connected": 57768,
"bluetooth-disabled": 57769,
"bluetooth-searching": 57770,
"blur-circular": 58274,
"blur-linear": 58275,
"blur-off": 58276,
"blur-on": 58277,
"book": 59493,
"bookmark": 59494,
"bookmark-border": 59495,
"border-all": 57896,
"border-bottom": 57897,
"border-clear": 57898,
"border-color": 57899,
"border-horizontal": 57900,
"border-inner": 57901,
"border-left": 57902,
"border-outer": 57903,
"border-right": 57904,
"border-style": 57905,
"border-top": 57906,
"border-vertical": 57907,
"branding-watermark": 57451,
"brightness-1": 58278,
"brightness-2": 58279,
"brightness-3": 58280,
"brightness-4": 58281,
"brightness-5": 58282,
"brightness-6": 58283,
"brightness-7": 58284,
"brightness-auto": 57771,
"brightness-high": 57772,
"brightness-low": 57773,
"brightness-medium": 57774,
"broken-image": 58285,
"brush": 58286,
"bubble-chart": 59101,
"bug-report": 59496,
"build": 59497,
"burst-mode": 58428,
"business": 57519,
"business-center": 60223,
"cached": 59498,
"cake": 59369,
"call": 57520,
"call-end": 57521,
"call-made": 57522,
"call-merge": 57523,
"call-missed": 57524,
"call-missed-outgoing": 57572,
"call-received": 57525,
"call-split": 57526,
"call-to-action": 57452,
"camera": 58287,
"camera-alt": 58288,
"camera-enhance": 59644,
"camera-front": 58289,
"camera-rear": 58290,
"camera-roll": 58291,
"cancel": 58825,
"card-giftcard": 59638,
"card-membership": 59639,
"card-travel": 59640,
"casino": 60224,
"cast": 58119,
"cast-connected": 58120,
"center-focus-strong": 58292,
"center-focus-weak": 58293,
"change-history": 59499,
"chat": 57527,
"chat-bubble": 57546,
"chat-bubble-outline": 57547,
"check": 58826,
"check-box": 59444,
"check-box-outline-blank": 59445,
"check-circle": 59500,
"chevron-left": 58827,
"chevron-right": 58828,
"child-care": 60225,
"child-friendly": 60226,
"chrome-reader-mode": 59501,
"class": 59502,
"clear": 57676,
"clear-all": 57528,
"close": 58829,
"closed-caption": 57372,
"cloud": 58045,
"cloud-circle": 58046,
"cloud-done": 58047,
"cloud-download": 58048,
"cloud-off": 58049,
"cloud-queue": 58050,
"cloud-upload": 58051,
"code": 59503,
"collections": 58294,
"collections-bookmark": 58417,
"color-lens": 58295,
"colorize": 58296,
"comment": 57529,
"compare": 58297,
"compare-arrows": 59669,
"computer": 58122,
"confirmation-number": 58936,
"contact-mail": 57552,
"contact-phone": 57551,
"contacts": 57530,
"content-copy": 57677,
"content-cut": 57678,
"content-paste": 57679,
"control-point": 58298,
"control-point-duplicate": 58299,
"copyright": 59660,
"create": 57680,
"create-new-folder": 58060,
"credit-card": 59504,
"crop": 58302,
"crop-16-9": 58300,
"crop-3-2": 58301,
"crop-5-4": 58303,
"crop-7-5": 58304,
"crop-din": 58305,
"crop-free": 58306,
"crop-landscape": 58307,
"crop-original": 58308,
"crop-portrait": 58309,
"crop-rotate": 58423,
"crop-square": 58310,
"dashboard": 59505,
"data-usage": 57775,
"date-range": 59670,
"dehaze": 58311,
"delete": 59506,
"delete-forever": 59691,
"delete-sweep": 57708,
"description": 59507,
"desktop-mac": 58123,
"desktop-windows": 58124,
"details": 58312,
"developer-board": 58125,
"developer-mode": 57776,
"device-hub": 58165,
"devices": 57777,
"devices-other": 58167,
"dialer-sip": 57531,
"dialpad": 57532,
"directions": 58670,
"directions-bike": 58671,
"directions-boat": 58674,
"directions-bus": 58672,
"directions-car": 58673,
"directions-railway": 58676,
"directions-run": 58726,
"directions-subway": 58675,
"directions-transit": 58677,
"directions-walk": 58678,
"disc-full": 58896,
"dns": 59509,
"do-not-disturb": 58898,
"do-not-disturb-alt": 58897,
"do-not-disturb-off": 58947,
"do-not-disturb-on": 58948,
"dock": 58126,
"domain": 59374,
"done": 59510,
"done-all": 59511,
"donut-large": 59671,
"donut-small": 59672,
"drafts": 57681,
"drag-handle": 57949,
"drive-eta": 58899,
"dvr": 57778,
"edit": 58313,
"edit-location": 58728,
"eject": 59643,
"email": 57534,
"enhanced-encryption": 58943,
"equalizer": 57373,
"error": 57344,
"error-outline": 57345,
"euro-symbol": 59686,
"ev-station": 58733,
"event": 59512,
"event-available": 58900,
"event-busy": 58901,
"event-note": 58902,
"event-seat": 59651,
"exit-to-app": 59513,
"expand-less": 58830,
"expand-more": 58831,
"explicit": 57374,
"explore": 59514,
"exposure": 58314,
"exposure-neg-1": 58315,
"exposure-neg-2": 58316,
"exposure-plus-1": 58317,
"exposure-plus-2": 58318,
"exposure-zero": 58319,
"extension": 59515,
"face": 59516,
"fast-forward": 57375,
"fast-rewind": 57376,
"favorite": 59517,
"favorite-border": 59518,
"featured-play-list": 57453,
"featured-video": 57454,
"feedback": 59519,
"fiber-dvr": 57437,
"fiber-manual-record": 57441,
"fiber-new": 57438,
"fiber-pin": 57450,
"fiber-smart-record": 57442,
"file-download": 58052,
"file-upload": 58054,
"filter": 58323,
"filter-1": 58320,
"filter-2": 58321,
"filter-3": 58322,
"filter-4": 58324,
"filter-5": 58325,
"filter-6": 58326,
"filter-7": 58327,
"filter-8": 58328,
"filter-9": 58329,
"filter-9-plus": 58330,
"filter-b-and-w": 58331,
"filter-center-focus": 58332,
"filter-drama": 58333,
"filter-frames": 58334,
"filter-hdr": 58335,
"filter-list": 57682,
"filter-none": 58336,
"filter-tilt-shift": 58338,
"filter-vintage": 58339,
"find-in-page": 59520,
"find-replace": 59521,
"fingerprint": 59661,
"first-page": 58844,
"fitness-center": 60227,
"flag": 57683,
"flare": 58340,
"flash-auto": 58341,
"flash-off": 58342,
"flash-on": 58343,
"flight": 58681,
"flight-land": 59652,
"flight-takeoff": 59653,
"flip": 58344,
"flip-to-back": 59522,
"flip-to-front": 59523,
"folder": 58055,
"folder-open": 58056,
"folder-shared": 58057,
"folder-special": 58903,
"font-download": 57703,
"format-align-center": 57908,
"format-align-justify": 57909,
"format-align-left": 57910,
"format-align-right": 57911,
"format-bold": 57912,
"format-clear": 57913,
"format-color-fill": 57914,
"format-color-reset": 57915,
"format-color-text": 57916,
"format-indent-decrease": 57917,
"format-indent-increase": 57918,
"format-italic": 57919,
"format-line-spacing": 57920,
"format-list-bulleted": 57921,
"format-list-numbered": 57922,
"format-paint": 57923,
"format-quote": 57924,
"format-shapes": 57950,
"format-size": 57925,
"format-strikethrough": 57926,
"format-textdirection-l-to-r": 57927,
"format-textdirection-r-to-l": 57928,
"format-underlined": 57929,
"forum": 57535,
"forward": 57684,
"forward-10": 57430,
"forward-30": 57431,
"forward-5": 57432,
"free-breakfast": 60228,
"fullscreen": 58832,
"fullscreen-exit": 58833,
"functions": 57930,
"g-translate": 59687,
"gamepad": 58127,
"games": 57377,
"gavel": 59662,
"gesture": 57685,
"get-app": 59524,
"gif": 59656,
"golf-course": 60229,
"gps-fixed": 57779,
"gps-not-fixed": 57780,
"gps-off": 57781,
"grade": 59525,
"gradient": 58345,
"grain": 58346,
"graphic-eq": 57784,
"grid-off": 58347,
"grid-on": 58348,
"group": 59375,
"group-add": 59376,
"group-work": 59526,
"hd": 57426,
"hdr-off": 58349,
"hdr-on": 58350,
"hdr-strong": 58353,
"hdr-weak": 58354,
"headset": 58128,
"headset-mic": 58129,
"healing": 58355,
"hearing": 57379,
"help": 59527,
"help-outline": 59645,
"high-quality": 57380,
"highlight": 57951,
"highlight-off": 59528,
"history": 59529,
"home": 59530,
"hot-tub": 60230,
"hotel": 58682,
"hourglass-empty": 59531,
"hourglass-full": 59532,
"http": 59650,
"https": 59533,
"image": 58356,
"image-aspect-ratio": 58357,
"import-contacts": 57568,
"import-export": 57539,
"important-devices": 59666,
"inbox": 57686,
"indeterminate-check-box": 59657,
"info": 59534,
"info-outline": 59535,
"input": 59536,
"insert-chart": 57931,
"insert-comment": 57932,
"insert-drive-file": 57933,
"insert-emoticon": 57934,
"insert-invitation": 57935,
"insert-link": 57936,
"insert-photo": 57937,
"invert-colors": 59537,
"invert-colors-off": 57540,
"iso": 58358,
"keyboard": 58130,
"keyboard-arrow-down": 58131,
"keyboard-arrow-left": 58132,
"keyboard-arrow-right": 58133,
"keyboard-arrow-up": 58134,
"keyboard-backspace": 58135,
"keyboard-capslock": 58136,
"keyboard-hide": 58138,
"keyboard-return": 58139,
"keyboard-tab": 58140,
"keyboard-voice": 58141,
"kitchen": 60231,
"label": 59538,
"label-outline": 59539,
"landscape": 58359,
"language": 59540,
"laptop": 58142,
"laptop-chromebook": 58143,
"laptop-mac": 58144,
"laptop-windows": 58145,
"last-page": 58845,
"launch": 59541,
"layers": 58683,
"layers-clear": 58684,
"leak-add": 58360,
"leak-remove": 58361,
"lens": 58362,
"library-add": 57390,
"library-books": 57391,
"library-music": 57392,
"lightbulb-outline": 59663,
"line-style": 59673,
"line-weight": 59674,
"linear-scale": 57952,
"link": 57687,
"linked-camera": 58424,
"list": 59542,
"live-help": 57542,
"live-tv": 58937,
"local-activity": 58687,
"local-airport": 58685,
"local-atm": 58686,
"local-bar": 58688,
"local-cafe": 58689,
"local-car-wash": 58690,
"local-convenience-store": 58691,
"local-dining": 58710,
"local-drink": 58692,
"local-florist": 58693,
"local-gas-station": 58694,
"local-grocery-store": 58695,
"local-hospital": 58696,
"local-hotel": 58697,
"local-laundry-service": 58698,
"local-library": 58699,
"local-mall": 58700,
"local-movies": 58701,
"local-offer": 58702,
"local-parking": 58703,
"local-pharmacy": 58704,
"local-phone": 58705,
"local-pizza": 58706,
"local-play": 58707,
"local-post-office": 58708,
"local-printshop": 58709,
"local-see": 58711,
"local-shipping": 58712,
"local-taxi": 58713,
"location-city": 59377,
"location-disabled": 57782,
"location-off": 57543,
"location-on": 57544,
"location-searching": 57783,
"lock": 59543,
"lock-open": 59544,
"lock-outline": 59545,
"looks": 58364,
"looks-3": 58363,
"looks-4": 58365,
"looks-5": 58366,
"looks-6": 58367,
"looks-one": 58368,
"looks-two": 58369,
"loop": 57384,
"loupe": 58370,
"low-priority": 57709,
"loyalty": 59546,
"mail": 57688,
"mail-outline": 57569,
"map": 58715,
"markunread": 57689,
"markunread-mailbox": 59547,
"memory": 58146,
"menu": 58834,
"merge-type": 57938,
"message": 57545,
"mic": 57385,
"mic-none": 57386,
"mic-off": 57387,
"mms": 58904,
"mode-comment": 57939,
"mode-edit": 57940,
"monetization-on": 57955,
"money-off": 57948,
"monochrome-photos": 58371,
"mood": 59378,
"mood-bad": 59379,
"more": 58905,
"more-horiz": 58835,
"more-vert": 58836,
"motorcycle": 59675,
"mouse": 58147,
"move-to-inbox": 57704,
"movie": 57388,
"movie-creation": 58372,
"movie-filter": 58426,
"multiline-chart": 59103,
"music-note": 58373,
"music-video": 57443,
"my-location": 58716,
"nature": 58374,
"nature-people": 58375,
"navigate-before": 58376,
"navigate-next": 58377,
"navigation": 58717,
"near-me": 58729,
"network-cell": 57785,
"network-check": 58944,
"network-locked": 58906,
"network-wifi": 57786,
"new-releases": 57393,
"next-week": 57706,
"nfc": 57787,
"no-encryption": 58945,
"no-sim": 57548,
"not-interested": 57395,
"note": 57455,
"note-add": 59548,
"notifications": 59380,
"notifications-active": 59383,
"notifications-none": 59381,
"notifications-off": 59382,
"notifications-paused": 59384,
"offline-pin": 59658,
"ondemand-video": 58938,
"opacity": 59676,
"open-in-browser": 59549,
"open-in-new": 59550,
"open-with": 59551,
"pages": 59385,
"pageview": 59552,
"palette": 58378,
"pan-tool": 59685,
"panorama": 58379,
"panorama-fish-eye": 58380,
"panorama-horizontal": 58381,
"panorama-vertical": 58382,
"panorama-wide-angle": 58383,
"party-mode": 59386,
"pause": 57396,
"pause-circle-filled": 57397,
"pause-circle-outline": 57398,
"payment": 59553,
"people": 59387,
"people-outline": 59388,
"perm-camera-mic": 59554,
"perm-contact-calendar": 59555,
"perm-data-setting": 59556,
"perm-device-information": 59557,
"perm-identity": 59558,
"perm-media": 59559,
"perm-phone-msg": 59560,
"perm-scan-wifi": 59561,
"person": 59389,
"person-add": 59390,
"person-outline": 59391,
"person-pin": 58714,
"person-pin-circle": 58730,
"personal-video": 58939,
"pets": 59677,
"phone": 57549,
"phone-android": 58148,
"phone-bluetooth-speaker": 58907,
"phone-forwarded": 58908,
"phone-in-talk": 58909,
"phone-iphone": 58149,
"phone-locked": 58910,
"phone-missed": 58911,
"phone-paused": 58912,
"phonelink": 58150,
"phonelink-erase": 57563,
"phonelink-lock": 57564,
"phonelink-off": 58151,
"phonelink-ring": 57565,
"phonelink-setup": 57566,
"photo": 58384,
"photo-album": 58385,
"photo-camera": 58386,
"photo-filter": 58427,
"photo-library": 58387,
"photo-size-select-actual": 58418,
"photo-size-select-large": 58419,
"photo-size-select-small": 58420,
"picture-as-pdf": 58389,
"picture-in-picture": 59562,
"picture-in-picture-alt": 59665,
"pie-chart": 59076,
"pie-chart-outlined": 59077,
"pin-drop": 58718,
"place": 58719,
"play-arrow": 57399,
"play-circle-filled": 57400,
"play-circle-outline": 57401,
"play-for-work": 59654,
"playlist-add": 57403,
"playlist-add-check": 57445,
"playlist-play": 57439,
"plus-one": 59392,
"poll": 59393,
"polymer": 59563,
"pool": 60232,
"portable-wifi-off": 57550,
"portrait": 58390,
"power": 58940,
"power-input": 58166,
"power-settings-new": 59564,
"pregnant-woman": 59678,
"present-to-all": 57567,
"print": 59565,
"priority-high": 58949,
"public": 59403,
"publish": 57941,
"query-builder": 59566,
"question-answer": 59567,
"queue": 57404,
"queue-music": 57405,
"queue-play-next": 57446,
"radio": 57406,
"radio-button-checked": 59447,
"radio-button-unchecked": 59446,
"rate-review": 58720,
"receipt": 59568,
"recent-actors": 57407,
"record-voice-over": 59679,
"redeem": 59569,
"redo": 57690,
"refresh": 58837,
"remove": 57691,
"remove-circle": 57692,
"remove-circle-outline": 57693,
"remove-from-queue": 57447,
"remove-red-eye": 58391,
"remove-shopping-cart": 59688,
"reorder": 59646,
"repeat": 57408,
"repeat-one": 57409,
"replay": 57410,
"replay-10": 57433,
"replay-30": 57434,
"replay-5": 57435,
"reply": 57694,
"reply-all": 57695,
"report": 57696,
"report-problem": 59570,
"restaurant": 58732,
"restaurant-menu": 58721,
"restore": 59571,
"restore-page": 59689,
"ring-volume": 57553,
"room": 59572,
"room-service": 60233,
"rotate-90-degrees-ccw": 58392,
"rotate-left": 58393,
"rotate-right": 58394,
"rounded-corner": 59680,
"router": 58152,
"rowing": 59681,
"rss-feed": 57573,
"rv-hookup": 58946,
"satellite": 58722,
"save": 57697,
"scanner": 58153,
"schedule": 59573,
"school": 59404,
"screen-lock-landscape": 57790,
"screen-lock-portrait": 57791,
"screen-lock-rotation": 57792,
"screen-rotation": 57793,
"screen-share": 57570,
"sd-card": 58915,
"sd-storage": 57794,
"search": 59574,
"security": 58154,
"select-all": 57698,
"send": 57699,
"sentiment-dissatisfied": 59409,
"sentiment-neutral": 59410,
"sentiment-satisfied": 59411,
"sentiment-very-dissatisfied": 59412,
"sentiment-very-satisfied": 59413,
"settings": 59576,
"settings-applications": 59577,
"settings-backup-restore": 59578,
"settings-bluetooth": 59579,
"settings-brightness": 59581,
"settings-cell": 59580,
"settings-ethernet": 59582,
"settings-input-antenna": 59583,
"settings-input-component": 59584,
"settings-input-composite": 59585,
"settings-input-hdmi": 59586,
"settings-input-svideo": 59587,
"settings-overscan": 59588,
"settings-phone": 59589,
"settings-power": 59590,
"settings-remote": 59591,
"settings-system-daydream": 57795,
"settings-voice": 59592,
"share": 59405,
"shop": 59593,
"shop-two": 59594,
"shopping-basket": 59595,
"shopping-cart": 59596,
"short-text": 57953,
"show-chart": 59105,
"shuffle": 57411,
"signal-cellular-4-bar": 57800,
"signal-cellular-connected-no-internet-4-bar": 57805,
"signal-cellular-no-sim": 57806,
"signal-cellular-null": 57807,
"signal-cellular-off": 57808,
"signal-wifi-4-bar": 57816,
"signal-wifi-4-bar-lock": 57817,
"signal-wifi-off": 57818,
"sim-card": 58155,
"sim-card-alert": 58916,
"skip-next": 57412,
"skip-previous": 57413,
"slideshow": 58395,
"slow-motion-video": 57448,
"smartphone": 58156,
"smoke-free": 60234,
"smoking-rooms": 60235,
"sms": 58917,
"sms-failed": 58918,
"snooze": 57414,
"sort": 57700,
"sort-by-alpha": 57427,
"spa": 60236,
"space-bar": 57942,
"speaker": 58157,
"speaker-group": 58158,
"speaker-notes": 59597,
"speaker-notes-off": 59690,
"speaker-phone": 57554,
"spellcheck": 59598,
"star": 59448,
"star-border": 59450,
"star-half": 59449,
"stars": 59600,
"stay-current-landscape": 57555,
"stay-current-portrait": 57556,
"stay-primary-landscape": 57557,
"stay-primary-portrait": 57558,
"stop": 57415,
"stop-screen-share": 57571,
"storage": 57819,
"store": 59601,
"store-mall-directory": 58723,
"straighten": 58396,
"streetview": 58734,
"strikethrough-s": 57943,
"style": 58397,
"subdirectory-arrow-left": 58841,
"subdirectory-arrow-right": 58842,
"subject": 59602,
"subscriptions": 57444,
"subtitles": 57416,
"subway": 58735,
"supervisor-account": 59603,
"surround-sound": 57417,
"swap-calls": 57559,
"swap-horiz": 59604,
"swap-vert": 59605,
"swap-vertical-circle": 59606,
"switch-camera": 58398,
"switch-video": 58399,
"sync": 58919,
"sync-disabled": 58920,
"sync-problem": 58921,
"system-update": 58922,
"system-update-alt": 59607,
"tab": 59608,
"tab-unselected": 59609,
"tablet": 58159,
"tablet-android": 58160,
"tablet-mac": 58161,
"tag-faces": 58400,
"tap-and-play": 58923,
"terrain": 58724,
"text-fields": 57954,
"text-format": 57701,
"textsms": 57560,
"texture": 58401,
"theaters": 59610,
"thumb-down": 59611,
"thumb-up": 59612,
"thumbs-up-down": 59613,
"time-to-leave": 58924,
"timelapse": 58402,
"timeline": 59682,
"timer": 58405,
"timer-10": 58403,
"timer-3": 58404,
"timer-off": 58406,
"title": 57956,
"toc": 59614,
"today": 59615,
"toll": 59616,
"tonality": 58407,
"touch-app": 59667,
"toys": 58162,
"track-changes": 59617,
"traffic": 58725,
"train": 58736,
"tram": 58737,
"transfer-within-a-station": 58738,
"transform": 58408,
"translate": 59618,
"trending-down": 59619,
"trending-flat": 59620,
"trending-up": 59621,
"tune": 58409,
"turned-in": 59622,
"turned-in-not": 59623,
"tv": 58163,
"unarchive": 57705,
"undo": 57702,
"unfold-less": 58838,
"unfold-more": 58839,
"update": 59683,
"usb": 57824,
"verified-user": 59624,
"vertical-align-bottom": 57944,
"vertical-align-center": 57945,
"vertical-align-top": 57946,
"vibration": 58925,
"video-call": 57456,
"video-label": 57457,
"video-library": 57418,
"videocam": 57419,
"videocam-off": 57420,
"videogame-asset": 58168,
"view-agenda": 59625,
"view-array": 59626,
"view-carousel": 59627,
"view-column": 59628,
"view-comfy": 58410,
"view-compact": 58411,
"view-day": 59629,
"view-headline": 59630,
"view-list": 59631,
"view-module": 59632,
"view-quilt": 59633,
"view-stream": 59634,
"view-week": 59635,
"vignette": 58421,
"visibility": 59636,
"visibility-off": 59637,
"voice-chat": 58926,
"voicemail": 57561,
"volume-down": 57421,
"volume-mute": 57422,
"volume-off": 57423,
"volume-up": 57424,
"vpn-key": 57562,
"vpn-lock": 58927,
"wallpaper": 57788,
"warning": 57346,
"watch": 58164,
"watch-later": 59684,
"wb-auto": 58412,
"wb-cloudy": 58413,
"wb-incandescent": 58414,
"wb-iridescent": 58422,
"wb-sunny": 58416,
"wc": 58941,
"web": 57425,
"web-asset": 57449,
"weekend": 57707,
"whatshot": 59406,
"widgets": 57789,
"wifi": 58942,
"wifi-lock": 57825,
"wifi-tethering": 57826,
"work": 59641,
"wrap-text": 57947,
"youtube-searched-for": 59642,
"zoom-in": 59647,
"zoom-out": 59648,
"zoom-out-map": 58731
}

View File

@ -0,0 +1,186 @@
{
"alert": 61696,
"archive": 61697,
"arrow-both": 61698,
"arrow-down": 61699,
"arrow-left": 61700,
"arrow-right": 61701,
"arrow-small-down": 61702,
"arrow-small-left": 61703,
"arrow-small-right": 61704,
"arrow-small-up": 61705,
"arrow-up": 61706,
"beaker": 61707,
"bell": 61708,
"bold": 61709,
"book": 61710,
"bookmark": 61711,
"briefcase": 61712,
"broadcast": 61713,
"browser": 61714,
"bug": 61715,
"calendar": 61716,
"check": 61717,
"checklist": 61718,
"chevron-down": 61719,
"chevron-left": 61720,
"chevron-right": 61721,
"chevron-up": 61722,
"circle-slash": 61723,
"circuit-board": 61724,
"clippy": 61725,
"clock": 61726,
"cloud-download": 61727,
"cloud-upload": 61728,
"code": 61729,
"comment": 61730,
"comment-discussion": 61731,
"credit-card": 61732,
"dash": 61733,
"dashboard": 61734,
"database": 61735,
"desktop-download": 61736,
"device-camera": 61737,
"device-camera-video": 61738,
"device-desktop": 61739,
"device-mobile": 61740,
"diff": 61741,
"diff-added": 61742,
"diff-ignored": 61743,
"diff-modified": 61744,
"diff-removed": 61745,
"diff-renamed": 61746,
"ellipsis": 61747,
"eye": 61748,
"eye-closed": 61749,
"file": 61750,
"file-binary": 61751,
"file-code": 61752,
"file-directory": 61753,
"file-media": 61754,
"file-pdf": 61755,
"file-submodule": 61756,
"file-symlink-directory": 61757,
"file-symlink-file": 61758,
"file-zip": 61759,
"flame": 61760,
"fold": 61761,
"fold-down": 61762,
"fold-up": 61763,
"gear": 61764,
"gift": 61765,
"gist": 61766,
"gist-secret": 61767,
"git-branch": 61768,
"git-commit": 61769,
"git-compare": 61770,
"git-merge": 61771,
"git-pull-request": 61772,
"github-action": 61773,
"globe": 61774,
"grabber": 61775,
"graph": 61776,
"heart": 61777,
"history": 61778,
"home": 61779,
"horizontal-rule": 61780,
"hubot": 61781,
"inbox": 61782,
"info": 61783,
"issue-closed": 61784,
"issue-opened": 61785,
"issue-reopened": 61786,
"italic": 61787,
"jersey": 61788,
"kebab-horizontal": 61789,
"kebab-vertical": 61790,
"key": 61791,
"keyboard": 61792,
"law": 61793,
"light-bulb": 61794,
"link": 61795,
"link-external": 61796,
"list-ordered": 61797,
"list-unordered": 61798,
"location": 61799,
"lock": 61800,
"logo-gist": 61801,
"logo-github": 61802,
"mail": 61803,
"mail-read": 61804,
"mark-github": 61805,
"markdown": 61806,
"megaphone": 61807,
"mention": 61808,
"milestone": 61809,
"mirror": 61810,
"mortar-board": 61811,
"mute": 61812,
"no-newline": 61813,
"note": 61814,
"octoface": 61815,
"organization": 61816,
"package": 61817,
"paintcan": 61818,
"pencil": 61819,
"person": 61820,
"pin": 61821,
"play": 61822,
"plug": 61823,
"plus": 61824,
"plus-small": 61825,
"primitive-dot": 61826,
"primitive-square": 61827,
"project": 61828,
"pulse": 61829,
"question": 61830,
"quote": 61831,
"radio-tower": 61832,
"reply": 61833,
"repo": 61834,
"repo-clone": 61835,
"repo-force-push": 61836,
"repo-forked": 61837,
"repo-pull": 61838,
"repo-push": 61839,
"report": 61840,
"request-changes": 61841,
"rocket": 61842,
"rss": 61843,
"ruby": 61844,
"screen-full": 61845,
"screen-normal": 61846,
"search": 61847,
"server": 61848,
"settings": 61849,
"shield": 61850,
"sign-in": 61851,
"sign-out": 61852,
"smiley": 61853,
"squirrel": 61854,
"star": 61855,
"stop": 61856,
"sync": 61857,
"tag": 61858,
"tasklist": 61859,
"telescope": 61860,
"terminal": 61861,
"text-size": 61862,
"three-bars": 61863,
"thumbsdown": 61864,
"thumbsup": 61865,
"tools": 61866,
"trashcan": 61867,
"triangle-down": 61868,
"triangle-left": 61869,
"triangle-right": 61870,
"triangle-up": 61871,
"unfold": 61872,
"unmute": 61873,
"unverified": 61874,
"verified": 61875,
"versions": 61876,
"watch": 61877,
"x": 61878,
"zap": 61879
}

View File

@ -0,0 +1,191 @@
{
"user": 57349,
"people": 57345,
"user-female": 57344,
"user-follow": 57346,
"user-following": 57347,
"user-unfollow": 57348,
"login": 57446,
"logout": 57445,
"emotsmile": 57377,
"phone": 58880,
"call-end": 57416,
"call-in": 57415,
"call-out": 57414,
"map": 57395,
"location-pin": 57494,
"direction": 57410,
"directions": 57409,
"compass": 57413,
"layers": 57396,
"menu": 58881,
"list": 57447,
"options-vertical": 58882,
"options": 58883,
"arrow-down": 58884,
"arrow-left": 58885,
"arrow-right": 58886,
"arrow-up": 58887,
"arrow-up-circle": 57464,
"arrow-left-circle": 57466,
"arrow-right-circle": 57465,
"arrow-down-circle": 57467,
"check": 57472,
"clock": 57473,
"plus": 57493,
"minus": 58901,
"close": 57474,
"event": 58905,
"exclamation": 58903,
"organization": 58902,
"trophy": 57350,
"screen-smartphone": 57360,
"screen-desktop": 57361,
"plane": 57362,
"notebook": 57363,
"mustache": 57364,
"mouse": 57365,
"magnet": 57366,
"energy": 57376,
"disc": 57378,
"cursor": 57454,
"cursor-move": 57379,
"crop": 57380,
"chemistry": 57382,
"speedometer": 57351,
"shield": 57358,
"screen-tablet": 57359,
"magic-wand": 57367,
"hourglass": 57368,
"graduation": 57369,
"ghost": 57370,
"game-controller": 57371,
"fire": 57372,
"eyeglass": 57373,
"envelope-open": 57374,
"envelope-letter": 57375,
"bell": 57383,
"badge": 57384,
"anchor": 57385,
"wallet": 57386,
"vector": 57387,
"speech": 57388,
"puzzle": 57389,
"printer": 57390,
"present": 57391,
"playlist": 57392,
"pin": 57393,
"picture": 57394,
"handbag": 57397,
"globe-alt": 57398,
"globe": 57399,
"folder-alt": 57401,
"folder": 57481,
"film": 57402,
"feed": 57403,
"drop": 57406,
"drawer": 57407,
"docs": 57408,
"doc": 57477,
"diamond": 57411,
"cup": 57412,
"calculator": 57417,
"bubbles": 57418,
"briefcase": 57419,
"book-open": 57420,
"basket-loaded": 57421,
"basket": 57422,
"bag": 57423,
"action-undo": 57424,
"action-redo": 57425,
"wrench": 57426,
"umbrella": 57427,
"trash": 57428,
"tag": 57429,
"support": 57430,
"frame": 57400,
"size-fullscreen": 57431,
"size-actual": 57432,
"shuffle": 57433,
"share-alt": 57434,
"share": 57435,
"rocket": 57436,
"question": 57437,
"pie-chart": 57438,
"pencil": 57439,
"note": 57440,
"loop": 57444,
"home": 57449,
"grid": 57450,
"graph": 57451,
"microphone": 57443,
"music-tone-alt": 57441,
"music-tone": 57442,
"earphones-alt": 57404,
"earphones": 57405,
"equalizer": 57452,
"like": 57448,
"dislike": 57453,
"control-start": 57455,
"control-rewind": 57456,
"control-play": 57457,
"control-pause": 57458,
"control-forward": 57459,
"control-end": 57460,
"volume-1": 57503,
"volume-2": 57504,
"volume-off": 57505,
"calendar": 57461,
"bulb": 57462,
"chart": 57463,
"ban": 57468,
"bubble": 57469,
"camrecorder": 57470,
"camera": 57471,
"cloud-download": 57475,
"cloud-upload": 57476,
"envelope": 57478,
"eye": 57479,
"flag": 57480,
"heart": 57482,
"info": 57483,
"key": 57484,
"link": 57485,
"lock": 57486,
"lock-open": 57487,
"magnifier": 57488,
"magnifier-add": 57489,
"magnifier-remove": 57490,
"paper-clip": 57491,
"paper-plane": 57492,
"power": 57495,
"refresh": 57496,
"reload": 57497,
"settings": 57498,
"star": 57499,
"symbol-female": 57500,
"symbol-male": 57501,
"target": 57502,
"credit-card": 57381,
"paypal": 58888,
"social-tumblr": 57354,
"social-twitter": 57353,
"social-facebook": 57355,
"social-instagram": 58889,
"social-linkedin": 58890,
"social-pinterest": 58891,
"social-github": 58892,
"social-google": 58893,
"social-reddit": 58894,
"social-skype": 58895,
"social-dribbble": 57357,
"social-behance": 58896,
"social-foursqare": 58897,
"social-soundcloud": 58898,
"social-spotify": 58899,
"social-stumbleupon": 58900,
"social-youtube": 57352,
"social-dropbox": 57356,
"social-vkontakte": 58904,
"social-steam": 58912
}

View File

@ -0,0 +1,102 @@
{
"acrobat": 61696,
"amazon": 61697,
"android": 61698,
"angellist": 61699,
"aol": 61700,
"appnet": 61701,
"appstore": 61702,
"bitbucket": 61703,
"bitcoin": 61704,
"blogger": 61705,
"buffer": 61706,
"cal": 61707,
"call": 61708,
"cart": 61709,
"chrome": 61710,
"cloudapp": 61711,
"creativecommons": 61712,
"delicious": 61713,
"digg": 61714,
"disqus": 61715,
"dribbble": 61716,
"dropbox": 61717,
"drupal": 61718,
"dwolla": 61720,
"email": 61721,
"eventasaurus": 61722,
"eventbrite": 61723,
"eventful": 61724,
"evernote": 61725,
"facebook": 61726,
"fivehundredpx": 61727,
"flattr": 61728,
"flickr": 61729,
"forrst": 61730,
"foursquare": 61731,
"github": 61732,
"gmail": 61733,
"google": 61734,
"googleplay": 61735,
"googleplus": 61736,
"gowalla": 61737,
"grooveshark": 61738,
"guest": 61739,
"html5": 61740,
"ie": 61741,
"instagram": 61742,
"instapaper": 61743,
"intensedebate": 61744,
"itunes": 61745,
"klout": 61746,
"lanyrd": 61747,
"lastfm": 61748,
"lego": 61749,
"linkedin": 61750,
"lkdto": 61751,
"logmein": 61752,
"macstore": 61753,
"meetup": 61754,
"myspace": 61755,
"ninetyninedesigns": 61756,
"openid": 61757,
"opentable": 61758,
"paypal": 61759,
"persona": 61796,
"pinboard": 61760,
"pinterest": 61761,
"plancast": 61762,
"plurk": 61763,
"pocket": 61764,
"podcast": 61765,
"posterous": 61766,
"print": 61767,
"quora": 61768,
"reddit": 61769,
"rss": 61770,
"scribd": 61771,
"skype": 61772,
"smashing": 61773,
"songkick": 61774,
"soundcloud": 61775,
"spotify": 61776,
"stackoverflow": 61777,
"statusnet": 61778,
"steam": 61779,
"stripe": 61780,
"stumbleupon": 61781,
"tumblr": 61782,
"twitter": 61783,
"viadeo": 61784,
"vimeo": 61785,
"vk": 61786,
"weibo": 61787,
"wikipedia": 61788,
"windows": 61789,
"wordpress": 61790,
"xing": 61791,
"yahoo": 61792,
"ycombinator": 61793,
"yelp": 61794,
"youtube": 61795
}

View File

@ -0,0 +1,3 @@
<resources>
<string name="app_name">ankilan</string>
</resources>

View File

@ -0,0 +1,9 @@
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="android:textColor">#000000</item>
</style>
</resources>

38
android/build.gradle Normal file
View File

@ -0,0 +1,38 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
buildToolsVersion = "28.0.3"
minSdkVersion = 16
compileSdkVersion = 28
targetSdkVersion = 28
}
repositories {
google()
jcenter()
}
dependencies {
classpath("com.android.tools.build:gradle:3.5.2")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
mavenLocal()
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url("$rootDir/../node_modules/react-native/android")
}
maven {
// Android JSC is installed from npm
url("$rootDir/../node_modules/jsc-android/dist")
}
google()
jcenter()
maven { url 'https://www.jitpack.io' }
}
}

28
android/gradle.properties Normal file
View File

@ -0,0 +1,28 @@
# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
# Default value: -Xmx10248m -XX:MaxPermSize=256m
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
# AndroidX package structure to make it clearer which packages are bundled with the
# Android operating system, and which are packaged with your app's APK
# https://developer.android.com/topic/libraries/support-library/androidx-rn
android.useAndroidX=true
# Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true
# Version of flipper SDK to use with React Native
FLIPPER_VERSION=0.33.1

Binary file not shown.

View File

@ -0,0 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0.1-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

188
android/gradlew vendored Executable file
View File

@ -0,0 +1,188 @@
#!/usr/bin/env sh
#
# Copyright 2015 the original author or authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
##############################################################################
##
## Gradle start up script for UN*X
##
##############################################################################
# Attempt to set APP_HOME
# Resolve links: $0 may be a link
PRG="$0"
# Need this for relative symlinks.
while [ -h "$PRG" ] ; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '.*-> \(.*\)$'`
if expr "$link" : '/.*' > /dev/null; then
PRG="$link"
else
PRG=`dirname "$PRG"`"/$link"
fi
done
SAVED="`pwd`"
cd "`dirname \"$PRG\"`/" >/dev/null
APP_HOME="`pwd -P`"
cd "$SAVED" >/dev/null
APP_NAME="Gradle"
APP_BASE_NAME=`basename "$0"`
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"
warn () {
echo "$*"
}
die () {
echo
echo "$*"
echo
exit 1
}
# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
nonstop=false
case "`uname`" in
CYGWIN* )
cygwin=true
;;
Darwin* )
darwin=true
;;
MINGW* )
msys=true
;;
NONSTOP* )
nonstop=true
;;
esac
CLASSPATH=$APP_HOME/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" -a "$nonstop" = "false" ] ; then
MAX_FD_LIMIT=`ulimit -H -n`
if [ $? -eq 0 ] ; then
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
MAX_FD="$MAX_FD_LIMIT"
fi
ulimit -n $MAX_FD
if [ $? -ne 0 ] ; then
warn "Could not set maximum file descriptor limit: $MAX_FD"
fi
else
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
fi
fi
# For Darwin, add options to specify how the application appears in the dock
if $darwin; then
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
fi
# For Cygwin or MSYS, switch paths to Windows format before running java
if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
JAVACMD=`cygpath --unix "$JAVACMD"`
# We build the pattern for arguments to be converted via cygpath
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
SEP=""
for dir in $ROOTDIRSRAW ; do
ROOTDIRS="$ROOTDIRS$SEP$dir"
SEP="|"
done
OURCYGPATTERN="(^($ROOTDIRS))"
# Add a user-defined pattern to the cygpath arguments
if [ "$GRADLE_CYGPATTERN" != "" ] ; then
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
fi
# Now convert the arguments - kludge to limit ourselves to /bin/sh
i=0
for arg in "$@" ; do
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
else
eval `echo args$i`="\"$arg\""
fi
i=$((i+1))
done
case $i in
(0) set -- ;;
(1) set -- "$args0" ;;
(2) set -- "$args0" "$args1" ;;
(3) set -- "$args0" "$args1" "$args2" ;;
(4) set -- "$args0" "$args1" "$args2" "$args3" ;;
(5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
(6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
(7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
(8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
(9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
esac
fi
# Escape application args
save () {
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
echo " "
}
APP_ARGS=$(save "$@")
# Collect all arguments for the java command, following the shell quoting and substitution rules
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
cd "$(dirname "$0")"
fi
exec "$JAVACMD" "$@"

100
android/gradlew.bat vendored Normal file
View File

@ -0,0 +1,100 @@
@rem
@rem Copyright 2015 the original author or authors.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem https://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
@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
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@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="-Xmx64m" "-Xms64m"
@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 Windows variants
if not "%OS%" == "Windows_NT" goto win9xME_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=%*
: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

3
android/settings.gradle Normal file
View File

@ -0,0 +1,3 @@
rootProject.name = 'ankilan'
apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings)
include ':app'

81
ios/Podfile Normal file
View File

@ -0,0 +1,81 @@
platform :ios, '9.0'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
def add_flipper_pods!
version = '~> 0.33.1'
pod 'FlipperKit', version, :configuration => 'Debug'
pod 'FlipperKit/FlipperKitLayoutPlugin', version, :configuration => 'Debug'
pod 'FlipperKit/SKIOSNetworkPlugin', version, :configuration => 'Debug'
pod 'FlipperKit/FlipperKitUserDefaultsPlugin', version, :configuration => 'Debug'
pod 'FlipperKit/FlipperKitReactPlugin', version, :configuration => 'Debug'
end
# Post Install processing for Flipper
def flipper_post_install(installer)
installer.pods_project.targets.each do |target|
if target.name == 'YogaKit'
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '4.1'
end
end
end
end
target 'ankilan' do
# Pods for ankilan
pod 'FBLazyVector', :path => "../node_modules/react-native/Libraries/FBLazyVector"
pod 'FBReactNativeSpec', :path => "../node_modules/react-native/Libraries/FBReactNativeSpec"
pod 'RCTRequired', :path => "../node_modules/react-native/Libraries/RCTRequired"
pod 'RCTTypeSafety', :path => "../node_modules/react-native/Libraries/TypeSafety"
pod 'React', :path => '../node_modules/react-native/'
pod 'React-Core', :path => '../node_modules/react-native/'
pod 'React-CoreModules', :path => '../node_modules/react-native/React/CoreModules'
pod 'React-Core/DevSupport', :path => '../node_modules/react-native/'
pod 'React-RCTActionSheet', :path => '../node_modules/react-native/Libraries/ActionSheetIOS'
pod 'React-RCTAnimation', :path => '../node_modules/react-native/Libraries/NativeAnimation'
pod 'React-RCTBlob', :path => '../node_modules/react-native/Libraries/Blob'
pod 'React-RCTImage', :path => '../node_modules/react-native/Libraries/Image'
pod 'React-RCTLinking', :path => '../node_modules/react-native/Libraries/LinkingIOS'
pod 'React-RCTNetwork', :path => '../node_modules/react-native/Libraries/Network'
pod 'React-RCTSettings', :path => '../node_modules/react-native/Libraries/Settings'
pod 'React-RCTText', :path => '../node_modules/react-native/Libraries/Text'
pod 'React-RCTVibration', :path => '../node_modules/react-native/Libraries/Vibration'
pod 'React-Core/RCTWebSocket', :path => '../node_modules/react-native/'
pod 'React-cxxreact', :path => '../node_modules/react-native/ReactCommon/cxxreact'
pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi'
pod 'React-jsiexecutor', :path => '../node_modules/react-native/ReactCommon/jsiexecutor'
pod 'React-jsinspector', :path => '../node_modules/react-native/ReactCommon/jsinspector'
pod 'ReactCommon/callinvoker', :path => "../node_modules/react-native/ReactCommon"
pod 'ReactCommon/turbomodule/core', :path => "../node_modules/react-native/ReactCommon"
pod 'Yoga', :path => '../node_modules/react-native/ReactCommon/yoga', :modular_headers => true
pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
target 'ankilanTests' do
inherit! :complete
# Pods for testing
end
use_native_modules!
# Enables Flipper.
#
# Note that if you have use_frameworks! enabled, Flipper will not work and
# you should disable these next few lines.
add_flipper_pods!
post_install do |installer|
flipper_post_install(installer)
end
end
target 'ankilan-tvOS' do
# Pods for ankilan-tvOS
target 'ankilan-tvOSTests' do
inherit! :search_paths
# Pods for testing
end
end

View File

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>localhost</key>
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
</dict>
</dict>
</dict>
<key>NSLocationWhenInUseUsageDescription</key>
<string></string>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
</dict>
</plist>

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
</plist>

View File

@ -0,0 +1,892 @@
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
00E356F31AD99517003FC87E /* ankilanTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ankilanTests.m */; };
13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
2DCD954D1E0B4F2C00145EB5 /* ankilanTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ankilanTests.m */; };
4CAF7C8E821B4E3696376448 /* AntDesign.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 39DEE878FA4B40A2BF0F3EAE /* AntDesign.ttf */; };
AF566AD5C3984D7BAE45A9A0 /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 0FB6C91894154B2EAEB9655A /* Entypo.ttf */; };
1D2CA0BA1AFD4746B03C6724 /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A7392ED8759541A8B70B0089 /* EvilIcons.ttf */; };
EC11A61BF8824418996B7AED /* Feather.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 741A3E7175C248E0AC68735A /* Feather.ttf */; };
3534D0813A0B4E8182D5EDA8 /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4E89170C104546B9A19DEC6D /* FontAwesome.ttf */; };
53CCE1F5686D4DF39296F50B /* FontAwesome5_Brands.ttf in Resources */ = {isa = PBXBuildFile; fileRef = D47218B903AE40BF99DB9EA1 /* FontAwesome5_Brands.ttf */; };
8F6B8C7FC78E405397B3BFBF /* FontAwesome5_Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A794EF37C5114251A7778FBA /* FontAwesome5_Regular.ttf */; };
5BA37C7DD98E4C46949E3F2E /* FontAwesome5_Solid.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 67FBA3D07A774307875DA311 /* FontAwesome5_Solid.ttf */; };
D6B3C0B2487745E78A56ED83 /* Fontisto.ttf in Resources */ = {isa = PBXBuildFile; fileRef = E1EFF855FEF44CC3B7F7CBB6 /* Fontisto.ttf */; };
BC6B417061954EF6BC9D3AB4 /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2F1577DF55AD426F95E9B8D3 /* Foundation.ttf */; };
32B3B87CE431477484AB4693 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = D57A30F393304AC7A3B79F0A /* Ionicons.ttf */; };
E990909996B345B59EF6BADB /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C78663B6E65546CE80BE689E /* MaterialCommunityIcons.ttf */; };
90F1C1DE5CDC4530805056EC /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 00ABDB7635C644A086F8F7D0 /* MaterialIcons.ttf */; };
901065DC2CA5420E9C004288 /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7CB0072930E94BEB8EF19AA7 /* Octicons.ttf */; };
976FCE0D946B48D490411B02 /* Roboto_medium.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2D54DF3359D847A18B5EAAFB /* Roboto_medium.ttf */; };
145807A62C874BFF9A1FEB3C /* Roboto.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4329D42487614963A14810E2 /* Roboto.ttf */; };
94D4094157AF41FAADF648BF /* rubicon-icon-font.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 46840E94EDB44C8889D73E72 /* rubicon-icon-font.ttf */; };
B92A1C65A86449AA89C4ABA4 /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 17D7C800AB1D4C37A629386E /* SimpleLineIcons.ttf */; };
CDB0496D48A14ACC984FC190 /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 8A86C84BEF3D444C8A2BA75F /* Zocial.ttf */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
remoteInfo = ankilan;
};
2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
remoteInfo = "ankilan-tvOS";
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = "<group>"; };
00E356EE1AD99517003FC87E /* ankilanTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ankilanTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
00E356F21AD99517003FC87E /* ankilanTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ankilanTests.m; sourceTree = "<group>"; };
13B07F961A680F5B00A75B9A /* ankilan.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ankilan.app; sourceTree = BUILT_PRODUCTS_DIR; };
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = ankilan/AppDelegate.h; sourceTree = "<group>"; };
13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = ankilan/AppDelegate.m; sourceTree = "<group>"; };
13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = ankilan/Images.xcassets; sourceTree = "<group>"; };
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = ankilan/Info.plist; sourceTree = "<group>"; };
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = ankilan/main.m; sourceTree = "<group>"; };
2D02E47B1E0B4A5D006451C7 /* ankilan-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "ankilan-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
2D02E4901E0B4A5D006451C7 /* ankilan-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "ankilan-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
ED2971642150620600B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS12.0.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; };
39DEE878FA4B40A2BF0F3EAE /* AntDesign.ttf */ = {isa = PBXFileReference; name = "AntDesign.ttf"; path = "../node_modules/native-base/Fonts/AntDesign.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
0FB6C91894154B2EAEB9655A /* Entypo.ttf */ = {isa = PBXFileReference; name = "Entypo.ttf"; path = "../node_modules/native-base/Fonts/Entypo.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
A7392ED8759541A8B70B0089 /* EvilIcons.ttf */ = {isa = PBXFileReference; name = "EvilIcons.ttf"; path = "../node_modules/native-base/Fonts/EvilIcons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
741A3E7175C248E0AC68735A /* Feather.ttf */ = {isa = PBXFileReference; name = "Feather.ttf"; path = "../node_modules/native-base/Fonts/Feather.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
4E89170C104546B9A19DEC6D /* FontAwesome.ttf */ = {isa = PBXFileReference; name = "FontAwesome.ttf"; path = "../node_modules/native-base/Fonts/FontAwesome.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
D47218B903AE40BF99DB9EA1 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; name = "FontAwesome5_Brands.ttf"; path = "../node_modules/native-base/Fonts/FontAwesome5_Brands.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
A794EF37C5114251A7778FBA /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; name = "FontAwesome5_Regular.ttf"; path = "../node_modules/native-base/Fonts/FontAwesome5_Regular.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
67FBA3D07A774307875DA311 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; name = "FontAwesome5_Solid.ttf"; path = "../node_modules/native-base/Fonts/FontAwesome5_Solid.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
E1EFF855FEF44CC3B7F7CBB6 /* Fontisto.ttf */ = {isa = PBXFileReference; name = "Fontisto.ttf"; path = "../node_modules/native-base/Fonts/Fontisto.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
2F1577DF55AD426F95E9B8D3 /* Foundation.ttf */ = {isa = PBXFileReference; name = "Foundation.ttf"; path = "../node_modules/native-base/Fonts/Foundation.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
D57A30F393304AC7A3B79F0A /* Ionicons.ttf */ = {isa = PBXFileReference; name = "Ionicons.ttf"; path = "../node_modules/native-base/Fonts/Ionicons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
C78663B6E65546CE80BE689E /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; name = "MaterialCommunityIcons.ttf"; path = "../node_modules/native-base/Fonts/MaterialCommunityIcons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
00ABDB7635C644A086F8F7D0 /* MaterialIcons.ttf */ = {isa = PBXFileReference; name = "MaterialIcons.ttf"; path = "../node_modules/native-base/Fonts/MaterialIcons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
7CB0072930E94BEB8EF19AA7 /* Octicons.ttf */ = {isa = PBXFileReference; name = "Octicons.ttf"; path = "../node_modules/native-base/Fonts/Octicons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
2D54DF3359D847A18B5EAAFB /* Roboto_medium.ttf */ = {isa = PBXFileReference; name = "Roboto_medium.ttf"; path = "../node_modules/native-base/Fonts/Roboto_medium.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
4329D42487614963A14810E2 /* Roboto.ttf */ = {isa = PBXFileReference; name = "Roboto.ttf"; path = "../node_modules/native-base/Fonts/Roboto.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
46840E94EDB44C8889D73E72 /* rubicon-icon-font.ttf */ = {isa = PBXFileReference; name = "rubicon-icon-font.ttf"; path = "../node_modules/native-base/Fonts/rubicon-icon-font.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
17D7C800AB1D4C37A629386E /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; name = "SimpleLineIcons.ttf"; path = "../node_modules/native-base/Fonts/SimpleLineIcons.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
8A86C84BEF3D444C8A2BA75F /* Zocial.ttf */ = {isa = PBXFileReference; name = "Zocial.ttf"; path = "../node_modules/native-base/Fonts/Zocial.ttf"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
00E356EB1AD99517003FC87E /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
00E356EF1AD99517003FC87E /* ankilanTests */ = {
isa = PBXGroup;
children = (
00E356F21AD99517003FC87E /* ankilanTests.m */,
00E356F01AD99517003FC87E /* Supporting Files */,
);
path = ankilanTests;
sourceTree = "<group>";
};
00E356F01AD99517003FC87E /* Supporting Files */ = {
isa = PBXGroup;
children = (
00E356F11AD99517003FC87E /* Info.plist */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
13B07FAE1A68108700A75B9A /* ankilan */ = {
isa = PBXGroup;
children = (
008F07F21AC5B25A0029DE68 /* main.jsbundle */,
13B07FAF1A68108700A75B9A /* AppDelegate.h */,
13B07FB01A68108700A75B9A /* AppDelegate.m */,
13B07FB51A68108700A75B9A /* Images.xcassets */,
13B07FB61A68108700A75B9A /* Info.plist */,
13B07FB11A68108700A75B9A /* LaunchScreen.xib */,
13B07FB71A68108700A75B9A /* main.m */,
);
name = ankilan;
sourceTree = "<group>";
};
2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
isa = PBXGroup;
children = (
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
ED2971642150620600B7C4FE /* JavaScriptCore.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
832341AE1AAA6A7D00B99B32 /* Libraries */ = {
isa = PBXGroup;
children = (
);
name = Libraries;
sourceTree = "<group>";
};
83CBB9F61A601CBA00E9B192 = {
isa = PBXGroup;
children = (
13B07FAE1A68108700A75B9A /* ankilan */,
832341AE1AAA6A7D00B99B32 /* Libraries */,
00E356EF1AD99517003FC87E /* ankilanTests */,
83CBBA001A601CBA00E9B192 /* Products */,
2D16E6871FA4F8E400B85C8A /* Frameworks */,
E740F4B799EA4AAEBF30724E /* Resources */,
);
indentWidth = 2;
sourceTree = "<group>";
tabWidth = 2;
usesTabs = 0;
};
83CBBA001A601CBA00E9B192 /* Products */ = {
isa = PBXGroup;
children = (
13B07F961A680F5B00A75B9A /* ankilan.app */,
00E356EE1AD99517003FC87E /* ankilanTests.xctest */,
2D02E47B1E0B4A5D006451C7 /* ankilan-tvOS.app */,
2D02E4901E0B4A5D006451C7 /* ankilan-tvOSTests.xctest */,
);
name = Products;
sourceTree = "<group>";
};
E740F4B799EA4AAEBF30724E /* Resources */ = {
isa = "PBXGroup";
children = (
39DEE878FA4B40A2BF0F3EAE /* AntDesign.ttf */,
0FB6C91894154B2EAEB9655A /* Entypo.ttf */,
A7392ED8759541A8B70B0089 /* EvilIcons.ttf */,
741A3E7175C248E0AC68735A /* Feather.ttf */,
4E89170C104546B9A19DEC6D /* FontAwesome.ttf */,
D47218B903AE40BF99DB9EA1 /* FontAwesome5_Brands.ttf */,
A794EF37C5114251A7778FBA /* FontAwesome5_Regular.ttf */,
67FBA3D07A774307875DA311 /* FontAwesome5_Solid.ttf */,
E1EFF855FEF44CC3B7F7CBB6 /* Fontisto.ttf */,
2F1577DF55AD426F95E9B8D3 /* Foundation.ttf */,
D57A30F393304AC7A3B79F0A /* Ionicons.ttf */,
C78663B6E65546CE80BE689E /* MaterialCommunityIcons.ttf */,
00ABDB7635C644A086F8F7D0 /* MaterialIcons.ttf */,
7CB0072930E94BEB8EF19AA7 /* Octicons.ttf */,
2D54DF3359D847A18B5EAAFB /* Roboto_medium.ttf */,
4329D42487614963A14810E2 /* Roboto.ttf */,
46840E94EDB44C8889D73E72 /* rubicon-icon-font.ttf */,
17D7C800AB1D4C37A629386E /* SimpleLineIcons.ttf */,
8A86C84BEF3D444C8A2BA75F /* Zocial.ttf */,
);
name = Resources;
sourceTree = "<group>";
path = "";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
00E356ED1AD99517003FC87E /* ankilanTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ankilanTests" */;
buildPhases = (
00E356EA1AD99517003FC87E /* Sources */,
00E356EB1AD99517003FC87E /* Frameworks */,
00E356EC1AD99517003FC87E /* Resources */,
);
buildRules = (
);
dependencies = (
00E356F51AD99517003FC87E /* PBXTargetDependency */,
);
name = ankilanTests;
productName = ankilanTests;
productReference = 00E356EE1AD99517003FC87E /* ankilanTests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
13B07F861A680F5B00A75B9A /* ankilan */ = {
isa = PBXNativeTarget;
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ankilan" */;
buildPhases = (
FD10A7F022414F080027D42C /* Start Packager */,
13B07F871A680F5B00A75B9A /* Sources */,
13B07F8C1A680F5B00A75B9A /* Frameworks */,
13B07F8E1A680F5B00A75B9A /* Resources */,
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
);
buildRules = (
);
dependencies = (
);
name = ankilan;
productName = ankilan;
productReference = 13B07F961A680F5B00A75B9A /* ankilan.app */;
productType = "com.apple.product-type.application";
};
2D02E47A1E0B4A5D006451C7 /* ankilan-tvOS */ = {
isa = PBXNativeTarget;
buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ankilan-tvOS" */;
buildPhases = (
FD10A7F122414F3F0027D42C /* Start Packager */,
2D02E4771E0B4A5D006451C7 /* Sources */,
2D02E4781E0B4A5D006451C7 /* Frameworks */,
2D02E4791E0B4A5D006451C7 /* Resources */,
2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
);
buildRules = (
);
dependencies = (
);
name = "ankilan-tvOS";
productName = "ankilan-tvOS";
productReference = 2D02E47B1E0B4A5D006451C7 /* ankilan-tvOS.app */;
productType = "com.apple.product-type.application";
};
2D02E48F1E0B4A5D006451C7 /* ankilan-tvOSTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ankilan-tvOSTests" */;
buildPhases = (
2D02E48C1E0B4A5D006451C7 /* Sources */,
2D02E48D1E0B4A5D006451C7 /* Frameworks */,
2D02E48E1E0B4A5D006451C7 /* Resources */,
);
buildRules = (
);
dependencies = (
2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
);
name = "ankilan-tvOSTests";
productName = "ankilan-tvOSTests";
productReference = 2D02E4901E0B4A5D006451C7 /* ankilan-tvOSTests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
83CBB9F71A601CBA00E9B192 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 1130;
TargetAttributes = {
00E356ED1AD99517003FC87E = {
CreatedOnToolsVersion = 6.2;
TestTargetID = 13B07F861A680F5B00A75B9A;
};
13B07F861A680F5B00A75B9A = {
LastSwiftMigration = 1120;
};
2D02E47A1E0B4A5D006451C7 = {
CreatedOnToolsVersion = 8.2.1;
ProvisioningStyle = Automatic;
};
2D02E48F1E0B4A5D006451C7 = {
CreatedOnToolsVersion = 8.2.1;
ProvisioningStyle = Automatic;
TestTargetID = 2D02E47A1E0B4A5D006451C7;
};
};
};
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ankilan" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = 83CBB9F61A601CBA00E9B192;
productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
13B07F861A680F5B00A75B9A /* ankilan */,
00E356ED1AD99517003FC87E /* ankilanTests */,
2D02E47A1E0B4A5D006451C7 /* ankilan-tvOS */,
2D02E48F1E0B4A5D006451C7 /* ankilan-tvOSTests */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
00E356EC1AD99517003FC87E /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
13B07F8E1A680F5B00A75B9A /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */,
4CAF7C8E821B4E3696376448 /* AntDesign.ttf in Resources */,
AF566AD5C3984D7BAE45A9A0 /* Entypo.ttf in Resources */,
1D2CA0BA1AFD4746B03C6724 /* EvilIcons.ttf in Resources */,
EC11A61BF8824418996B7AED /* Feather.ttf in Resources */,
3534D0813A0B4E8182D5EDA8 /* FontAwesome.ttf in Resources */,
53CCE1F5686D4DF39296F50B /* FontAwesome5_Brands.ttf in Resources */,
8F6B8C7FC78E405397B3BFBF /* FontAwesome5_Regular.ttf in Resources */,
5BA37C7DD98E4C46949E3F2E /* FontAwesome5_Solid.ttf in Resources */,
D6B3C0B2487745E78A56ED83 /* Fontisto.ttf in Resources */,
BC6B417061954EF6BC9D3AB4 /* Foundation.ttf in Resources */,
32B3B87CE431477484AB4693 /* Ionicons.ttf in Resources */,
E990909996B345B59EF6BADB /* MaterialCommunityIcons.ttf in Resources */,
90F1C1DE5CDC4530805056EC /* MaterialIcons.ttf in Resources */,
901065DC2CA5420E9C004288 /* Octicons.ttf in Resources */,
976FCE0D946B48D490411B02 /* Roboto_medium.ttf in Resources */,
145807A62C874BFF9A1FEB3C /* Roboto.ttf in Resources */,
94D4094157AF41FAADF648BF /* rubicon-icon-font.ttf in Resources */,
B92A1C65A86449AA89C4ABA4 /* SimpleLineIcons.ttf in Resources */,
CDB0496D48A14ACC984FC190 /* Zocial.ttf in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2D02E4791E0B4A5D006451C7 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2D02E48E1E0B4A5D006451C7 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Bundle React Native code and images";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
};
2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Bundle React Native Code And Images";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
};
FD10A7F022414F080027D42C /* Start Packager */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
);
inputPaths = (
);
name = "Start Packager";
outputFileListPaths = (
);
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
showEnvVarsInLog = 0;
};
FD10A7F122414F3F0027D42C /* Start Packager */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
);
inputPaths = (
);
name = "Start Packager";
outputFileListPaths = (
);
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
00E356EA1AD99517003FC87E /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
00E356F31AD99517003FC87E /* ankilanTests.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
13B07F871A680F5B00A75B9A /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
13B07FC11A68108700A75B9A /* main.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2D02E4771E0B4A5D006451C7 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */,
2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2D02E48C1E0B4A5D006451C7 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
2DCD954D1E0B4F2C00145EB5 /* ankilanTests.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 13B07F861A680F5B00A75B9A /* ankilan */;
targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
};
2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 2D02E47A1E0B4A5D006451C7 /* ankilan-tvOS */;
targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXVariantGroup section */
13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = {
isa = PBXVariantGroup;
children = (
13B07FB21A68108700A75B9A /* Base */,
);
name = LaunchScreen.xib;
path = ankilan;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
00E356F61AD99517003FC87E /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
INFOPLIST_FILE = ankilanTests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
OTHER_LDFLAGS = (
"-ObjC",
"-lc++",
"$(inherited)",
);
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ankilan.app/ankilan";
};
name = Debug;
};
00E356F71AD99517003FC87E /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
COPY_PHASE_STRIP = NO;
INFOPLIST_FILE = ankilanTests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
OTHER_LDFLAGS = (
"-ObjC",
"-lc++",
"$(inherited)",
);
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ankilan.app/ankilan";
};
name = Release;
};
13B07F941A680F5B00A75B9A /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = 1;
ENABLE_BITCODE = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"$(inherited)",
"FB_SONARKIT_ENABLED=1",
);
INFOPLIST_FILE = ankilan/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = ankilan;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
VERSIONING_SYSTEM = "apple-generic";
};
name = Debug;
};
13B07F951A680F5B00A75B9A /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = 1;
INFOPLIST_FILE = ankilan/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = ankilan;
SWIFT_VERSION = 5.0;
VERSIONING_SYSTEM = "apple-generic";
};
name = Release;
};
2D02E4971E0B4A5E006451C7 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
CLANG_ANALYZER_NONNULL = YES;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_TESTABILITY = YES;
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = "ankilan-tvOS/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.ankilan-tvOS";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = appletvos;
TARGETED_DEVICE_FAMILY = 3;
TVOS_DEPLOYMENT_TARGET = 9.2;
};
name = Debug;
};
2D02E4981E0B4A5E006451C7 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
CLANG_ANALYZER_NONNULL = YES;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = "ankilan-tvOS/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.ankilan-tvOS";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = appletvos;
TARGETED_DEVICE_FAMILY = 3;
TVOS_DEPLOYMENT_TARGET = 9.2;
};
name = Release;
};
2D02E4991E0B4A5E006451C7 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CLANG_ANALYZER_NONNULL = YES;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_TESTABILITY = YES;
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = "ankilan-tvOSTests/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.ankilan-tvOSTests";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = appletvos;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ankilan-tvOS.app/ankilan-tvOS";
TVOS_DEPLOYMENT_TARGET = 10.1;
};
name = Debug;
};
2D02E49A1E0B4A5E006451C7 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CLANG_ANALYZER_NONNULL = YES;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = "ankilan-tvOSTests/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.ankilan-tvOSTests";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = appletvos;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ankilan-tvOS.app/ankilan-tvOS";
TVOS_DEPLOYMENT_TARGET = 10.1;
};
name = Release;
};
83CBBA201A601CBA00E9B192 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
LIBRARY_SEARCH_PATHS = (
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
"\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
"\"$(inherited)\"",
);
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
};
name = Debug;
};
83CBBA211A601CBA00E9B192 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = YES;
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
LIBRARY_SEARCH_PATHS = (
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
"\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
"\"$(inherited)\"",
);
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
VALIDATE_PRODUCT = YES;
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ankilanTests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
00E356F61AD99517003FC87E /* Debug */,
00E356F71AD99517003FC87E /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ankilan" */ = {
isa = XCConfigurationList;
buildConfigurations = (
13B07F941A680F5B00A75B9A /* Debug */,
13B07F951A680F5B00A75B9A /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ankilan-tvOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
2D02E4971E0B4A5E006451C7 /* Debug */,
2D02E4981E0B4A5E006451C7 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ankilan-tvOSTests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
2D02E4991E0B4A5E006451C7 /* Debug */,
2D02E49A1E0B4A5E006451C7 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ankilan" */ = {
isa = XCConfigurationList;
buildConfigurations = (
83CBBA201A601CBA00E9B192 /* Debug */,
83CBBA211A601CBA00E9B192 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
}

View File

@ -0,0 +1,88 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1130"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "2D02E47A1E0B4A5D006451C7"
BuildableName = "ankilan-tvOS.app"
BlueprintName = "ankilan-tvOS"
ReferencedContainer = "container:ankilan.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES">
<Testables>
<TestableReference
skipped = "NO">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "2D02E48F1E0B4A5D006451C7"
BuildableName = "ankilan-tvOSTests.xctest"
BlueprintName = "ankilan-tvOSTests"
ReferencedContainer = "container:ankilan.xcodeproj">
</BuildableReference>
</TestableReference>
</Testables>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "2D02E47A1E0B4A5D006451C7"
BuildableName = "ankilan-tvOS.app"
BlueprintName = "ankilan-tvOS"
ReferencedContainer = "container:ankilan.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</LaunchAction>
<ProfileAction
buildConfiguration = "Release"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "2D02E47A1E0B4A5D006451C7"
BuildableName = "ankilan-tvOS.app"
BlueprintName = "ankilan-tvOS"
ReferencedContainer = "container:ankilan.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>

View File

@ -0,0 +1,88 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1130"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
BuildableName = "ankilan.app"
BlueprintName = "ankilan"
ReferencedContainer = "container:ankilan.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES">
<Testables>
<TestableReference
skipped = "NO">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "00E356ED1AD99517003FC87E"
BuildableName = "ankilanTests.xctest"
BlueprintName = "ankilanTests"
ReferencedContainer = "container:ankilan.xcodeproj">
</BuildableReference>
</TestableReference>
</Testables>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
BuildableName = "ankilan.app"
BlueprintName = "ankilan"
ReferencedContainer = "container:ankilan.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</LaunchAction>
<ProfileAction
buildConfiguration = "Release"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
BuildableName = "ankilan.app"
BlueprintName = "ankilan"
ReferencedContainer = "container:ankilan.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>

View File

@ -0,0 +1,8 @@
#import <React/RCTBridgeDelegate.h>
#import <UIKit/UIKit.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate, RCTBridgeDelegate>
@property (nonatomic, strong) UIWindow *window;
@end

58
ios/ankilan/AppDelegate.m Normal file
View File

@ -0,0 +1,58 @@
#import "AppDelegate.h"
#import <React/RCTBridge.h>
#import <React/RCTBundleURLProvider.h>
#import <React/RCTRootView.h>
#if DEBUG
#import <FlipperKit/FlipperClient.h>
#import <FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.h>
#import <FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.h>
#import <FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.h>
#import <SKIOSNetworkPlugin/SKIOSNetworkAdapter.h>
#import <FlipperKitReactPlugin/FlipperKitReactPlugin.h>
static void InitializeFlipper(UIApplication *application) {
FlipperClient *client = [FlipperClient sharedClient];
SKDescriptorMapper *layoutDescriptorMapper = [[SKDescriptorMapper alloc] initWithDefaults];
[client addPlugin:[[FlipperKitLayoutPlugin alloc] initWithRootNode:application withDescriptorMapper:layoutDescriptorMapper]];
[client addPlugin:[[FKUserDefaultsPlugin alloc] initWithSuiteName:nil]];
[client addPlugin:[FlipperKitReactPlugin new]];
[client addPlugin:[[FlipperKitNetworkPlugin alloc] initWithNetworkAdapter:[SKIOSNetworkAdapter new]]];
[client start];
}
#endif
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
#if DEBUG
InitializeFlipper(application);
#endif
RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions];
RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge
moduleName:@"ankilan"
initialProperties:nil];
rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1];
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
UIViewController *rootViewController = [UIViewController new];
rootViewController.view = rootView;
self.window.rootViewController = rootViewController;
[self.window makeKeyAndVisible];
return YES;
}
- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
{
#if DEBUG
return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil];
#else
return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
#endif
}
@end

View File

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="7702" systemVersion="14D136" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES">
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="7701"/>
<capability name="Constraints with non-1.0 multipliers" minToolsVersion="5.1"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<view contentMode="scaleToFill" id="iN0-l3-epB">
<rect key="frame" x="0.0" y="0.0" width="480" height="480"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Powered by React Native" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="9" translatesAutoresizingMaskIntoConstraints="NO" id="8ie-xW-0ye">
<rect key="frame" x="20" y="439" width="441" height="21"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ankilan" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="kId-c2-rCX">
<rect key="frame" x="20" y="140" width="441" height="43"/>
<fontDescription key="fontDescription" type="boldSystem" pointSize="36"/>
<color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
<nil key="highlightedColor"/>
</label>
</subviews>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
<constraints>
<constraint firstItem="kId-c2-rCX" firstAttribute="centerY" secondItem="iN0-l3-epB" secondAttribute="bottom" multiplier="1/3" constant="1" id="5cJ-9S-tgC"/>
<constraint firstAttribute="centerX" secondItem="kId-c2-rCX" secondAttribute="centerX" id="Koa-jz-hwk"/>
<constraint firstAttribute="bottom" secondItem="8ie-xW-0ye" secondAttribute="bottom" constant="20" id="Kzo-t9-V3l"/>
<constraint firstItem="8ie-xW-0ye" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" constant="20" symbolic="YES" id="MfP-vx-nX0"/>
<constraint firstAttribute="centerX" secondItem="8ie-xW-0ye" secondAttribute="centerX" id="ZEH-qu-HZ9"/>
<constraint firstItem="kId-c2-rCX" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" constant="20" symbolic="YES" id="fvb-Df-36g"/>
</constraints>
<nil key="simulatedStatusBarMetrics"/>
<freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
<point key="canvasLocation" x="548" y="455"/>
</view>
</objects>
</document>

View File

@ -0,0 +1,38 @@
{
"images" : [
{
"idiom" : "iphone",
"size" : "29x29",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "29x29",
"scale" : "3x"
},
{
"idiom" : "iphone",
"size" : "40x40",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "40x40",
"scale" : "3x"
},
{
"idiom" : "iphone",
"size" : "60x60",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "60x60",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}

View File

@ -0,0 +1,6 @@
{
"info" : {
"version" : 1,
"author" : "xcode"
}
}

79
ios/ankilan/Info.plist Normal file
View File

@ -0,0 +1,79 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleDisplayName</key>
<string>ankilan</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
<key>NSExceptionDomains</key>
<dict>
<key>localhost</key>
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
</dict>
</dict>
</dict>
<key>NSLocationWhenInUseUsageDescription</key>
<string/>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
<key>UIAppFonts</key>
<array>
<string>AntDesign.ttf</string>
<string>Entypo.ttf</string>
<string>EvilIcons.ttf</string>
<string>Feather.ttf</string>
<string>FontAwesome.ttf</string>
<string>FontAwesome5_Brands.ttf</string>
<string>FontAwesome5_Regular.ttf</string>
<string>FontAwesome5_Solid.ttf</string>
<string>Fontisto.ttf</string>
<string>Foundation.ttf</string>
<string>Ionicons.ttf</string>
<string>MaterialCommunityIcons.ttf</string>
<string>MaterialIcons.ttf</string>
<string>Octicons.ttf</string>
<string>Roboto_medium.ttf</string>
<string>Roboto.ttf</string>
<string>rubicon-icon-font.ttf</string>
<string>SimpleLineIcons.ttf</string>
<string>Zocial.ttf</string>
</array>
</dict>
</plist>

9
ios/ankilan/main.m Normal file
View File

@ -0,0 +1,9 @@
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
</plist>

View File

@ -0,0 +1,65 @@
#import <UIKit/UIKit.h>
#import <XCTest/XCTest.h>
#import <React/RCTLog.h>
#import <React/RCTRootView.h>
#define TIMEOUT_SECONDS 600
#define TEXT_TO_LOOK_FOR @"Welcome to React"
@interface ankilanTests : XCTestCase
@end
@implementation ankilanTests
- (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test
{
if (test(view)) {
return YES;
}
for (UIView *subview in [view subviews]) {
if ([self findSubviewInView:subview matching:test]) {
return YES;
}
}
return NO;
}
- (void)testRendersWelcomeScreen
{
UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController];
NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS];
BOOL foundElement = NO;
__block NSString *redboxError = nil;
#ifdef DEBUG
RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) {
if (level >= RCTLogLevelError) {
redboxError = message;
}
});
#endif
while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) {
[[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
[[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) {
if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) {
return YES;
}
return NO;
}];
}
#ifdef DEBUG
RCTSetLogFunction(RCTDefaultLogFunction);
#endif
XCTAssertNil(redboxError, @"RedBox error: %@", redboxError);
XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS);
}
@end

2758
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -10,7 +10,7 @@
"lint": "eslint ."
},
"dependencies": {
"@react-native-community/async-storage": "^1.8.1",
"@react-native-community/async-storage": "^1.9.0",
"axios": "^0.19.2",
"babel-preset-react-native": "^4.0.1",
"jsonfn": "^0.31.0",
@ -19,8 +19,10 @@
"react": "16.11.0",
"react-native": "0.62.1",
"react-native-ankidroid": "^0.4.0",
"react-native-eject": "^0.1.2",
"react-native-material-textfield": "^0.16.1",
"react-native-vector-icons": "^6.6.0",
"react-native-webview": "^9.0.2",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
@ -34,9 +36,9 @@
"@babel/core": "^7.8.7",
"@babel/runtime": "^7.8.7",
"@react-native-community/eslint-config": "^0.0.7",
"babel-jest": "^25.1.0",
"babel-jest": "^25.2.6",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"jest": "^25.2.7",
"metro-react-native-babel-preset": "^0.58.0",
"react-test-renderer": "16.13.0",
"remotedev-rn-debugger": "^0.8.4"

View File

@ -6403,6 +6403,11 @@ react-native-easy-grid@0.2.2:
dependencies:
lodash "^4.17.15"
react-native-eject@^0.1.2:
version "0.1.2"
resolved "https://registry.yarnpkg.com/react-native-eject/-/react-native-eject-0.1.2.tgz#5824c332d092d845b1a77766c81023fa3c97bfd5"
integrity sha512-ITuAYOLMOiSXNAjWeucQPm5i6VVweuh/Zo2gfMFSCf1DjVrdOocWwy2kkg65ypbbt26tW6Vd3ZrqNRCsC9rqDA==
react-native-iphone-x-helper@^1.0.3:
version "1.2.1"
resolved "https://registry.yarnpkg.com/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.2.1.tgz#645e2ffbbb49e80844bb4cbbe34a126fda1e6772"